From cca79a4ccf6da11f1e22c3d675dd4bb12d36aa4b Mon Sep 17 00:00:00 2001 From: xisd Date: Fri, 3 May 2019 16:42:39 +0200 Subject: [PATCH] firt commit --- depends.txt | 3 + docs/robot_doc_1.md | 37 + docs/robot_doc_2.md | 164 + docs/robot_doc_3.md | 258 + docs/robot_doc_4.md | 10 + docs/robot_doc_5.md | 10 + init.lua | 546 ++ init_bokksave_attempt.lua | 641 ++ intllib.lua | 45 + models/mobs_bunny.b3d | Bin 0 -> 106937 bytes models/mobs_chicken.x | 3080 ++++++ models/mobs_kitten.b3d | Bin 0 -> 98176 bytes models/mobs_penguin.b3d | Bin 0 -> 66656 bytes models/mobs_turtle.x | 11058 ++++++++++++++++++++++ readme.md | 28 + robot_doc.html | 346 + scripts/admin_1.lua | 181 + scripts/admin_10.lua | 89 + scripts/admin_11.lua | 110 + scripts/admin_12.lua | 96 + scripts/admin_13.lua | 148 + scripts/admin_14.lua | 30 + scripts/admin_15.lua | 28 + scripts/admin_16.lua | 70 + scripts/admin_2.lua | 97 + scripts/admin_3.lua | 156 + scripts/admin_4.lua | 201 + scripts/admin_5.lua | 114 + scripts/admin_6.lua | 44 + scripts/admin_7.lua | 78 + scripts/admin_8.lua | 78 + scripts/admin_9.lua | 190 + scripts/exemple_1.lua | 13 + scripts/exemple_10.lua | 34 + scripts/exemple_11.lua | 20 + scripts/exemple_12.lua | 14 + scripts/exemple_13.lua | 30 + scripts/exemple_14.lua | 48 + scripts/exemple_15.lua | 39 + scripts/exemple_16.lua | 210 + scripts/exemple_2.lua | 30 + scripts/exemple_3.lua | 14 + scripts/exemple_4.lua | 16 + scripts/exemple_5.lua | 22 + scripts/exemple_6.lua | 19 + scripts/exemple_7.lua | 49 + scripts/exemple_8.lua | 19 + scripts/exemple_9.lua | 23 + scripts/notes.txt | 11 + shell/doc_to_html.sh | 64 + shell/rename_scripts.sh | 54 + sounds/basic_robot_terminal_blop.ogg | Bin 0 -> 8873 bytes textures/255.png | Bin 0 -> 178 bytes textures/255.xcf | Bin 0 -> 2388 bytes textures/basic_robot_terminal_front.png | Bin 0 -> 860 bytes textures/basic_robot_terminal_side.png | Bin 0 -> 1714 bytes textures/machine_texture.xcf | Bin 0 -> 2592 bytes textures/mobs_bunny_grey.png | Bin 0 -> 771 bytes textures/mobs_chicken.png | Bin 0 -> 2969 bytes textures/mobs_kitten_striped.png | Bin 0 -> 416 bytes textures/mobs_penguin.png | Bin 0 -> 892 bytes textures/mobs_turtle1.png | Bin 0 -> 329 bytes textures/mobs_turtle2.png | Bin 0 -> 395 bytes textures/mobs_turtle3.png | Bin 0 -> 597 bytes textures/mobs_turtle4.png | Bin 0 -> 744 bytes textures/mobs_turtle5.png | Bin 0 -> 561 bytes textures/mobs_turtle6.png | Bin 0 -> 288 bytes textures/mobs_turtle7.png | Bin 0 -> 187 bytes textures/open.png | Bin 0 -> 186 bytes textures/parent.png | Bin 0 -> 174 bytes textures/power.png | Bin 0 -> 175 bytes textures/save.png | Bin 0 -> 224 bytes 72 files changed, 18665 insertions(+) create mode 100644 depends.txt create mode 100644 docs/robot_doc_1.md create mode 100644 docs/robot_doc_2.md create mode 100644 docs/robot_doc_3.md create mode 100644 docs/robot_doc_4.md create mode 100644 docs/robot_doc_5.md create mode 100644 init.lua create mode 100644 init_bokksave_attempt.lua create mode 100644 intllib.lua create mode 100644 models/mobs_bunny.b3d create mode 100644 models/mobs_chicken.x create mode 100644 models/mobs_kitten.b3d create mode 100644 models/mobs_penguin.b3d create mode 100644 models/mobs_turtle.x create mode 100644 readme.md create mode 100644 robot_doc.html create mode 100644 scripts/admin_1.lua create mode 100644 scripts/admin_10.lua create mode 100644 scripts/admin_11.lua create mode 100644 scripts/admin_12.lua create mode 100644 scripts/admin_13.lua create mode 100644 scripts/admin_14.lua create mode 100644 scripts/admin_15.lua create mode 100644 scripts/admin_16.lua create mode 100644 scripts/admin_2.lua create mode 100644 scripts/admin_3.lua create mode 100644 scripts/admin_4.lua create mode 100644 scripts/admin_5.lua create mode 100644 scripts/admin_6.lua create mode 100644 scripts/admin_7.lua create mode 100644 scripts/admin_8.lua create mode 100644 scripts/admin_9.lua create mode 100644 scripts/exemple_1.lua create mode 100644 scripts/exemple_10.lua create mode 100644 scripts/exemple_11.lua create mode 100644 scripts/exemple_12.lua create mode 100644 scripts/exemple_13.lua create mode 100644 scripts/exemple_14.lua create mode 100644 scripts/exemple_15.lua create mode 100644 scripts/exemple_16.lua create mode 100644 scripts/exemple_2.lua create mode 100644 scripts/exemple_3.lua create mode 100644 scripts/exemple_4.lua create mode 100644 scripts/exemple_5.lua create mode 100644 scripts/exemple_6.lua create mode 100644 scripts/exemple_7.lua create mode 100644 scripts/exemple_8.lua create mode 100644 scripts/exemple_9.lua create mode 100644 scripts/notes.txt create mode 100644 shell/doc_to_html.sh create mode 100644 shell/rename_scripts.sh create mode 100644 sounds/basic_robot_terminal_blop.ogg create mode 100644 textures/255.png create mode 100644 textures/255.xcf create mode 100644 textures/basic_robot_terminal_front.png create mode 100644 textures/basic_robot_terminal_side.png create mode 100644 textures/machine_texture.xcf create mode 100644 textures/mobs_bunny_grey.png create mode 100644 textures/mobs_chicken.png create mode 100644 textures/mobs_kitten_striped.png create mode 100644 textures/mobs_penguin.png create mode 100644 textures/mobs_turtle1.png create mode 100644 textures/mobs_turtle2.png create mode 100644 textures/mobs_turtle3.png create mode 100644 textures/mobs_turtle4.png create mode 100644 textures/mobs_turtle5.png create mode 100644 textures/mobs_turtle6.png create mode 100644 textures/mobs_turtle7.png create mode 100644 textures/open.png create mode 100644 textures/parent.png create mode 100644 textures/power.png create mode 100644 textures/save.png diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..188c11b --- /dev/null +++ b/depends.txt @@ -0,0 +1,3 @@ +intllib? +default? +basic_robot? diff --git a/docs/robot_doc_1.md b/docs/robot_doc_1.md new file mode 100644 index 0000000..9c4a6a8 --- /dev/null +++ b/docs/robot_doc_1.md @@ -0,0 +1,37 @@ + + +# Ce qu'il faut savoir à propos des robots + +Quelques informations utiles à propos des robots + +* Les robots peuvent faire de nombreuses choses, ils executent des programmes écrits en 'Lua'. +* Il y a aussi une télécommande. + +* Vous pouvez écrire du code dans le spawner ('cpu-box') et l'executer avec le bouton 'start'. Le 'worker' apparaitra alors au dessus du spawner et executera le programme. + +* Le spwaner ressemble à une boite-cpu tandis que le robot est un bloc blanc avec une tête dessinée sur sa face avant et une flèche sur le dessus. + +* Les utilisateurs standard peuvent controler 2 robots. Chaque spawner ne contrôle qu'un robot à la fois. + + +* Le robot peut stocker des choses dans son inventaire (ex. matériaux creusés), il peut aussi prendre des choses dans cet inventaire (ex. pour produire de l'énérgie) + +* Le robot peut lire et écrire les livres présent dans sa bibliothèque. Ce qui est utile pour accèder facilement à des sous-programmes. + +* Pour rammasser le spawner, son inventaire et sa bibliothèque doivent être vides. Mais le robot est capable de casser le sapwner, son contenu sera alors perdu. + +* Le code d'un programme est executé en boucle, une fois par seconde environ. + +* Le robot à besoin d'énérgie pour effectuer certaines actions telles que creuser, fondre, écraser ou compresser. + +* Si la boucle contient un nombre trop important d'opérations limitées, le code refusera de s'executer et le robot reverra le message d'erreur `robot out of available operations in one step.`. + (L'astuce serait d'incrémenter un nombre afin de diviser l'action en étapes. ) + +* Le robot ne peut pas léviter au dessus de plus d'un bloc d'air (et ignorera les intructions en ce sens). + +* Si vous partez en laissant votre robot travailler seul, il s'arrêterra et reprendra son programme au DEBUT à votre retour. diff --git a/docs/robot_doc_2.md b/docs/robot_doc_2.md new file mode 100644 index 0000000..5e76a78 --- /dev/null +++ b/docs/robot_doc_2.md @@ -0,0 +1,164 @@ + + +# À propos des robots +Ce document présente les comportements des robots ainsi leurs limitations et usages. Pour des instructions détaillées à propos de la programations des robots voir le manuel technique (API) + +## Introduction + +Les robots peuvent se déplacer, détécter des blocs, creuser, construire et plus encore. + +Leurs utilisateurs peuvent écrire des programmes pour le robot dans le langage 'Lua'. +Il existe aussi une télécommande. + +Le système consiste en un 'spawner' ('cpu-box') que les joueurs posent sur le sol. +Ce spawner propose un formulaire pour contrôler, programmer et faire fonctionner le robot ('worker'). +Seule cette partie ('worker') du robot se déplace et dispose d'un rayon d'action limité (environ 23 blocs du joueur et du spawner). + +Un clavier du mod basic_machines peut être programmé pour démarrer le robot via un bouton presser par d'autres joueurs et pour recevoir des entrées clavier. +C'est utile pour les robot qui executent des actions pour d'autres joueurs (ex. magasin, messagerie, robot parlant, mini-jeu, etc. ) + +Sommairement, on peu dire que les robots sont constitué des deux parties mentionnée plus haut :vous pouvez entrer du code dans le spawner ('cpu-box') et l'executer avec le bouton start. Le 'worker' apparaîtra au dessus du spawner et executera le code depuis cette position. + +Il est parfois plus simple d'utiliser le terme 'robot' pour désigner la partie 'worker' dur robot. +En disant par exemple : Le spwaner ressemble à une boite-cpu tandis que le robot ressemble à un simple bloc blanc avec une tête sur sa face avant et une flêche sur le dessus. + +## Comment obtenir un robot ? + +Vous pouvez crafter le robot avec sur cristaux de mese au dessus d'une pierre, un lingot d'acier, et une autre pierre +Vous pouvrez crafter une télécommande avec un crisal de mese sous un bâton. + +## Le formulaire de contrôle + +Un clic-droit sur le spawner ouvre un formulaire composé de boutons et d'une zone de texte destinée à recevoir le programme du robot. + +* Le boutton "Save" enregistre le programme. Vous devez sauvegardez avant de lancer le programme. + + Note: La sauvegarde n'est pas permanente : une verification syntaxique est réalisées mais aucun fichier n'est enregisté et rammasser le spawner effecera le contenu de cette zone de texte. + Copier et collez ce texte ailleurs pour ne pas le perdre. + +* Le boutton "Start" crée un robot-worker (au dessus du spawner) qui execute le programme. + +* Le boutton "Stop" interrompt le programme et supprime le robot-worker. + +* Le champ 'id permet de controller plusieurs robots depuis un spawner. + Les joueurs qui ne disposent pas du privilège 'robot' ne peuvent utiliser que 2 robots à la fois. Ce qui signifie qu'ils ne peuvent utiliser que les ids 1 and 2. + +* Le boutton "Inventory" ouvre l'inventaire du robot. + L'inventaire contient 8*4 emplacements, la même taille qu'un coffre. Les robots peuvent stocker de choses dans cet inventaire (ex. les matériaux récoltés en creusant), et peuvent aussi prendre des choses dans cet inventaire (ex. pour produire de l'énérgie) + +* Le boutton "Library" ouvre une "bibliothèque". Le robot peut lire et écrire les livres qui s'y trouvent. + Cela peut être utilisé pour stocker et accèder facilement à du code depuis le programme. + +* Le boutton "Help" affiche une aide pour les fonctions du robot. + +Utilisez la touche Echap pour quitter le formulaire. + + +### Notes + +Chaque spawner ne peut activer qu'un robot à la fois. +Pour rammasser le spawner, son inventaire et sa bibliothèque doivent être vides. Mais le robot est capable de casser le sapwner, son contenu sera alors perdu. + +Lorsque que le robot est en fonction, un clic-droit dessus oouvrira egalement le formulaire (sans le bouton 'start') vous permettant ainsi de le stoper ou d'accèder à son inventaire. + +Le code du programme est exectuté en boucle répétée environ toutes les secondes + +L'edition du programme d'un robot en fonctionnement ne prendra effet qu'après l'avoir stoppé et relancé. + + +## Capacitées + +#### * Energie + +Le robot à besoin d'énérgie pour effectuer certaines actions telles que creuser, fondre, écraser ou compresser. +Si le robot dispose d'un combustible (ex: un morceau de charbon) dans son inventaire, il peut être programmé pour produire de l'énérgie : `machine.generate_power("default:coal_lump")` +Le niveau actuel d'énérgie peut être consulté avec la fonction `machine.energy()`. + + +#### * Limite d'actions + +Comme mentionné plus haut, le programme du robot s'execute en boucle. Cela signifie qu'à moins de recevoir l'instruction de s'arrèter, le robot executera le code encore et encore... aussi longtemps qu'il le peut. + +Pour cette raison, certaines opérations disposent d'un nombre d'execution limité par boucle. Ces actions incluents celles mentionnées plus haut, ainsi que quelques autres (ex. generer de l'energie). + + +Lorsque cette limite est atteinte, le code refusera de s'executer et le robot reverra le message d'erreur `robot out of available operations in one step.`. +Cette limite est parfois appelée 'maxdig' ou 'maxoperations' (le nom de la variable correspondante). + + + +La limite par defaut est 2. Ce qui signifie que lorsque le robot démarre, il doit y avoir moins de 2 (=1) opération dans une boucle +Par exemple, je ne peux pas executer ce code : + + +> machine.generate_power("default:jungletree") -- operation limitée +> dig.forward() -- operation limitée +> move.forward() +> dig.up() -- operation limitée + +Selon ce code, le robot devrait générer de l'énergie à partir d'arbre de jungle, creuser vers l'avant, se déplacer vers l'avant, et creuser vers le haut et ... repeter. +Mais cela ne fonctionnera pas car 3 actions limitées seraient éxécutées en une boucle. + +L'astuce serait d'incrémenter un nombre afin de diviser l'action en étapes, comme ceci : + + +> if not i then i = 1 end --initialise i +> if i == 1 then machine.generate_power("default:jungletree") +> elseif i == 2 then dig.forward() +> move.forward() +> elseif i == 3 then dig.up() +> i = 0 +> end +> i = i + 1 + +Dans cet exemple, 'i' prend d'abord la valeur 1 et sa valeurs sera augmenté à chaque boucle (à cause de la dernière ligne) + +La première fois que le code est executé, 'i' vaut 1, de l'énérgie sera générée. + +La seconde fois que le code est executé, 'i' vaudra 2, le robot creusera vers l'avant et se déplacera vers l'avant, + +La troisième fois, 'i' vaudra 3, le robot will creusera vers le haut et réinitialisera la valeur de i à 0 ( de façon à ce qu'après la dernière ligne i sera égal a 1. ) + +Donc la quatrième fois que le code sera executé sera identique à la première fois, la cinquième sera comme la seconde, la sixième sera comme la troisième, la septième comme la première... et ainsi de suite. + + +#### * Gravité + +Bien qu'il ne semble pas être sujet à la gravité, le robot ne peut pas léviter au dessus de plus d'un bloc d'air. + +Si vous lui demandez d'avancer en direction d'une falaise, il ignorera simplement l'operation qui le placerai dans une situation de levitation au dessus de deux blocs d'air ou plus... + +... mais il continuera d'executer le programme en ignorant totalement les conséquences - parfois catastrophiques - de cette étape sautée ! + +Si malgré cette prudence, le robot se retouve au dessus du vide, il s'arrêtra simplement et disparaîtra + +#### * Le bruit de l'arbre qui tombe... + +Contrairement à la question étérnelle 'Est ce qu'un arbre qui tombe fait du bruit s'il n'ya personne pour l'entendre?', nous pouvons répondre à celle-ci : 'Est ce q'un robot-worker travaille s'il n'y personne pour le voir ?'. + +Et la réponse est NON. + +Dans minetest, les zone qui ne sont pas peuplées (de joueurs) ne sont pas chargées. +Donc, si vous partez loins de votre robot (ou de son spawner), en le laissant travailler, il ne tardera pas à s'arrêter. + +Mais il y a pire ! Lorsque vous reviendrez, la zone où se trouve le robot sera à nouveau chargée et celui-ci reprendra son programme AU DEBUT, sans considération pour la ligne à laquelle il s'était arrèté... + +Ce qui, encore une fois, peut résuter en un désordre catasrophique à cause de quelques lignes sautées. + +Donc, ... voilà + + +## Conclusion + +L'usage des robots s'apprends par les essais et erreurs. + +Le manuel technique (API) devrait aussi être utile. + +Vous devriez aussi consulter le wiki : +and la page du forum : https://forum.minetest.net/feed.php?f=3&t=18345 +and essayer le serveur Basic_Robot. diff --git a/docs/robot_doc_3.md b/docs/robot_doc_3.md new file mode 100644 index 0000000..b1557f5 --- /dev/null +++ b/docs/robot_doc_3.md @@ -0,0 +1,258 @@ + + +# Robot API +Ce document présente la plupart des fonctions et la syntaxe pour la programmation des robots. + +### BASIC LUA SYNTAX + +la plupart des syntaxes basique du langage lua sont autorisés. +> if x==1 then A else B end +> for i = 1, 5 do something end +> while i<6 do A; i=i+1; end + +Tableaux: + +> myTable1 = {1,2,3}, myTable2 = {[\"entry1\"]=5, [\"entry2\"]=1} + +( Voir la documentation sur le langage lua pour plus de détails ) + +## COMMANDES POUR LES ROBOTS + +### MOVEMENT,DIGGING, PLACING, INVENTORY TAKE/INSERT + +`move.direction()` +`turn.left()`, `turn.right()`, `turn.angle(45)` +`dig.direction()` +`place.direction('default:dirt', optional orientation param)` +`read_node.direction()` +`insert.direction(item, inventory)` +`check_inventory.direction(itemname, inventory, index)` +`activate.direction(mode)` +`pickup(r)` +`craft(item,mode)` +`take.direction(item, inventory)` +`read_text.direction(stringname,mode)` +`write_text.direction(text,mode)` + +--------------------------------- + +`move.direction()` +Où direction peut être : forward, backward, left,right, up, down +La direction forward_down ne fonctionne qu'avec `dig`, `place` et `read_node` + +`turn.left()`, `turn.right()`, `turn.angle(45)` + +`dig.direction()` + +`place.direction('default:dirt', optional orientation param)` + +`read_node.direction()` +Renvoie le nom du bloc + +`insert.direction(item, inventory)` +Ajoute un objet dans l'inventaire cible depuis l'invetaire du robot + +`check_inventory.direction(itemname, inventory, index)` +Inspecte le bloc et renvoie false/true +- direction peut être self +- si index > 0 , renvoie itemname. Si itemname == '' , test si l'inventaire est vide. + +`activate.direction(mode)` +Active le bloc cible + +`pickup(r)` +Rammasse tous les objets autours du robot dans un rayon de r. r doit être < 8. Renvoie la liste des objets ou nil. + +`craft(item,mode)` +Craft item si les matériaux nécessaires sont présents dans l'inventaire. +mode = 1 renvoie la recette + +`take.direction(item, inventory)` +Prends item dans l'inventaire cible et l'ajoute à celui du robot. + +`read_text.direction(stringname,mode)` +Lit le texte d'un panneau, coffre, ou autre bloc. +Paramètre stringname optionnel pour d'autres meta, mode 1 s'il s'agit d'un nombre + +`write_text.direction(text,mode)` +Écrit le texte dans le bloc cible (en tant qu'infotext) + +### BOOKS/CODE + +`title,text=book.read(i)` +`book.write(i,title,text)` +`code.run(text)` +`code.set(text)` +`find_nodes('default:dirt',3)` + +--------------------------------- + +`title,text=book.read(i)` +Renvoie titre, contenut du livre à la position i de la bibliothèque + +`book.write(i,title,text)` +Ecrit dans le livre à la position i de la bibliothèque + +`code.run(text)` +compile et execute le code dans la sandbox + +`code.set(text)` +remplace le code actuel du robot + +`find_nodes('default:dirt',3)` +renvoie la distance du bloc dans un rayon de 3 ou false s'il n'y en a pas + +### PLAYERS + +`find_player(3)` +`attack(target)` +`grab(target)` +`player.getpos(name)` + +`find_player(3)` +finds players in radius 3 around robot and returns list, if none returns nil + +`attack(target)` +attempts to attack target player if nearby + +`grab(target)` +attempt to grab target player if nearby and returns true if succesful + +`player.getpos(name)` +return position of player, player.connected() returns list of players + +### ROBOT + +`say(\"hello\")` +`self.listen(0/1)` +`speaker, msg = self.listen_msg()` +`self.send_mail(target,mail)` +`sender,mail = self.read_mail()` +`self.pos()` +`self.name()` +`self.set_properties({textures=.., visual=..,visual_size=.., , )` +`self.set_animation(anim_start,anim_end,anim_speed,anim_stand_start)` +`self.spam(0/1)` +`self.remove()` +`self.reset()` +`self.spawnpos()` +`self.viewdir()` +`self.fire(speed, pitch,gravity)` +`self.fire_pos()` +`self.label(text)` +`self.display_text(text,linesize,size)` +`self.sound(sample,volume)` + +--------------------------------- + + +`say(\"hello\")` +will speak + +`self.listen(0/1)` +(de)attaches chat listener to robot + +`speaker, msg = self.listen_msg()` +retrieves last chat message if robot listens + +`self.send_mail(target,mail)` +sends mail to target robot +`sender,mail = self.read_mail()` +reads mail, if any +`self.pos()` +returns table {x=pos.x,y=pos.y,z=pos.z} +`self.name()` +returns robot name +`self.set_properties({textures=.., visual=..,visual_size=.., , )` +sets visual appearance +`set_animation(anim_start,anim_end,anim_speed,anim_stand_start)` +set mesh animation +`self.spam(0/1)` +(dis)enable message repeat to all +`self.remove()` +stops program and removes robot object +`self.reset()` +resets robot position +`self.spawnpos()` +returns position of spawner block +`self.viewdir()` +returns vector of view for robot +`self.fire(speed, pitch,gravity)` +fires a projectile from robot +`self.fire_pos()` +returns last hit position +`self.label(text)` +changes robot label +`self.display_text(text,linesize,size)` +displays text instead of robot face, if no size return text +`self.sound(sample,volume)` +plays sound named 'sample' at robot location +rom is aditional table that can store persistent data, like `rom.x=1` +. +### KEYBOARD +place spawner at coordinates (20i,40j+1,20k) to monitor events + +`keyboard.get()` +`keyboard.set(pos,type)` +`keyboard.read(pos)` + +--------------------------------- + +`keyboard.get()` +returns table {x=..,y=..,z=..,puncher = .. , type = .. } for keyboard event +`keyboard.set(pos,type)` +set key at pos of type 0=air, 1..6, limited to range 10 around +`keyboard.read(pos)` +return node name at pos + +### TECHNIC FUNCTIONALITY +namespace 'machine'. most functions return true or nil, error + +`machine.energy()` +`machine.generate_power(fuel, amount)` +`machine.smelt(input,amount)` +`machine.grind(input)` +`machine.compress(input)` +`machine.transfer_power(amount,target_robot_name)` + +--------------------------------- + +`machine.energy()` +displays available energy +`machine.generate_power(fuel, amount)` += energy, attempt to generate power from fuel material + if amount>0 try generate amount of power using builtin generator - this requires 40 gold/mese/diamonblock upgrades for each 1 amount +`machine.smelt(input,amount)` += progress/true. works as a furnace + if amount>0 try to use power to smelt - requires 10 upgrades for each 1 amount, energy cost is 1/40*(1+amount) +`machine.grind(input)` + grinds input material, requires upgrades for harder material +`machine.compress(input)` +requires upgrades - energy intensive process +`machine.transfer_power(amount,target_robot_name)` + +### CRYPTOGRAPHY +namespace 'crypto' + +`crypto.encrypt(input,password)` +`crypto.decrypt(input,password)` +`crypto.scramble(input,randomseed,sgn)` +`crypto.basic_hash(input,n)` + +--------------------------------- + +`crypto.encrypt(input,password)` +returns encrypted text, password is any string +`crypto.decrypt(input,password)` +attempts to decrypt encrypted text +`crypto.scramble(input,randomseed,sgn)` + (de)permutes text randomly according to sgn = -1,1 +`crypto.basic_hash(input,n)` +returns simple mod hash from string input within range 0...n-1 diff --git a/docs/robot_doc_4.md b/docs/robot_doc_4.md new file mode 100644 index 0000000..275e223 --- /dev/null +++ b/docs/robot_doc_4.md @@ -0,0 +1,10 @@ + + + +# Lua Syntax +... TODO diff --git a/docs/robot_doc_5.md b/docs/robot_doc_5.md new file mode 100644 index 0000000..9294551 --- /dev/null +++ b/docs/robot_doc_5.md @@ -0,0 +1,10 @@ + + + +# Robot API (Admin) +... TODO diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..e6ad8e7 --- /dev/null +++ b/init.lua @@ -0,0 +1,546 @@ +-- This mod add a way to import programs for basic_robot +-- +-- TODO : Allow importing file from clients instead or in addition of worldpath + +local modname = minetest.get_current_modname() +local modpath = minetest.get_modpath(modname) +local worldpath = minetest.get_worldpath() + +-- Load support for intllib. +local S, NS = dofile(modpath.."/intllib.lua") +-- S = function(s) return s end + +-- Request read/write access to files +local ie = minetest.request_insecure_environment() +assert(ie, "You must allow `"..modname.."` in `secure.trusted_mods`") + +local private = { } +private.open = ie.io.open +private.mkdir = ie.core.mkdir + +local brt = {} +brt.loglevel = "info" +brt.main_categories = { + -- Denomination, Prefix, Description + {S("Documentation"), "robot_doc", S("Documentation about the robot usage.")}, + {S("Scripts"), "scripts_index", S("A library of scripts for the robot")}, +} +brt.scripts_categories = { + -- Denomination, Prefix, Description + {S("Exemples"), "exemple", S("A set of exemples scripts for the robot")}, + -- {S("Exemples (advanced)"), "exemple_advanced", S("A set of advanced exemples scripts for the robot")}, + --{S("Testing"), "testing", S("Scripts that may not work and need testing")}, + {S("Admin"), "admin", S("Scripts that are requiering some admin privilege to run")}, + } +-- Filestructure into worldpath +brt.dir = worldpath.."/basic_robot" + +-- Pattern identifiyng files infos +brt.patterns = {} +brt.patterns.lua = { + { "title", "-- title : " }, + { "author", "-- author : " }, + { "description", "-- description : "}, +} + +--------------- +-- Functions -- +--------------- + +-- Send message to minetest log +brt.log = function(text,level) + if not level then level = brt.loglevel end + minetest.log(level,"["..modname.."] "..text) +end + +-- Send notification message to player +brt.notify = function(player, text) + local name = player:get_player_name() + minetest.sound_play({ name = modname.."_blop", gain = 0.2 }, { to_player = name }) + minetest.chat_send_player(name,text) +end + +-- Test if player is admin (has the privs priviliege) +brt.player_is_admin = function(player) + local name = player:get_player_name() + local privs = minetest.get_player_privs(name) + if privs and privs.privs then return true + else return false + end +end + +--______________________________________________________________ +-- +-- Part 1 : Import scripts from modpath into worlpath +--______________________________________________________________ + +-- Function : Copy content of a file into an other file +brt.copy = function(inpath,outpath) + + local input = private.open(inpath,"r") + local output = private.open(outpath,"w") + -- If file successfully opened ... + if input and output then + -- write file content to the one in worldpath + local content = input:read("*all") + output:write(content) + output:close() + input:close() + else + brt.log("Uable to copy content of "..inpath.." to "..outpath) + end +end + +local scpath = modpath.."/scripts" + +-- Create the basic_robot directory into the world folder +private.mkdir(brt.dir) + +-- Copy scripts files gathered in this mod +-- Including scripts by rnd contained in basic_robot +for _,v in ipairs(brt.scripts_categories) do + local n = 1 + while true do + local sc = scpath.."/"..v[2].."_"..n..".lua" + local fd = private.open(sc) + if not fd then break end + fd:close() + local dst = brt.dir.."/"..v[2].."_"..n..".lua" + brt.copy(sc,dst) + n = n + 1 + end +end + + + +--______________________________________________________________ +-- +-- Part 2 : Access scripts and doc using a formspec +--______________________________________________________________ +brt.lists = {} +brt.lists.scripts = {} +brt.lists.docs = {} + +local get_file_infos = function(rep, prefix, ext) + local lst = {} + local n = 1 + while true do + local sc = rep.."/"..prefix.."_"..n.."."..ext + local f = private.open(sc) + if not f then break end + lst[n] = {} + -- This whole thing is pretty heavy... + -- Can't I just get line 1,2,3 ? + local l = 1 + for line in f:lines() do + local patterns + -- Look fot set of patterns specific to this extention + if brt.patterns[ext] then patterns = brt.patterns[ext] + -- Or default to lua + else patterns = brt.patterns.lua end + + -- Look for pattern indicating infos + for _,v in ipairs(patterns) do + if string.match(line,v[2]) then + local k = v[1] + lst[n][k] = string.gsub(line,v[2],"") + break + end + end + -- Break the loop after 4 lines + l = l + 1 + if l > 4 then break end + end + f:close() + if not lst[n]["title"] then lst[n]["title"] = prefix.."_"..n end + -- if not lst[n]["author"] then lst[n]["author"] = "" end + lst[n]["path"] = sc + n = n + 1 + end + return lst +end + +brt.lists_update = function() + -- Reinitialize the list of scripts + brt.lists.scripts = {} + + -- Update list of scripts to match content of the worldpath rep + for _,v in ipairs(brt.scripts_categories) do + local listname = v[2] + local lst = get_file_infos(brt.dir,listname,"lua") + brt.lists.scripts[listname] = lst + end +end + +brt.lists_make = function() + brt.lists_update() + local docpath = modpath.."/docs" + brt.lists.docs = get_file_infos(docpath,"robot_doc","md") +end + +local line_parse = function(line) + local op = "," + local pt = { + {"^# ","#FF9292,"}, + {"^## ","#9292DB,"}, + {"^### ","#92FF92,"}, + {"^#### ","#FFFF00,"}, + } + for _,v in ipairs(pt) do + if string.match(line,v[1]) then + line = string.gsub(line,v[1],"") + op = v[2] + break + end + end + line = op .. minetest.formspec_escape(line) + return line +end + +brt.form = {} + +-- Function : main form content displaying text +brt.form.text = function(ref) + local ta, filetext, filettable + -- Read file to get its content + local f = private.open(ref.path) + if not f then filetext = S("Sorry, there was a problem while trying to read the file...") end + -- If we just want to read the file + if ref.read then + -- Lets import it as a table + filettable = {} + local maxlen = 59 + for line in f:lines() do + -- Test if string is too long + while true do + local len = string.len(line) + if len > maxlen then + -- Get a resized substring + local sub = string.sub(line,1,maxlen) + -- Match the longest sequence finishing with a space in this substring + local match = string.match(sub, "^(.*%s)") + -- If no match, ... split anyways + if not match then match = sub end + -- Get length of this new substring + local matchlen = string.len(match) + -- Add it to table + filettable[#filettable+1] = line_parse(match) + -- Refefine line + line = string.sub(line, matchlen + 1, len ) + else + -- TODO Remove comments at the beginning (keep them as tooltip) + -- even prepare it for formspec + filettable[#filettable+1] = line_parse(line) + break + end + end + end + print(dump(filettable)) + -- Otherwise we need be able to select and edit and copy and paste, so string it is + else filetext = f:read("*all") end + f:close() + + -- Display the text + -- Docs as readable text + if ref.read then + -- Table settings + ta = "tablecolumns[color;text,align=inline]" --,width=5 + .. "tableoptions[color=#FFF;background=#494949;highlight=#494949;border=true]" + .. "table[0,0;6.7,6;doc;" .. table.concat(filettable, ",") .. ",] " + + -- Script text into a textarea + else + ta = "textarea[0.4,0;6.7,6.7;script;;"..minetest.formspec_escape(filetext).."]" + end + -- Add a button to get back to the previous menu + ta = ta .. "image_button[1,6.5;0.8,0.8;parent.png;parent;;false;true;parent.png]" + -- Hidden field containing name of previous menu + ta = ta .. "field[-1,-1;0,0;previous;;"..ref.previous.."]" + + -- TODO : Save button for later implementation of a save + -- ta = ta .. "image_button[2,6.5;0.8,0.8;save.png;save;;false;true;save.png]" + + return ta +end + +-- Function : main form content displaying a menu +brt.form.menu = function(player,ref,i) + local description + if ref == "main_index" then bck = "." + else bck = ".." end + + -- Start the textlist item + local menu = "textlist[0,0;6.7,5.5;"..ref..";"..bck + local first = true + + -- Main menu + if ref == "main_index" then + -- Loop through categories + for _,v in ipairs(brt.main_categories) do + -- Add button + local label = v[1] + menu = menu .. "," .. minetest.formspec_escape(label) + end + -- Get description + if i and brt.main_categories[i] then description = brt.main_categories[i][3] end + + -- Documentation + elseif ref == "robot_doc" then + -- Loop through table containing scripts in categories + for _,v in ipairs(brt.lists.docs) do + local credit = "" + -- Add button + if v.author and v.author ~= "" then credit = " (by "..v.author..")" end + local label = v.title..credit + menu = menu .. "," .. minetest.formspec_escape(label) + end + if i and brt.lists.docs[i] then description = brt.lists.docs[i]["description"] end + + -- Scripts menu + elseif ref == "scripts_index" then + local has_privs = brt.player_is_admin(player) + -- Loop through categories + for _,v in ipairs(brt.scripts_categories) do + + -- Skip admin category if player is not admin + if ( v[2] == "admin" and not has_privs ) then + else + -- Add button + local label = v[1] + menu = menu .. "," .. minetest.formspec_escape(label) + end + end + -- Get description + if i and brt.scripts_categories[i] then description = brt.scripts_categories[i][3] end + + -- Any scripts submenu + else + -- Loop through table containing scripts in categories + for _,v in ipairs(brt.lists.scripts[ref]) do + local credit = "" + -- Add button + if v.author and v.author ~= "" then credit = " (by "..v.author..")" end + local label = v.title..credit + menu = menu .. "," .. minetest.formspec_escape(label) + end + if i and brt.lists.scripts[ref][i] then description = brt.lists.scripts[ref][i]["description"] end + end + + + -- Close the textlist item + if i then menu = menu .. ';]' + else menu = menu .. ';1]' end + + -- Display description + if description then + menu = menu .. "textarea[0.5,5.7;5,2;; ".. minetest.formspec_escape(description) ..";]" + end + return menu +end + +-- Function display the formpec to the player +brt.showformspec = function(player,formspec,formname) + if not formname then formname = modname..":terminal" end + local player_name = player:get_player_name(); + if not player_name or player_name == "" then return; end + + minetest.show_formspec(player_name,formname,formspec) +end + +local deco = default.gui_bg .. default.gui_bg_img +local formspec_base = "size[7,7,true]" .. deco +local formspec_content +local formspec_end = "image_button_exit[6,6.5;0.8,0.8;power.png;poweroff;;false;false;power.png]" +-- tooltip[;;;] +brt.terminal = function(player,ref,i) + -- Set index to default + if not ref then ref = "main_index" end + -- if not i then i = 1 end + + -- Make or update files lists + if #brt.lists.docs < 1 then brt.lists_make() + else brt.lists_update() end + + + if type(ref) == "table" then formspec_content = brt.form.text(ref) + else formspec_content = brt.form.menu(player,ref,i) + end + local formspec = formspec_base .. formspec_content .. formspec_end + brt.showformspec(player, formspec) +end + +--______________________________________________________________ +-- +-- Part 3 : Interpret data from fromspec +--______________________________________________________________ + +minetest.register_on_player_receive_fields(function(player, formname, fields) + + if formname == modname..":terminal" then + print(dump(fields)) + local name = player:get_player_name() + + -- Get back to previous menu from file view + if fields.parent and fields.previous then + brt.terminal(player,fields.previous) + + -- Fields came from main menu + elseif fields.main_index then + -- Get event data + local event = minetest.explode_textlist_event(fields.main_index) + local i = event.index - 1 + + -- Double Click ( ignore first entry ) + if event.type == "DCL" and i ~= 0 then + -- move to selected menu + brt.terminal(player,brt.main_categories[i][2]) + -- Simple Click : Update description + else + brt.terminal(player,"main_index",i) + end + + -- fields came from docs index + elseif fields.robot_doc then + -- Get event data + local event = minetest.explode_textlist_event(fields.robot_doc) + local i = event.index - 1 + + -- Double Click + if event.type == "DCL" then + -- First entry : Back to main menu + if i == 0 then brt.terminal(player,"main_index") + else + -- Display selected file + local tab = brt.lists.docs[i] + tab.previous = "robot_doc" + tab.read = true + brt.terminal(player,tab) + end + -- Simple Click : Update description + else + brt.terminal(player,"robot_doc",i) + end + + -- fields came from scripts index + elseif fields.scripts_index then + -- Get event data + local event = minetest.explode_textlist_event(fields.scripts_index) + local i = event.index - 1 + + -- Double Click : + if event.type == "DCL" then + -- First entry : Back to main menu + if i == 0 then brt.terminal(player,"main_index") + -- Otherwise, move to selected categorie + else brt.terminal(player,brt.scripts_categories[i][2]) + end + -- Simple Click : Update description + else + brt.terminal(player,"scripts_index",i) + end + -- Fields were received from inside a categorie + else + -- Loop through existing categories to find the right one + for _,v in ipairs(brt.scripts_categories) do + -- Get categorie name + local c = v[2] + if fields[c] then + -- Get event data + local event = minetest.explode_textlist_event(fields[c]) + local i = event.index - 1 + + -- Double Click + if event.type == "DCL" then + -- First entry : Back to main menu + if i == 0 then brt.terminal(player,"scripts_index") + else + -- Display selected file + local tab = brt.lists.scripts[c][i] + tab.previous = v[2] + brt.terminal(player,tab) + --brt.terminal(player,brt.scripts_categories[i][2],i) + end + -- Simple Click : Update description + elseif i ~= 0 then + brt.terminal(player,c,i) + end + end + end + end + end + +end) + + +--______________________________________________________________ +-- +-- Part 4 : Use a block to display fromspec +--______________________________________________________________ + + +local texture = { + front = modname.."_front.png", + back = modname.."_side.png", + top = modname.."_side.png", + bottom = modname.."_side.png", + left = modname.."_side.png", + right = modname.."_side.png", +} + +minetest.register_node(modname..":terminal", + { + description = S("Basic robot terminal"), + paramtype2 = "facedir", + tiles = { + texture.top, texture.bottom, + texture.left, texture.right, + texture.back, texture.front + }, + sounds = default.node_sound_wood_defaults(), + groups = { choppy = 3, oddly_breakable_by_hand = 2 }, + on_rightclick = function(pos, node, player, itemstack, pointedThing) + brt.terminal(player); + end + }); + +-- Register Recipe for the terminal block +-- ( if default mod is present ) +if minetest.get_modpath("default") then + + -- Default recipe + local r = {} + r.c = "default:tin_ingot" + r.m = "default:bookshelf" + r.t = "default:mese_crystal_fragment" + r.d = "default:mese_crystal_fragment" + r.l = "" + r.r = "" + + -- Changes if mesecons + if minetest.get_modpath("mesecons") then + r.d = "mesecons:wire_00000000_off" + r.t = "mesecons:wire_00000000_off" + r.l = "mesecons:wire_00000000_off" + r.r = "mesecons:wire_00000000_off" + end + + --[[ other changes if dye + if minetest.get_modpath("dye") then + r.l = "mesecons:magenta" + r.t = "mesecons:green" + r.r = "mesecons:cyan" + end + --]] + + minetest.register_craft( + { + output = modname..":terminal", + recipe = { + { r.c, r.t, r.c}, + { r.l, r.m, r.r}, + { r.c, r.d, r.c}, + } + }); + +end + diff --git a/init_bokksave_attempt.lua b/init_bokksave_attempt.lua new file mode 100644 index 0000000..2ed6c71 --- /dev/null +++ b/init_bokksave_attempt.lua @@ -0,0 +1,641 @@ +-- This mod add a way to import programs for basic_robot +-- +-- TODO : Allow importing file from clients instead or in addition of worldpath + +local modname = minetest.get_current_modname() +local modpath = minetest.get_modpath(modname) +local worldpath = minetest.get_worldpath() + +-- Load support for intllib. +local S, NS = dofile(modpath.."/intllib.lua") +-- S = function(s) return s end + +-- Request write access into the world folder +local ie = minetest.request_insecure_environment() +assert(ie, "You must allow `basic_robot_terminal` in `secure.trusted_mods`") + +local private = { } +private.open = ie.io.open +private.mkdir = ie.core.mkdir + +local brt = {} +brt.loglevel = "info" +brt.main_categories = { + -- Denomination, Prefix, Description + {S("Documentation"), "robot_doc", S("Documentation about the robot usage.")}, + {S("Scripts"), "scripts_index", S("A library of scripts for the robot")}, +} +brt.scripts_categories = { + -- Denomination, Prefix, Description + {S("Exemples"), "exemple", S("A set of exemples scripts for the robot")}, + {S("Exemples (advanced)"), "exemple_advanced", S("A set of advanced exemples scripts for the robot")}, + {S("Testing"), "testing", S("Scripts that may not work and need testing")}, + {S("Admin"), "admin", S("Scripts that are requiering some admin privilege to run")}, + } +-- Filestructure into worldpath +brt.dir = worldpath.."/basic_robot" + +-- Pattern identifiyng files infos +brt.patterns = {} +brt.patterns.lua = { + { "title", "-- title : " }, + { "author", "-- author : " }, + { "description", "-- description : "}, +} + +--------------- +-- Functions -- +--------------- + +-- Send message to minetest log +brt.log = function(text,level) + if not level then level = brt.loglevel end + minetest.log(level,"["..modname.."] "..text) +end + +-- Send notification message to player +brt.notify = function(player, text) + local name = player:get_player_name() + minetest.sound_play({ name = modname.."_blop", gain = 0.2 }, { to_player = name }) + minetest.chat_send_player(name,text) +end + +-- Test if player is admin (has the privs priviliege) +brt.player_is_admin = function(player) + local name = player:get_player_name() + local privs = minetest.get_player_privs(name) + if privs and privs.privs then return true + else return false + end +end + +--______________________________________________________________ +-- +-- Part 1 : Import scripts from modpath into worlpath +--______________________________________________________________ + +-- Function : Copy content of a file into an other file +brt.copy = function(inpath,outpath) + + local input = private.open(inpath,"r") + local output = private.open(outpath,"w") + -- If file successfully opened ... + if input and output then + -- write file content to the one in worldpath + local content = input:read("*all") + output:write(content) + output:close() + input:close() + else + brt.log("Uable to copy content of "..inpath.." to "..outpath) + end +end + +local scpath = modpath.."/scripts" + +-- Create the basic_robot directory into the world folder +private.mkdir(brt.dir) + +-- Copy scripts files gathered in this mod +-- Including scripts by rnd contained in basic_robot +for _,v in ipairs(brt.scripts_categories) do + local n = 1 + while true do + local sc = scpath.."/"..v[2].."_"..n..".lua" + local fd = private.open(sc) + if not fd then break end + fd:close() + local dst = brt.dir.."/"..v[2].."_"..n..".lua" + brt.copy(sc,dst) + n = n + 1 + end +end + + + +--_____________________________________________________________________ +-- +-- Part 2 : Use a chatcommand to import a single script into inventory +--_____________________________________________________________________ + +--[[ +minetest.register_chatcommand("terminal", { + privs = { +-- server = true + }, + params = S(""), + description = S("Display the starter kit choice message"), + func = function(name, param) + if not param or param == "" then + param = name + end + local player = minetest.get_player_by_name(param) + brt.terminal(player) + end +}) +--]] + +--______________________________________________________________ +-- +-- Part 2 : Save a book to a file +--______________________________________________________________ + +brt.save_to_book = function(player,text,confirm) + local msg + + -- Check that there is something to save + if not text then + msg = S("Sorry, no content to save...") + brt.notify(player,msg + return + end + + -- Check that there is a book to save to + local inv = player:get_inventory() + local has_empty_book = inv:contains_item("main", "default:book") + if not has_empty_book then + msg = S("You need at least one empty book in your inventory") + brt.notify(player,msg + return + end + + -- Ask confirmation + if comfirm then + msg = S("Copy script into an empty book from your inventory ?") + local formspec = "size[7,3,true]" .. deco + .."textarea[0.4,0;6.4,2;;"..minetest.formspec_escape(msg)..";]" + .. "button_exit[1.5,2;1.5,1;confirm;"..S("Yes").."]" + .. "button_exit[4.5,2;1.5,1;abort;"..S("No").."]" + -- hidden area containing the text to copy + .."field[-1,-1;0,0;previous;;"..fields.script.."]" + local formname = modname..":confirm_save_to_book" + + brt.showformspec(player,formspec,formname) + return + + else -- Make the copy + local written_book = + inv:remove_item("main", "default:book") + if inv:room_for_item ("main", "default:book_written") then + add_item(listname, stack) + +end +--______________________________________________________________ +-- +-- Part 2 : Access scripts and doc using a formspec +--______________________________________________________________ +brt.lists = {} +brt.lists.scripts = {} +brt.lists.docs = {} + +local get_file_infos = function(rep, prefix, ext) + local lst = {} + local n = 1 + while true do + local sc = rep.."/"..prefix.."_"..n.."."..ext + local f = private.open(sc) + if not f then break end + lst[n] = {} + -- This whole thing is pretty heavy... + -- Can't I just get line 1,2,3 ? + local l = 1 + for line in f:lines() do + local patterns + -- Look fot set of patterns specific to this extention + if brt.patterns[ext] then patterns = brt.patterns[ext] + -- Or default to lua + else patterns = brt.patterns.lua end + + -- Look for pattern indicating infos + for _,v in ipairs(patterns) do + if string.match(line,v[2]) then + local k = v[1] + lst[n][k] = string.gsub(line,v[2],"") + break + end + end + -- Break the loop after 4 lines + l = l + 1 + if l > 4 then break end + end + f:close() + if not lst[n]["title"] then lst[n]["title"] = listname.."_"..n end + -- if not lst[n]["author"] then lst[n]["author"] = "" end + lst[n]["path"] = sc + n = n + 1 + end + return lst +end + +brt.lists_update = function() + -- Reinitialize the list of scripts + brt.lists.scripts = {} + + -- Update list of scripts to match content of the worldpath rep + for _,v in ipairs(brt.scripts_categories) do + local listname = v[2] + local lst = get_file_infos(brt.dir,listname,"lua") + brt.lists.scripts[listname] = lst + end +end + +brt.lists_make = function() + brt.lists_update() + local docpath = modpath.."/docs" + brt.lists.docs = get_file_infos(docpath,"robot_doc","md") +end + +local line_parse = function(line) + local op = "," + local pt = { + {"^# ","#FF9292,"}, + {"^## ","#9292DB,"}, + {"^### ","#92FF92,"}, + {"^#### ","#FFFF00,"}, + } + for _,v in ipairs(pt) do + if string.match(line,v[1]) then + line = string.gsub(line,v[1],"") + op = v[2] + break + end + end + line = op .. minetest.formspec_escape(line) + return line +end + +brt.form = {} + +-- Function : main form content displaying text +brt.form.text = function(ref) + local ta, filetext, filettable + -- Read file to get its content + local f = private.open(ref.path) + if not f then filetext = S("Sorry, there was a problem while trying to read the file...") end + -- If we just want to read the file + if ref.read then + -- Lets import it as a table + filettable = {} + maxlen = 59 + for line in f:lines() do + -- Test if string is too long + while true do + local len = string.len(line) + if len > maxlen then + -- Get a resized substring + local sub = string.sub(line,1,maxlen) + -- Match the longest sequence finishing with a space in this substring + local match = string.match(sub, "^(.*%s)") + -- If no match, ... split anyways + if not match then match = sub end + -- Get length of this new substring + local matchlen = string.len(match) + -- Add it to table + filettable[#filettable+1] = line_parse(match) + -- Refefine line + line = string.sub(line, matchlen + 1, len ) + else + -- TODO Remove comments at the beginning (keep them as tooltip) + -- even prepare it for formspec + filettable[#filettable+1] = line_parse(line) + break + end + end + end + print(dump(filettable)) + -- Otherwise we need be able to select and edit and copy and paste, so string it is + else filetext = f:read("*all") end + f:close() + + -- Display the text + -- Docs as readable text + if ref.read then + -- Table settings + ta = "tablecolumns[color;text,align=inline]" --,width=5 + .. "tableoptions[color=#FFF;background=#494949;highlight=#494949;border=true]" + .. "table[0,0;6.7,6;doc;" .. table.concat(filettable, ",") .. ",] " + + -- Script text into a textarea + else + ta = "textarea[0.4,0;6.7,6.7;script;;"..minetest.formspec_escape(filetext).."]" + end + -- Add a button to get back to the previous menu + ta = ta .. "image_button[1,6.5;0.8,0.8;parent.png;parent;;false;true;parent.png]" + -- Hidden field containing name of previous menu + ta = ta .. "field[-1,-1;0,0;previous;;"..ref.previous.."]" + + -- TODO : Save button for later implementation of a save to a book option + -- ta = ta .. "image_button[2,6.5;0.8,0.8;save.png;save;;false;true;save.png]" + + return ta +end + +-- Function : main form content displaying a menu +brt.form.menu = function(player,ref,i) + local description + if ref == "main_index" then bck = "." + else bck = ".." end + + -- Start the textlist item + local menu = "textlist[0,0;6.7,5.5;"..ref..";"..bck + local first = true + + -- Main menu + if ref == "main_index" then + -- Loop through categories + for _,v in ipairs(brt.main_categories) do + -- Add button + local label = v[1] + menu = menu .. "," .. minetest.formspec_escape(label) + end + -- Get description + if i and brt.main_categories[i] then description = brt.main_categories[i][3] end + + -- Documentation + elseif ref == "robot_doc" then + -- Loop through table containing scripts in categories + for _,v in ipairs(brt.lists.docs) do + local credit = "" + -- Add button + if v.author and v.author ~= "" then credit = " (by "..v.author..")" end + local label = v.title..credit + menu = menu .. "," .. minetest.formspec_escape(label) + end + if i and brt.lists.docs[i] then description = brt.lists.docs[i]["description"] end + + -- Scripts menu + elseif ref == "scripts_index" then + local has_privs = brt.player_is_admin(player) + -- Loop through categories + for _,v in ipairs(brt.scripts_categories) do + + -- Skip admin category if player is not admin + if ( v[2] == "admin" and not has_privs ) then + else + -- Add button + local label = v[1] + menu = menu .. "," .. minetest.formspec_escape(label) + end + end + -- Get description + if i and brt.scripts_categories[i] then description = brt.scripts_categories[i][3] end + + -- Any scripts submenu + else + -- Loop through table containing scripts in categories + for _,v in ipairs(brt.lists.scripts[ref]) do + local credit = "" + -- Add button + if v.author and v.author ~= "" then credit = " (by "..v.author..")" end + local label = v.title..credit + menu = menu .. "," .. minetest.formspec_escape(label) + end + if i and brt.lists.scripts[ref][i] then description = brt.lists.scripts[ref][i]["description"] end + end + + + -- Close the textlist item + if i then menu = menu .. ';]' + else menu = menu .. ';1]' end + + -- Display description + if description then + menu = menu .. "textarea[0.5,5.7;5,2;; ".. minetest.formspec_escape(description) ..";]" + end + return menu +end + +-- Function display the formpec to the player +brt.showformspec = function(player,formspec,formname) + if not formname then formname = modname..":terminal" end + local player_name = player:get_player_name(); + if not player_name or player_name == "" then return; end + + minetest.show_formspec(player_name,formname,formspec) +end + +local deco = default.gui_bg .. default.gui_bg_img +local formspec_base = "size[7,7,true]" .. deco +local formspec_content +local formspec_end = "image_button_exit[6,6.5;0.8,0.8;power.png;poweroff;;false;false;power.png]" +-- tooltip[;;;] +brt.terminal = function(player,ref,i) + -- Set index to default + if not ref then ref = "main_index" end + -- if not i then i = 1 end + + -- Make or update files lists + if #brt.lists.docs < 1 then brt.lists_make() + else brt.lists_update() end + + + if type(ref) == "table" then formspec_content = brt.form.text(ref) + else formspec_content = brt.form.menu(player,ref,i) + end + local formspec = formspec_base .. formspec_content .. formspec_end + brt.showformspec(player, formspec) +end + +--______________________________________________________________ +-- +-- Part 3 : Interpret data from fromspec +--______________________________________________________________ + +minetest.register_on_player_receive_fields(function(player, formname, fields) + + if formname == modname..":terminal" then + print(dump(fields)) + local name = player:get_player_name() + + -- Get back to previous menu from file view + if fields.parent and fields.previous then + brt.terminal(player,fields.previous) + + -- TODO save text into an empty book + elseif fields.save_to_book then + --local msg = S("Sorry, the 'save to book' functionnality hasn't been implemented yet...") + -- .."\n"..S("... just use the old CRTL+C, CTRL+V, for now") + --brt.notify(player,msg) + brt.save_to_book(player,fields) + + -- Fields came from main menu + elseif fields.main_index then + -- Get event data + local event = minetest.explode_textlist_event(fields.main_index) + local i = event.index - 1 + + -- Double Click ( ignore first entry ) + if event.type == "DCL" and i ~= 0 then + -- move to selected menu + brt.terminal(player,brt.main_categories[i][2]) + -- Simple Click : Update description + else + brt.terminal(player,"main_index",i) + end + + -- fields came from docs index + elseif fields.robot_doc then + -- Get event data + local event = minetest.explode_textlist_event(fields.robot_doc) + local i = event.index - 1 + + -- Double Click + if event.type == "DCL" then + -- First entry : Back to main menu + if i == 0 then brt.terminal(player,"main_index") + else + -- Display selected file + local tab = brt.lists.docs[i] + tab.previous = "robot_doc" + tab.read = true + brt.terminal(player,tab) + end + -- Simple Click : Update description + else + brt.terminal(player,"robot_doc",i) + end + + -- fields came from scripts index + elseif fields.scripts_index then + -- Get event data + local event = minetest.explode_textlist_event(fields.scripts_index) + local i = event.index - 1 + + -- Double Click : + if event.type == "DCL" then + -- First entry : Back to main menu + if i == 0 then brt.terminal(player,"main_index") + -- Otherwise, move to selected categorie + else brt.terminal(player,brt.scripts_categories[i][2]) + end + -- Simple Click : Update description + else + brt.terminal(player,"scripts_index",i) + end + -- Fields were received from inside a categorie + else + -- Loop through existing categories to find the right one + for _,v in ipairs(brt.scripts_categories) do + -- Get categorie name + local c = v[2] + if fields[c] then + -- Get event data + local event = minetest.explode_textlist_event(fields[c]) + local i = event.index - 1 + + -- Double Click + if event.type == "DCL" then + -- First entry : Back to main menu + if i == 0 then brt.terminal(player,"scripts_index") + else + -- Display selected file + local tab = brt.lists.scripts[c][i] + tab.previous = v[2] + brt.terminal(player,tab) + --brt.terminal(player,brt.scripts_categories[i][2],i) + end + -- Simple Click : Update description + elseif i ~= 0 then + brt.terminal(player,c,i) + end + end + end + end + end + +end) + +--______________________________________________________________ +-- +-- Part 4 : Register a chat command tool +--______________________________________________________________ + +-- TODO : chat command to list available scripts and to display one, or copy to a book +--[[ +-- Chat command : display the formspec +minetest.register_chatcommand("terminal", { + privs = { +-- server = true + }, + params = S(""), + description = S("Display the starter kit choice message"), + func = function(name, param) + if not param or param == "" then + param = name + end + local player = minetest.get_player_by_name(param) + brt.terminal(player) + end +}) +--]] +--______________________________________________________________ +-- +-- Part 5 : Use a block to display fromspec +--______________________________________________________________ + + +local texture = { + front = modname.."_front.png", + back = modname.."_side.png", + top = modname.."_side.png", + bottom = modname.."_side.png", + left = modname.."_side.png", + right = modname.."_side.png", +} + +minetest.register_node(modname..":terminal", + { + description = S("Basic robot terminal"), + paramtype2 = "facedir", + tiles = { + texture.top, texture.bottom, + texture.left, texture.right, + texture.back, texture.front + }, + sounds = default.node_sound_wood_defaults(), + groups = { choppy = 3, oddly_breakable_by_hand = 2 }, + on_rightclick = function(pos, node, player, itemstack, pointedThing) + brt.terminal(player); + end + }); + +-- Register Recipe for the terminal block +-- ( if default mod is present ) +if minetest.get_modpath("default") then + + -- Default recipe + local r = {} + r.c = "default:tin_ingot" + r.m = "default:bookshelf" + r.t = "default:mese_crystal_fragment" + r.d = "default:mese_crystal_fragment" + r.l = "" + r.r = "" + + -- Changes if mesecons + if minetest.get_modpath("mesecons") then + r.d = "mesecons:wire_00000000_off" + r.t = "mesecons:wire_00000000_off" + r.l = "mesecons:wire_00000000_off" + r.r = "mesecons:wire_00000000_off" + end + + --[[ other changes if dye + if minetest.get_modpath("dye") then + r.l = "mesecons:magenta" + r.t = "mesecons:green" + r.r = "mesecons:cyan" + end + --]] + + minetest.register_craft( + { + output = modname..":terminal", + recipe = { + { r.c, r.t, r.c}, + { r.l, r.m, r.r}, + { r.c, r.d, r.c}, + } + }); + +end diff --git a/intllib.lua b/intllib.lua new file mode 100644 index 0000000..6669d72 --- /dev/null +++ b/intllib.lua @@ -0,0 +1,45 @@ + +-- Fallback functions for when `intllib` is not installed. +-- Code released under Unlicense . + +-- Get the latest version of this file at: +-- https://raw.githubusercontent.com/minetest-mods/intllib/master/lib/intllib.lua + +local function format(str, ...) + local args = { ... } + local function repl(escape, open, num, close) + if escape == "" then + local replacement = tostring(args[tonumber(num)]) + if open == "" then + replacement = replacement..close + end + return replacement + else + return "@"..open..num..close + end + end + return (str:gsub("(@?)@(%(?)(%d+)(%)?)", repl)) +end + +local gettext, ngettext +if minetest.get_modpath("intllib") then + if intllib.make_gettext_pair then + -- New method using gettext. + gettext, ngettext = intllib.make_gettext_pair() + else + -- Old method using text files. + gettext = intllib.Getter() + end +end + +-- Fill in missing functions. + +gettext = gettext or function(msgid, ...) + return format(msgid, ...) +end + +ngettext = ngettext or function(msgid, msgid_plural, n, ...) + return format(n==1 and msgid or msgid_plural, ...) +end + +return gettext, ngettext diff --git a/models/mobs_bunny.b3d b/models/mobs_bunny.b3d new file mode 100644 index 0000000000000000000000000000000000000000..ee053bd46eaed3828aa426a08a0ac8da2b03c43f GIT binary patch literal 106937 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 Jp>3$p{spek82$hN literal 0 HcmV?d00001 diff --git a/models/mobs_chicken.x b/models/mobs_chicken.x new file mode 100644 index 0000000..165853b --- /dev/null +++ b/models/mobs_chicken.x @@ -0,0 +1,3080 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <9E415A43-7BA6-4a73-8743-B73D47E88476> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cube { + FrameTransformMatrix { + -0.002650, 2.304885, 0.000000, 0.000000, + -1.520651,-0.001748, 0.000000, 0.000000, + 0.000000, 0.000000, 1.758614, 0.000000, + 0.354515,-0.719130,-3.788555, 1.000000;; + } + Mesh { // Cube mesh + 24; + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 0.999999;-1.000001; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube normals + 6; + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube normals + MeshTextureCoords { // Cube UV coordinates + 24; + 0.187458; 0.469285;, + 0.187516; 0.718185;, + 0.093794; 0.718074;, + 0.093577; 0.469471;, + 0.187161; 0.469748;, + 0.187019; 0.717794;, + 0.093433; 0.717243;, + 0.093810; 0.469592;, + 0.187200; 0.467961;, + 0.187371; 0.281833;, + 0.093981; 0.281523;, + 0.093522; 0.467806;, + 0.000800; 0.468800;, + 0.000800; 0.718400;, + 0.094400; 0.718400;, + 0.094400; 0.472000;, + 0.096800; 0.720000;, + 0.092800; 0.472000;, + 0.186400; 0.472000;, + 0.184800; 0.721600;, + 0.281845; 0.718277;, + 0.375655; 0.718520;, + 0.375922; 0.468568;, + 0.281578; 0.467791;; + } // End of Cube UV coordinates + } // End of Cube mesh + } // End of Cube + Frame Cube_001 { + FrameTransformMatrix { + -0.002126, 1.849057, 0.000000, 0.000000, + -0.303403,-0.000349, 0.000000, 0.000000, + 0.000000, 0.000000, 1.119535, 0.000000, + -1.442512,-0.721196,-3.382473, 1.000000;; + } + Mesh { // Cube_001 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_001 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_001 normals + MeshTextureCoords { // Cube_001 UV coordinates + 24; + 0.485160; 0.577655;, + 0.499899; 0.577812;, + 0.499780; 0.449481;, + 0.484961; 0.449400;, + 0.281362; 0.717243;, + 0.374656; 0.717311;, + 0.374949; 0.469412;, + 0.281362; 0.469412;, + 0.484600; 0.577388;, + 0.499984; 0.578585;, + 0.499989; 0.449607;, + 0.484856; 0.449526;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.469169; 0.591810;, + 0.483617; 0.592573;, + 0.484272; 0.407377;, + 0.469260; 0.406957;, + 0.468865; 0.593264;, + 0.484227; 0.592921;, + 0.484322; 0.406143;, + 0.468808; 0.406088;; + } // End of Cube_001 UV coordinates + } // End of Cube_001 mesh + } // End of Cube_001 + Frame Cube_002 { + FrameTransformMatrix { + -0.002126, 1.849057, 0.000000, 0.000000, + -0.303403,-0.000349, 0.000000, 0.000000, + 0.000000, 0.000000, 1.119535, 0.000000, + 2.179102,-0.717032,-3.382473, 1.000000;; + } + Mesh { // Cube_002 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_002 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_002 normals + MeshTextureCoords { // Cube_002 UV coordinates + 24; + 0.500148; 0.449045;, + 0.500148; 0.578125;, + 0.484676; 0.577911;, + 0.484656; 0.449178;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.500033; 0.577792;, + 0.500033; 0.449334;, + 0.484663; 0.449334;, + 0.484556; 0.577385;, + 0.094033; 0.468841;, + 0.000081; 0.469386;, + 0.000574; 0.717044;, + 0.094516; 0.717044;, + 0.484740; 0.406723;, + 0.484658; 0.592301;, + 0.469486; 0.591518;, + 0.469334; 0.407152;, + 0.484410; 0.406336;, + 0.484289; 0.592994;, + 0.468918; 0.593342;, + 0.468958; 0.406362;; + } // End of Cube_002 UV coordinates + } // End of Cube_002 mesh + } // End of Cube_002 + Frame Cube_003 { + FrameTransformMatrix { + -0.000956, 0.831443, 0.000000, 0.000000, + -0.926812,-0.001065, 0.000000, 0.000000, + 0.000000, 0.000000, 1.022895, 0.000000, + 0.351826, 1.619185,-1.628760, 1.000000;; + } + Mesh { // Cube_003 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_003 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_003 normals + MeshTextureCoords { // Cube_003 UV coordinates + 24; + 0.154404; 0.218376;, + 0.218735; 0.218625;, + 0.218713; 0.093714;, + 0.154376; 0.093663;, + 0.152629; 0.093922;, + 0.109379; 0.093834;, + 0.109412; 0.265530;, + 0.152965; 0.264233;, + 0.046899; 0.093794;, + 0.109429; 0.093766;, + 0.109563; 0.265560;, + 0.046909; 0.265601;, + 0.046918; 0.093830;, + -0.000083; 0.093979;, + 0.000136; 0.216677;, + 0.046632; 0.264942;, + 0.151039; 0.211523;, + 0.217283; 0.215363;, + 0.218563; 0.094720;, + 0.151039; 0.094720;, + 0.046938; 0.093408;, + 0.109453; 0.093376;, + 0.109485; 0.000000;, + 0.046980;-0.000074;; + } // End of Cube_003 UV coordinates + } // End of Cube_003 mesh + } // End of Cube_003 + Frame Cube_004 { + FrameTransformMatrix { + -0.000543, 0.472154, 0.000000, 0.000000, + -0.647698,-0.000745, 0.000000, 0.000000, + 0.000000, 0.000000, 0.278316, 0.000000, + 0.350341, 2.911684,-1.628760, 1.000000;; + } + Mesh { // Cube_004 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_004 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_004 normals + MeshTextureCoords { // Cube_004 UV coordinates + 24; + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.314239; 0.121923;, + 0.352962; 0.121923;, + 0.352322; 0.061440;, + 0.314239; 0.061440;, + 0.219852; 0.122804;, + 0.371773; 0.121524;, + 0.372444; 0.063539;, + 0.221147; 0.063570;, + 0.219519; 0.120643;, + 0.251843; 0.121923;, + 0.251843; 0.061440;, + 0.220159; 0.061440;, + 0.250938; 0.123492;, + 0.313419; 0.123189;, + 0.313343; 0.062044;, + 0.250674; 0.062914;, + 0.250879; 0.118083;, + 0.312002; 0.125763;, + 0.312002; 0.000000;, + 0.250879; 0.001280;; + } // End of Cube_004 UV coordinates + } // End of Cube_004 mesh + } // End of Cube_004 + Frame Cube_005 { + FrameTransformMatrix { + -0.000233, 0.177148,-0.083175, 0.000000, + -0.182964,-0.000199, 0.000089, 0.000000, + -0.000018, 0.331883, 0.706854, 0.000000, + -0.444974,-0.897076,-6.140595, 1.000000;; + } + Mesh { // Cube_005 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_005 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_005 normals + MeshTextureCoords { // Cube_005 UV coordinates + 24; + 0.562545; 0.249274;, + 0.578051; 0.249274;, + 0.578251; 0.093826;, + 0.562680; 0.093846;, + 0.562741; 0.248997;, + 0.578417; 0.249333;, + 0.578081; 0.093809;, + 0.562925; 0.093657;, + 0.562593; 0.249811;, + 0.578251; 0.249543;, + 0.578289; 0.093385;, + 0.562776; 0.093309;, + 0.563034; 0.249832;, + 0.578271; 0.249907;, + 0.578337; 0.093826;, + 0.562680; 0.093481;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.000000; 0.000000;; + } // End of Cube_005 UV coordinates + } // End of Cube_005 mesh + } // End of Cube_005 + Frame Cube_006 { + FrameTransformMatrix { + -0.001204, 0.913408,-0.428865, 0.000000, + -0.367400,-0.000400, 0.000179, 0.000000, + -0.000001, 0.019120, 0.040723, 0.000000, + -0.448732,-0.894848,-7.016967, 1.000000;; + } + Mesh { // Cube_006 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_006 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_006 normals + MeshTextureCoords { // Cube_006 UV coordinates + 24; + 0.433591; 0.105473;, + 0.472659; 0.101567;, + 0.482425; 0.031250;, + 0.429685; 0.023437;, + 0.458646; 0.079413;, + 0.484107; 0.077316;, + 0.482389; 0.004482;, + 0.459629; 0.002360;, + 0.433591; 0.117192;, + 0.468753; 0.128911;, + 0.480471; 0.023437;, + 0.429685; 0.019531;, + 0.423826; 0.109380;, + 0.494143; 0.121098;, + 0.494143; 0.031250;, + 0.429685; 0.015625;, + 0.500093; 0.000042;, + 0.547074; 0.000013;, + 0.546814; 0.093790;, + 0.499973; 0.093907;, + 0.499950; 0.093802;, + 0.546898; 0.093571;, + 0.547061; 0.000207;, + 0.499950; 0.000267;; + } // End of Cube_006 UV coordinates + } // End of Cube_006 mesh + } // End of Cube_006 + Frame Cube_007 { + FrameTransformMatrix { + -0.001207, 0.908440, 0.439292, 0.000000, + -0.367400,-0.000398,-0.000186, 0.000000, + 0.000001,-0.019585, 0.040501, 0.000000, + 0.982119, 0.101678,-6.751587, 1.000000;; + } + Mesh { // Cube_007 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_007 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_007 normals + MeshTextureCoords { // Cube_007 UV coordinates + 24; + 0.428123; 0.115630;, + 0.468753; 0.121880;, + 0.481253; 0.015625;, + 0.421873; 0.018750;, + 0.428123; 0.103130;, + 0.470316; 0.125005;, + 0.478128; 0.012500;, + 0.423435; 0.009375;, + 0.437497; 0.081255;, + 0.460941; 0.078130;, + 0.475003; 0.018750;, + 0.431248; 0.018750;, + 0.445310; 0.071880;, + 0.485940; 0.071880;, + 0.478128; 0.028125;, + 0.437497; 0.021875;, + 0.500130; 0.000650;, + 0.546959; 0.000394;, + 0.547322; 0.093483;, + 0.500171; 0.093483;, + 0.500136; 0.093746;, + 0.547061; 0.093723;, + 0.547233;-0.000009;, + 0.500190;-0.000074;; + } // End of Cube_007 UV coordinates + } // End of Cube_007 mesh + } // End of Cube_007 + Frame Cube_008 { + FrameTransformMatrix { + -0.000234, 0.176184, 0.085197, 0.000000, + -0.182964,-0.000198,-0.000093, 0.000000, + 0.000012,-0.339952, 0.703009, 0.000000, + 0.985878,-0.553180,-6.165302, 1.000000;; + } + Mesh { // Cube_008 mesh + 24; + -1.000000;-1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + -1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;; + 6; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;; + MeshNormals { // Cube_008 normals + 6; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;; + 6; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;; + } // End of Cube_008 normals + MeshTextureCoords { // Cube_008 UV coordinates + 24; + 0.562674; 0.249014;, + 0.577997; 0.249551;, + 0.578031; 0.093826;, + 0.562743; 0.093879;, + 0.562724; 0.249635;, + 0.578307; 0.249382;, + 0.577962; 0.093849;, + 0.562964; 0.094000;, + 0.562750; 0.248913;, + 0.578375; 0.249266;, + 0.578138; 0.093987;, + 0.562649; 0.093825;, + 0.563014; 0.248270;, + 0.578194; 0.248189;, + 0.577523; 0.093815;, + 0.563011; 0.093717;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.560998; 0.086000;, + 0.000000; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.000000;, + 0.559998; 0.090000;; + } // End of Cube_008 UV coordinates + } // End of Cube_008 mesh + } // End of Cube_008 +} // End of Root + +AnimationSet Global { + Animation { + {Cube} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 2.304886, 1.520652, 1.758614;;, + 1;3; 2.304886, 1.520652, 1.758614;;, + 2;3; 2.304886, 1.520652, 1.758614;;, + 3;3; 2.304886, 1.520652, 1.758614;;, + 4;3; 2.304886, 1.520652, 1.758614;;, + 5;3; 2.304886, 1.520652, 1.758614;;, + 6;3; 2.304886, 1.520652, 1.758614;;, + 7;3; 2.304886, 1.520652, 1.758614;;, + 8;3; 2.304886, 1.520652, 1.758614;;, + 9;3; 2.304886, 1.520652, 1.758614;;, + 10;3; 2.304886, 1.520652, 1.758614;;, + 11;3; 2.304886, 1.520652, 1.758614;;, + 12;3; 2.304886, 1.520652, 1.758614;;, + 13;3; 2.304886, 1.520652, 1.758614;;, + 14;3; 2.304886, 1.520652, 1.758614;;, + 15;3; 2.304886, 1.520652, 1.758614;;, + 16;3; 2.304886, 1.520652, 1.758614;;, + 17;3; 2.304886, 1.520652, 1.758614;;, + 18;3; 2.304886, 1.520652, 1.758614;;, + 19;3; 2.304886, 1.520652, 1.758614;;, + 20;3; 2.304886, 1.520652, 1.758614;;, + 21;3; 2.304886, 1.520652, 1.758614;;, + 22;3; 2.304886, 1.520652, 1.758614;;, + 23;3; 2.304886, 1.520652, 1.758614;;, + 24;3; 2.304886, 1.520652, 1.758614;;, + 25;3; 2.304886, 1.520652, 1.758614;;, + 26;3; 2.304886, 1.520652, 1.758614;;, + 27;3; 2.304886, 1.520652, 1.758614;;, + 28;3; 2.304886, 1.520652, 1.758614;;, + 29;3; 2.304886, 1.520652, 1.758614;;, + 30;3; 2.304886, 1.520652, 1.758614;;, + 31;3; 2.304886, 1.520652, 1.758614;;, + 32;3; 2.304886, 1.520652, 1.758614;;, + 33;3; 2.304886, 1.520652, 1.758614;;, + 34;3; 2.304886, 1.520652, 1.758614;;, + 35;3; 2.304886, 1.520652, 1.758614;;, + 36;3; 2.304886, 1.520652, 1.758614;;, + 37;3; 2.304886, 1.520652, 1.758614;;, + 38;3; 2.304886, 1.520652, 1.758614;;, + 39;3; 2.304886, 1.520652, 1.758614;;, + 40;3; 2.304886, 1.520652, 1.758614;;, + 41;3; 2.304886, 1.520652, 1.758614;;, + 42;3; 2.304886, 1.520652, 1.758614;;, + 43;3; 2.304886, 1.520652, 1.758614;;, + 44;3; 2.304886, 1.520652, 1.758614;;, + 45;3; 2.304886, 1.520652, 1.758614;;, + 46;3; 2.304886, 1.520652, 1.758614;;, + 47;3; 2.304886, 1.520652, 1.758614;;, + 48;3; 2.304886, 1.520652, 1.758614;;, + 49;3; 2.304886, 1.520652, 1.758614;;, + 50;3; 2.304886, 1.520652, 1.758614;;, + 51;3; 2.304886, 1.520652, 1.758614;;, + 52;3; 2.304886, 1.520652, 1.758614;;, + 53;3; 2.304886, 1.520652, 1.758614;;, + 54;3; 2.304886, 1.520652, 1.758614;;, + 55;3; 2.304886, 1.520652, 1.758614;;, + 56;3; 2.304886, 1.520652, 1.758614;;, + 57;3; 2.304886, 1.520652, 1.758614;;, + 58;3; 2.304886, 1.520652, 1.758614;;, + 59;3; 2.304886, 1.520652, 1.758614;;, + 60;3; 2.304886, 1.520652, 1.758614;;, + 61;3; 2.304886, 1.520652, 1.758614;;, + 62;3; 2.304886, 1.520652, 1.758614;;, + 63;3; 2.304886, 1.520652, 1.758614;;, + 64;3; 2.304886, 1.520652, 1.758614;;, + 65;3; 2.304886, 1.520652, 1.758614;;, + 66;3; 2.304886, 1.520652, 1.758614;;, + 67;3; 2.304886, 1.520652, 1.758614;;, + 68;3; 2.304886, 1.520652, 1.758614;;, + 69;3; 2.304886, 1.520652, 1.758614;;, + 70;3; 2.304886, 1.520652, 1.758614;;, + 71;3; 2.304886, 1.520652, 1.758614;;, + 72;3; 2.304886, 1.520652, 1.758614;;, + 73;3; 2.304886, 1.520652, 1.758614;;, + 74;3; 2.304886, 1.520652, 1.758614;;, + 75;3; 2.304886, 1.520652, 1.758614;;, + 76;3; 2.304886, 1.520652, 1.758614;;, + 77;3; 2.304886, 1.520652, 1.758614;;, + 78;3; 2.304886, 1.520652, 1.758614;;, + 79;3; 2.304886, 1.520652, 1.758614;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.354515,-0.719130,-3.788555;;, + 1;3; 0.354515,-0.719130,-3.788555;;, + 2;3; 0.354515,-0.719130,-3.788555;;, + 3;3; 0.354515,-0.719130,-3.788555;;, + 4;3; 0.354515,-0.719130,-3.788555;;, + 5;3; 0.354515,-0.719130,-3.788555;;, + 6;3; 0.354515,-0.719130,-3.788555;;, + 7;3; 0.354515,-0.719130,-3.788555;;, + 8;3; 0.354515,-0.719130,-3.788555;;, + 9;3; 0.354515,-0.719130,-3.788555;;, + 10;3; 0.354515,-0.719130,-3.788555;;, + 11;3; 0.354515,-0.719130,-3.788555;;, + 12;3; 0.354515,-0.719130,-3.788555;;, + 13;3; 0.354515,-0.719130,-3.788555;;, + 14;3; 0.354515,-0.719130,-3.788555;;, + 15;3; 0.354515,-0.719130,-3.788555;;, + 16;3; 0.354515,-0.719130,-3.788555;;, + 17;3; 0.354515,-0.719130,-3.788555;;, + 18;3; 0.354515,-0.719130,-3.788555;;, + 19;3; 0.354515,-0.719130,-3.788555;;, + 20;3; 0.354515,-0.719130,-3.788555;;, + 21;3; 0.354515,-0.719130,-3.788555;;, + 22;3; 0.354515,-0.719130,-3.788555;;, + 23;3; 0.354515,-0.719130,-3.788555;;, + 24;3; 0.354515,-0.719130,-3.788555;;, + 25;3; 0.354515,-0.719130,-3.788555;;, + 26;3; 0.354515,-0.719130,-3.788555;;, + 27;3; 0.354515,-0.719130,-3.788555;;, + 28;3; 0.354515,-0.719130,-3.788555;;, + 29;3; 0.354515,-0.719130,-3.788555;;, + 30;3; 0.354515,-0.719130,-3.788555;;, + 31;3; 0.354515,-0.719130,-3.788555;;, + 32;3; 0.354515,-0.719130,-3.788555;;, + 33;3; 0.354515,-0.719130,-3.788555;;, + 34;3; 0.354515,-0.719130,-3.788555;;, + 35;3; 0.354515,-0.719130,-3.788555;;, + 36;3; 0.354515,-0.719130,-3.788555;;, + 37;3; 0.354515,-0.719130,-3.788555;;, + 38;3; 0.354515,-0.719130,-3.788555;;, + 39;3; 0.354515,-0.719130,-3.788555;;, + 40;3; 0.354515,-0.719130,-3.788555;;, + 41;3; 0.354515,-0.719130,-3.788555;;, + 42;3; 0.354515,-0.719130,-3.788555;;, + 43;3; 0.354515,-0.719130,-3.788555;;, + 44;3; 0.354515,-0.719130,-3.788555;;, + 45;3; 0.354515,-0.719130,-3.788555;;, + 46;3; 0.354515,-0.719130,-3.788555;;, + 47;3; 0.354515,-0.719130,-3.788555;;, + 48;3; 0.354515,-0.719130,-3.788555;;, + 49;3; 0.354515,-0.719130,-3.788555;;, + 50;3; 0.354515,-0.719130,-3.788555;;, + 51;3; 0.354515,-0.719130,-3.788555;;, + 52;3; 0.354515,-0.719130,-3.788555;;, + 53;3; 0.354515,-0.719130,-3.788555;;, + 54;3; 0.354515,-0.719130,-3.788555;;, + 55;3; 0.354515,-0.719130,-3.788555;;, + 56;3; 0.354515,-0.719130,-3.788555;;, + 57;3; 0.354515,-0.719130,-3.788555;;, + 58;3; 0.354515,-0.719130,-3.788555;;, + 59;3; 0.354515,-0.719130,-3.788555;;, + 60;3; 0.354515,-0.719130,-3.788555;;, + 61;3; 0.354515,-0.719130,-3.788555;;, + 62;3; 0.354515,-0.719130,-3.788555;;, + 63;3; 0.354515,-0.719130,-3.788555;;, + 64;3; 0.354515,-0.719130,-3.788555;;, + 65;3; 0.354515,-0.719130,-3.788555;;, + 66;3; 0.354515,-0.719130,-3.788555;;, + 67;3; 0.354515,-0.719130,-3.788555;;, + 68;3; 0.354515,-0.719130,-3.788555;;, + 69;3; 0.354515,-0.719130,-3.788555;;, + 70;3; 0.354515,-0.719130,-3.788555;;, + 71;3; 0.354515,-0.719130,-3.788555;;, + 72;3; 0.354515,-0.719130,-3.788555;;, + 73;3; 0.354515,-0.719130,-3.788555;;, + 74;3; 0.354515,-0.719130,-3.788555;;, + 75;3; 0.354515,-0.719130,-3.788555;;, + 76;3; 0.354515,-0.719130,-3.788555;;, + 77;3; 0.354515,-0.719130,-3.788555;;, + 78;3; 0.354515,-0.719130,-3.788555;;, + 79;3; 0.354515,-0.719130,-3.788555;;; + } + } + Animation { + {Cube_001} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 1.849058, 0.303403, 1.119535;;, + 1;3; 1.849058, 0.303403, 1.119535;;, + 2;3; 1.849058, 0.303403, 1.119535;;, + 3;3; 1.849058, 0.303403, 1.119535;;, + 4;3; 1.849058, 0.303403, 1.119535;;, + 5;3; 1.849058, 0.303403, 1.119535;;, + 6;3; 1.849058, 0.303403, 1.119535;;, + 7;3; 1.849058, 0.303403, 1.119535;;, + 8;3; 1.849058, 0.303403, 1.119535;;, + 9;3; 1.849058, 0.303403, 1.119535;;, + 10;3; 1.849058, 0.303403, 1.119535;;, + 11;3; 1.849058, 0.303403, 1.119535;;, + 12;3; 1.849058, 0.303403, 1.119535;;, + 13;3; 1.849058, 0.303403, 1.119535;;, + 14;3; 1.849058, 0.303403, 1.119535;;, + 15;3; 1.849058, 0.303403, 1.119535;;, + 16;3; 1.849058, 0.303403, 1.119535;;, + 17;3; 1.849058, 0.303403, 1.119535;;, + 18;3; 1.849058, 0.303403, 1.119535;;, + 19;3; 1.849058, 0.303403, 1.119535;;, + 20;3; 1.849058, 0.303403, 1.119535;;, + 21;3; 1.849058, 0.303403, 1.119535;;, + 22;3; 1.849058, 0.303403, 1.119535;;, + 23;3; 1.849058, 0.303403, 1.119535;;, + 24;3; 1.849058, 0.303403, 1.119535;;, + 25;3; 1.849058, 0.303403, 1.119535;;, + 26;3; 1.849058, 0.303403, 1.119535;;, + 27;3; 1.849058, 0.303403, 1.119535;;, + 28;3; 1.849058, 0.303403, 1.119535;;, + 29;3; 1.849058, 0.303403, 1.119535;;, + 30;3; 1.849058, 0.303403, 1.119535;;, + 31;3; 1.849058, 0.303403, 1.119535;;, + 32;3; 1.849058, 0.303403, 1.119535;;, + 33;3; 1.849058, 0.303403, 1.119535;;, + 34;3; 1.849058, 0.303403, 1.119535;;, + 35;3; 1.849058, 0.303403, 1.119535;;, + 36;3; 1.849058, 0.303403, 1.119535;;, + 37;3; 1.849058, 0.303403, 1.119535;;, + 38;3; 1.849058, 0.303403, 1.119535;;, + 39;3; 1.849058, 0.303403, 1.119535;;, + 40;3; 1.849058, 0.303403, 1.119535;;, + 41;3; 1.849058, 0.303403, 1.119535;;, + 42;3; 1.849058, 0.303403, 1.119535;;, + 43;3; 1.849058, 0.303403, 1.119535;;, + 44;3; 1.849058, 0.303403, 1.119535;;, + 45;3; 1.849058, 0.303403, 1.119535;;, + 46;3; 1.849058, 0.303403, 1.119535;;, + 47;3; 1.849058, 0.303403, 1.119535;;, + 48;3; 1.849058, 0.303403, 1.119535;;, + 49;3; 1.849058, 0.303403, 1.119535;;, + 50;3; 1.849058, 0.303403, 1.119535;;, + 51;3; 1.849058, 0.303403, 1.119535;;, + 52;3; 1.849058, 0.303403, 1.119535;;, + 53;3; 1.849058, 0.303403, 1.119535;;, + 54;3; 1.849058, 0.303403, 1.119535;;, + 55;3; 1.849058, 0.303403, 1.119535;;, + 56;3; 1.849058, 0.303403, 1.119535;;, + 57;3; 1.849058, 0.303403, 1.119535;;, + 58;3; 1.849058, 0.303403, 1.119535;;, + 59;3; 1.849058, 0.303403, 1.119535;;, + 60;3; 1.849058, 0.303403, 1.119535;;, + 61;3; 1.849058, 0.303403, 1.119535;;, + 62;3; 1.849058, 0.303403, 1.119535;;, + 63;3; 1.849058, 0.303403, 1.119535;;, + 64;3; 1.849058, 0.303403, 1.119535;;, + 65;3; 1.849058, 0.303403, 1.119535;;, + 66;3; 1.849058, 0.303403, 1.119535;;, + 67;3; 1.849058, 0.303403, 1.119535;;, + 68;3; 1.849058, 0.303403, 1.119535;;, + 69;3; 1.849058, 0.303403, 1.119535;;, + 70;3; 1.849058, 0.303403, 1.119535;;, + 71;3; 1.849058, 0.303403, 1.119535;;, + 72;3; 1.849058, 0.303403, 1.119535;;, + 73;3; 1.849058, 0.303403, 1.119535;;, + 74;3; 1.849058, 0.303403, 1.119535;;, + 75;3; 1.849058, 0.303403, 1.119535;;, + 76;3; 1.849058, 0.303403, 1.119535;;, + 77;3; 1.849058, 0.303403, 1.119535;;, + 78;3; 1.849058, 0.303403, 1.119535;;, + 79;3; 1.849058, 0.303403, 1.119535;;; + } + AnimationKey { // Position + 2; + 80; + 0;3;-1.442512,-0.721196,-3.382473;;, + 1;3;-1.442512,-0.721196,-3.382473;;, + 2;3;-1.442512,-0.721196,-3.382473;;, + 3;3;-1.442512,-0.721196,-3.382473;;, + 4;3;-1.442512,-0.721196,-3.382473;;, + 5;3;-1.442512,-0.721196,-3.382473;;, + 6;3;-1.442512,-0.721196,-3.382473;;, + 7;3;-1.442512,-0.721196,-3.382473;;, + 8;3;-1.442512,-0.721196,-3.382473;;, + 9;3;-1.442512,-0.721196,-3.382473;;, + 10;3;-1.442512,-0.721196,-3.382473;;, + 11;3;-1.442512,-0.721196,-3.382473;;, + 12;3;-1.442512,-0.721196,-3.382473;;, + 13;3;-1.442512,-0.721196,-3.382473;;, + 14;3;-1.442512,-0.721196,-3.382473;;, + 15;3;-1.442512,-0.721196,-3.382473;;, + 16;3;-1.442512,-0.721196,-3.382473;;, + 17;3;-1.442512,-0.721196,-3.382473;;, + 18;3;-1.442512,-0.721196,-3.382473;;, + 19;3;-1.442512,-0.721196,-3.382473;;, + 20;3;-1.442512,-0.721196,-3.382473;;, + 21;3;-1.442512,-0.721196,-3.382473;;, + 22;3;-1.442512,-0.721196,-3.382473;;, + 23;3;-1.442512,-0.721196,-3.382473;;, + 24;3;-1.442512,-0.721196,-3.382473;;, + 25;3;-1.442512,-0.721196,-3.382473;;, + 26;3;-1.442512,-0.721196,-3.382473;;, + 27;3;-1.442512,-0.721196,-3.382473;;, + 28;3;-1.442512,-0.721196,-3.382473;;, + 29;3;-1.442512,-0.721196,-3.382473;;, + 30;3;-1.442512,-0.721196,-3.382473;;, + 31;3;-1.442512,-0.721196,-3.382473;;, + 32;3;-1.442512,-0.721196,-3.382473;;, + 33;3;-1.442512,-0.721196,-3.382473;;, + 34;3;-1.442512,-0.721196,-3.382473;;, + 35;3;-1.442512,-0.721196,-3.382473;;, + 36;3;-1.442512,-0.721196,-3.382473;;, + 37;3;-1.442512,-0.721196,-3.382473;;, + 38;3;-1.442512,-0.721196,-3.382473;;, + 39;3;-1.442512,-0.721196,-3.382473;;, + 40;3;-1.442512,-0.721196,-3.382473;;, + 41;3;-1.442512,-0.721196,-3.382473;;, + 42;3;-1.442512,-0.721196,-3.382473;;, + 43;3;-1.442512,-0.721196,-3.382473;;, + 44;3;-1.442512,-0.721196,-3.382473;;, + 45;3;-1.442512,-0.721196,-3.382473;;, + 46;3;-1.442512,-0.721196,-3.382473;;, + 47;3;-1.442512,-0.721196,-3.382473;;, + 48;3;-1.442512,-0.721196,-3.382473;;, + 49;3;-1.442512,-0.721196,-3.382473;;, + 50;3;-1.442512,-0.721196,-3.382473;;, + 51;3;-1.442512,-0.721196,-3.382473;;, + 52;3;-1.442512,-0.721196,-3.382473;;, + 53;3;-1.442512,-0.721196,-3.382473;;, + 54;3;-1.442512,-0.721196,-3.382473;;, + 55;3;-1.442512,-0.721196,-3.382473;;, + 56;3;-1.442512,-0.721196,-3.382473;;, + 57;3;-1.442512,-0.721196,-3.382473;;, + 58;3;-1.442512,-0.721196,-3.382473;;, + 59;3;-1.442512,-0.721196,-3.382473;;, + 60;3;-1.442512,-0.721196,-3.382473;;, + 61;3;-1.442512,-0.721196,-3.382473;;, + 62;3;-1.442512,-0.721196,-3.382473;;, + 63;3;-1.442512,-0.721196,-3.382473;;, + 64;3;-1.442512,-0.721196,-3.382473;;, + 65;3;-1.442512,-0.721196,-3.382473;;, + 66;3;-1.442512,-0.721196,-3.382473;;, + 67;3;-1.442512,-0.721196,-3.382473;;, + 68;3;-1.442512,-0.721196,-3.382473;;, + 69;3;-1.442512,-0.721196,-3.382473;;, + 70;3;-1.442512,-0.721196,-3.382473;;, + 71;3;-1.442512,-0.721196,-3.382473;;, + 72;3;-1.442512,-0.721196,-3.382473;;, + 73;3;-1.442512,-0.721196,-3.382473;;, + 74;3;-1.442512,-0.721196,-3.382473;;, + 75;3;-1.442512,-0.721196,-3.382473;;, + 76;3;-1.442512,-0.721196,-3.382473;;, + 77;3;-1.442512,-0.721196,-3.382473;;, + 78;3;-1.442512,-0.721196,-3.382473;;, + 79;3;-1.442512,-0.721196,-3.382473;;; + } + } + Animation { + {Cube_002} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 1.849058, 0.303403, 1.119535;;, + 1;3; 1.849058, 0.303403, 1.119535;;, + 2;3; 1.849058, 0.303403, 1.119535;;, + 3;3; 1.849058, 0.303403, 1.119535;;, + 4;3; 1.849058, 0.303403, 1.119535;;, + 5;3; 1.849058, 0.303403, 1.119535;;, + 6;3; 1.849058, 0.303403, 1.119535;;, + 7;3; 1.849058, 0.303403, 1.119535;;, + 8;3; 1.849058, 0.303403, 1.119535;;, + 9;3; 1.849058, 0.303403, 1.119535;;, + 10;3; 1.849058, 0.303403, 1.119535;;, + 11;3; 1.849058, 0.303403, 1.119535;;, + 12;3; 1.849058, 0.303403, 1.119535;;, + 13;3; 1.849058, 0.303403, 1.119535;;, + 14;3; 1.849058, 0.303403, 1.119535;;, + 15;3; 1.849058, 0.303403, 1.119535;;, + 16;3; 1.849058, 0.303403, 1.119535;;, + 17;3; 1.849058, 0.303403, 1.119535;;, + 18;3; 1.849058, 0.303403, 1.119535;;, + 19;3; 1.849058, 0.303403, 1.119535;;, + 20;3; 1.849058, 0.303403, 1.119535;;, + 21;3; 1.849058, 0.303403, 1.119535;;, + 22;3; 1.849058, 0.303403, 1.119535;;, + 23;3; 1.849058, 0.303403, 1.119535;;, + 24;3; 1.849058, 0.303403, 1.119535;;, + 25;3; 1.849058, 0.303403, 1.119535;;, + 26;3; 1.849058, 0.303403, 1.119535;;, + 27;3; 1.849058, 0.303403, 1.119535;;, + 28;3; 1.849058, 0.303403, 1.119535;;, + 29;3; 1.849058, 0.303403, 1.119535;;, + 30;3; 1.849058, 0.303403, 1.119535;;, + 31;3; 1.849058, 0.303403, 1.119535;;, + 32;3; 1.849058, 0.303403, 1.119535;;, + 33;3; 1.849058, 0.303403, 1.119535;;, + 34;3; 1.849058, 0.303403, 1.119535;;, + 35;3; 1.849058, 0.303403, 1.119535;;, + 36;3; 1.849058, 0.303403, 1.119535;;, + 37;3; 1.849058, 0.303403, 1.119535;;, + 38;3; 1.849058, 0.303403, 1.119535;;, + 39;3; 1.849058, 0.303403, 1.119535;;, + 40;3; 1.849058, 0.303403, 1.119535;;, + 41;3; 1.849058, 0.303403, 1.119535;;, + 42;3; 1.849058, 0.303403, 1.119535;;, + 43;3; 1.849058, 0.303403, 1.119535;;, + 44;3; 1.849058, 0.303403, 1.119535;;, + 45;3; 1.849058, 0.303403, 1.119535;;, + 46;3; 1.849058, 0.303403, 1.119535;;, + 47;3; 1.849058, 0.303403, 1.119535;;, + 48;3; 1.849058, 0.303403, 1.119535;;, + 49;3; 1.849058, 0.303403, 1.119535;;, + 50;3; 1.849058, 0.303403, 1.119535;;, + 51;3; 1.849058, 0.303403, 1.119535;;, + 52;3; 1.849058, 0.303403, 1.119535;;, + 53;3; 1.849058, 0.303403, 1.119535;;, + 54;3; 1.849058, 0.303403, 1.119535;;, + 55;3; 1.849058, 0.303403, 1.119535;;, + 56;3; 1.849058, 0.303403, 1.119535;;, + 57;3; 1.849058, 0.303403, 1.119535;;, + 58;3; 1.849058, 0.303403, 1.119535;;, + 59;3; 1.849058, 0.303403, 1.119535;;, + 60;3; 1.849058, 0.303403, 1.119535;;, + 61;3; 1.849058, 0.303403, 1.119535;;, + 62;3; 1.849058, 0.303403, 1.119535;;, + 63;3; 1.849058, 0.303403, 1.119535;;, + 64;3; 1.849058, 0.303403, 1.119535;;, + 65;3; 1.849058, 0.303403, 1.119535;;, + 66;3; 1.849058, 0.303403, 1.119535;;, + 67;3; 1.849058, 0.303403, 1.119535;;, + 68;3; 1.849058, 0.303403, 1.119535;;, + 69;3; 1.849058, 0.303403, 1.119535;;, + 70;3; 1.849058, 0.303403, 1.119535;;, + 71;3; 1.849058, 0.303403, 1.119535;;, + 72;3; 1.849058, 0.303403, 1.119535;;, + 73;3; 1.849058, 0.303403, 1.119535;;, + 74;3; 1.849058, 0.303403, 1.119535;;, + 75;3; 1.849058, 0.303403, 1.119535;;, + 76;3; 1.849058, 0.303403, 1.119535;;, + 77;3; 1.849058, 0.303403, 1.119535;;, + 78;3; 1.849058, 0.303403, 1.119535;;, + 79;3; 1.849058, 0.303403, 1.119535;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 2.179102,-0.717032,-3.382473;;, + 1;3; 2.179102,-0.717032,-3.382473;;, + 2;3; 2.179102,-0.717032,-3.382473;;, + 3;3; 2.179102,-0.717032,-3.382473;;, + 4;3; 2.179102,-0.717032,-3.382473;;, + 5;3; 2.179102,-0.717032,-3.382473;;, + 6;3; 2.179102,-0.717032,-3.382473;;, + 7;3; 2.179102,-0.717032,-3.382473;;, + 8;3; 2.179102,-0.717032,-3.382473;;, + 9;3; 2.179102,-0.717032,-3.382473;;, + 10;3; 2.179102,-0.717032,-3.382473;;, + 11;3; 2.179102,-0.717032,-3.382473;;, + 12;3; 2.179102,-0.717032,-3.382473;;, + 13;3; 2.179102,-0.717032,-3.382473;;, + 14;3; 2.179102,-0.717032,-3.382473;;, + 15;3; 2.179102,-0.717032,-3.382473;;, + 16;3; 2.179102,-0.717032,-3.382473;;, + 17;3; 2.179102,-0.717032,-3.382473;;, + 18;3; 2.179102,-0.717032,-3.382473;;, + 19;3; 2.179102,-0.717032,-3.382473;;, + 20;3; 2.179102,-0.717032,-3.382473;;, + 21;3; 2.179102,-0.717032,-3.382473;;, + 22;3; 2.179102,-0.717032,-3.382473;;, + 23;3; 2.179102,-0.717032,-3.382473;;, + 24;3; 2.179102,-0.717032,-3.382473;;, + 25;3; 2.179102,-0.717032,-3.382473;;, + 26;3; 2.179102,-0.717032,-3.382473;;, + 27;3; 2.179102,-0.717032,-3.382473;;, + 28;3; 2.179102,-0.717032,-3.382473;;, + 29;3; 2.179102,-0.717032,-3.382473;;, + 30;3; 2.179102,-0.717032,-3.382473;;, + 31;3; 2.179102,-0.717032,-3.382473;;, + 32;3; 2.179102,-0.717032,-3.382473;;, + 33;3; 2.179102,-0.717032,-3.382473;;, + 34;3; 2.179102,-0.717032,-3.382473;;, + 35;3; 2.179102,-0.717032,-3.382473;;, + 36;3; 2.179102,-0.717032,-3.382473;;, + 37;3; 2.179102,-0.717032,-3.382473;;, + 38;3; 2.179102,-0.717032,-3.382473;;, + 39;3; 2.179102,-0.717032,-3.382473;;, + 40;3; 2.179102,-0.717032,-3.382473;;, + 41;3; 2.179102,-0.717032,-3.382473;;, + 42;3; 2.179102,-0.717032,-3.382473;;, + 43;3; 2.179102,-0.717032,-3.382473;;, + 44;3; 2.179102,-0.717032,-3.382473;;, + 45;3; 2.179102,-0.717032,-3.382473;;, + 46;3; 2.179102,-0.717032,-3.382473;;, + 47;3; 2.179102,-0.717032,-3.382473;;, + 48;3; 2.179102,-0.717032,-3.382473;;, + 49;3; 2.179102,-0.717032,-3.382473;;, + 50;3; 2.179102,-0.717032,-3.382473;;, + 51;3; 2.179102,-0.717032,-3.382473;;, + 52;3; 2.179102,-0.717032,-3.382473;;, + 53;3; 2.179102,-0.717032,-3.382473;;, + 54;3; 2.179102,-0.717032,-3.382473;;, + 55;3; 2.179102,-0.717032,-3.382473;;, + 56;3; 2.179102,-0.717032,-3.382473;;, + 57;3; 2.179102,-0.717032,-3.382473;;, + 58;3; 2.179102,-0.717032,-3.382473;;, + 59;3; 2.179102,-0.717032,-3.382473;;, + 60;3; 2.179102,-0.717032,-3.382473;;, + 61;3; 2.179102,-0.717032,-3.382473;;, + 62;3; 2.179102,-0.717032,-3.382473;;, + 63;3; 2.179102,-0.717032,-3.382473;;, + 64;3; 2.179102,-0.717032,-3.382473;;, + 65;3; 2.179102,-0.717032,-3.382473;;, + 66;3; 2.179102,-0.717032,-3.382473;;, + 67;3; 2.179102,-0.717032,-3.382473;;, + 68;3; 2.179102,-0.717032,-3.382473;;, + 69;3; 2.179102,-0.717032,-3.382473;;, + 70;3; 2.179102,-0.717032,-3.382473;;, + 71;3; 2.179102,-0.717032,-3.382473;;, + 72;3; 2.179102,-0.717032,-3.382473;;, + 73;3; 2.179102,-0.717032,-3.382473;;, + 74;3; 2.179102,-0.717032,-3.382473;;, + 75;3; 2.179102,-0.717032,-3.382473;;, + 76;3; 2.179102,-0.717032,-3.382473;;, + 77;3; 2.179102,-0.717032,-3.382473;;, + 78;3; 2.179102,-0.717032,-3.382473;;, + 79;3; 2.179102,-0.717032,-3.382473;;; + } + } + Animation { + {Cube_003} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 0.831444, 0.926812, 1.022895;;, + 1;3; 0.831444, 0.926812, 1.022895;;, + 2;3; 0.831444, 0.926812, 1.022895;;, + 3;3; 0.831444, 0.926812, 1.022895;;, + 4;3; 0.831444, 0.926812, 1.022895;;, + 5;3; 0.831444, 0.926812, 1.022895;;, + 6;3; 0.831444, 0.926812, 1.022895;;, + 7;3; 0.831444, 0.926812, 1.022895;;, + 8;3; 0.831444, 0.926812, 1.022895;;, + 9;3; 0.831444, 0.926812, 1.022895;;, + 10;3; 0.831444, 0.926812, 1.022895;;, + 11;3; 0.831444, 0.926812, 1.022895;;, + 12;3; 0.831444, 0.926812, 1.022895;;, + 13;3; 0.831444, 0.926812, 1.022895;;, + 14;3; 0.831444, 0.926812, 1.022895;;, + 15;3; 0.831444, 0.926812, 1.022895;;, + 16;3; 0.831444, 0.926812, 1.022895;;, + 17;3; 0.831444, 0.926812, 1.022895;;, + 18;3; 0.831444, 0.926812, 1.022895;;, + 19;3; 0.831444, 0.926812, 1.022895;;, + 20;3; 0.831444, 0.926812, 1.022895;;, + 21;3; 0.831444, 0.926812, 1.022895;;, + 22;3; 0.831444, 0.926812, 1.022895;;, + 23;3; 0.831444, 0.926812, 1.022895;;, + 24;3; 0.831444, 0.926812, 1.022895;;, + 25;3; 0.831444, 0.926812, 1.022895;;, + 26;3; 0.831444, 0.926812, 1.022895;;, + 27;3; 0.831444, 0.926812, 1.022895;;, + 28;3; 0.831444, 0.926812, 1.022895;;, + 29;3; 0.831444, 0.926812, 1.022895;;, + 30;3; 0.831444, 0.926812, 1.022895;;, + 31;3; 0.831444, 0.926812, 1.022895;;, + 32;3; 0.831444, 0.926812, 1.022895;;, + 33;3; 0.831444, 0.926812, 1.022895;;, + 34;3; 0.831444, 0.926812, 1.022895;;, + 35;3; 0.831444, 0.926812, 1.022895;;, + 36;3; 0.831444, 0.926812, 1.022895;;, + 37;3; 0.831444, 0.926812, 1.022895;;, + 38;3; 0.831444, 0.926812, 1.022895;;, + 39;3; 0.831444, 0.926812, 1.022895;;, + 40;3; 0.831444, 0.926812, 1.022895;;, + 41;3; 0.831444, 0.926812, 1.022895;;, + 42;3; 0.831444, 0.926812, 1.022895;;, + 43;3; 0.831444, 0.926812, 1.022895;;, + 44;3; 0.831444, 0.926812, 1.022895;;, + 45;3; 0.831444, 0.926812, 1.022895;;, + 46;3; 0.831444, 0.926812, 1.022895;;, + 47;3; 0.831444, 0.926812, 1.022895;;, + 48;3; 0.831444, 0.926812, 1.022895;;, + 49;3; 0.831444, 0.926812, 1.022895;;, + 50;3; 0.831444, 0.926812, 1.022895;;, + 51;3; 0.831444, 0.926812, 1.022895;;, + 52;3; 0.831444, 0.926812, 1.022895;;, + 53;3; 0.831444, 0.926812, 1.022895;;, + 54;3; 0.831444, 0.926812, 1.022895;;, + 55;3; 0.831444, 0.926812, 1.022895;;, + 56;3; 0.831444, 0.926812, 1.022895;;, + 57;3; 0.831444, 0.926812, 1.022895;;, + 58;3; 0.831444, 0.926812, 1.022895;;, + 59;3; 0.831444, 0.926812, 1.022895;;, + 60;3; 0.831444, 0.926812, 1.022895;;, + 61;3; 0.831444, 0.926812, 1.022895;;, + 62;3; 0.831444, 0.926812, 1.022895;;, + 63;3; 0.831444, 0.926812, 1.022895;;, + 64;3; 0.831444, 0.926812, 1.022895;;, + 65;3; 0.831444, 0.926812, 1.022895;;, + 66;3; 0.831444, 0.926812, 1.022895;;, + 67;3; 0.831444, 0.926812, 1.022895;;, + 68;3; 0.831444, 0.926812, 1.022895;;, + 69;3; 0.831444, 0.926812, 1.022895;;, + 70;3; 0.831444, 0.926812, 1.022895;;, + 71;3; 0.831444, 0.926812, 1.022895;;, + 72;3; 0.831444, 0.926812, 1.022895;;, + 73;3; 0.831444, 0.926812, 1.022895;;, + 74;3; 0.831444, 0.926812, 1.022895;;, + 75;3; 0.831444, 0.926812, 1.022895;;, + 76;3; 0.831444, 0.926812, 1.022895;;, + 77;3; 0.831444, 0.926812, 1.022895;;, + 78;3; 0.831444, 0.926812, 1.022895;;, + 79;3; 0.831444, 0.926812, 1.022895;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.351826, 1.619185,-1.628760;;, + 1;3; 0.351826, 1.619185,-1.628760;;, + 2;3; 0.351826, 1.619185,-1.628760;;, + 3;3; 0.351826, 1.619185,-1.628760;;, + 4;3; 0.351826, 1.619185,-1.628760;;, + 5;3; 0.351826, 1.619185,-1.628760;;, + 6;3; 0.351826, 1.619185,-1.628760;;, + 7;3; 0.351826, 1.619185,-1.628760;;, + 8;3; 0.351826, 1.619185,-1.628760;;, + 9;3; 0.351826, 1.619185,-1.628760;;, + 10;3; 0.351826, 1.619185,-1.628760;;, + 11;3; 0.351826, 1.619185,-1.628760;;, + 12;3; 0.351826, 1.619185,-1.628760;;, + 13;3; 0.351826, 1.619185,-1.628760;;, + 14;3; 0.351826, 1.619185,-1.628760;;, + 15;3; 0.351826, 1.619185,-1.628760;;, + 16;3; 0.351826, 1.619185,-1.628760;;, + 17;3; 0.351826, 1.619185,-1.628760;;, + 18;3; 0.351826, 1.619185,-1.628760;;, + 19;3; 0.351826, 1.619185,-1.628760;;, + 20;3; 0.351826, 1.619185,-1.628760;;, + 21;3; 0.351826, 1.619185,-1.628760;;, + 22;3; 0.351826, 1.619185,-1.628760;;, + 23;3; 0.351826, 1.619185,-1.628760;;, + 24;3; 0.351826, 1.619185,-1.628760;;, + 25;3; 0.351826, 1.619185,-1.628760;;, + 26;3; 0.351826, 1.619185,-1.628760;;, + 27;3; 0.351826, 1.619185,-1.628760;;, + 28;3; 0.351826, 1.619185,-1.628760;;, + 29;3; 0.351826, 1.619185,-1.628760;;, + 30;3; 0.351826, 1.619185,-1.628760;;, + 31;3; 0.351826, 1.619185,-1.628760;;, + 32;3; 0.351826, 1.619185,-1.628760;;, + 33;3; 0.351826, 1.619185,-1.628760;;, + 34;3; 0.351826, 1.619185,-1.628760;;, + 35;3; 0.351826, 1.619185,-1.628760;;, + 36;3; 0.351826, 1.619185,-1.628760;;, + 37;3; 0.351826, 1.619185,-1.628760;;, + 38;3; 0.351826, 1.619185,-1.628760;;, + 39;3; 0.351826, 1.619185,-1.628760;;, + 40;3; 0.351826, 1.619185,-1.628760;;, + 41;3; 0.351826, 1.619185,-1.628760;;, + 42;3; 0.351826, 1.619185,-1.628760;;, + 43;3; 0.351826, 1.619185,-1.628760;;, + 44;3; 0.351826, 1.619185,-1.628760;;, + 45;3; 0.351826, 1.619185,-1.628760;;, + 46;3; 0.351826, 1.619185,-1.628760;;, + 47;3; 0.351826, 1.619185,-1.628760;;, + 48;3; 0.351826, 1.619185,-1.628760;;, + 49;3; 0.351826, 1.619185,-1.628760;;, + 50;3; 0.351826, 1.619185,-1.628760;;, + 51;3; 0.351826, 1.619185,-1.628760;;, + 52;3; 0.351826, 1.619185,-1.628760;;, + 53;3; 0.351826, 1.619185,-1.628760;;, + 54;3; 0.351826, 1.619185,-1.628760;;, + 55;3; 0.351826, 1.619185,-1.628760;;, + 56;3; 0.351826, 1.619185,-1.628760;;, + 57;3; 0.351826, 1.619185,-1.628760;;, + 58;3; 0.351826, 1.619185,-1.628760;;, + 59;3; 0.351826, 1.619185,-1.628760;;, + 60;3; 0.351826, 1.619185,-1.628760;;, + 61;3; 0.351826, 1.619185,-1.628760;;, + 62;3; 0.351826, 1.619185,-1.628760;;, + 63;3; 0.351826, 1.619185,-1.628760;;, + 64;3; 0.351826, 1.619185,-1.628760;;, + 65;3; 0.351826, 1.619185,-1.628760;;, + 66;3; 0.351826, 1.619185,-1.628760;;, + 67;3; 0.351826, 1.619185,-1.628760;;, + 68;3; 0.351826, 1.619185,-1.628760;;, + 69;3; 0.351826, 1.619185,-1.628760;;, + 70;3; 0.351826, 1.619185,-1.628760;;, + 71;3; 0.351826, 1.619185,-1.628760;;, + 72;3; 0.351826, 1.619185,-1.628760;;, + 73;3; 0.351826, 1.619185,-1.628760;;, + 74;3; 0.351826, 1.619185,-1.628760;;, + 75;3; 0.351826, 1.619185,-1.628760;;, + 76;3; 0.351826, 1.619185,-1.628760;;, + 77;3; 0.351826, 1.619185,-1.628760;;, + 78;3; 0.351826, 1.619185,-1.628760;;, + 79;3; 0.351826, 1.619185,-1.628760;;; + } + } + Animation { + {Cube_004} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 2;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 3;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 4;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 5;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 6;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 7;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 8;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 9;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 10;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 11;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 12;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 13;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 14;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 15;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 16;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 17;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 18;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 19;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 20;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 21;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 22;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 23;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 24;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 25;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 26;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 27;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 28;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 29;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 30;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 31;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 32;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 33;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 34;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 35;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 36;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 37;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 38;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 39;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 40;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 41;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 42;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 43;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 44;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 45;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 46;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 47;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 48;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 49;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 50;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 51;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 52;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 53;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 54;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 55;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 56;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 57;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 58;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 59;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 60;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 61;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 62;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 63;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 64;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 65;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 66;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 67;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 68;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 69;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 70;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 71;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 72;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 73;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 74;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 75;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 76;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 77;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 78;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 79;4;-0.706700, 0.000000, 0.000000, 0.707513;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 0.472154, 0.647698, 0.278316;;, + 1;3; 0.472154, 0.647698, 0.278316;;, + 2;3; 0.472154, 0.647698, 0.278316;;, + 3;3; 0.472154, 0.647698, 0.278316;;, + 4;3; 0.472154, 0.647698, 0.278316;;, + 5;3; 0.472154, 0.647698, 0.278316;;, + 6;3; 0.472154, 0.647698, 0.278316;;, + 7;3; 0.472154, 0.647698, 0.278316;;, + 8;3; 0.472154, 0.647698, 0.278316;;, + 9;3; 0.472154, 0.647698, 0.278316;;, + 10;3; 0.472154, 0.647698, 0.278316;;, + 11;3; 0.472154, 0.647698, 0.278316;;, + 12;3; 0.472154, 0.647698, 0.278316;;, + 13;3; 0.472154, 0.647698, 0.278316;;, + 14;3; 0.472154, 0.647698, 0.278316;;, + 15;3; 0.472154, 0.647698, 0.278316;;, + 16;3; 0.472154, 0.647698, 0.278316;;, + 17;3; 0.472154, 0.647698, 0.278316;;, + 18;3; 0.472154, 0.647698, 0.278316;;, + 19;3; 0.472154, 0.647698, 0.278316;;, + 20;3; 0.472154, 0.647698, 0.278316;;, + 21;3; 0.472154, 0.647698, 0.278316;;, + 22;3; 0.472154, 0.647698, 0.278316;;, + 23;3; 0.472154, 0.647698, 0.278316;;, + 24;3; 0.472154, 0.647698, 0.278316;;, + 25;3; 0.472154, 0.647698, 0.278316;;, + 26;3; 0.472154, 0.647698, 0.278316;;, + 27;3; 0.472154, 0.647698, 0.278316;;, + 28;3; 0.472154, 0.647698, 0.278316;;, + 29;3; 0.472154, 0.647698, 0.278316;;, + 30;3; 0.472154, 0.647698, 0.278316;;, + 31;3; 0.472154, 0.647698, 0.278316;;, + 32;3; 0.472154, 0.647698, 0.278316;;, + 33;3; 0.472154, 0.647698, 0.278316;;, + 34;3; 0.472154, 0.647698, 0.278316;;, + 35;3; 0.472154, 0.647698, 0.278316;;, + 36;3; 0.472154, 0.647698, 0.278316;;, + 37;3; 0.472154, 0.647698, 0.278316;;, + 38;3; 0.472154, 0.647698, 0.278316;;, + 39;3; 0.472154, 0.647698, 0.278316;;, + 40;3; 0.472154, 0.647698, 0.278316;;, + 41;3; 0.472154, 0.647698, 0.278316;;, + 42;3; 0.472154, 0.647698, 0.278316;;, + 43;3; 0.472154, 0.647698, 0.278316;;, + 44;3; 0.472154, 0.647698, 0.278316;;, + 45;3; 0.472154, 0.647698, 0.278316;;, + 46;3; 0.472154, 0.647698, 0.278316;;, + 47;3; 0.472154, 0.647698, 0.278316;;, + 48;3; 0.472154, 0.647698, 0.278316;;, + 49;3; 0.472154, 0.647698, 0.278316;;, + 50;3; 0.472154, 0.647698, 0.278316;;, + 51;3; 0.472154, 0.647698, 0.278316;;, + 52;3; 0.472154, 0.647698, 0.278316;;, + 53;3; 0.472154, 0.647698, 0.278316;;, + 54;3; 0.472154, 0.647698, 0.278316;;, + 55;3; 0.472154, 0.647698, 0.278316;;, + 56;3; 0.472154, 0.647698, 0.278316;;, + 57;3; 0.472154, 0.647698, 0.278316;;, + 58;3; 0.472154, 0.647698, 0.278316;;, + 59;3; 0.472154, 0.647698, 0.278316;;, + 60;3; 0.472154, 0.647698, 0.278316;;, + 61;3; 0.472154, 0.647698, 0.278316;;, + 62;3; 0.472154, 0.647698, 0.278316;;, + 63;3; 0.472154, 0.647698, 0.278316;;, + 64;3; 0.472154, 0.647698, 0.278316;;, + 65;3; 0.472154, 0.647698, 0.278316;;, + 66;3; 0.472154, 0.647698, 0.278316;;, + 67;3; 0.472154, 0.647698, 0.278316;;, + 68;3; 0.472154, 0.647698, 0.278316;;, + 69;3; 0.472154, 0.647698, 0.278316;;, + 70;3; 0.472154, 0.647698, 0.278316;;, + 71;3; 0.472154, 0.647698, 0.278316;;, + 72;3; 0.472154, 0.647698, 0.278316;;, + 73;3; 0.472154, 0.647698, 0.278316;;, + 74;3; 0.472154, 0.647698, 0.278316;;, + 75;3; 0.472154, 0.647698, 0.278316;;, + 76;3; 0.472154, 0.647698, 0.278316;;, + 77;3; 0.472154, 0.647698, 0.278316;;, + 78;3; 0.472154, 0.647698, 0.278316;;, + 79;3; 0.472154, 0.647698, 0.278316;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.350341, 2.911684,-1.628760;;, + 1;3; 0.350341, 2.911684,-1.628760;;, + 2;3; 0.350341, 2.911684,-1.628760;;, + 3;3; 0.350341, 2.911684,-1.628760;;, + 4;3; 0.350341, 2.911684,-1.628760;;, + 5;3; 0.350341, 2.911684,-1.628760;;, + 6;3; 0.350341, 2.911684,-1.628760;;, + 7;3; 0.350341, 2.911684,-1.628760;;, + 8;3; 0.350341, 2.911684,-1.628760;;, + 9;3; 0.350341, 2.911684,-1.628760;;, + 10;3; 0.350341, 2.911684,-1.628760;;, + 11;3; 0.350341, 2.911684,-1.628760;;, + 12;3; 0.350341, 2.911684,-1.628760;;, + 13;3; 0.350341, 2.911684,-1.628760;;, + 14;3; 0.350341, 2.911684,-1.628760;;, + 15;3; 0.350341, 2.911684,-1.628760;;, + 16;3; 0.350341, 2.911684,-1.628760;;, + 17;3; 0.350341, 2.911684,-1.628760;;, + 18;3; 0.350341, 2.911684,-1.628760;;, + 19;3; 0.350341, 2.911684,-1.628760;;, + 20;3; 0.350341, 2.911684,-1.628760;;, + 21;3; 0.350341, 2.911684,-1.628760;;, + 22;3; 0.350341, 2.911684,-1.628760;;, + 23;3; 0.350341, 2.911684,-1.628760;;, + 24;3; 0.350341, 2.911684,-1.628760;;, + 25;3; 0.350341, 2.911684,-1.628760;;, + 26;3; 0.350341, 2.911684,-1.628760;;, + 27;3; 0.350341, 2.911684,-1.628760;;, + 28;3; 0.350341, 2.911684,-1.628760;;, + 29;3; 0.350341, 2.911684,-1.628760;;, + 30;3; 0.350341, 2.911684,-1.628760;;, + 31;3; 0.350341, 2.911684,-1.628760;;, + 32;3; 0.350341, 2.911684,-1.628760;;, + 33;3; 0.350341, 2.911684,-1.628760;;, + 34;3; 0.350341, 2.911684,-1.628760;;, + 35;3; 0.350341, 2.911684,-1.628760;;, + 36;3; 0.350341, 2.911684,-1.628760;;, + 37;3; 0.350341, 2.911684,-1.628760;;, + 38;3; 0.350341, 2.911684,-1.628760;;, + 39;3; 0.350341, 2.911684,-1.628760;;, + 40;3; 0.350341, 2.911684,-1.628760;;, + 41;3; 0.350341, 2.911684,-1.628760;;, + 42;3; 0.350341, 2.911684,-1.628760;;, + 43;3; 0.350341, 2.911684,-1.628760;;, + 44;3; 0.350341, 2.911684,-1.628760;;, + 45;3; 0.350341, 2.911684,-1.628760;;, + 46;3; 0.350341, 2.911684,-1.628760;;, + 47;3; 0.350341, 2.911684,-1.628760;;, + 48;3; 0.350341, 2.911684,-1.628760;;, + 49;3; 0.350341, 2.911684,-1.628760;;, + 50;3; 0.350341, 2.911684,-1.628760;;, + 51;3; 0.350341, 2.911684,-1.628760;;, + 52;3; 0.350341, 2.911684,-1.628760;;, + 53;3; 0.350341, 2.911684,-1.628760;;, + 54;3; 0.350341, 2.911684,-1.628760;;, + 55;3; 0.350341, 2.911684,-1.628760;;, + 56;3; 0.350341, 2.911684,-1.628760;;, + 57;3; 0.350341, 2.911684,-1.628760;;, + 58;3; 0.350341, 2.911684,-1.628760;;, + 59;3; 0.350341, 2.911684,-1.628760;;, + 60;3; 0.350341, 2.911684,-1.628760;;, + 61;3; 0.350341, 2.911684,-1.628760;;, + 62;3; 0.350341, 2.911684,-1.628760;;, + 63;3; 0.350341, 2.911684,-1.628760;;, + 64;3; 0.350341, 2.911684,-1.628760;;, + 65;3; 0.350341, 2.911684,-1.628760;;, + 66;3; 0.350341, 2.911684,-1.628760;;, + 67;3; 0.350341, 2.911684,-1.628760;;, + 68;3; 0.350341, 2.911684,-1.628760;;, + 69;3; 0.350341, 2.911684,-1.628760;;, + 70;3; 0.350341, 2.911684,-1.628760;;, + 71;3; 0.350341, 2.911684,-1.628760;;, + 72;3; 0.350341, 2.911684,-1.628760;;, + 73;3; 0.350341, 2.911684,-1.628760;;, + 74;3; 0.350341, 2.911684,-1.628760;;, + 75;3; 0.350341, 2.911684,-1.628760;;, + 76;3; 0.350341, 2.911684,-1.628760;;, + 77;3; 0.350341, 2.911684,-1.628760;;, + 78;3; 0.350341, 2.911684,-1.628760;;, + 79;3; 0.350341, 2.911684,-1.628760;;; + } + } + Animation { + {Cube_005} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706699,-0.000970, 0.000971, 0.707513;;, + 2;4;-0.706689,-0.003901, 0.003906, 0.707503;;, + 3;4;-0.706644,-0.008800, 0.008811, 0.707459;;, + 4;4;-0.706525,-0.015623, 0.015643, 0.707342;;, + 5;4;-0.706281,-0.024268, 0.024300, 0.707099;;, + 6;4;-0.705851,-0.034560, 0.034605, 0.706670;;, + 7;4;-0.705182,-0.046243, 0.046303, 0.706001;;, + 8;4;-0.704230,-0.058981, 0.059057, 0.705048;;, + 9;4;-0.702981,-0.072371, 0.072463, 0.703796;;, + 10;4;-0.701449,-0.085964, 0.086072, 0.702261;;, + 11;4;-0.699687,-0.099297, 0.099422, 0.700495;;, + 12;4;-0.697779,-0.111931, 0.112069, 0.698582;;, + 13;4;-0.695831,-0.123473, 0.123624, 0.696628;;, + 14;4;-0.693958,-0.133607, 0.133768, 0.694750;;, + 15;4;-0.692271,-0.142094, 0.142264, 0.693059;;, + 16;4;-0.690866,-0.148776, 0.148952, 0.691652;;, + 17;4;-0.689817,-0.153565, 0.153744, 0.690603;;, + 18;4;-0.689173,-0.156427, 0.156609, 0.689960;;, + 19;4;-0.688955,-0.157374, 0.157555, 0.689747;;, + 20;4;-0.690481,-0.150503, 0.150675, 0.691290;;, + 21;4;-0.694667,-0.129741, 0.129886, 0.695510;;, + 22;4;-0.700143,-0.095751, 0.095854, 0.701030;;, + 23;4;-0.704802,-0.050976, 0.051022, 0.705728;;, + 24;4;-0.706633,-0.000025, 0.000008, 0.707580;;, + 25;4;-0.704797, 0.050917,-0.050997, 0.705739;;, + 26;4;-0.700136, 0.095673,-0.095805, 0.701055;;, + 27;4;-0.694661, 0.129640,-0.129811, 0.695549;;, + 28;4;-0.690477, 0.150386,-0.150579, 0.691340;;, + 29;4;-0.688950, 0.157251,-0.157451, 0.689804;;, + 30;4;-0.690460, 0.150464,-0.150656, 0.691323;;, + 31;4;-0.694603, 0.129950,-0.130120, 0.695492;;, + 32;4;-0.700040, 0.096361,-0.096494, 0.700962;;, + 33;4;-0.704707, 0.052104,-0.052186, 0.705656;;, + 34;4;-0.706626, 0.001730,-0.001751, 0.707583;;, + 35;4;-0.704958,-0.048653, 0.048694, 0.705901;;, + 36;4;-0.700512,-0.092931, 0.093025, 0.701422;;, + 37;4;-0.695244,-0.126545, 0.126680, 0.696114;;, + 38;4;-0.691205,-0.147078, 0.147237, 0.692045;;, + 39;4;-0.689730,-0.153872, 0.154040, 0.690556;;, + 40;4;-0.691193,-0.147149, 0.147310, 0.692025;;, + 41;4;-0.695199,-0.126835, 0.126976, 0.696052;;, + 42;4;-0.700439,-0.093584, 0.093690, 0.701320;;, + 43;4;-0.704898,-0.049788, 0.049844, 0.705801;;, + 44;4;-0.706652, 0.000053,-0.000054, 0.707561;;, + 45;4;-0.704894, 0.049900,-0.049959, 0.705789;;, + 46;4;-0.700430, 0.093712,-0.093822, 0.701294;;, + 47;4;-0.695184, 0.126979,-0.127127, 0.696013;;, + 48;4;-0.691173, 0.147306,-0.147476, 0.691976;;, + 49;4;-0.689709, 0.154034,-0.154211, 0.690503;;, + 50;4;-0.689876, 0.153283,-0.153460, 0.690670;;, + 51;4;-0.690374, 0.151018,-0.151192, 0.691172;;, + 52;4;-0.691192, 0.147220,-0.147390, 0.691994;;, + 53;4;-0.692304, 0.141884,-0.142048, 0.693114;;, + 54;4;-0.693673, 0.135015,-0.135171, 0.694491;;, + 55;4;-0.695247, 0.126635,-0.126782, 0.696075;;, + 56;4;-0.696965, 0.116783,-0.116919, 0.697804;;, + 57;4;-0.698754, 0.105524,-0.105647, 0.699604;;, + 58;4;-0.700534, 0.092944,-0.093053, 0.701395;;, + 59;4;-0.702221, 0.079159,-0.079251, 0.703093;;, + 60;4;-0.703732, 0.064312,-0.064387, 0.704613;;, + 61;4;-0.704990, 0.048575,-0.048632, 0.705879;;, + 62;4;-0.705927, 0.032145,-0.032182, 0.706823;;, + 63;4;-0.706493, 0.015240,-0.015257, 0.707392;;, + 64;4;-0.706654,-0.001905, 0.001908, 0.707554;;, + 65;4;-0.706400,-0.019050, 0.019073, 0.707299;;, + 66;4;-0.705743,-0.035951, 0.035994, 0.706639;;, + 67;4;-0.704717,-0.052376, 0.052439, 0.705606;;, + 68;4;-0.703375,-0.068106, 0.068187, 0.704256;;, + 69;4;-0.701784,-0.082945, 0.083043, 0.702655;;, + 70;4;-0.700022,-0.096721, 0.096835, 0.700883;;, + 71;4;-0.698175,-0.109292, 0.109420, 0.699024;;, + 72;4;-0.696325,-0.120542, 0.120683, 0.697163;;, + 73;4;-0.694554,-0.130384, 0.130536, 0.695381;;, + 74;4;-0.692934,-0.138756, 0.138917, 0.693752;;, + 75;4;-0.691528,-0.145617, 0.145786, 0.692337;;, + 76;4;-0.690387,-0.150948, 0.151122, 0.691189;;, + 77;4;-0.689549,-0.154741, 0.154919, 0.690346;;, + 78;4;-0.689039,-0.157004, 0.157185, 0.689832;;, + 79;4;-0.688868,-0.157754, 0.157935, 0.689660;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 0.195703, 0.182964, 0.780890;;, + 1;3; 0.195703, 0.182964, 0.780890;;, + 2;3; 0.195703, 0.182964, 0.780890;;, + 3;3; 0.195703, 0.182964, 0.780890;;, + 4;3; 0.195703, 0.182964, 0.780890;;, + 5;3; 0.195703, 0.182964, 0.780890;;, + 6;3; 0.195703, 0.182964, 0.780890;;, + 7;3; 0.195703, 0.182964, 0.780890;;, + 8;3; 0.195703, 0.182964, 0.780890;;, + 9;3; 0.195703, 0.182964, 0.780890;;, + 10;3; 0.195703, 0.182964, 0.780890;;, + 11;3; 0.195703, 0.182964, 0.780890;;, + 12;3; 0.195703, 0.182964, 0.780890;;, + 13;3; 0.195703, 0.182964, 0.780890;;, + 14;3; 0.195703, 0.182964, 0.780890;;, + 15;3; 0.195703, 0.182964, 0.780890;;, + 16;3; 0.195703, 0.182964, 0.780890;;, + 17;3; 0.195703, 0.182964, 0.780890;;, + 18;3; 0.195703, 0.182964, 0.780890;;, + 19;3; 0.195703, 0.182964, 0.780890;;, + 20;3; 0.195703, 0.182964, 0.780890;;, + 21;3; 0.195703, 0.182964, 0.780890;;, + 22;3; 0.195703, 0.182964, 0.780890;;, + 23;3; 0.195703, 0.182964, 0.780890;;, + 24;3; 0.195703, 0.182964, 0.780890;;, + 25;3; 0.195703, 0.182964, 0.780890;;, + 26;3; 0.195703, 0.182964, 0.780890;;, + 27;3; 0.195703, 0.182964, 0.780890;;, + 28;3; 0.195703, 0.182964, 0.780890;;, + 29;3; 0.195703, 0.182964, 0.780890;;, + 30;3; 0.195703, 0.182964, 0.780890;;, + 31;3; 0.195703, 0.182964, 0.780890;;, + 32;3; 0.195703, 0.182964, 0.780890;;, + 33;3; 0.195703, 0.182964, 0.780890;;, + 34;3; 0.195703, 0.182964, 0.780890;;, + 35;3; 0.195703, 0.182964, 0.780890;;, + 36;3; 0.195703, 0.182964, 0.780890;;, + 37;3; 0.195703, 0.182964, 0.780890;;, + 38;3; 0.195703, 0.182964, 0.780890;;, + 39;3; 0.195703, 0.182964, 0.780890;;, + 40;3; 0.195703, 0.182964, 0.780890;;, + 41;3; 0.195703, 0.182964, 0.780890;;, + 42;3; 0.195703, 0.182964, 0.780890;;, + 43;3; 0.195703, 0.182964, 0.780890;;, + 44;3; 0.195703, 0.182964, 0.780890;;, + 45;3; 0.195703, 0.182964, 0.780890;;, + 46;3; 0.195703, 0.182964, 0.780890;;, + 47;3; 0.195703, 0.182964, 0.780890;;, + 48;3; 0.195703, 0.182964, 0.780890;;, + 49;3; 0.195703, 0.182964, 0.780890;;, + 50;3; 0.195703, 0.182964, 0.780890;;, + 51;3; 0.195703, 0.182964, 0.780890;;, + 52;3; 0.195703, 0.182964, 0.780890;;, + 53;3; 0.195703, 0.182964, 0.780890;;, + 54;3; 0.195703, 0.182964, 0.780890;;, + 55;3; 0.195703, 0.182964, 0.780890;;, + 56;3; 0.195703, 0.182964, 0.780890;;, + 57;3; 0.195703, 0.182964, 0.780890;;, + 58;3; 0.195703, 0.182964, 0.780890;;, + 59;3; 0.195703, 0.182964, 0.780890;;, + 60;3; 0.195703, 0.182964, 0.780890;;, + 61;3; 0.195703, 0.182964, 0.780890;;, + 62;3; 0.195703, 0.182964, 0.780890;;, + 63;3; 0.195703, 0.182964, 0.780890;;, + 64;3; 0.195703, 0.182964, 0.780890;;, + 65;3; 0.195703, 0.182964, 0.780890;;, + 66;3; 0.195703, 0.182964, 0.780890;;, + 67;3; 0.195703, 0.182964, 0.780890;;, + 68;3; 0.195703, 0.182964, 0.780890;;, + 69;3; 0.195703, 0.182964, 0.780890;;, + 70;3; 0.195703, 0.182964, 0.780890;;, + 71;3; 0.195703, 0.182964, 0.780890;;, + 72;3; 0.195703, 0.182964, 0.780890;;, + 73;3; 0.195703, 0.182964, 0.780890;;, + 74;3; 0.195703, 0.182964, 0.780890;;, + 75;3; 0.195703, 0.182964, 0.780890;;, + 76;3; 0.195703, 0.182964, 0.780890;;, + 77;3; 0.195703, 0.182964, 0.780890;;, + 78;3; 0.195703, 0.182964, 0.780890;;, + 79;3; 0.195703, 0.182964, 0.780890;;; + } + AnimationKey { // Position + 2; + 80; + 0;3;-0.444974,-0.720049,-6.328409;;, + 1;3;-0.444974,-0.721787,-6.327650;;, + 2;3;-0.444974,-0.727041,-6.325339;;, + 3;3;-0.444974,-0.735822,-6.321445;;, + 4;3;-0.444974,-0.748055,-6.315963;;, + 5;3;-0.444974,-0.763561,-6.308934;;, + 6;3;-0.444974,-0.782029,-6.300446;;, + 7;3;-0.444974,-0.803011,-6.290648;;, + 8;3;-0.444974,-0.825915,-6.279746;;, + 9;3;-0.444974,-0.850027,-6.268005;;, + 10;3;-0.444974,-0.874552,-6.255732;;, + 11;3;-0.444974,-0.898664,-6.243254;;, + 12;3;-0.444974,-0.921567,-6.230899;;, + 13;3;-0.444974,-0.942547,-6.218971;;, + 14;3;-0.444974,-0.961014,-6.207732;;, + 15;3;-0.444974,-0.976517,-6.197392;;, + 16;3;-0.444974,-0.988749,-6.188108;;, + 17;3;-0.444974,-0.997528,-6.179986;;, + 18;3;-0.444974,-1.002782,-6.173084;;, + 19;3;-0.444974,-1.004519,-6.167428;;, + 20;3;-0.444974,-0.997850,-6.162767;;, + 21;3;-0.444974,-0.977778,-6.158899;;, + 22;3;-0.444974,-0.945143,-6.155876;;, + 23;3;-0.444974,-0.902458,-6.153681;;, + 24;3;-0.444974,-0.854104,-6.152203;;, + 25;3;-0.444974,-0.805750,-6.151237;;, + 26;3;-0.444974,-0.763066,-6.150527;;, + 27;3;-0.444974,-0.730432,-6.149829;;, + 28;3;-0.444974,-0.710360,-6.148953;;, + 29;3;-0.444974,-0.703691,-6.147783;;, + 30;3;-0.444974,-0.707978,-6.146466;;, + 31;3;-0.444974,-0.720880,-6.145220;;, + 32;3;-0.444974,-0.741858,-6.144074;;, + 33;3;-0.444974,-0.769296,-6.143066;;, + 34;3;-0.444974,-0.800378,-6.142225;;, + 35;3;-0.444974,-0.831462,-6.141570;;, + 36;3;-0.444974,-0.858902,-6.141101;;, + 37;3;-0.444974,-0.879883,-6.140800;;, + 38;3;-0.444974,-0.892787,-6.140642;;, + 39;3;-0.444974,-0.897076,-6.140595;;, + 40;3;-0.444974,-0.885800,-6.141282;;, + 41;3;-0.444974,-0.851868,-6.143350;;, + 42;3;-0.444974,-0.796700,-6.146711;;, + 43;3;-0.444974,-0.724548,-6.151108;;, + 44;3;-0.444974,-0.642815,-6.156090;;, + 45;3;-0.444974,-0.561082,-6.161071;;, + 46;3;-0.444974,-0.488931,-6.165468;;, + 47;3;-0.444974,-0.433764,-6.168829;;, + 48;3;-0.444974,-0.399831,-6.170897;;, + 49;3;-0.444974,-0.388556,-6.171584;;, + 50;3;-0.444974,-0.390021,-6.171462;;, + 51;3;-0.444974,-0.394444,-6.171092;;, + 52;3;-0.444974,-0.401851,-6.170472;;, + 53;3;-0.444974,-0.412244,-6.169601;;, + 54;3;-0.444974,-0.425600,-6.168483;;, + 55;3;-0.444974,-0.441860,-6.167122;;, + 56;3;-0.444974,-0.460930,-6.165525;;, + 57;3;-0.444974,-0.482674,-6.163705;;, + 58;3;-0.444974,-0.506906,-6.161676;;, + 59;3;-0.444974,-0.533396,-6.159459;;, + 60;3;-0.444974,-0.561863,-6.157075;;, + 61;3;-0.444974,-0.591978,-6.154554;;, + 62;3;-0.444974,-0.623372,-6.151925;;, + 63;3;-0.444974,-0.655638,-6.149223;;, + 64;3;-0.444974,-0.688348,-6.146485;;, + 65;3;-0.444974,-0.721058,-6.143746;;, + 66;3;-0.444974,-0.753326,-6.141044;;, + 67;3;-0.444974,-0.784720,-6.138416;;, + 68;3;-0.444974,-0.814837,-6.135894;;, + 69;3;-0.444974,-0.843306,-6.133511;;, + 70;3;-0.444974,-0.869798,-6.131293;;, + 71;3;-0.444974,-0.894033,-6.129264;;, + 72;3;-0.444974,-0.915779,-6.127444;;, + 73;3;-0.444974,-0.934852,-6.125847;;, + 74;3;-0.444974,-0.951114,-6.124486;;, + 75;3;-0.444974,-0.964472,-6.123368;;, + 76;3;-0.444974,-0.974866,-6.122498;;, + 77;3;-0.444974,-0.982274,-6.121878;;, + 78;3;-0.444974,-0.986698,-6.121508;;, + 79;3;-0.444974,-0.988163,-6.121385;;; + } + } + Animation { + {Cube_006} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706699,-0.000970, 0.000971, 0.707513;;, + 2;4;-0.706689,-0.003901, 0.003906, 0.707503;;, + 3;4;-0.706644,-0.008800, 0.008811, 0.707459;;, + 4;4;-0.706525,-0.015623, 0.015643, 0.707342;;, + 5;4;-0.706281,-0.024268, 0.024300, 0.707099;;, + 6;4;-0.705851,-0.034560, 0.034605, 0.706670;;, + 7;4;-0.705182,-0.046243, 0.046303, 0.706001;;, + 8;4;-0.704230,-0.058981, 0.059057, 0.705048;;, + 9;4;-0.702981,-0.072371, 0.072463, 0.703796;;, + 10;4;-0.701449,-0.085964, 0.086072, 0.702261;;, + 11;4;-0.699687,-0.099297, 0.099422, 0.700495;;, + 12;4;-0.697779,-0.111931, 0.112069, 0.698582;;, + 13;4;-0.695831,-0.123473, 0.123624, 0.696628;;, + 14;4;-0.693958,-0.133607, 0.133768, 0.694750;;, + 15;4;-0.692271,-0.142094, 0.142264, 0.693059;;, + 16;4;-0.690866,-0.148776, 0.148952, 0.691652;;, + 17;4;-0.689817,-0.153565, 0.153744, 0.690603;;, + 18;4;-0.689173,-0.156427, 0.156609, 0.689960;;, + 19;4;-0.688955,-0.157374, 0.157555, 0.689747;;, + 20;4;-0.690481,-0.150503, 0.150675, 0.691290;;, + 21;4;-0.694667,-0.129741, 0.129886, 0.695510;;, + 22;4;-0.700143,-0.095751, 0.095854, 0.701030;;, + 23;4;-0.704802,-0.050976, 0.051022, 0.705728;;, + 24;4;-0.706633,-0.000025, 0.000008, 0.707580;;, + 25;4;-0.704797, 0.050917,-0.050997, 0.705739;;, + 26;4;-0.700136, 0.095673,-0.095805, 0.701055;;, + 27;4;-0.694661, 0.129640,-0.129811, 0.695549;;, + 28;4;-0.690477, 0.150386,-0.150579, 0.691340;;, + 29;4;-0.688950, 0.157251,-0.157451, 0.689804;;, + 30;4;-0.690460, 0.150464,-0.150656, 0.691323;;, + 31;4;-0.694603, 0.129950,-0.130120, 0.695492;;, + 32;4;-0.700040, 0.096361,-0.096494, 0.700962;;, + 33;4;-0.704707, 0.052104,-0.052186, 0.705656;;, + 34;4;-0.706626, 0.001730,-0.001751, 0.707583;;, + 35;4;-0.704958,-0.048653, 0.048694, 0.705901;;, + 36;4;-0.700512,-0.092931, 0.093025, 0.701422;;, + 37;4;-0.695244,-0.126545, 0.126680, 0.696114;;, + 38;4;-0.691205,-0.147078, 0.147237, 0.692045;;, + 39;4;-0.689730,-0.153872, 0.154040, 0.690556;;, + 40;4;-0.691193,-0.147149, 0.147310, 0.692025;;, + 41;4;-0.695199,-0.126835, 0.126976, 0.696052;;, + 42;4;-0.700439,-0.093584, 0.093690, 0.701320;;, + 43;4;-0.704898,-0.049788, 0.049844, 0.705801;;, + 44;4;-0.706652, 0.000053,-0.000054, 0.707561;;, + 45;4;-0.704894, 0.049900,-0.049959, 0.705789;;, + 46;4;-0.700430, 0.093712,-0.093822, 0.701294;;, + 47;4;-0.695184, 0.126979,-0.127127, 0.696013;;, + 48;4;-0.691173, 0.147306,-0.147476, 0.691976;;, + 49;4;-0.689709, 0.154034,-0.154211, 0.690503;;, + 50;4;-0.689876, 0.153283,-0.153460, 0.690670;;, + 51;4;-0.690374, 0.151018,-0.151192, 0.691172;;, + 52;4;-0.691192, 0.147220,-0.147390, 0.691994;;, + 53;4;-0.692304, 0.141884,-0.142048, 0.693114;;, + 54;4;-0.693673, 0.135015,-0.135171, 0.694491;;, + 55;4;-0.695247, 0.126635,-0.126782, 0.696075;;, + 56;4;-0.696965, 0.116783,-0.116919, 0.697804;;, + 57;4;-0.698754, 0.105524,-0.105647, 0.699604;;, + 58;4;-0.700534, 0.092944,-0.093053, 0.701395;;, + 59;4;-0.702221, 0.079159,-0.079251, 0.703093;;, + 60;4;-0.703732, 0.064312,-0.064387, 0.704613;;, + 61;4;-0.704990, 0.048575,-0.048632, 0.705879;;, + 62;4;-0.705927, 0.032145,-0.032182, 0.706823;;, + 63;4;-0.706493, 0.015240,-0.015257, 0.707392;;, + 64;4;-0.706654,-0.001905, 0.001908, 0.707554;;, + 65;4;-0.706400,-0.019050, 0.019073, 0.707299;;, + 66;4;-0.705743,-0.035951, 0.035994, 0.706639;;, + 67;4;-0.704717,-0.052376, 0.052439, 0.705606;;, + 68;4;-0.703375,-0.068106, 0.068187, 0.704256;;, + 69;4;-0.701784,-0.082945, 0.083043, 0.702655;;, + 70;4;-0.700022,-0.096721, 0.096835, 0.700883;;, + 71;4;-0.698175,-0.109292, 0.109420, 0.699024;;, + 72;4;-0.696325,-0.120542, 0.120683, 0.697163;;, + 73;4;-0.694554,-0.130384, 0.130536, 0.695381;;, + 74;4;-0.692934,-0.138756, 0.138917, 0.693752;;, + 75;4;-0.691528,-0.145617, 0.145786, 0.692337;;, + 76;4;-0.690387,-0.150948, 0.151122, 0.691189;;, + 77;4;-0.689549,-0.154741, 0.154919, 0.690346;;, + 78;4;-0.689039,-0.157004, 0.157185, 0.689832;;, + 79;4;-0.688868,-0.157754, 0.157935, 0.689660;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 1.009079, 0.367400, 0.044988;;, + 1;3; 1.009079, 0.367400, 0.044988;;, + 2;3; 1.009079, 0.367400, 0.044988;;, + 3;3; 1.009079, 0.367400, 0.044988;;, + 4;3; 1.009079, 0.367400, 0.044988;;, + 5;3; 1.009079, 0.367400, 0.044988;;, + 6;3; 1.009079, 0.367400, 0.044988;;, + 7;3; 1.009079, 0.367400, 0.044988;;, + 8;3; 1.009079, 0.367400, 0.044988;;, + 9;3; 1.009079, 0.367400, 0.044988;;, + 10;3; 1.009079, 0.367400, 0.044988;;, + 11;3; 1.009079, 0.367400, 0.044988;;, + 12;3; 1.009079, 0.367400, 0.044988;;, + 13;3; 1.009079, 0.367400, 0.044988;;, + 14;3; 1.009079, 0.367400, 0.044988;;, + 15;3; 1.009079, 0.367400, 0.044988;;, + 16;3; 1.009079, 0.367400, 0.044988;;, + 17;3; 1.009080, 0.367400, 0.044988;;, + 18;3; 1.009079, 0.367400, 0.044988;;, + 19;3; 1.009079, 0.367400, 0.044988;;, + 20;3; 1.009079, 0.367400, 0.044988;;, + 21;3; 1.009079, 0.367400, 0.044988;;, + 22;3; 1.009079, 0.367400, 0.044988;;, + 23;3; 1.009079, 0.367400, 0.044988;;, + 24;3; 1.009079, 0.367400, 0.044988;;, + 25;3; 1.009079, 0.367400, 0.044988;;, + 26;3; 1.009079, 0.367400, 0.044988;;, + 27;3; 1.009079, 0.367400, 0.044988;;, + 28;3; 1.009079, 0.367400, 0.044988;;, + 29;3; 1.009079, 0.367400, 0.044988;;, + 30;3; 1.009079, 0.367400, 0.044988;;, + 31;3; 1.009079, 0.367400, 0.044988;;, + 32;3; 1.009079, 0.367400, 0.044988;;, + 33;3; 1.009079, 0.367400, 0.044988;;, + 34;3; 1.009080, 0.367400, 0.044988;;, + 35;3; 1.009079, 0.367400, 0.044988;;, + 36;3; 1.009079, 0.367400, 0.044988;;, + 37;3; 1.009079, 0.367400, 0.044988;;, + 38;3; 1.009079, 0.367400, 0.044988;;, + 39;3; 1.009079, 0.367400, 0.044988;;, + 40;3; 1.009079, 0.367400, 0.044988;;, + 41;3; 1.009079, 0.367400, 0.044988;;, + 42;3; 1.009079, 0.367400, 0.044988;;, + 43;3; 1.009079, 0.367400, 0.044988;;, + 44;3; 1.009079, 0.367400, 0.044988;;, + 45;3; 1.009079, 0.367400, 0.044988;;, + 46;3; 1.009079, 0.367400, 0.044988;;, + 47;3; 1.009079, 0.367400, 0.044988;;, + 48;3; 1.009079, 0.367400, 0.044988;;, + 49;3; 1.009079, 0.367400, 0.044988;;, + 50;3; 1.009079, 0.367400, 0.044988;;, + 51;3; 1.009079, 0.367400, 0.044988;;, + 52;3; 1.009079, 0.367400, 0.044988;;, + 53;3; 1.009079, 0.367400, 0.044988;;, + 54;3; 1.009079, 0.367400, 0.044988;;, + 55;3; 1.009079, 0.367400, 0.044988;;, + 56;3; 1.009080, 0.367400, 0.044988;;, + 57;3; 1.009079, 0.367400, 0.044988;;, + 58;3; 1.009080, 0.367400, 0.044988;;, + 59;3; 1.009079, 0.367400, 0.044988;;, + 60;3; 1.009079, 0.367400, 0.044988;;, + 61;3; 1.009079, 0.367400, 0.044988;;, + 62;3; 1.009080, 0.367400, 0.044988;;, + 63;3; 1.009079, 0.367400, 0.044988;;, + 64;3; 1.009079, 0.367400, 0.044988;;, + 65;3; 1.009079, 0.367400, 0.044988;;, + 66;3; 1.009079, 0.367400, 0.044988;;, + 67;3; 1.009079, 0.367400, 0.044988;;, + 68;3; 1.009080, 0.367400, 0.044988;;, + 69;3; 1.009080, 0.367400, 0.044988;;, + 70;3; 1.009080, 0.367400, 0.044988;;, + 71;3; 1.009079, 0.367400, 0.044988;;, + 72;3; 1.009080, 0.367400, 0.044988;;, + 73;3; 1.009079, 0.367400, 0.044988;;, + 74;3; 1.009079, 0.367400, 0.044988;;, + 75;3; 1.009079, 0.367400, 0.044988;;, + 76;3; 1.009079, 0.367400, 0.044988;;, + 77;3; 1.009079, 0.367400, 0.044988;;, + 78;3; 1.009079, 0.367400, 0.044988;;, + 79;3; 1.009079, 0.367400, 0.044988;;; + } + AnimationKey { // Position + 2; + 80; + 0;3;-0.448732,-0.399916,-7.147284;;, + 1;3;-0.448732,-0.404025,-7.147274;;, + 2;3;-0.448732,-0.416442,-7.147199;;, + 3;3;-0.448732,-0.437189,-7.146982;;, + 4;3;-0.448732,-0.466091,-7.146529;;, + 5;3;-0.448732,-0.502716,-7.145728;;, + 6;3;-0.448732,-0.546334,-7.144456;;, + 7;3;-0.448732,-0.595880,-7.142581;;, + 8;3;-0.448732,-0.649957,-7.139967;;, + 9;3;-0.448732,-0.706885,-7.136487;;, + 10;3;-0.448732,-0.764784,-7.132030;;, + 11;3;-0.448732,-0.821707,-7.126510;;, + 12;3;-0.448732,-0.875778,-7.119878;;, + 13;3;-0.448732,-0.925314,-7.112115;;, + 14;3;-0.448732,-0.968922,-7.103236;;, + 15;3;-0.448732,-1.005537,-7.093283;;, + 16;3;-0.448732,-1.034429,-7.082315;;, + 17;3;-0.448732,-1.055169,-7.070407;;, + 18;3;-0.448732,-1.067582,-7.057637;;, + 19;3;-0.448732,-1.071688,-7.044086;;, + 20;3;-0.448732,-1.050912,-7.024075;;, + 21;3;-0.448732,-0.988394,-6.991998;;, + 22;3;-0.448732,-0.886765,-6.948990;;, + 23;3;-0.448732,-0.753869,-6.897814;;, + 24;3;-0.448732,-0.603347,-6.842973;;, + 25;3;-0.448732,-0.452844,-6.790066;;, + 26;3;-0.448732,-0.319993,-6.744496;;, + 27;3;-0.448732,-0.218418,-6.710258;;, + 28;3;-0.448732,-0.155941,-6.689467;;, + 29;3;-0.448732,-0.135180,-6.682620;;, + 30;3;-0.448732,-0.152022,-6.690032;;, + 31;3;-0.448732,-0.202706,-6.712340;;, + 32;3;-0.448732,-0.285111,-6.748610;;, + 33;3;-0.448732,-0.392890,-6.796051;;, + 34;3;-0.448732,-0.514988,-6.849793;;, + 35;3;-0.448732,-0.637090,-6.903535;;, + 36;3;-0.448732,-0.744884,-6.950976;;, + 37;3;-0.448732,-0.827305,-6.987247;;, + 38;3;-0.448732,-0.878002,-7.009555;;, + 39;3;-0.448732,-0.894848,-7.016967;;, + 40;3;-0.448732,-0.869473,-7.011635;;, + 41;3;-0.448732,-0.793118,-6.995588;;, + 42;3;-0.448732,-0.668994,-6.969497;;, + 43;3;-0.448732,-0.506665,-6.935371;;, + 44;3;-0.448732,-0.322774,-6.896713;;, + 45;3;-0.448732,-0.138857,-6.858054;;, + 46;3;-0.448732, 0.023536,-6.823927;;, + 47;3;-0.448732, 0.147735,-6.797835;;, + 48;3;-0.448732, 0.224147,-6.781788;;, + 49;3;-0.448732, 0.249544,-6.776455;;, + 50;3;-0.448732, 0.246350,-6.776997;;, + 51;3;-0.448732, 0.236709,-6.778630;;, + 52;3;-0.448732, 0.220568,-6.781366;;, + 53;3;-0.448732, 0.197921,-6.785206;;, + 54;3;-0.448732, 0.168823,-6.790139;;, + 55;3;-0.448732, 0.133401,-6.796146;;, + 56;3;-0.448732, 0.091862,-6.803191;;, + 57;3;-0.448732, 0.044507,-6.811224;;, + 58;3;-0.448732,-0.008263,-6.820177;;, + 59;3;-0.448732,-0.065943,-6.829964;;, + 60;3;-0.448732,-0.127922,-6.840481;;, + 61;3;-0.448732,-0.193485,-6.851608;;, + 62;3;-0.448732,-0.261828,-6.863206;;, + 63;3;-0.448732,-0.332070,-6.875127;;, + 64;3;-0.448732,-0.403277,-6.887212;;, + 65;3;-0.448732,-0.474487,-6.899297;;, + 66;3;-0.448732,-0.544736,-6.911219;;, + 67;3;-0.448732,-0.613091,-6.922818;;, + 68;3;-0.448732,-0.678669,-6.933944;;, + 69;3;-0.448732,-0.740665,-6.944461;;, + 70;3;-0.448732,-0.798365,-6.954247;;, + 71;3;-0.448732,-0.851156,-6.963201;;, + 72;3;-0.448732,-0.898531,-6.971233;;, + 73;3;-0.448732,-0.940090,-6.978278;;, + 74;3;-0.448732,-0.975531,-6.984285;;, + 75;3;-0.448732,-1.004644,-6.989219;;, + 76;3;-0.448732,-1.027304,-6.993057;;, + 77;3;-0.448732,-1.043455,-6.995793;;, + 78;3;-0.448732,-1.053102,-6.997427;;, + 79;3;-0.448732,-1.056298,-6.997969;;; + } + } + Animation { + {Cube_007} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706699, 0.000944,-0.000945, 0.707513;;, + 2;4;-0.706690, 0.003796,-0.003801, 0.707503;;, + 3;4;-0.706647, 0.008562,-0.008573, 0.707462;;, + 4;4;-0.706535, 0.015201,-0.015221, 0.707351;;, + 5;4;-0.706303, 0.023613,-0.023643, 0.707120;;, + 6;4;-0.705897, 0.033627,-0.033671, 0.706714;;, + 7;4;-0.705263, 0.044995,-0.045053, 0.706081;;, + 8;4;-0.704363, 0.057391,-0.057465, 0.705179;;, + 9;4;-0.703180, 0.070423,-0.070512, 0.703994;;, + 10;4;-0.701729, 0.083653,-0.083758, 0.702540;;, + 11;4;-0.700061, 0.096633,-0.096753, 0.700867;;, + 12;4;-0.698255, 0.108932,-0.109066, 0.699056;;, + 13;4;-0.696410, 0.120171,-0.120318, 0.697206;;, + 14;4;-0.694636, 0.130040,-0.130197, 0.695427;;, + 15;4;-0.693038, 0.138306,-0.138471, 0.693826;;, + 16;4;-0.691708, 0.144816,-0.144987, 0.692494;;, + 17;4;-0.690714, 0.149481,-0.149656, 0.691500;;, + 18;4;-0.690103, 0.152270,-0.152446, 0.690892;;, + 19;4;-0.689897, 0.153192,-0.153368, 0.690690;;, + 20;4;-0.691356, 0.146435,-0.146601, 0.692165;;, + 21;4;-0.695352, 0.126019,-0.126160, 0.696195;;, + 22;4;-0.700567, 0.092608,-0.092706, 0.701453;;, + 23;4;-0.704970, 0.048611,-0.048653, 0.705894;;, + 24;4;-0.706633,-0.001439, 0.001460, 0.707578;;, + 25;4;-0.704757,-0.051474, 0.051556, 0.705698;;, + 26;4;-0.700169,-0.095433, 0.095567, 0.701087;;, + 27;4;-0.694816,-0.128802, 0.128973, 0.695706;;, + 28;4;-0.690736,-0.149185, 0.149378, 0.691602;;, + 29;4;-0.689249,-0.155931, 0.156131, 0.690105;;, + 30;4;-0.690758,-0.149082, 0.149275, 0.691625;;, + 31;4;-0.694892,-0.128384, 0.128553, 0.695785;;, + 32;4;-0.700292,-0.094494, 0.094625, 0.701219;;, + 33;4;-0.704868,-0.049845, 0.049922, 0.705822;;, + 34;4;-0.706625, 0.000968,-0.000952, 0.707587;;, + 35;4;-0.704734, 0.051775,-0.051823, 0.705680;;, + 36;4;-0.700040, 0.096410,-0.096514, 0.700952;;, + 37;4;-0.694551, 0.130284,-0.130428, 0.695423;;, + 38;4;-0.690364, 0.150970,-0.151139, 0.691204;;, + 39;4;-0.688837, 0.157814,-0.157992, 0.689664;;, + 40;4;-0.690381, 0.150907,-0.151079, 0.691214;;, + 41;4;-0.694606, 0.130034,-0.130184, 0.695461;;, + 42;4;-0.700129, 0.095855,-0.095969, 0.701015;;, + 43;4;-0.704821, 0.050819,-0.050881, 0.705731;;, + 44;4;-0.706648,-0.000444, 0.000442, 0.707565;;, + 45;4;-0.704760,-0.051711, 0.051770, 0.705662;;, + 46;4;-0.700013,-0.096759, 0.096871, 0.700882;;, + 47;4;-0.694446,-0.130950, 0.131102, 0.695276;;, + 48;4;-0.690193,-0.151833, 0.152008, 0.690995;;, + 49;4;-0.688641,-0.158743, 0.158926, 0.689433;;, + 50;4;-0.688814,-0.157989, 0.158171, 0.689606;;, + 51;4;-0.689331,-0.155713, 0.155892, 0.690126;;, + 52;4;-0.690179,-0.151897, 0.152073, 0.690980;;, + 53;4;-0.691335,-0.146536, 0.146706, 0.692142;;, + 54;4;-0.692758,-0.139634, 0.139797, 0.693574;;, + 55;4;-0.694398,-0.131213, 0.131367, 0.695224;;, + 56;4;-0.696192,-0.121313, 0.121456, 0.697028;;, + 57;4;-0.698065,-0.109997, 0.110126, 0.698912;;, + 58;4;-0.699936,-0.097351, 0.097467, 0.700795;;, + 59;4;-0.701719,-0.083493, 0.083592, 0.702589;;, + 60;4;-0.703331,-0.068565, 0.068647, 0.704210;;, + 61;4;-0.704691,-0.052740, 0.052803, 0.705579;;, + 62;4;-0.705730,-0.036215, 0.036259, 0.706625;;, + 63;4;-0.706396,-0.019212, 0.019235, 0.707294;;, + 64;4;-0.706654,-0.001963, 0.001966, 0.707554;;, + 65;4;-0.706492, 0.015286,-0.015304, 0.707391;;, + 66;4;-0.705920, 0.032294,-0.032331, 0.706815;;, + 67;4;-0.704973, 0.048823,-0.048881, 0.705862;;, + 68;4;-0.703700, 0.064655,-0.064732, 0.704582;;, + 69;4;-0.702172, 0.079592,-0.079686, 0.703043;;, + 70;4;-0.700465, 0.093460,-0.093570, 0.701326;;, + 71;4;-0.698665, 0.106115,-0.106239, 0.699514;;, + 72;4;-0.696855, 0.117442,-0.117579, 0.697693;;, + 73;4;-0.695117, 0.127352,-0.127500, 0.695944;;, + 74;4;-0.693523, 0.135781,-0.135939, 0.694341;;, + 75;4;-0.692138, 0.142691,-0.142856, 0.692948;;, + 76;4;-0.691013, 0.148058,-0.148229, 0.691815;;, + 77;4;-0.690185, 0.151878,-0.152053, 0.690983;;, + 78;4;-0.689681, 0.154157,-0.154335, 0.690475;;, + 79;4;-0.689512, 0.154912,-0.155090, 0.690306;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 1.009079, 0.367400, 0.044988;;, + 1;3; 1.009079, 0.367400, 0.044988;;, + 2;3; 1.009079, 0.367400, 0.044988;;, + 3;3; 1.009079, 0.367400, 0.044988;;, + 4;3; 1.009079, 0.367400, 0.044988;;, + 5;3; 1.009079, 0.367400, 0.044988;;, + 6;3; 1.009080, 0.367400, 0.044988;;, + 7;3; 1.009079, 0.367400, 0.044988;;, + 8;3; 1.009079, 0.367400, 0.044988;;, + 9;3; 1.009079, 0.367400, 0.044988;;, + 10;3; 1.009079, 0.367400, 0.044988;;, + 11;3; 1.009079, 0.367400, 0.044988;;, + 12;3; 1.009079, 0.367400, 0.044988;;, + 13;3; 1.009080, 0.367400, 0.044988;;, + 14;3; 1.009079, 0.367400, 0.044988;;, + 15;3; 1.009079, 0.367400, 0.044988;;, + 16;3; 1.009079, 0.367400, 0.044988;;, + 17;3; 1.009079, 0.367400, 0.044988;;, + 18;3; 1.009080, 0.367400, 0.044988;;, + 19;3; 1.009079, 0.367400, 0.044988;;, + 20;3; 1.009079, 0.367400, 0.044988;;, + 21;3; 1.009079, 0.367400, 0.044988;;, + 22;3; 1.009079, 0.367400, 0.044988;;, + 23;3; 1.009079, 0.367400, 0.044988;;, + 24;3; 1.009079, 0.367400, 0.044988;;, + 25;3; 1.009079, 0.367400, 0.044988;;, + 26;3; 1.009079, 0.367400, 0.044988;;, + 27;3; 1.009079, 0.367400, 0.044988;;, + 28;3; 1.009079, 0.367400, 0.044988;;, + 29;3; 1.009079, 0.367400, 0.044988;;, + 30;3; 1.009080, 0.367400, 0.044988;;, + 31;3; 1.009079, 0.367400, 0.044988;;, + 32;3; 1.009079, 0.367400, 0.044988;;, + 33;3; 1.009079, 0.367400, 0.044988;;, + 34;3; 1.009079, 0.367400, 0.044988;;, + 35;3; 1.009079, 0.367400, 0.044988;;, + 36;3; 1.009079, 0.367400, 0.044988;;, + 37;3; 1.009079, 0.367400, 0.044988;;, + 38;3; 1.009079, 0.367400, 0.044988;;, + 39;3; 1.009079, 0.367400, 0.044988;;, + 40;3; 1.009079, 0.367400, 0.044988;;, + 41;3; 1.009080, 0.367400, 0.044988;;, + 42;3; 1.009079, 0.367400, 0.044988;;, + 43;3; 1.009079, 0.367400, 0.044988;;, + 44;3; 1.009079, 0.367400, 0.044988;;, + 45;3; 1.009079, 0.367400, 0.044988;;, + 46;3; 1.009079, 0.367400, 0.044988;;, + 47;3; 1.009079, 0.367400, 0.044988;;, + 48;3; 1.009079, 0.367400, 0.044988;;, + 49;3; 1.009079, 0.367400, 0.044988;;, + 50;3; 1.009079, 0.367400, 0.044988;;, + 51;3; 1.009079, 0.367400, 0.044988;;, + 52;3; 1.009079, 0.367400, 0.044988;;, + 53;3; 1.009079, 0.367400, 0.044988;;, + 54;3; 1.009079, 0.367400, 0.044988;;, + 55;3; 1.009079, 0.367400, 0.044988;;, + 56;3; 1.009079, 0.367400, 0.044988;;, + 57;3; 1.009079, 0.367400, 0.044988;;, + 58;3; 1.009079, 0.367400, 0.044988;;, + 59;3; 1.009079, 0.367400, 0.044988;;, + 60;3; 1.009079, 0.367400, 0.044988;;, + 61;3; 1.009079, 0.367400, 0.044988;;, + 62;3; 1.009079, 0.367400, 0.044988;;, + 63;3; 1.009079, 0.367400, 0.044988;;, + 64;3; 1.009079, 0.367400, 0.044988;;, + 65;3; 1.009079, 0.367400, 0.044988;;, + 66;3; 1.009079, 0.367400, 0.044988;;, + 67;3; 1.009079, 0.367400, 0.044988;;, + 68;3; 1.009079, 0.367400, 0.044988;;, + 69;3; 1.009079, 0.367400, 0.044988;;, + 70;3; 1.009079, 0.367400, 0.044988;;, + 71;3; 1.009079, 0.367400, 0.044988;;, + 72;3; 1.009079, 0.367400, 0.044988;;, + 73;3; 1.009079, 0.367400, 0.044988;;, + 74;3; 1.009079, 0.367400, 0.044988;;, + 75;3; 1.009079, 0.367400, 0.044988;;, + 76;3; 1.009079, 0.367400, 0.044988;;, + 77;3; 1.009079, 0.367400, 0.044988;;, + 78;3; 1.009079, 0.367400, 0.044988;;, + 79;3; 1.009079, 0.367400, 0.044988;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.982119,-0.398271,-7.147284;;, + 1;3; 0.982119,-0.394882,-7.144940;;, + 2;3; 0.982119,-0.384637,-7.137857;;, + 3;3; 0.982119,-0.367519,-7.126019;;, + 4;3; 0.982119,-0.343674,-7.109527;;, + 5;3; 0.982119,-0.313457,-7.088624;;, + 6;3; 0.982119,-0.277470,-7.063726;;, + 7;3; 0.982119,-0.236591,-7.035442;;, + 8;3; 0.982119,-0.191969,-7.004568;;, + 9;3; 0.982119,-0.144991,-6.972064;;, + 10;3; 0.982119,-0.097204,-6.939005;;, + 11;3; 0.982119,-0.050215,-6.906504;;, + 12;3; 0.982119,-0.005573,-6.875633;;, + 13;3; 0.982119, 0.035333,-6.847355;;, + 14;3; 0.982119, 0.071350,-6.822463;;, + 15;3; 0.982119, 0.101597,-6.801566;;, + 16;3; 0.982119, 0.125468,-6.785079;;, + 17;3; 0.982119, 0.142607,-6.773246;;, + 18;3; 0.982119, 0.152866,-6.766165;;, + 19;3; 0.982119, 0.156260,-6.763823;;, + 20;3; 0.982119, 0.128710,-6.767977;;, + 21;3; 0.982119, 0.045834,-6.780480;;, + 22;3; 0.982119,-0.088843,-6.800809;;, + 23;3; 0.982119,-0.264892,-6.827399;;, + 24;3; 0.982119,-0.464226,-6.857521;;, + 25;3; 0.982119,-0.663491,-6.887642;;, + 26;3; 0.982119,-0.839364,-6.914232;;, + 27;3; 0.982119,-0.973836,-6.934562;;, + 28;3; 0.982119,-1.056554,-6.947064;;, + 29;3; 0.982119,-1.084046,-6.951219;;, + 30;3; 0.982119,-1.057759,-6.946794;;, + 31;3; 0.982119,-0.978647,-6.933474;;, + 32;3; 0.982119,-0.850017,-6.911818;;, + 33;3; 0.982119,-0.681774,-6.883492;;, + 34;3; 0.982119,-0.491183,-6.851403;;, + 35;3; 0.982119,-0.300592,-6.819315;;, + 36;3; 0.982119,-0.132350,-6.790989;;, + 37;3; 0.982119,-0.003719,-6.769332;;, + 38;3; 0.982119, 0.075391,-6.756013;;, + 39;3; 0.982119, 0.101678,-6.751587;;, + 40;3; 0.982119, 0.075342,-6.757804;;, + 41;3; 0.982119,-0.003907,-6.776517;;, + 42;3; 0.982119,-0.132745,-6.806942;;, + 43;3; 0.982119,-0.301252,-6.846736;;, + 44;3; 0.982119,-0.492163,-6.891817;;, + 45;3; 0.982119,-0.683122,-6.936897;;, + 46;3; 0.982119,-0.851748,-6.976693;;, + 47;3; 0.982119,-0.980724,-7.007119;;, + 48;3; 0.982119,-1.060079,-7.025833;;, + 49;3; 0.982119,-1.086455,-7.032051;;, + 50;3; 0.982119,-1.083567,-7.031389;;, + 51;3; 0.982119,-1.074850,-7.029391;;, + 52;3; 0.982119,-1.060257,-7.026044;;, + 53;3; 0.982119,-1.039781,-7.021348;;, + 54;3; 0.982119,-1.013474,-7.015314;;, + 55;3; 0.982119,-0.981449,-7.007967;;, + 56;3; 0.982119,-0.943896,-6.999349;;, + 57;3; 0.982119,-0.901085,-6.989524;;, + 58;3; 0.982119,-0.853379,-6.978574;;, + 59;3; 0.982119,-0.801236,-6.966603;;, + 60;3; 0.982119,-0.745209,-6.953739;;, + 61;3; 0.982119,-0.685942,-6.940131;;, + 62;3; 0.982119,-0.624166,-6.925944;;, + 63;3; 0.982119,-0.560674,-6.911363;;, + 64;3; 0.982119,-0.496313,-6.896581;;, + 65;3; 0.982119,-0.431951,-6.881800;;, + 66;3; 0.982119,-0.368460,-6.867218;;, + 67;3; 0.982119,-0.306684,-6.853032;;, + 68;3; 0.982119,-0.247418,-6.839423;;, + 69;3; 0.982119,-0.191392,-6.826559;;, + 70;3; 0.982119,-0.139249,-6.814589;;, + 71;3; 0.982119,-0.091545,-6.803638;;, + 72;3; 0.982119,-0.048735,-6.793814;;, + 73;3; 0.982119,-0.011182,-6.785196;;, + 74;3; 0.982119, 0.020842,-6.777849;;, + 75;3; 0.982119, 0.047149,-6.771815;;, + 76;3; 0.982119, 0.067624,-6.767118;;, + 77;3; 0.982119, 0.082217,-6.763772;;, + 78;3; 0.982119, 0.090933,-6.761774;;, + 79;3; 0.982119, 0.093821,-6.761112;;; + } + } + Animation { + {Cube_008} + AnimationKey { // Rotation + 0; + 80; + 0;4;-0.706700, 0.000000, 0.000000, 0.707513;;, + 1;4;-0.706699, 0.000944,-0.000945, 0.707513;;, + 2;4;-0.706690, 0.003796,-0.003801, 0.707503;;, + 3;4;-0.706647, 0.008562,-0.008573, 0.707462;;, + 4;4;-0.706535, 0.015201,-0.015221, 0.707351;;, + 5;4;-0.706303, 0.023613,-0.023643, 0.707120;;, + 6;4;-0.705897, 0.033627,-0.033671, 0.706714;;, + 7;4;-0.705263, 0.044995,-0.045053, 0.706081;;, + 8;4;-0.704363, 0.057391,-0.057465, 0.705179;;, + 9;4;-0.703180, 0.070423,-0.070512, 0.703994;;, + 10;4;-0.701729, 0.083653,-0.083758, 0.702540;;, + 11;4;-0.700061, 0.096633,-0.096753, 0.700867;;, + 12;4;-0.698255, 0.108932,-0.109066, 0.699056;;, + 13;4;-0.696410, 0.120171,-0.120318, 0.697206;;, + 14;4;-0.694636, 0.130040,-0.130197, 0.695427;;, + 15;4;-0.693038, 0.138306,-0.138471, 0.693826;;, + 16;4;-0.691708, 0.144816,-0.144987, 0.692494;;, + 17;4;-0.690714, 0.149481,-0.149656, 0.691500;;, + 18;4;-0.690103, 0.152270,-0.152446, 0.690892;;, + 19;4;-0.689897, 0.153192,-0.153368, 0.690690;;, + 20;4;-0.691356, 0.146435,-0.146601, 0.692165;;, + 21;4;-0.695352, 0.126019,-0.126160, 0.696195;;, + 22;4;-0.700567, 0.092608,-0.092706, 0.701453;;, + 23;4;-0.704970, 0.048611,-0.048653, 0.705894;;, + 24;4;-0.706633,-0.001439, 0.001460, 0.707578;;, + 25;4;-0.704757,-0.051474, 0.051556, 0.705698;;, + 26;4;-0.700169,-0.095433, 0.095567, 0.701087;;, + 27;4;-0.694816,-0.128802, 0.128973, 0.695706;;, + 28;4;-0.690736,-0.149185, 0.149378, 0.691602;;, + 29;4;-0.689249,-0.155931, 0.156131, 0.690105;;, + 30;4;-0.690758,-0.149082, 0.149275, 0.691625;;, + 31;4;-0.694892,-0.128384, 0.128553, 0.695785;;, + 32;4;-0.700292,-0.094494, 0.094625, 0.701219;;, + 33;4;-0.704868,-0.049845, 0.049922, 0.705822;;, + 34;4;-0.706625, 0.000968,-0.000952, 0.707587;;, + 35;4;-0.704734, 0.051775,-0.051823, 0.705680;;, + 36;4;-0.700040, 0.096410,-0.096514, 0.700952;;, + 37;4;-0.694551, 0.130284,-0.130428, 0.695423;;, + 38;4;-0.690364, 0.150970,-0.151139, 0.691204;;, + 39;4;-0.688837, 0.157814,-0.157992, 0.689664;;, + 40;4;-0.690381, 0.150907,-0.151079, 0.691214;;, + 41;4;-0.694606, 0.130034,-0.130184, 0.695461;;, + 42;4;-0.700129, 0.095855,-0.095969, 0.701015;;, + 43;4;-0.704821, 0.050819,-0.050881, 0.705731;;, + 44;4;-0.706648,-0.000444, 0.000442, 0.707565;;, + 45;4;-0.704760,-0.051711, 0.051770, 0.705662;;, + 46;4;-0.700013,-0.096759, 0.096871, 0.700882;;, + 47;4;-0.694446,-0.130950, 0.131102, 0.695276;;, + 48;4;-0.690193,-0.151833, 0.152008, 0.690995;;, + 49;4;-0.688641,-0.158743, 0.158926, 0.689433;;, + 50;4;-0.688814,-0.157989, 0.158171, 0.689606;;, + 51;4;-0.689331,-0.155713, 0.155892, 0.690126;;, + 52;4;-0.690179,-0.151897, 0.152073, 0.690980;;, + 53;4;-0.691335,-0.146536, 0.146706, 0.692142;;, + 54;4;-0.692758,-0.139634, 0.139797, 0.693574;;, + 55;4;-0.694398,-0.131213, 0.131367, 0.695224;;, + 56;4;-0.696192,-0.121313, 0.121456, 0.697028;;, + 57;4;-0.698065,-0.109997, 0.110126, 0.698912;;, + 58;4;-0.699936,-0.097351, 0.097467, 0.700795;;, + 59;4;-0.701719,-0.083493, 0.083592, 0.702589;;, + 60;4;-0.703331,-0.068565, 0.068647, 0.704210;;, + 61;4;-0.704691,-0.052740, 0.052803, 0.705579;;, + 62;4;-0.705730,-0.036215, 0.036259, 0.706625;;, + 63;4;-0.706396,-0.019212, 0.019235, 0.707294;;, + 64;4;-0.706654,-0.001963, 0.001966, 0.707554;;, + 65;4;-0.706492, 0.015286,-0.015304, 0.707391;;, + 66;4;-0.705920, 0.032294,-0.032331, 0.706815;;, + 67;4;-0.704973, 0.048823,-0.048881, 0.705862;;, + 68;4;-0.703700, 0.064655,-0.064732, 0.704582;;, + 69;4;-0.702172, 0.079592,-0.079686, 0.703043;;, + 70;4;-0.700465, 0.093460,-0.093570, 0.701326;;, + 71;4;-0.698665, 0.106115,-0.106239, 0.699514;;, + 72;4;-0.696855, 0.117442,-0.117579, 0.697693;;, + 73;4;-0.695117, 0.127352,-0.127500, 0.695944;;, + 74;4;-0.693523, 0.135781,-0.135939, 0.694341;;, + 75;4;-0.692138, 0.142691,-0.142856, 0.692948;;, + 76;4;-0.691013, 0.148058,-0.148229, 0.691815;;, + 77;4;-0.690185, 0.151878,-0.152053, 0.690983;;, + 78;4;-0.689681, 0.154157,-0.154335, 0.690475;;, + 79;4;-0.689512, 0.154912,-0.155090, 0.690306;;; + } + AnimationKey { // Scale + 1; + 80; + 0;3; 0.195703, 0.182964, 0.780890;;, + 1;3; 0.195703, 0.182964, 0.780890;;, + 2;3; 0.195703, 0.182964, 0.780890;;, + 3;3; 0.195703, 0.182964, 0.780890;;, + 4;3; 0.195703, 0.182964, 0.780890;;, + 5;3; 0.195703, 0.182964, 0.780890;;, + 6;3; 0.195703, 0.182964, 0.780890;;, + 7;3; 0.195703, 0.182964, 0.780890;;, + 8;3; 0.195703, 0.182964, 0.780890;;, + 9;3; 0.195703, 0.182964, 0.780890;;, + 10;3; 0.195703, 0.182964, 0.780890;;, + 11;3; 0.195703, 0.182964, 0.780890;;, + 12;3; 0.195703, 0.182964, 0.780890;;, + 13;3; 0.195703, 0.182964, 0.780890;;, + 14;3; 0.195703, 0.182964, 0.780890;;, + 15;3; 0.195703, 0.182964, 0.780890;;, + 16;3; 0.195703, 0.182964, 0.780890;;, + 17;3; 0.195703, 0.182964, 0.780890;;, + 18;3; 0.195703, 0.182964, 0.780890;;, + 19;3; 0.195703, 0.182964, 0.780890;;, + 20;3; 0.195703, 0.182964, 0.780890;;, + 21;3; 0.195703, 0.182964, 0.780890;;, + 22;3; 0.195703, 0.182964, 0.780890;;, + 23;3; 0.195703, 0.182964, 0.780890;;, + 24;3; 0.195703, 0.182964, 0.780890;;, + 25;3; 0.195703, 0.182964, 0.780890;;, + 26;3; 0.195703, 0.182964, 0.780890;;, + 27;3; 0.195703, 0.182964, 0.780890;;, + 28;3; 0.195703, 0.182964, 0.780890;;, + 29;3; 0.195703, 0.182964, 0.780890;;, + 30;3; 0.195703, 0.182964, 0.780890;;, + 31;3; 0.195703, 0.182964, 0.780890;;, + 32;3; 0.195703, 0.182964, 0.780890;;, + 33;3; 0.195703, 0.182964, 0.780890;;, + 34;3; 0.195703, 0.182964, 0.780890;;, + 35;3; 0.195703, 0.182964, 0.780890;;, + 36;3; 0.195703, 0.182964, 0.780890;;, + 37;3; 0.195703, 0.182964, 0.780890;;, + 38;3; 0.195703, 0.182964, 0.780890;;, + 39;3; 0.195703, 0.182964, 0.780890;;, + 40;3; 0.195703, 0.182964, 0.780890;;, + 41;3; 0.195703, 0.182964, 0.780890;;, + 42;3; 0.195703, 0.182964, 0.780890;;, + 43;3; 0.195703, 0.182964, 0.780890;;, + 44;3; 0.195703, 0.182964, 0.780890;;, + 45;3; 0.195703, 0.182964, 0.780890;;, + 46;3; 0.195703, 0.182964, 0.780890;;, + 47;3; 0.195703, 0.182964, 0.780890;;, + 48;3; 0.195703, 0.182964, 0.780890;;, + 49;3; 0.195703, 0.182964, 0.780890;;, + 50;3; 0.195703, 0.182964, 0.780890;;, + 51;3; 0.195703, 0.182964, 0.780890;;, + 52;3; 0.195703, 0.182964, 0.780890;;, + 53;3; 0.195703, 0.182964, 0.780890;;, + 54;3; 0.195703, 0.182964, 0.780890;;, + 55;3; 0.195703, 0.182964, 0.780890;;, + 56;3; 0.195703, 0.182964, 0.780890;;, + 57;3; 0.195703, 0.182964, 0.780890;;, + 58;3; 0.195703, 0.182964, 0.780890;;, + 59;3; 0.195703, 0.182964, 0.780890;;, + 60;3; 0.195703, 0.182964, 0.780890;;, + 61;3; 0.195703, 0.182964, 0.780890;;, + 62;3; 0.195703, 0.182964, 0.780890;;, + 63;3; 0.195703, 0.182964, 0.780890;;, + 64;3; 0.195703, 0.182964, 0.780890;;, + 65;3; 0.195703, 0.182964, 0.780890;;, + 66;3; 0.195703, 0.182964, 0.780890;;, + 67;3; 0.195703, 0.182964, 0.780890;;, + 68;3; 0.195703, 0.182964, 0.780890;;, + 69;3; 0.195703, 0.182964, 0.780890;;, + 70;3; 0.195703, 0.182964, 0.780890;;, + 71;3; 0.195703, 0.182964, 0.780890;;, + 72;3; 0.195703, 0.182964, 0.780890;;, + 73;3; 0.195703, 0.182964, 0.780890;;, + 74;3; 0.195703, 0.182964, 0.780890;;, + 75;3; 0.195703, 0.182964, 0.780890;;, + 76;3; 0.195703, 0.182964, 0.780890;;, + 77;3; 0.195703, 0.182964, 0.780890;;, + 78;3; 0.195703, 0.182964, 0.780890;;, + 79;3; 0.195703, 0.182964, 0.780890;;; + } + AnimationKey { // Position + 2; + 80; + 0;3; 0.985878,-0.718404,-6.328409;;, + 1;3; 0.985878,-0.716950,-6.327615;;, + 2;3; 0.985878,-0.712554,-6.325198;;, + 3;3; 0.985878,-0.705207,-6.321122;;, + 4;3; 0.985878,-0.694972,-6.315381;;, + 5;3; 0.985878,-0.681998,-6.308012;;, + 6;3; 0.985878,-0.666546,-6.299107;;, + 7;3; 0.985878,-0.648991,-6.288815;;, + 8;3; 0.985878,-0.629828,-6.277351;;, + 9;3; 0.985878,-0.609652,-6.264987;;, + 10;3; 0.985878,-0.589131,-6.252039;;, + 11;3; 0.985878,-0.568955,-6.238850;;, + 12;3; 0.985878,-0.549789,-6.225760;;, + 13;3; 0.985878,-0.532232,-6.213085;;, + 14;3; 0.985878,-0.516777,-6.201101;;, + 15;3; 0.985878,-0.503801,-6.190028;;, + 16;3; 0.985878,-0.493563,-6.180032;;, + 17;3; 0.985878,-0.486214,-6.171224;;, + 18;3; 0.985878,-0.481817,-6.163669;;, + 19;3; 0.985878,-0.480362,-6.157396;;, + 20;3; 0.985878,-0.492642,-6.152040;;, + 21;3; 0.985878,-0.529594,-6.147311;;, + 22;3; 0.985878,-0.589670,-6.143323;;, + 23;3; 0.985878,-0.668236,-6.140161;;, + 24;3; 0.985878,-0.757231,-6.137845;;, + 25;3; 0.985878,-0.846219,-6.136311;;, + 26;3; 0.985878,-0.924770,-6.135415;;, + 27;3; 0.985878,-0.984827,-6.134974;;, + 28;3; 0.985878,-1.021765,-6.134810;;, + 29;3; 0.985878,-1.034040,-6.134781;;, + 30;3; 0.985878,-1.023379,-6.135458;;, + 31;3; 0.985878,-0.991296,-6.137495;;, + 32;3; 0.985878,-0.939131,-6.140805;;, + 33;3; 0.985878,-0.870902,-6.145136;;, + 34;3; 0.985878,-0.793609,-6.150042;;, + 35;3; 0.985878,-0.716317,-6.154948;;, + 36;3; 0.985878,-0.648088,-6.159278;;, + 37;3; 0.985878,-0.595923,-6.162590;;, + 38;3; 0.985878,-0.563840,-6.164626;;, + 39;3; 0.985878,-0.553180,-6.165302;;, + 40;3; 0.985878,-0.563436,-6.165089;;, + 41;3; 0.985878,-0.594300,-6.164446;;, + 42;3; 0.985878,-0.644484,-6.163401;;, + 43;3; 0.985878,-0.710121,-6.162034;;, + 44;3; 0.985878,-0.784478,-6.160485;;, + 45;3; 0.985878,-0.858838,-6.158936;;, + 46;3; 0.985878,-0.924482,-6.157569;;, + 47;3; 0.985878,-0.974673,-6.156523;;, + 48;3; 0.985878,-1.005544,-6.155880;;, + 49;3; 0.985878,-1.015802,-6.155667;;, + 50;3; 0.985878,-1.014653,-6.155672;;, + 51;3; 0.985878,-1.011186,-6.155688;;, + 52;3; 0.985878,-1.005381,-6.155716;;, + 53;3; 0.985878,-0.997234,-6.155754;;, + 54;3; 0.985878,-0.986766,-6.155803;;, + 55;3; 0.985878,-0.974020,-6.155862;;, + 56;3; 0.985878,-0.959072,-6.155932;;, + 57;3; 0.985878,-0.942028,-6.156013;;, + 58;3; 0.985878,-0.923034,-6.156101;;, + 59;3; 0.985878,-0.902269,-6.156199;;, + 60;3; 0.985878,-0.879956,-6.156303;;, + 61;3; 0.985878,-0.856350,-6.156414;;, + 62;3; 0.985878,-0.831742,-6.156528;;, + 63;3; 0.985878,-0.806450,-6.156647;;, + 64;3; 0.985878,-0.780811,-6.156767;;, + 65;3; 0.985878,-0.755171,-6.156887;;, + 66;3; 0.985878,-0.729879,-6.157006;;, + 67;3; 0.985878,-0.705271,-6.157121;;, + 68;3; 0.985878,-0.681665,-6.157231;;, + 69;3; 0.985878,-0.659352,-6.157336;;, + 70;3; 0.985878,-0.638587,-6.157433;;, + 71;3; 0.985878,-0.619592,-6.157522;;, + 72;3; 0.985878,-0.602548,-6.157602;;, + 73;3; 0.985878,-0.587600,-6.157671;;, + 74;3; 0.985878,-0.574854,-6.157732;;, + 75;3; 0.985878,-0.564386,-6.157781;;, + 76;3; 0.985878,-0.556239,-6.157819;;, + 77;3; 0.985878,-0.550433,-6.157845;;, + 78;3; 0.985878,-0.546966,-6.157862;;, + 79;3; 0.985878,-0.545818,-6.157867;;; + } + } +} // End of AnimationSet Global diff --git a/models/mobs_kitten.b3d b/models/mobs_kitten.b3d new file mode 100644 index 0000000000000000000000000000000000000000..c2478fefd8e3c8da60b9d71ba38e1f238799ae9f GIT binary patch literal 98176 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 + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_Bone { + FrameTransformMatrix { + 0.000000,-0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -3.892252,-0.000000, 1.176455, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.327682,10.463408, 0.000000, 1.000000;; + } + } // End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000,-1.000000,-0.000000, 0.000000, + -1.000000,-0.000000,-0.000000, 0.000000, + -0.000001,-2.648392,-0.000001, 1.000000;; + } + } // End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.000000, 1.000000,-0.000530, 0.000000, + 0.000000, 0.000530, 1.000000, 0.000000, + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000001, 7.151846, 6.618314, 1.000000;; + } + } // End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 0.000000, 0.999997, 0.002319, 0.000000, + -0.000000, 0.002319,-0.999997, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000001, 7.147045,-6.565950, 1.000000;; + } + } // End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000001, 0.655543, 6.627153, 1.000000;; + } + } // End of Armature_Bone_005 + Frame Armature_Bone_006 { + FrameTransformMatrix { + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000001, 0.653455,-6.572360, 1.000000;; + } + } // End of Armature_Bone_006 + } // End of Armature_Bone + Frame Group { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Group mesh + 1170; + 2.610081; 6.575115; 1.819720;, + 2.610081; 5.275315; 0.519920;, + 2.610081; 5.275315; 1.819720;, + 2.610081; 5.275315; 0.519920;, + 2.610081; 6.575115; 1.819720;, + 2.610081; 5.925215; 0.519920;, + 2.610081; 5.925215; 0.519920;, + 2.610081; 6.575115; 1.819720;, + 2.610081; 6.575115; 0.519920;, + 2.610081; 6.575115; 0.519920;, + 2.610081; 6.575115; 1.819720;, + 2.610081; 9.174715; 1.819720;, + 2.610081; 5.275315; 1.819720;, + 2.610081; 9.174715; 1.819720;, + 2.610081; 6.575115; 1.819720;, + 2.610081; 9.174715; 1.819720;, + 2.610081; 5.275315; 1.819720;, + 3.909881; 9.174715; 1.819720;, + 3.909881; 9.174715; 1.819720;, + 2.610081; 5.275315; 1.819720;, + 3.909881; 5.275315; 1.819720;, + 2.610081; 5.275315; 0.519920;, + 3.909881; 5.275315; 1.819720;, + 2.610081; 5.275315; 1.819720;, + 3.909881; 5.275315; 1.819720;, + 2.610081; 5.275315; 0.519920;, + 3.909881; 5.275315; 0.519920;, + 2.610081; 5.275315; 0.519920;, + 3.909881; 9.174715; 0.519920;, + 3.909881; 5.275315; 0.519920;, + 2.610081; 5.925215; 0.519920;, + 3.909881; 9.174715; 0.519920;, + 2.610081; 5.275315; 0.519920;, + 2.610081; 6.575115; 0.519920;, + 3.909881; 9.174715; 0.519920;, + 2.610081; 5.925215; 0.519920;, + 2.610081; 7.225015; 0.519920;, + 3.909881; 9.174715; 0.519920;, + 2.610081; 6.575115; 0.519920;, + 3.909881; 9.174715; 0.519920;, + 2.610081; 7.225015; 0.519920;, + 2.610081; 9.174715; 0.519920;, + 2.610081; 7.225015; 0.519920;, + 2.610081; 9.174715; 1.819720;, + 2.610081; 9.174715; 0.519920;, + 2.610081; 6.575115; 0.519920;, + 2.610081; 9.174715; 1.819720;, + 2.610081; 7.225015; 0.519920;, + 2.610081; 9.174715; 1.819720;, + 3.909881; 9.174715; 0.519920;, + 2.610081; 9.174715; 0.519920;, + 3.909881; 9.174715; 0.519920;, + 2.610081; 9.174715; 1.819720;, + 3.909881; 9.174715; 1.169820;, + 3.909881; 9.174715; 1.169820;, + 2.610081; 9.174715; 1.819720;, + 3.909881; 9.174715; 1.819720;, + 3.909881; 9.174715; 1.819720;, + 3.909881; 9.174715; 0.519920;, + 3.909881; 9.174715; 1.169820;, + 3.909881; 5.275315; 1.819720;, + 3.909881; 9.174715; 0.519920;, + 3.909881; 9.174715; 1.819720;, + 3.909881; 9.174715; 0.519920;, + 3.909881; 5.275315; 1.819720;, + 3.909881; 5.275315; 0.519920;, + -2.589118; 5.275315; 1.819720;, + -3.888918; 6.575115; 1.819720;, + -3.888918; 5.275315; 1.819720;, + -2.589118; 5.275315; 1.819720;, + -2.589118; 9.174715; 1.819720;, + -3.888918; 6.575115; 1.819720;, + -4.213868; 9.174715; 1.819720;, + -3.888918; 6.575115; 1.819720;, + -2.589118; 9.174715; 1.819720;, + -3.888918; 6.575115; 1.819720;, + -4.213868; 9.174715; 1.819720;, + -4.213868; 6.575115; 1.819720;, + -4.213868; 9.174715; 1.819720;, + -4.213868; 6.575115; 0.519920;, + -4.213868; 6.575115; 1.819720;, + -4.213868; 6.575115; 0.519920;, + -4.213868; 9.174715; 1.819720;, + -4.213868; 9.174715; 0.519920;, + -4.213868; 9.174715; 1.819720;, + -2.589118; 9.174715; 0.519920;, + -4.213868; 9.174715; 0.519920;, + -2.589118; 9.174715; 0.519920;, + -4.213868; 9.174715; 1.819720;, + -2.589118; 9.174715; 1.819720;, + -2.589118; 8.524815; 1.819720;, + -2.589118; 9.174715; 0.519920;, + -2.589118; 9.174715; 1.819720;, + -2.589118; 9.174715; 0.519920;, + -2.589118; 8.524815; 1.819720;, + -2.589118; 5.275315; 0.519920;, + -2.589118; 5.275315; 0.519920;, + -2.589118; 8.524815; 1.819720;, + -2.589118; 7.874915; 1.819720;, + -2.589118; 9.174715; 1.819720;, + -2.589118; 7.874915; 1.819720;, + -2.589118; 8.524815; 1.819720;, + -2.589118; 9.174715; 1.819720;, + -2.589118; 5.275315; 1.819720;, + -2.589118; 7.874915; 1.819720;, + -2.589118; 5.275315; 0.519920;, + -2.589118; 7.874915; 1.819720;, + -2.589118; 5.275315; 1.819720;, + -2.589118; 5.275315; 1.819720;, + -3.888918; 5.275315; 0.519920;, + -2.589118; 5.275315; 0.519920;, + -3.888918; 5.275315; 0.519920;, + -2.589118; 5.275315; 1.819720;, + -3.888918; 5.275315; 1.819720;, + -3.888918; 5.275315; 1.819720;, + -3.888918; 6.575115; 0.519920;, + -3.888918; 5.275315; 0.519920;, + -3.888918; 6.575115; 0.519920;, + -3.888918; 5.275315; 1.819720;, + -3.888918; 6.575115; 1.819720;, + -3.888918; 6.575115; 1.819720;, + -4.213868; 6.575115; 1.169820;, + -3.888918; 6.575115; 0.519920;, + -4.213868; 6.575115; 1.169820;, + -3.888918; 6.575115; 1.819720;, + -4.213868; 6.575115; 1.819720;, + -4.213868; 6.575115; 1.819720;, + -4.213868; 6.575115; 0.519920;, + -4.213868; 6.575115; 1.169820;, + -3.888918; 6.575115; 0.519920;, + -4.213868; 6.575115; 1.169820;, + -4.213868; 6.575115; 0.519920;, + -4.213868; 6.575115; 0.519920;, + -2.589118; 9.174715; 0.519920;, + -3.888918; 6.575115; 0.519920;, + -2.589118; 9.174715; 0.519920;, + -4.213868; 6.575115; 0.519920;, + -4.213868; 9.174715; 0.519920;, + -3.888918; 6.575115; 0.519920;, + -2.589118; 9.174715; 0.519920;, + -2.589118; 5.275315; 0.519920;, + -2.589118; 5.275315; 0.519920;, + -3.888918; 5.275315; 0.519920;, + -3.888918; 6.575115; 0.519920;, + 2.610081;-7.923884; 1.819720;, + 2.610081;-9.223684; 0.519920;, + 2.610081;-9.223684; 1.819720;, + 2.610081;-9.223684; 0.519920;, + 2.610081;-7.923884; 1.819720;, + 2.610081;-8.573784; 0.519920;, + 2.610081;-8.573784; 0.519920;, + 2.610081;-7.923884; 1.819720;, + 2.610081;-7.923884; 0.519920;, + 2.610081;-7.923884; 0.519920;, + 2.610081;-7.923884; 1.819720;, + 2.610081;-5.324285; 1.819720;, + 2.610081;-9.223684; 1.819720;, + 2.610081;-5.324285; 1.819720;, + 2.610081;-7.923884; 1.819720;, + 2.610081;-5.324285; 1.819720;, + 2.610081;-9.223684; 1.819720;, + 3.909881;-5.324285; 1.819720;, + 3.909881;-5.324285; 1.819720;, + 2.610081;-9.223684; 1.819720;, + 3.909881;-9.223684; 1.819720;, + 2.610081;-9.223684; 0.519920;, + 3.909881;-9.223684; 1.819720;, + 2.610081;-9.223684; 1.819720;, + 3.909881;-9.223684; 1.819720;, + 2.610081;-9.223684; 0.519920;, + 3.909881;-9.223684; 0.519920;, + 2.610081;-9.223684; 0.519920;, + 3.909881;-5.324285; 0.519920;, + 3.909881;-9.223684; 0.519920;, + 2.610081;-8.573784; 0.519920;, + 3.909881;-5.324285; 0.519920;, + 2.610081;-9.223684; 0.519920;, + 2.610081;-7.923884; 0.519920;, + 3.909881;-5.324285; 0.519920;, + 2.610081;-8.573784; 0.519920;, + 2.610081;-7.273984; 0.519920;, + 3.909881;-5.324285; 0.519920;, + 2.610081;-7.923884; 0.519920;, + 3.909881;-5.324285; 0.519920;, + 2.610081;-7.273984; 0.519920;, + 2.610081;-5.324285; 0.519920;, + 2.610081;-7.273984; 0.519920;, + 2.610081;-5.324285; 1.819720;, + 2.610081;-5.324285; 0.519920;, + 2.610081;-7.923884; 0.519920;, + 2.610081;-5.324285; 1.819720;, + 2.610081;-7.273984; 0.519920;, + 2.610081;-5.324285; 1.819720;, + 3.909881;-5.324285; 0.519920;, + 2.610081;-5.324285; 0.519920;, + 3.909881;-5.324285; 0.519920;, + 2.610081;-5.324285; 1.819720;, + 3.909881;-5.324285; 1.169820;, + 3.909881;-5.324285; 1.169820;, + 2.610081;-5.324285; 1.819720;, + 3.909881;-5.324285; 1.819720;, + 3.909881;-5.324285; 1.819720;, + 3.909881;-5.324285; 0.519920;, + 3.909881;-5.324285; 1.169820;, + 3.909881;-9.223684; 1.819720;, + 3.909881;-5.324285; 0.519920;, + 3.909881;-5.324285; 1.819720;, + 3.909881;-5.324285; 0.519920;, + 3.909881;-9.223684; 1.819720;, + 3.909881;-9.223684; 0.519920;, + -5.758938; 0.641792; 0.519920;, + -7.513668;-0.658008; 0.519920;, + -7.513668; 0.641792; 0.519920;, + -7.513668;-0.658008; 0.519920;, + -5.758938; 0.641792; 0.519920;, + -5.758938;-0.658008; 0.519920;, + -5.758938; 0.641792; 0.519920;, + -5.758938;-0.658008; 1.819720;, + -5.758938;-0.658008; 0.519920;, + -5.758938;-0.658008; 1.819720;, + -5.758938; 0.641792; 0.519920;, + -5.758938; 0.641792; 1.819720;, + -5.758938; 0.641792; 0.519920;, + -7.513668; 0.641792; 1.819720;, + -5.758938; 0.641792; 1.819720;, + -7.513668; 0.641792; 1.819720;, + -5.758938; 0.641792; 0.519920;, + -7.513668; 0.641792; 0.519920;, + -7.513668;-0.658008; 0.519920;, + -7.513668; 0.641792; 1.819720;, + -7.513668; 0.641792; 0.519920;, + -7.513668; 0.641792; 1.819720;, + -7.513668;-0.658008; 0.519920;, + -7.513668;-0.658008; 1.819720;, + -7.513668;-0.658008; 0.519920;, + -5.758938;-0.658008; 1.819720;, + -7.513668;-0.658008; 1.819720;, + -5.758938;-0.658008; 1.819720;, + -7.513668;-0.658008; 0.519920;, + -5.758938;-0.658008; 0.519920;, + -5.758938;-0.658008; 1.819720;, + -7.513668; 0.641792; 1.819720;, + -7.513668;-0.658008; 1.819720;, + -7.513668; 0.641792; 1.819720;, + -5.758938;-0.658008; 1.819720;, + -5.758938; 0.641792; 1.819720;, + -2.589118;-2.624084; 3.119520;, + -3.888918; 2.575115; 3.119520;, + -3.888918;-2.624084; 3.119520;, + -3.888918; 2.575115; 3.119520;, + -2.589118;-2.624084; 3.119520;, + -2.589118; 2.575115; 3.119520;, + -2.589118;-2.624084; 3.119520;, + -2.589118; 2.575115; 4.094369;, + -2.589118; 2.575115; 3.119520;, + -2.589118; 2.575115; 4.094369;, + -2.589118;-2.624084; 3.119520;, + -2.589118;-2.624084; 4.094369;, + -2.589118;-2.624084; 3.119520;, + 2.610081;-2.624084; 4.094369;, + -2.589118;-2.624084; 4.094369;, + 2.610081;-2.624084; 4.094369;, + -2.589118;-2.624084; 3.119520;, + 2.610081;-2.624084; 3.119520;, + -2.589118;-2.624084; 3.119520;, + 2.610081;-2.624084; 3.119520;, + -2.589118; 2.575115; 3.119520;, + -2.589118; 2.575115; 3.119520;, + 2.610081;-2.624084; 3.119520;, + 2.610081; 2.575115; 3.119520;, + 2.610081; 2.575115; 3.119520;, + 2.610081;-2.624084; 4.094369;, + 2.610081;-2.624084; 3.119520;, + 2.610081;-2.624084; 4.094369;, + 2.610081; 2.575115; 3.119520;, + 2.610081; 2.575115; 4.094369;, + 2.610081; 2.575115; 3.119520;, + -2.589118; 2.575115; 4.094369;, + 2.610081; 2.575115; 4.094369;, + -2.589118; 2.575115; 4.094369;, + 2.610081; 2.575115; 3.119520;, + -2.589118; 2.575115; 3.119520;, + 2.610081; 2.575115; 3.119520;, + -2.589118; 3.874915; 3.119520;, + -2.589118; 2.575115; 3.119520;, + -2.589118; 3.874915; 3.119520;, + 2.610081; 2.575115; 3.119520;, + 2.610081; 3.874915; 3.119520;, + 2.610081; 2.575115; 3.119520;, + 2.610081; 3.874915; 1.169820;, + 2.610081; 3.874915; 3.119520;, + 2.610081; 3.874915; 1.169820;, + 2.610081; 2.575115; 3.119520;, + 2.610081; 2.575115; 1.169820;, + 2.610081; 2.575115; 3.119520;, + 3.909881; 2.575115; 1.169820;, + 2.610081; 2.575115; 1.169820;, + 3.909881; 2.575115; 1.169820;, + 2.610081; 2.575115; 3.119520;, + 3.909881; 2.575115; 3.119520;, + 2.610081; 2.575115; 3.119520;, + 3.909881;-2.624084; 3.119520;, + 3.909881; 2.575115; 3.119520;, + 3.909881;-2.624084; 3.119520;, + 2.610081; 2.575115; 3.119520;, + 2.610081;-2.624084; 3.119520;, + 2.610081;-2.624084; 1.169820;, + 3.909881;-2.624084; 3.119520;, + 2.610081;-2.624084; 3.119520;, + 3.909881;-2.624084; 3.119520;, + 2.610081;-2.624084; 1.169820;, + 3.909881;-2.624084; 1.169820;, + 2.610081;-2.624084; 1.169820;, + 3.259981;-3.273984; 1.169820;, + 3.909881;-2.624084; 1.169820;, + 2.610081;-2.624084; 1.169820;, + 3.259981;-3.923884; 1.169820;, + 3.259981;-3.273984; 1.169820;, + 3.259981;-3.923884; 1.169820;, + 2.610081;-2.624084; 1.169820;, + 2.610081;-3.923884; 1.169820;, + 2.610081;-2.624084; 1.169820;, + 2.610081;-3.923884; 3.119520;, + 2.610081;-3.923884; 1.169820;, + 2.610081;-3.923884; 3.119520;, + 2.610081;-2.624084; 1.169820;, + 2.610081;-2.624084; 3.119520;, + -2.589118;-2.624084; 3.119520;, + 2.610081;-3.923884; 3.119520;, + 2.610081;-2.624084; 3.119520;, + 2.610081;-3.923884; 3.119520;, + -2.589118;-2.624084; 3.119520;, + -2.589118;-3.923884; 3.119520;, + -2.589118;-2.624084; 3.119520;, + -2.589118;-3.923884; 1.169820;, + -2.589118;-3.923884; 3.119520;, + -2.589118;-3.923884; 1.169820;, + -2.589118;-2.624084; 3.119520;, + -2.589118;-2.624084; 1.169820;, + -2.589118;-2.624084; 3.119520;, + -3.888918;-2.624084; 1.169820;, + -2.589118;-2.624084; 1.169820;, + -3.888918;-2.624084; 1.169820;, + -2.589118;-2.624084; 3.119520;, + -3.888918;-2.624084; 3.119520;, + -3.888918;-2.624084; 3.119520;, + -3.888918;-0.674384; 2.469620;, + -3.888918;-2.624084; 1.169820;, + -3.888918;-0.674384; 2.469620;, + -3.888918;-2.624084; 3.119520;, + -3.888918; 2.575115; 3.119520;, + -3.888918;-0.674384; 2.469620;, + -3.888918; 2.575115; 3.119520;, + -3.888918; 0.625415; 2.469620;, + -3.888918; 0.625415; 2.469620;, + -3.888918; 2.575115; 3.119520;, + -3.888918; 0.625415; 1.819720;, + -3.888918; 0.625415; 1.819720;, + -3.888918; 2.575115; 3.119520;, + -3.888918; 1.275315; 1.819720;, + -3.888918; 1.275315; 1.819720;, + -3.888918; 2.575115; 3.119520;, + -3.888918; 1.275315; 1.169820;, + -3.888918; 1.275315; 1.169820;, + -3.888918; 2.575115; 3.119520;, + -3.888918; 2.575115; 1.169820;, + -3.888918; 2.575115; 3.119520;, + -2.589118; 2.575115; 1.169820;, + -3.888918; 2.575115; 1.169820;, + -2.589118; 2.575115; 1.169820;, + -3.888918; 2.575115; 3.119520;, + -2.589118; 2.575115; 3.119520;, + -2.589118; 3.874915; 3.119520;, + -2.589118; 2.575115; 1.169820;, + -2.589118; 2.575115; 3.119520;, + -2.589118; 2.575115; 1.169820;, + -2.589118; 3.874915; 3.119520;, + -2.589118; 3.874915; 1.169820;, + -2.589118; 3.874915; 3.119520;, + 2.610081; 3.874915; 1.169820;, + -2.589118; 3.874915; 1.169820;, + 2.610081; 3.874915; 1.169820;, + -2.589118; 3.874915; 3.119520;, + 2.610081; 3.874915; 3.119520;, + 2.610081; 3.874915; 1.169820;, + -2.589118; 4.524815; 1.169820;, + -2.589118; 3.874915; 1.169820;, + -2.589118; 4.524815; 1.169820;, + 2.610081; 3.874915; 1.169820;, + 2.610081; 4.524815; 1.169820;, + 2.610081; 3.874915; 1.169820;, + 2.610081; 4.524815; 0.519920;, + 2.610081; 4.524815; 1.169820;, + 2.610081; 4.524815; 0.519920;, + 2.610081; 3.874915; 1.169820;, + 2.610081; 3.874915; 0.519920;, + 2.610081; 3.874915; 1.169820;, + 3.259981; 3.874915; 0.519920;, + 2.610081; 3.874915; 0.519920;, + 3.259981; 3.874915; 0.519920;, + 2.610081; 3.874915; 1.169820;, + 3.259981; 3.874915; 1.169820;, + 3.259981; 3.874915; 1.169820;, + 2.610081; 3.874915; 1.169820;, + 3.259981; 3.225015; 1.169820;, + 2.610081; 3.874915; 1.169820;, + 3.909881; 2.575115; 1.169820;, + 3.259981; 3.225015; 1.169820;, + 3.909881; 2.575115; 1.169820;, + 2.610081; 3.874915; 1.169820;, + 2.610081; 2.575115; 1.169820;, + 3.259981; 3.225015; 1.169820;, + 3.909881; 2.575115; 1.169820;, + 3.909881; 3.225015; 1.169820;, + 3.909881; 2.575115; 1.169820;, + 3.909881; 3.225015; 0.519920;, + 3.909881; 3.225015; 1.169820;, + 3.909881; 3.225015; 0.519920;, + 3.909881; 2.575115; 1.169820;, + 3.909881; 2.575115; 0.519920;, + 3.909881; 2.575115; 1.169820;, + 4.559781; 2.575115; 0.519920;, + 3.909881; 2.575115; 0.519920;, + 4.559781; 2.575115; 0.519920;, + 3.909881; 2.575115; 1.169820;, + 4.559781; 2.575115; 1.169820;, + 3.909881; 2.575115; 1.169820;, + 4.559781; 1.925215; 1.169820;, + 4.559781; 2.575115; 1.169820;, + 4.559781; 1.925215; 1.169820;, + 3.909881; 2.575115; 1.169820;, + 3.909881; 1.925215; 1.169820;, + 3.909881; 2.575115; 1.169820;, + 3.909881; 1.925215; 2.469620;, + 3.909881; 1.925215; 1.169820;, + 3.909881; 2.575115; 3.119520;, + 3.909881; 1.925215; 2.469620;, + 3.909881; 2.575115; 1.169820;, + 3.909881; 1.275315; 3.119520;, + 3.909881; 1.925215; 2.469620;, + 3.909881; 2.575115; 3.119520;, + 3.909881; 1.925215; 2.469620;, + 3.909881; 1.275315; 3.119520;, + 3.909881; 1.275315; 2.469620;, + 3.909881; 1.275315; 3.119520;, + 4.559781; 1.275315; 2.469620;, + 3.909881; 1.275315; 2.469620;, + 4.559781; 1.275315; 2.469620;, + 3.909881; 1.275315; 3.119520;, + 4.559781; 1.275315; 3.119520;, + 3.909881; 1.275315; 3.119520;, + 4.559781;-1.324284; 3.119520;, + 4.559781; 1.275315; 3.119520;, + 4.559781;-1.324284; 3.119520;, + 3.909881; 1.275315; 3.119520;, + 3.909881;-1.324284; 3.119520;, + 3.909881; 2.575115; 3.119520;, + 3.909881;-1.324284; 3.119520;, + 3.909881; 1.275315; 3.119520;, + 3.909881; 2.575115; 3.119520;, + 3.909881;-2.624084; 3.119520;, + 3.909881;-1.324284; 3.119520;, + 3.909881;-2.624084; 3.119520;, + 3.909881;-1.974184; 2.469620;, + 3.909881;-1.324284; 3.119520;, + 3.909881;-2.624084; 3.119520;, + 3.909881;-1.974184; 1.169820;, + 3.909881;-1.974184; 2.469620;, + 3.909881;-1.974184; 1.169820;, + 3.909881;-2.624084; 3.119520;, + 3.909881;-2.624084; 1.169820;, + 4.559781;-2.624084; 1.169820;, + 3.909881;-1.974184; 1.169820;, + 3.909881;-2.624084; 1.169820;, + 3.909881;-1.974184; 1.169820;, + 4.559781;-2.624084; 1.169820;, + 4.559781;-1.974184; 1.169820;, + 4.559781;-2.624084; 1.169820;, + 4.559781; 2.575115; 0.519920;, + 4.559781;-1.974184; 1.169820;, + 4.559781; 2.575115; 0.519920;, + 4.559781;-2.624084; 1.169820;, + 4.559781;-2.624084; 0.519920;, + 4.559781;-2.624084; 1.169820;, + 3.909881;-2.624084; 0.519920;, + 4.559781;-2.624084; 0.519920;, + 3.909881;-2.624084; 0.519920;, + 4.559781;-2.624084; 1.169820;, + 3.909881;-2.624084; 1.169820;, + 3.909881;-3.273984; 1.169820;, + 3.909881;-2.624084; 0.519920;, + 3.909881;-2.624084; 1.169820;, + 3.909881;-2.624084; 0.519920;, + 3.909881;-3.273984; 1.169820;, + 3.909881;-3.273984; 0.519920;, + 3.909881;-3.273984; 1.169820;, + 3.259981;-3.273984; 0.519920;, + 3.909881;-3.273984; 0.519920;, + 3.259981;-3.273984; 0.519920;, + 3.909881;-3.273984; 1.169820;, + 3.259981;-3.273984; 1.169820;, + 3.909881;-2.624084; 1.169820;, + 3.259981;-3.273984; 1.169820;, + 3.909881;-3.273984; 1.169820;, + 3.259981;-3.923884; 1.169820;, + 3.259981;-3.273984; 0.519920;, + 3.259981;-3.273984; 1.169820;, + 3.259981;-3.273984; 0.519920;, + 3.259981;-3.923884; 1.169820;, + 3.259981;-3.923884; 0.519920;, + 3.259981;-3.923884; 1.169820;, + 2.610081;-3.923884; 0.519920;, + 3.259981;-3.923884; 0.519920;, + 2.610081;-3.923884; 0.519920;, + 3.259981;-3.923884; 1.169820;, + 2.610081;-3.923884; 1.169820;, + 2.610081;-4.573784; 1.169820;, + 2.610081;-3.923884; 0.519920;, + 2.610081;-3.923884; 1.169820;, + 2.610081;-3.923884; 0.519920;, + 2.610081;-4.573784; 1.169820;, + 2.610081;-4.573784; 0.519920;, + 2.610081;-4.573784; 1.169820;, + -2.589118;-4.573784; 0.519920;, + 2.610081;-4.573784; 0.519920;, + -2.589118;-4.573784; 0.519920;, + 2.610081;-4.573784; 1.169820;, + -2.589118;-4.573784; 1.169820;, + 2.610081;-4.573784; 1.169820;, + -2.589118;-3.923884; 1.169820;, + -2.589118;-4.573784; 1.169820;, + -2.589118;-3.923884; 1.169820;, + 2.610081;-4.573784; 1.169820;, + 2.610081;-3.923884; 1.169820;, + 2.610081;-3.923884; 3.119520;, + -2.589118;-3.923884; 1.169820;, + 2.610081;-3.923884; 1.169820;, + -2.589118;-3.923884; 1.169820;, + 2.610081;-3.923884; 3.119520;, + -2.589118;-3.923884; 3.119520;, + -2.589118;-3.923884; 1.169820;, + -2.589118;-4.573784; 0.519920;, + -2.589118;-4.573784; 1.169820;, + -2.589118;-4.573784; 0.519920;, + -2.589118;-3.923884; 1.169820;, + -2.589118;-3.923884; 0.519920;, + -2.589118;-3.923884; 1.169820;, + -3.239018;-3.923884; 0.519920;, + -2.589118;-3.923884; 0.519920;, + -3.239018;-3.923884; 0.519920;, + -2.589118;-3.923884; 1.169820;, + -3.239018;-3.923884; 1.169820;, + -2.589118;-3.923884; 1.169820;, + -3.239018;-3.273984; 1.169820;, + -3.239018;-3.923884; 1.169820;, + -2.589118;-2.624084; 1.169820;, + -3.239018;-3.273984; 1.169820;, + -2.589118;-3.923884; 1.169820;, + -3.888918;-2.624084; 1.169820;, + -3.239018;-3.273984; 1.169820;, + -2.589118;-2.624084; 1.169820;, + -3.239018;-3.273984; 1.169820;, + -3.888918;-2.624084; 1.169820;, + -3.888918;-3.273984; 1.169820;, + -3.888918;-2.624084; 1.169820;, + -3.888918;-3.273984; 0.519920;, + -3.888918;-3.273984; 1.169820;, + -3.888918;-3.273984; 0.519920;, + -3.888918;-2.624084; 1.169820;, + -3.888918;-2.624084; 0.519920;, + -3.888918;-2.624084; 1.169820;, + -4.538818;-2.624084; 0.519920;, + -3.888918;-2.624084; 0.519920;, + -4.538818;-2.624084; 0.519920;, + -3.888918;-2.624084; 1.169820;, + -4.538818;-2.624084; 1.169820;, + -3.888918;-2.624084; 1.169820;, + -4.538818;-1.324284; 1.169820;, + -4.538818;-2.624084; 1.169820;, + -4.538818;-1.324284; 1.169820;, + -3.888918;-2.624084; 1.169820;, + -3.888918;-1.324284; 1.169820;, + -3.888918;-1.324284; 1.169820;, + -3.888918;-2.624084; 1.169820;, + -3.888918;-1.324284; 1.819720;, + -3.888918;-2.624084; 1.169820;, + -3.888918;-0.674384; 2.469620;, + -3.888918;-1.324284; 1.819720;, + -3.888918;-0.674384; 1.819720;, + -3.888918;-1.324284; 1.819720;, + -3.888918;-0.674384; 2.469620;, + -4.538818;-0.674384; 1.819720;, + -3.888918;-1.324284; 1.819720;, + -3.888918;-0.674384; 1.819720;, + -3.888918;-1.324284; 1.819720;, + -4.538818;-0.674384; 1.819720;, + -4.538818;-1.324284; 1.819720;, + -4.538818;-0.674384; 1.819720;, + -4.538818;-1.324284; 1.169820;, + -4.538818;-1.324284; 1.819720;, + -4.538818; 2.575115; 0.519920;, + -4.538818;-1.324284; 1.169820;, + -4.538818;-0.674384; 1.819720;, + -4.538818;-2.624084; 0.519920;, + -4.538818;-1.324284; 1.169820;, + -4.538818; 2.575115; 0.519920;, + -4.538818;-1.324284; 1.169820;, + -4.538818;-2.624084; 0.519920;, + -4.538818;-2.624084; 1.169820;, + -3.888918; 2.575115; 0.519920;, + -4.538818;-2.624084; 0.519920;, + -4.538818; 2.575115; 0.519920;, + -4.538818;-2.624084; 0.519920;, + -3.888918; 2.575115; 0.519920;, + -3.888918;-2.624084; 0.519920;, + -3.888918; 2.575115; 0.519920;, + -3.888918;-2.624084; 0.259960;, + -3.888918;-2.624084; 0.519920;, + -3.888918;-2.624084; 0.259960;, + -3.888918; 2.575115; 0.519920;, + -3.888918; 2.575115; 0.259960;, + -3.888918; 2.575115; 0.519920;, + -2.589118; 2.575115; 0.259960;, + -3.888918; 2.575115; 0.259960;, + -2.589118; 2.575115; 0.259960;, + -3.888918; 2.575115; 0.519920;, + -2.589118; 2.575115; 0.519920;, + -3.888918; 2.575115; 0.519920;, + -3.239018; 3.225015; 0.519920;, + -2.589118; 2.575115; 0.519920;, + -3.239018; 3.225015; 0.519920;, + -3.888918; 2.575115; 0.519920;, + -3.888918; 3.225015; 0.519920;, + -3.888918; 2.575115; 0.519920;, + -3.888918; 3.225015; 1.169820;, + -3.888918; 3.225015; 0.519920;, + -3.888918; 3.225015; 1.169820;, + -3.888918; 2.575115; 0.519920;, + -3.888918; 2.575115; 1.169820;, + -3.888918; 2.575115; 0.519920;, + -4.538818; 2.575115; 1.169820;, + -3.888918; 2.575115; 1.169820;, + -4.538818; 2.575115; 1.169820;, + -3.888918; 2.575115; 0.519920;, + -4.538818; 2.575115; 0.519920;, + -4.538818; 2.575115; 0.519920;, + -4.538818; 1.275315; 1.169820;, + -4.538818; 2.575115; 1.169820;, + -4.538818; 2.575115; 0.519920;, + -4.538818;-0.674384; 1.819720;, + -4.538818; 1.275315; 1.169820;, + -4.538818; 1.275315; 1.169820;, + -4.538818;-0.674384; 1.819720;, + -4.538818; 0.625415; 1.819720;, + -4.538818; 0.625415; 1.819720;, + -4.538818;-0.674384; 1.819720;, + -4.538818; 0.625415; 2.469620;, + -4.538818; 0.625415; 2.469620;, + -4.538818;-0.674384; 1.819720;, + -4.538818;-0.674384; 2.469620;, + -4.538818;-0.674384; 1.819720;, + -3.888918;-0.674384; 2.469620;, + -4.538818;-0.674384; 2.469620;, + -3.888918;-0.674384; 2.469620;, + -4.538818;-0.674384; 1.819720;, + -3.888918;-0.674384; 1.819720;, + -3.888918;-0.674384; 2.469620;, + -4.538818; 0.625415; 2.469620;, + -4.538818;-0.674384; 2.469620;, + -4.538818; 0.625415; 2.469620;, + -3.888918;-0.674384; 2.469620;, + -3.888918; 0.625415; 2.469620;, + -3.888918; 0.625415; 1.819720;, + -4.538818; 0.625415; 2.469620;, + -3.888918; 0.625415; 2.469620;, + -4.538818; 0.625415; 2.469620;, + -3.888918; 0.625415; 1.819720;, + -4.538818; 0.625415; 1.819720;, + -3.888918; 0.625415; 1.819720;, + -4.538818; 1.275315; 1.819720;, + -4.538818; 0.625415; 1.819720;, + -4.538818; 1.275315; 1.819720;, + -3.888918; 0.625415; 1.819720;, + -3.888918; 1.275315; 1.819720;, + -3.888918; 1.275315; 1.169820;, + -4.538818; 1.275315; 1.819720;, + -3.888918; 1.275315; 1.819720;, + -4.538818; 1.275315; 1.819720;, + -3.888918; 1.275315; 1.169820;, + -4.538818; 1.275315; 1.169820;, + -3.888918; 1.275315; 1.169820;, + -4.538818; 2.575115; 1.169820;, + -4.538818; 1.275315; 1.169820;, + -4.538818; 2.575115; 1.169820;, + -3.888918; 1.275315; 1.169820;, + -3.888918; 2.575115; 1.169820;, + -4.538818; 1.275315; 1.169820;, + -4.538818; 0.625415; 1.819720;, + -4.538818; 1.275315; 1.819720;, + -2.589118; 2.575115; 1.169820;, + -3.888918; 3.225015; 1.169820;, + -3.888918; 2.575115; 1.169820;, + -3.888918; 3.225015; 1.169820;, + -2.589118; 2.575115; 1.169820;, + -3.239018; 3.225015; 1.169820;, + -3.239018; 3.225015; 1.169820;, + -2.589118; 2.575115; 1.169820;, + -3.239018; 3.874915; 1.169820;, + -3.239018; 3.874915; 1.169820;, + -2.589118; 2.575115; 1.169820;, + -2.589118; 3.874915; 1.169820;, + -2.589118; 3.874915; 0.519920;, + -3.239018; 3.874915; 1.169820;, + -2.589118; 3.874915; 1.169820;, + -3.239018; 3.874915; 1.169820;, + -2.589118; 3.874915; 0.519920;, + -3.239018; 3.874915; 0.519920;, + -2.589118; 3.874915; 0.519920;, + -3.239018; 3.225015; 0.519920;, + -3.239018; 3.874915; 0.519920;, + -3.239018; 3.225015; 0.519920;, + -2.589118; 3.874915; 0.519920;, + -2.589118; 2.575115; 0.519920;, + -2.589118; 3.874915; 0.519920;, + -2.589118; 2.575115; 0.259960;, + -2.589118; 2.575115; 0.519920;, + -2.589118; 2.575115; 0.259960;, + -2.589118; 3.874915; 0.519920;, + -2.589118; 3.874915; 0.259960;, + -2.589118; 3.874915; 0.519920;, + 2.610081; 3.874915; 0.259960;, + -2.589118; 3.874915; 0.259960;, + 2.610081; 3.874915; 0.259960;, + -2.589118; 3.874915; 0.519920;, + 2.610081; 3.874915; 0.519920;, + -2.589118; 3.874915; 0.519920;, + 2.610081; 4.524815; 0.519920;, + 2.610081; 3.874915; 0.519920;, + 2.610081; 4.524815; 0.519920;, + -2.589118; 3.874915; 0.519920;, + -2.589118; 4.524815; 0.519920;, + -2.589118; 3.874915; 0.519920;, + -2.589118; 4.524815; 1.169820;, + -2.589118; 4.524815; 0.519920;, + -2.589118; 4.524815; 1.169820;, + -2.589118; 3.874915; 0.519920;, + -2.589118; 3.874915; 1.169820;, + -2.589118; 4.524815; 1.169820;, + 2.610081; 4.524815; 0.519920;, + -2.589118; 4.524815; 0.519920;, + 2.610081; 4.524815; 0.519920;, + -2.589118; 4.524815; 1.169820;, + 2.610081; 4.524815; 1.169820;, + 2.610081; 2.575115; 0.519920;, + 2.610081; 3.874915; 0.259960;, + 2.610081; 3.874915; 0.519920;, + 2.610081; 3.874915; 0.259960;, + 2.610081; 2.575115; 0.519920;, + 2.610081; 2.575115; 0.259960;, + 2.610081; 2.575115; 0.519920;, + 3.909881; 2.575115; 0.259960;, + 2.610081; 2.575115; 0.259960;, + 3.909881; 2.575115; 0.259960;, + 2.610081; 2.575115; 0.519920;, + 3.909881; 2.575115; 0.519920;, + 2.610081; 2.575115; 0.519920;, + 3.259981; 3.225015; 0.519920;, + 3.909881; 2.575115; 0.519920;, + 2.610081; 2.575115; 0.519920;, + 3.259981; 3.874915; 0.519920;, + 3.259981; 3.225015; 0.519920;, + 3.259981; 3.874915; 0.519920;, + 2.610081; 2.575115; 0.519920;, + 2.610081; 3.874915; 0.519920;, + 3.259981; 3.874915; 0.519920;, + 3.259981; 3.225015; 1.169820;, + 3.259981; 3.225015; 0.519920;, + 3.259981; 3.225015; 1.169820;, + 3.259981; 3.874915; 0.519920;, + 3.259981; 3.874915; 1.169820;, + 3.259981; 3.225015; 1.169820;, + 3.909881; 3.225015; 0.519920;, + 3.259981; 3.225015; 0.519920;, + 3.909881; 3.225015; 0.519920;, + 3.259981; 3.225015; 1.169820;, + 3.909881; 3.225015; 1.169820;, + 3.909881; 2.575115; 0.519920;, + 3.259981; 3.225015; 0.519920;, + 3.909881; 3.225015; 0.519920;, + 3.909881;-2.624084; 0.519920;, + 3.909881; 2.575115; 0.259960;, + 3.909881; 2.575115; 0.519920;, + 3.909881; 2.575115; 0.259960;, + 3.909881;-2.624084; 0.519920;, + 3.909881;-2.624084; 0.259960;, + 3.909881;-2.624084; 0.519920;, + 2.610081;-2.624084; 0.259960;, + 3.909881;-2.624084; 0.259960;, + 2.610081;-2.624084; 0.259960;, + 3.909881;-2.624084; 0.519920;, + 2.610081;-2.624084; 0.519920;, + 3.259981;-3.273984; 0.519920;, + 2.610081;-2.624084; 0.519920;, + 3.909881;-2.624084; 0.519920;, + 2.610081;-2.624084; 0.519920;, + 3.259981;-3.273984; 0.519920;, + 2.610081;-3.923884; 0.519920;, + 3.259981;-3.923884; 0.519920;, + 2.610081;-3.923884; 0.519920;, + 3.259981;-3.273984; 0.519920;, + 2.610081;-3.923884; 0.519920;, + 2.610081;-2.624084; 0.259960;, + 2.610081;-2.624084; 0.519920;, + 2.610081;-2.624084; 0.259960;, + 2.610081;-3.923884; 0.519920;, + 2.610081;-3.923884; 0.259960;, + 2.610081;-3.923884; 0.519920;, + -2.589118;-3.923884; 0.259960;, + 2.610081;-3.923884; 0.259960;, + -2.589118;-3.923884; 0.259960;, + 2.610081;-3.923884; 0.519920;, + -2.589118;-3.923884; 0.519920;, + 2.610081;-3.923884; 0.519920;, + -2.589118;-4.573784; 0.519920;, + -2.589118;-3.923884; 0.519920;, + -2.589118;-4.573784; 0.519920;, + 2.610081;-3.923884; 0.519920;, + 2.610081;-4.573784; 0.519920;, + -2.589118;-2.624084; 0.519920;, + -2.589118;-3.923884; 0.259960;, + -2.589118;-3.923884; 0.519920;, + -2.589118;-3.923884; 0.259960;, + -2.589118;-2.624084; 0.519920;, + -2.589118;-2.624084; 0.259960;, + -2.589118;-2.624084; 0.519920;, + -3.888918;-2.624084; 0.259960;, + -2.589118;-2.624084; 0.259960;, + -3.888918;-2.624084; 0.259960;, + -2.589118;-2.624084; 0.519920;, + -3.888918;-2.624084; 0.519920;, + -2.589118;-2.624084; 0.519920;, + -3.888918;-3.273984; 0.519920;, + -3.888918;-2.624084; 0.519920;, + -3.888918;-3.273984; 0.519920;, + -2.589118;-2.624084; 0.519920;, + -3.239018;-3.273984; 0.519920;, + -3.239018;-3.273984; 0.519920;, + -2.589118;-2.624084; 0.519920;, + -3.239018;-3.923884; 0.519920;, + -3.239018;-3.923884; 0.519920;, + -2.589118;-2.624084; 0.519920;, + -2.589118;-3.923884; 0.519920;, + -3.239018;-3.923884; 0.519920;, + -3.239018;-3.273984; 1.169820;, + -3.239018;-3.273984; 0.519920;, + -3.239018;-3.273984; 1.169820;, + -3.239018;-3.923884; 0.519920;, + -3.239018;-3.923884; 1.169820;, + -3.239018;-3.273984; 1.169820;, + -3.888918;-3.273984; 0.519920;, + -3.239018;-3.273984; 0.519920;, + -3.888918;-3.273984; 0.519920;, + -3.239018;-3.273984; 1.169820;, + -3.888918;-3.273984; 1.169820;, + -3.888918;-2.624084; 0.259960;, + -2.589118; 2.575115; 0.259960;, + -2.589118;-2.624084; 0.259960;, + -2.589118; 2.575115; 0.259960;, + -3.888918;-2.624084; 0.259960;, + -3.888918; 2.575115; 0.259960;, + -2.589118; 2.575115; 0.259960;, + -2.589118;-2.624084; 0.000000;, + -2.589118;-2.624084; 0.259960;, + -2.589118;-2.624084; 0.000000;, + -2.589118; 2.575115; 0.259960;, + -2.589118; 2.575115; 0.000000;, + -2.589118; 2.575115; 0.259960;, + 2.610081; 2.575115; 0.000000;, + -2.589118; 2.575115; 0.000000;, + 2.610081; 2.575115; 0.000000;, + -2.589118; 2.575115; 0.259960;, + 2.610081; 2.575115; 0.259960;, + -2.589118; 3.874915; 0.259960;, + 2.610081; 2.575115; 0.259960;, + -2.589118; 2.575115; 0.259960;, + 2.610081; 2.575115; 0.259960;, + -2.589118; 3.874915; 0.259960;, + 2.610081; 3.874915; 0.259960;, + 2.610081;-2.624084; 0.259960;, + 2.610081; 2.575115; 0.000000;, + 2.610081; 2.575115; 0.259960;, + 2.610081; 2.575115; 0.000000;, + 2.610081;-2.624084; 0.259960;, + 2.610081;-2.624084; 0.000000;, + 2.610081;-2.624084; 0.259960;, + -2.589118;-2.624084; 0.000000;, + 2.610081;-2.624084; 0.000000;, + -2.589118;-2.624084; 0.000000;, + 2.610081;-2.624084; 0.259960;, + -2.589118;-2.624084; 0.259960;, + 2.610081;-2.624084; 0.259960;, + -2.589118;-3.923884; 0.259960;, + -2.589118;-2.624084; 0.259960;, + -2.589118;-3.923884; 0.259960;, + 2.610081;-2.624084; 0.259960;, + 2.610081;-3.923884; 0.259960;, + -2.589118;-2.624084; 0.000000;, + 2.610081; 2.575115; 0.000000;, + 2.610081;-2.624084; 0.000000;, + 2.610081; 2.575115; 0.000000;, + -2.589118;-2.624084; 0.000000;, + -2.589118; 2.575115; 0.000000;, + 3.909881; 2.575115; 0.259960;, + 2.610081;-2.624084; 0.259960;, + 2.610081; 2.575115; 0.259960;, + 2.610081;-2.624084; 0.259960;, + 3.909881; 2.575115; 0.259960;, + 3.909881;-2.624084; 0.259960;, + 3.259981;-3.273984; 0.519920;, + 3.909881;-2.624084; 0.519920;, + 3.909881;-3.273984; 0.519920;, + 4.559781; 2.575115; 0.519920;, + 3.909881;-2.624084; 0.519920;, + 3.909881; 2.575115; 0.519920;, + 3.909881;-2.624084; 0.519920;, + 4.559781; 2.575115; 0.519920;, + 4.559781;-2.624084; 0.519920;, + -3.239018; 3.225015; 0.519920;, + -3.239018; 3.874915; 1.169820;, + -3.239018; 3.874915; 0.519920;, + -3.239018; 3.874915; 1.169820;, + -3.239018; 3.225015; 0.519920;, + -3.239018; 3.225015; 1.169820;, + -3.239018; 3.225015; 0.519920;, + -3.888918; 3.225015; 1.169820;, + -3.239018; 3.225015; 1.169820;, + -3.888918; 3.225015; 1.169820;, + -3.239018; 3.225015; 0.519920;, + -3.888918; 3.225015; 0.519920;, + -4.538818;-1.324284; 1.169820;, + -3.888918;-1.324284; 1.819720;, + -4.538818;-1.324284; 1.819720;, + -3.888918;-1.324284; 1.819720;, + -4.538818;-1.324284; 1.169820;, + -3.888918;-1.324284; 1.169820;, + 4.559781;-1.974184; 1.169820;, + 4.559781; 2.575115; 0.519920;, + 4.559781;-1.974184; 2.469620;, + 4.559781;-1.974184; 2.469620;, + 4.559781; 2.575115; 0.519920;, + 4.559781;-1.324284; 2.469620;, + 4.559781;-1.324284; 2.469620;, + 4.559781; 2.575115; 0.519920;, + 4.559781;-1.324284; 3.119520;, + 4.559781;-1.324284; 3.119520;, + 4.559781; 2.575115; 0.519920;, + 4.559781; 1.925215; 1.169820;, + 4.559781; 1.925215; 1.169820;, + 4.559781; 2.575115; 0.519920;, + 4.559781; 2.575115; 1.169820;, + 4.559781;-1.324284; 3.119520;, + 4.559781; 1.925215; 1.169820;, + 4.559781; 1.275315; 2.469620;, + 4.559781; 1.925215; 2.469620;, + 4.559781; 1.275315; 2.469620;, + 4.559781; 1.925215; 1.169820;, + 3.909881; 1.925215; 2.469620;, + 4.559781; 1.275315; 2.469620;, + 4.559781; 1.925215; 2.469620;, + 4.559781; 1.275315; 2.469620;, + 3.909881; 1.925215; 2.469620;, + 3.909881; 1.275315; 2.469620;, + 4.559781; 1.925215; 1.169820;, + 3.909881; 1.925215; 2.469620;, + 4.559781; 1.925215; 2.469620;, + 3.909881; 1.925215; 2.469620;, + 4.559781; 1.925215; 1.169820;, + 3.909881; 1.925215; 1.169820;, + 4.559781; 1.275315; 3.119520;, + 4.559781;-1.324284; 3.119520;, + 4.559781; 1.275315; 2.469620;, + 4.559781;-1.324284; 3.119520;, + 3.909881;-1.324284; 2.469620;, + 4.559781;-1.324284; 2.469620;, + 3.909881;-1.324284; 2.469620;, + 4.559781;-1.324284; 3.119520;, + 3.909881;-1.324284; 3.119520;, + 3.909881;-1.324284; 3.119520;, + 3.909881;-1.974184; 2.469620;, + 3.909881;-1.324284; 2.469620;, + 4.559781;-1.974184; 2.469620;, + 3.909881;-1.324284; 2.469620;, + 3.909881;-1.974184; 2.469620;, + 3.909881;-1.324284; 2.469620;, + 4.559781;-1.974184; 2.469620;, + 4.559781;-1.324284; 2.469620;, + 3.909881;-1.974184; 1.169820;, + 4.559781;-1.974184; 2.469620;, + 3.909881;-1.974184; 2.469620;, + 4.559781;-1.974184; 2.469620;, + 3.909881;-1.974184; 1.169820;, + 4.559781;-1.974184; 1.169820;, + -2.589118; 2.575115; 4.094369;, + 2.610081;-2.624084; 4.094369;, + 2.610081; 2.575115; 4.094369;, + 2.610081;-2.624084; 4.094369;, + -2.589118; 2.575115; 4.094369;, + -2.589118;-2.624084; 4.094369;, + 5.909881; 1.275315; 2.469620;, + 5.909881;-1.324284; 0.519920;, + 5.909881;-1.324284; 2.469620;, + 5.909881;-1.324284; 0.519920;, + 5.909881; 1.275315; 2.469620;, + 5.909881; 1.275315; 0.519920;, + 5.909881; 1.275315; 2.469620;, + 8.327509; 1.275315; 0.519920;, + 5.909881; 1.275315; 0.519920;, + 8.327509; 1.275315; 0.519920;, + 5.909881; 1.275315; 2.469620;, + 8.327509; 1.275315; 2.469620;, + 5.909881; 1.275315; 2.469620;, + 8.327509;-1.324284; 2.469620;, + 8.327509; 1.275315; 2.469620;, + 8.327509;-1.324284; 2.469620;, + 5.909881; 1.275315; 2.469620;, + 5.909881;-1.324284; 2.469620;, + 5.909881;-1.324284; 0.519920;, + 8.327509;-1.324284; 2.469620;, + 5.909881;-1.324284; 2.469620;, + 8.327509;-1.324284; 2.469620;, + 5.909881;-1.324284; 0.519920;, + 8.327509;-1.324284; 0.519920;, + 5.909881;-1.324284; 0.519920;, + 8.327509; 1.275315; 0.519920;, + 8.327509;-1.324284; 0.519920;, + 8.327509; 1.275315; 0.519920;, + 5.909881;-1.324284; 0.519920;, + 5.909881; 1.275315; 0.519920;, + 8.327509;-1.064324; 0.779880;, + 8.327509;-1.324284; 0.519920;, + 8.327509; 1.275315; 0.519920;, + 8.327509;-1.324284; 0.519920;, + 8.327509;-1.064324; 0.779880;, + 8.327509;-1.324284; 2.469620;, + 8.327509;-1.064324; 2.209660;, + 8.327509;-1.324284; 2.469620;, + 8.327509;-1.064324; 0.779880;, + 8.327509;-1.324284; 2.469620;, + 8.327509;-1.064324; 2.209660;, + 8.327509; 1.275315; 2.469620;, + 8.327509; 1.275315; 2.469620;, + 8.327509;-1.064324; 2.209660;, + 8.327509; 1.015355; 2.209660;, + 8.587469;-1.064324; 2.209660;, + 8.327509; 1.015355; 2.209660;, + 8.327509;-1.064324; 2.209660;, + 8.327509; 1.015355; 2.209660;, + 8.587469;-1.064324; 2.209660;, + 8.587469; 1.015355; 2.209660;, + 8.587469;-1.064324; 2.209660;, + 8.587469; 1.015355; 0.779880;, + 8.587469; 1.015355; 2.209660;, + 8.587469; 1.015355; 0.779880;, + 8.587469;-1.064324; 2.209660;, + 8.587469;-1.064324; 0.779880;, + 8.587469;-1.064324; 2.209660;, + 8.327509;-1.064324; 0.779880;, + 8.587469;-1.064324; 0.779880;, + 8.327509;-1.064324; 0.779880;, + 8.587469;-1.064324; 2.209660;, + 8.327509;-1.064324; 2.209660;, + 8.327509;-1.064324; 0.779880;, + 8.587469; 1.015355; 0.779880;, + 8.587469;-1.064324; 0.779880;, + 8.587469; 1.015355; 0.779880;, + 8.327509;-1.064324; 0.779880;, + 8.327509; 1.015355; 0.779880;, + 8.327509;-1.064324; 0.779880;, + 8.327509; 1.275315; 0.519920;, + 8.327509; 1.015355; 0.779880;, + 8.327509; 1.015355; 0.779880;, + 8.327509; 1.275315; 0.519920;, + 8.327509; 1.015355; 2.209660;, + 8.327509; 1.275315; 2.469620;, + 8.327509; 1.015355; 2.209660;, + 8.327509; 1.275315; 0.519920;, + 8.327509; 1.015355; 2.209660;, + 8.587469; 1.015355; 0.779880;, + 8.327509; 1.015355; 0.779880;, + 8.587469; 1.015355; 0.779880;, + 8.327509; 1.015355; 2.209660;, + 8.587469; 1.015355; 2.209660;, + -2.589118;-5.324285; 0.507232;, + -3.888918;-6.624084; 0.507232;, + -3.888918;-5.324285; 0.507232;, + -2.589118;-5.324285; 0.507232;, + -2.589118;-9.223684; 0.507232;, + -3.888918;-6.624084; 0.507232;, + -4.213868;-9.223684; 0.507232;, + -3.888918;-6.624084; 0.507232;, + -2.589118;-9.223684; 0.507232;, + -3.888918;-6.624084; 0.507232;, + -4.213868;-9.223684; 0.507232;, + -4.213868;-6.624084; 0.507232;, + -4.213868;-9.223684; 0.507232;, + -4.213868;-6.624084; 1.807031;, + -4.213868;-6.624084; 0.507232;, + -4.213868;-6.624084; 1.807031;, + -4.213868;-9.223684; 0.507232;, + -4.213868;-9.223684; 1.807031;, + -4.213868;-9.223684; 0.507232;, + -2.589118;-9.223684; 1.807031;, + -4.213868;-9.223684; 1.807031;, + -2.589118;-9.223684; 1.807031;, + -4.213868;-9.223684; 0.507232;, + -2.589118;-9.223684; 0.507232;, + -2.589118;-8.573784; 0.507232;, + -2.589118;-9.223684; 1.807031;, + -2.589118;-9.223684; 0.507232;, + -2.589118;-9.223684; 1.807031;, + -2.589118;-8.573784; 0.507232;, + -2.589118;-5.324285; 1.807031;, + -2.589118;-5.324285; 1.807031;, + -2.589118;-8.573784; 0.507232;, + -2.589118;-7.923884; 0.507232;, + -2.589118;-9.223684; 0.507232;, + -2.589118;-7.923884; 0.507232;, + -2.589118;-8.573784; 0.507232;, + -2.589118;-9.223684; 0.507232;, + -2.589118;-5.324285; 0.507232;, + -2.589118;-7.923884; 0.507232;, + -2.589118;-5.324285; 1.807031;, + -2.589118;-7.923884; 0.507232;, + -2.589118;-5.324285; 0.507232;, + -2.589118;-5.324285; 0.507232;, + -3.888918;-5.324285; 1.807031;, + -2.589118;-5.324285; 1.807031;, + -3.888918;-5.324285; 1.807031;, + -2.589118;-5.324285; 0.507232;, + -3.888918;-5.324285; 0.507232;, + -3.888918;-5.324285; 0.507232;, + -3.888918;-6.624084; 1.807031;, + -3.888918;-5.324285; 1.807031;, + -3.888918;-6.624084; 1.807031;, + -3.888918;-5.324285; 0.507232;, + -3.888918;-6.624084; 0.507232;, + -3.888918;-6.624084; 0.507232;, + -4.213868;-6.624084; 1.157131;, + -3.888918;-6.624084; 1.807031;, + -4.213868;-6.624084; 1.157131;, + -3.888918;-6.624084; 0.507232;, + -4.213868;-6.624084; 0.507232;, + -4.213868;-6.624084; 0.507232;, + -4.213868;-6.624084; 1.807031;, + -4.213868;-6.624084; 1.157131;, + -3.888918;-6.624084; 1.807031;, + -4.213868;-6.624084; 1.157131;, + -4.213868;-6.624084; 1.807031;, + -4.213868;-6.624084; 1.807031;, + -2.589118;-9.223684; 1.807031;, + -3.888918;-6.624084; 1.807031;, + -2.589118;-9.223684; 1.807031;, + -4.213868;-6.624084; 1.807031;, + -4.213868;-9.223684; 1.807031;, + -3.888918;-6.624084; 1.807031;, + -2.589118;-9.223684; 1.807031;, + -2.589118;-5.324285; 1.807031;, + -2.589118;-5.324285; 1.807031;, + -3.888918;-5.324285; 1.807031;, + -3.888918;-6.624084; 1.807031;; + 390; + 3;2,1,0;, + 3;5,4,3;, + 3;8,7,6;, + 3;11,10,9;, + 3;14,13,12;, + 3;17,16,15;, + 3;20,19,18;, + 3;23,22,21;, + 3;26,25,24;, + 3;29,28,27;, + 3;32,31,30;, + 3;35,34,33;, + 3;38,37,36;, + 3;41,40,39;, + 3;44,43,42;, + 3;47,46,45;, + 3;50,49,48;, + 3;53,52,51;, + 3;56,55,54;, + 3;59,58,57;, + 3;62,61,60;, + 3;65,64,63;, + 3;68,67,66;, + 3;71,70,69;, + 3;74,73,72;, + 3;77,76,75;, + 3;80,79,78;, + 3;83,82,81;, + 3;86,85,84;, + 3;89,88,87;, + 3;92,91,90;, + 3;95,94,93;, + 3;98,97,96;, + 3;101,100,99;, + 3;104,103,102;, + 3;107,106,105;, + 3;110,109,108;, + 3;113,112,111;, + 3;116,115,114;, + 3;119,118,117;, + 3;122,121,120;, + 3;125,124,123;, + 3;128,127,126;, + 3;131,130,129;, + 3;134,133,132;, + 3;137,136,135;, + 3;140,139,138;, + 3;143,142,141;, + 3;146,145,144;, + 3;149,148,147;, + 3;152,151,150;, + 3;155,154,153;, + 3;158,157,156;, + 3;161,160,159;, + 3;164,163,162;, + 3;167,166,165;, + 3;170,169,168;, + 3;173,172,171;, + 3;176,175,174;, + 3;179,178,177;, + 3;182,181,180;, + 3;185,184,183;, + 3;188,187,186;, + 3;191,190,189;, + 3;194,193,192;, + 3;197,196,195;, + 3;200,199,198;, + 3;203,202,201;, + 3;206,205,204;, + 3;209,208,207;, + 3;212,211,210;, + 3;215,214,213;, + 3;218,217,216;, + 3;221,220,219;, + 3;224,223,222;, + 3;227,226,225;, + 3;230,229,228;, + 3;233,232,231;, + 3;236,235,234;, + 3;239,238,237;, + 3;242,241,240;, + 3;245,244,243;, + 3;248,247,246;, + 3;251,250,249;, + 3;254,253,252;, + 3;257,256,255;, + 3;260,259,258;, + 3;263,262,261;, + 3;266,265,264;, + 3;269,268,267;, + 3;272,271,270;, + 3;275,274,273;, + 3;278,277,276;, + 3;281,280,279;, + 3;284,283,282;, + 3;287,286,285;, + 3;290,289,288;, + 3;293,292,291;, + 3;296,295,294;, + 3;299,298,297;, + 3;302,301,300;, + 3;305,304,303;, + 3;308,307,306;, + 3;311,310,309;, + 3;314,313,312;, + 3;317,316,315;, + 3;320,319,318;, + 3;323,322,321;, + 3;326,325,324;, + 3;329,328,327;, + 3;332,331,330;, + 3;335,334,333;, + 3;338,337,336;, + 3;341,340,339;, + 3;344,343,342;, + 3;347,346,345;, + 3;350,349,348;, + 3;353,352,351;, + 3;356,355,354;, + 3;359,358,357;, + 3;362,361,360;, + 3;365,364,363;, + 3;368,367,366;, + 3;371,370,369;, + 3;374,373,372;, + 3;377,376,375;, + 3;380,379,378;, + 3;383,382,381;, + 3;386,385,384;, + 3;389,388,387;, + 3;392,391,390;, + 3;395,394,393;, + 3;398,397,396;, + 3;401,400,399;, + 3;404,403,402;, + 3;407,406,405;, + 3;410,409,408;, + 3;413,412,411;, + 3;416,415,414;, + 3;419,418,417;, + 3;422,421,420;, + 3;425,424,423;, + 3;428,427,426;, + 3;431,430,429;, + 3;434,433,432;, + 3;437,436,435;, + 3;440,439,438;, + 3;443,442,441;, + 3;446,445,444;, + 3;449,448,447;, + 3;452,451,450;, + 3;455,454,453;, + 3;458,457,456;, + 3;461,460,459;, + 3;464,463,462;, + 3;467,466,465;, + 3;470,469,468;, + 3;473,472,471;, + 3;476,475,474;, + 3;479,478,477;, + 3;482,481,480;, + 3;485,484,483;, + 3;488,487,486;, + 3;491,490,489;, + 3;494,493,492;, + 3;497,496,495;, + 3;500,499,498;, + 3;503,502,501;, + 3;506,505,504;, + 3;509,508,507;, + 3;512,511,510;, + 3;515,514,513;, + 3;518,517,516;, + 3;521,520,519;, + 3;524,523,522;, + 3;527,526,525;, + 3;530,529,528;, + 3;533,532,531;, + 3;536,535,534;, + 3;539,538,537;, + 3;542,541,540;, + 3;545,544,543;, + 3;548,547,546;, + 3;551,550,549;, + 3;554,553,552;, + 3;557,556,555;, + 3;560,559,558;, + 3;563,562,561;, + 3;566,565,564;, + 3;569,568,567;, + 3;572,571,570;, + 3;575,574,573;, + 3;578,577,576;, + 3;581,580,579;, + 3;584,583,582;, + 3;587,586,585;, + 3;590,589,588;, + 3;593,592,591;, + 3;596,595,594;, + 3;599,598,597;, + 3;602,601,600;, + 3;605,604,603;, + 3;608,607,606;, + 3;611,610,609;, + 3;614,613,612;, + 3;617,616,615;, + 3;620,619,618;, + 3;623,622,621;, + 3;626,625,624;, + 3;629,628,627;, + 3;632,631,630;, + 3;635,634,633;, + 3;638,637,636;, + 3;641,640,639;, + 3;644,643,642;, + 3;647,646,645;, + 3;650,649,648;, + 3;653,652,651;, + 3;656,655,654;, + 3;659,658,657;, + 3;662,661,660;, + 3;665,664,663;, + 3;668,667,666;, + 3;671,670,669;, + 3;674,673,672;, + 3;677,676,675;, + 3;680,679,678;, + 3;683,682,681;, + 3;686,685,684;, + 3;689,688,687;, + 3;692,691,690;, + 3;695,694,693;, + 3;698,697,696;, + 3;701,700,699;, + 3;704,703,702;, + 3;707,706,705;, + 3;710,709,708;, + 3;713,712,711;, + 3;716,715,714;, + 3;719,718,717;, + 3;722,721,720;, + 3;725,724,723;, + 3;728,727,726;, + 3;731,730,729;, + 3;734,733,732;, + 3;737,736,735;, + 3;740,739,738;, + 3;743,742,741;, + 3;746,745,744;, + 3;749,748,747;, + 3;752,751,750;, + 3;755,754,753;, + 3;758,757,756;, + 3;761,760,759;, + 3;764,763,762;, + 3;767,766,765;, + 3;770,769,768;, + 3;773,772,771;, + 3;776,775,774;, + 3;779,778,777;, + 3;782,781,780;, + 3;785,784,783;, + 3;788,787,786;, + 3;791,790,789;, + 3;794,793,792;, + 3;797,796,795;, + 3;800,799,798;, + 3;803,802,801;, + 3;806,805,804;, + 3;809,808,807;, + 3;812,811,810;, + 3;815,814,813;, + 3;818,817,816;, + 3;821,820,819;, + 3;824,823,822;, + 3;827,826,825;, + 3;830,829,828;, + 3;833,832,831;, + 3;836,835,834;, + 3;839,838,837;, + 3;842,841,840;, + 3;845,844,843;, + 3;848,847,846;, + 3;851,850,849;, + 3;854,853,852;, + 3;857,856,855;, + 3;860,859,858;, + 3;863,862,861;, + 3;866,865,864;, + 3;869,868,867;, + 3;872,871,870;, + 3;875,874,873;, + 3;878,877,876;, + 3;881,880,879;, + 3;884,883,882;, + 3;887,886,885;, + 3;890,889,888;, + 3;893,892,891;, + 3;896,895,894;, + 3;899,898,897;, + 3;902,901,900;, + 3;905,904,903;, + 3;908,907,906;, + 3;911,910,909;, + 3;914,913,912;, + 3;917,916,915;, + 3;920,919,918;, + 3;923,922,921;, + 3;926,925,924;, + 3;929,928,927;, + 3;932,931,930;, + 3;935,934,933;, + 3;938,937,936;, + 3;941,940,939;, + 3;944,943,942;, + 3;947,946,945;, + 3;950,949,948;, + 3;953,952,951;, + 3;956,955,954;, + 3;959,958,957;, + 3;962,961,960;, + 3;965,964,963;, + 3;968,967,966;, + 3;971,970,969;, + 3;974,973,972;, + 3;977,976,975;, + 3;980,979,978;, + 3;983,982,981;, + 3;986,985,984;, + 3;989,988,987;, + 3;992,991,990;, + 3;995,994,993;, + 3;998,997,996;, + 3;1001,1000,999;, + 3;1004,1003,1002;, + 3;1007,1006,1005;, + 3;1010,1009,1008;, + 3;1013,1012,1011;, + 3;1016,1015,1014;, + 3;1019,1018,1017;, + 3;1022,1021,1020;, + 3;1025,1024,1023;, + 3;1028,1027,1026;, + 3;1031,1030,1029;, + 3;1034,1033,1032;, + 3;1037,1036,1035;, + 3;1040,1039,1038;, + 3;1043,1042,1041;, + 3;1046,1045,1044;, + 3;1049,1048,1047;, + 3;1052,1051,1050;, + 3;1055,1054,1053;, + 3;1058,1057,1056;, + 3;1061,1060,1059;, + 3;1064,1063,1062;, + 3;1067,1066,1065;, + 3;1070,1069,1068;, + 3;1073,1072,1071;, + 3;1076,1075,1074;, + 3;1079,1078,1077;, + 3;1082,1081,1080;, + 3;1085,1084,1083;, + 3;1088,1087,1086;, + 3;1091,1090,1089;, + 3;1094,1093,1092;, + 3;1097,1096,1095;, + 3;1100,1099,1098;, + 3;1103,1102,1101;, + 3;1106,1105,1104;, + 3;1109,1108,1107;, + 3;1112,1111,1110;, + 3;1115,1114,1113;, + 3;1118,1117,1116;, + 3;1121,1120,1119;, + 3;1124,1123,1122;, + 3;1127,1126,1125;, + 3;1130,1129,1128;, + 3;1133,1132,1131;, + 3;1136,1135,1134;, + 3;1139,1138,1137;, + 3;1142,1141,1140;, + 3;1145,1144,1143;, + 3;1148,1147,1146;, + 3;1151,1150,1149;, + 3;1154,1153,1152;, + 3;1157,1156,1155;, + 3;1160,1159,1158;, + 3;1163,1162,1161;, + 3;1166,1165,1164;, + 3;1169,1168,1167;; + MeshNormals { // Group normals + 390; + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -1.000000;-0.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;; + 390; + 3;0,0,0;, + 3;1,1,1;, + 3;2,2,2;, + 3;3,3,3;, + 3;4,4,4;, + 3;5,5,5;, + 3;6,6,6;, + 3;7,7,7;, + 3;8,8,8;, + 3;9,9,9;, + 3;10,10,10;, + 3;11,11,11;, + 3;12,12,12;, + 3;13,13,13;, + 3;14,14,14;, + 3;15,15,15;, + 3;16,16,16;, + 3;17,17,17;, + 3;18,18,18;, + 3;19,19,19;, + 3;20,20,20;, + 3;21,21,21;, + 3;22,22,22;, + 3;23,23,23;, + 3;24,24,24;, + 3;25,25,25;, + 3;26,26,26;, + 3;27,27,27;, + 3;28,28,28;, + 3;29,29,29;, + 3;30,30,30;, + 3;31,31,31;, + 3;32,32,32;, + 3;33,33,33;, + 3;34,34,34;, + 3;35,35,35;, + 3;36,36,36;, + 3;37,37,37;, + 3;38,38,38;, + 3;39,39,39;, + 3;40,40,40;, + 3;41,41,41;, + 3;42,42,42;, + 3;43,43,43;, + 3;44,44,44;, + 3;45,45,45;, + 3;46,46,46;, + 3;47,47,47;, + 3;48,48,48;, + 3;49,49,49;, + 3;50,50,50;, + 3;51,51,51;, + 3;52,52,52;, + 3;53,53,53;, + 3;54,54,54;, + 3;55,55,55;, + 3;56,56,56;, + 3;57,57,57;, + 3;58,58,58;, + 3;59,59,59;, + 3;60,60,60;, + 3;61,61,61;, + 3;62,62,62;, + 3;63,63,63;, + 3;64,64,64;, + 3;65,65,65;, + 3;66,66,66;, + 3;67,67,67;, + 3;68,68,68;, + 3;69,69,69;, + 3;70,70,70;, + 3;71,71,71;, + 3;72,72,72;, + 3;73,73,73;, + 3;74,74,74;, + 3;75,75,75;, + 3;76,76,76;, + 3;77,77,77;, + 3;78,78,78;, + 3;79,79,79;, + 3;80,80,80;, + 3;81,81,81;, + 3;82,82,82;, + 3;83,83,83;, + 3;84,84,84;, + 3;85,85,85;, + 3;86,86,86;, + 3;87,87,87;, + 3;88,88,88;, + 3;89,89,89;, + 3;90,90,90;, + 3;91,91,91;, + 3;92,92,92;, + 3;93,93,93;, + 3;94,94,94;, + 3;95,95,95;, + 3;96,96,96;, + 3;97,97,97;, + 3;98,98,98;, + 3;99,99,99;, + 3;100,100,100;, + 3;101,101,101;, + 3;102,102,102;, + 3;103,103,103;, + 3;104,104,104;, + 3;105,105,105;, + 3;106,106,106;, + 3;107,107,107;, + 3;108,108,108;, + 3;109,109,109;, + 3;110,110,110;, + 3;111,111,111;, + 3;112,112,112;, + 3;113,113,113;, + 3;114,114,114;, + 3;115,115,115;, + 3;116,116,116;, + 3;117,117,117;, + 3;118,118,118;, + 3;119,119,119;, + 3;120,120,120;, + 3;121,121,121;, + 3;122,122,122;, + 3;123,123,123;, + 3;124,124,124;, + 3;125,125,125;, + 3;126,126,126;, + 3;127,127,127;, + 3;128,128,128;, + 3;129,129,129;, + 3;130,130,130;, + 3;131,131,131;, + 3;132,132,132;, + 3;133,133,133;, + 3;134,134,134;, + 3;135,135,135;, + 3;136,136,136;, + 3;137,137,137;, + 3;138,138,138;, + 3;139,139,139;, + 3;140,140,140;, + 3;141,141,141;, + 3;142,142,142;, + 3;143,143,143;, + 3;144,144,144;, + 3;145,145,145;, + 3;146,146,146;, + 3;147,147,147;, + 3;148,148,148;, + 3;149,149,149;, + 3;150,150,150;, + 3;151,151,151;, + 3;152,152,152;, + 3;153,153,153;, + 3;154,154,154;, + 3;155,155,155;, + 3;156,156,156;, + 3;157,157,157;, + 3;158,158,158;, + 3;159,159,159;, + 3;160,160,160;, + 3;161,161,161;, + 3;162,162,162;, + 3;163,163,163;, + 3;164,164,164;, + 3;165,165,165;, + 3;166,166,166;, + 3;167,167,167;, + 3;168,168,168;, + 3;169,169,169;, + 3;170,170,170;, + 3;171,171,171;, + 3;172,172,172;, + 3;173,173,173;, + 3;174,174,174;, + 3;175,175,175;, + 3;176,176,176;, + 3;177,177,177;, + 3;178,178,178;, + 3;179,179,179;, + 3;180,180,180;, + 3;181,181,181;, + 3;182,182,182;, + 3;183,183,183;, + 3;184,184,184;, + 3;185,185,185;, + 3;186,186,186;, + 3;187,187,187;, + 3;188,188,188;, + 3;189,189,189;, + 3;190,190,190;, + 3;191,191,191;, + 3;192,192,192;, + 3;193,193,193;, + 3;194,194,194;, + 3;195,195,195;, + 3;196,196,196;, + 3;197,197,197;, + 3;198,198,198;, + 3;199,199,199;, + 3;200,200,200;, + 3;201,201,201;, + 3;202,202,202;, + 3;203,203,203;, + 3;204,204,204;, + 3;205,205,205;, + 3;206,206,206;, + 3;207,207,207;, + 3;208,208,208;, + 3;209,209,209;, + 3;210,210,210;, + 3;211,211,211;, + 3;212,212,212;, + 3;213,213,213;, + 3;214,214,214;, + 3;215,215,215;, + 3;216,216,216;, + 3;217,217,217;, + 3;218,218,218;, + 3;219,219,219;, + 3;220,220,220;, + 3;221,221,221;, + 3;222,222,222;, + 3;223,223,223;, + 3;224,224,224;, + 3;225,225,225;, + 3;226,226,226;, + 3;227,227,227;, + 3;228,228,228;, + 3;229,229,229;, + 3;230,230,230;, + 3;231,231,231;, + 3;232,232,232;, + 3;233,233,233;, + 3;234,234,234;, + 3;235,235,235;, + 3;236,236,236;, + 3;237,237,237;, + 3;238,238,238;, + 3;239,239,239;, + 3;240,240,240;, + 3;241,241,241;, + 3;242,242,242;, + 3;243,243,243;, + 3;244,244,244;, + 3;245,245,245;, + 3;246,246,246;, + 3;247,247,247;, + 3;248,248,248;, + 3;249,249,249;, + 3;250,250,250;, + 3;251,251,251;, + 3;252,252,252;, + 3;253,253,253;, + 3;254,254,254;, + 3;255,255,255;, + 3;256,256,256;, + 3;257,257,257;, + 3;258,258,258;, + 3;259,259,259;, + 3;260,260,260;, + 3;261,261,261;, + 3;262,262,262;, + 3;263,263,263;, + 3;264,264,264;, + 3;265,265,265;, + 3;266,266,266;, + 3;267,267,267;, + 3;268,268,268;, + 3;269,269,269;, + 3;270,270,270;, + 3;271,271,271;, + 3;272,272,272;, + 3;273,273,273;, + 3;274,274,274;, + 3;275,275,275;, + 3;276,276,276;, + 3;277,277,277;, + 3;278,278,278;, + 3;279,279,279;, + 3;280,280,280;, + 3;281,281,281;, + 3;282,282,282;, + 3;283,283,283;, + 3;284,284,284;, + 3;285,285,285;, + 3;286,286,286;, + 3;287,287,287;, + 3;288,288,288;, + 3;289,289,289;, + 3;290,290,290;, + 3;291,291,291;, + 3;292,292,292;, + 3;293,293,293;, + 3;294,294,294;, + 3;295,295,295;, + 3;296,296,296;, + 3;297,297,297;, + 3;298,298,298;, + 3;299,299,299;, + 3;300,300,300;, + 3;301,301,301;, + 3;302,302,302;, + 3;303,303,303;, + 3;304,304,304;, + 3;305,305,305;, + 3;306,306,306;, + 3;307,307,307;, + 3;308,308,308;, + 3;309,309,309;, + 3;310,310,310;, + 3;311,311,311;, + 3;312,312,312;, + 3;313,313,313;, + 3;314,314,314;, + 3;315,315,315;, + 3;316,316,316;, + 3;317,317,317;, + 3;318,318,318;, + 3;319,319,319;, + 3;320,320,320;, + 3;321,321,321;, + 3;322,322,322;, + 3;323,323,323;, + 3;324,324,324;, + 3;325,325,325;, + 3;326,326,326;, + 3;327,327,327;, + 3;328,328,328;, + 3;329,329,329;, + 3;330,330,330;, + 3;331,331,331;, + 3;332,332,332;, + 3;333,333,333;, + 3;334,334,334;, + 3;335,335,335;, + 3;336,336,336;, + 3;337,337,337;, + 3;338,338,338;, + 3;339,339,339;, + 3;340,340,340;, + 3;341,341,341;, + 3;342,342,342;, + 3;343,343,343;, + 3;344,344,344;, + 3;345,345,345;, + 3;346,346,346;, + 3;347,347,347;, + 3;348,348,348;, + 3;349,349,349;, + 3;350,350,350;, + 3;351,351,351;, + 3;352,352,352;, + 3;353,353,353;, + 3;354,354,354;, + 3;355,355,355;, + 3;356,356,356;, + 3;357,357,357;, + 3;358,358,358;, + 3;359,359,359;, + 3;360,360,360;, + 3;361,361,361;, + 3;362,362,362;, + 3;363,363,363;, + 3;364,364,364;, + 3;365,365,365;, + 3;366,366,366;, + 3;367,367,367;, + 3;368,368,368;, + 3;369,369,369;, + 3;370,370,370;, + 3;371,371,371;, + 3;372,372,372;, + 3;373,373,373;, + 3;374,374,374;, + 3;375,375,375;, + 3;376,376,376;, + 3;377,377,377;, + 3;378,378,378;, + 3;379,379,379;, + 3;380,380,380;, + 3;381,381,381;, + 3;382,382,382;, + 3;383,383,383;, + 3;384,384,384;, + 3;385,385,385;, + 3;386,386,386;, + 3;387,387,387;, + 3;388,388,388;, + 3;389,389,389;; + } // End of Group normals + MeshTextureCoords { // Group UV coordinates + 1170; + 0.689883; 0.276347;, + 0.738835; 0.227695;, + 0.690033; 0.227546;, + 0.738835; 0.227695;, + 0.689883; 0.276347;, + 0.738760; 0.252096;, + 0.738760; 0.252096;, + 0.689883; 0.276347;, + 0.738685; 0.276497;, + 0.738685; 0.276497;, + 0.689883; 0.276347;, + 0.689584; 0.373950;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.544867; 0.373912;, + 0.544418; 0.227508;, + 0.496066; 0.374062;, + 0.496066; 0.374062;, + 0.544418; 0.227508;, + 0.495617; 0.227658;, + 0.411001; 0.131629;, + 0.362349; 0.082678;, + 0.362200; 0.131479;, + 0.362349; 0.082678;, + 0.411001; 0.131629;, + 0.411151; 0.082828;, + 0.787298; 0.531767;, + 0.738048; 0.385513;, + 0.738497; 0.531917;, + 0.787223; 0.507367;, + 0.738048; 0.385513;, + 0.787298; 0.531767;, + 0.787148; 0.482966;, + 0.738048; 0.385513;, + 0.787223; 0.507367;, + 0.787074; 0.458565;, + 0.738048; 0.385513;, + 0.787148; 0.482966;, + 0.738048; 0.385513;, + 0.787074; 0.458565;, + 0.786849; 0.385363;, + 0.738610; 0.300897;, + 0.689584; 0.373950;, + 0.738385; 0.374100;, + 0.738685; 0.276497;, + 0.689584; 0.373950;, + 0.738610; 0.300897;, + 0.690033; 0.077820;, + 0.738685; 0.126771;, + 0.738835; 0.077970;, + 0.738685; 0.126771;, + 0.690033; 0.077820;, + 0.714284; 0.126697;, + 0.714284; 0.126697;, + 0.690033; 0.077820;, + 0.689883; 0.126622;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.617019; 0.422676;, + 0.666270; 0.276422;, + 0.617468; 0.276272;, + 0.666270; 0.276422;, + 0.617019; 0.422676;, + 0.665821; 0.422826;, + 0.690559; 0.945155;, + 0.641907; 0.896204;, + 0.641758; 0.945005;, + 0.690559; 0.945155;, + 0.691008; 0.798751;, + 0.641907; 0.896204;, + 0.630006; 0.798564;, + 0.641907; 0.896204;, + 0.691008; 0.798751;, + 0.641907; 0.896204;, + 0.630006; 0.798564;, + 0.629707; 0.896167;, + 0.617169; 0.264859;, + 0.666270; 0.167406;, + 0.617468; 0.167256;, + 0.666270; 0.167406;, + 0.617169; 0.264859;, + 0.665970; 0.265009;, + 0.422714; 0.070478;, + 0.471328; 0.131629;, + 0.471515; 0.070628;, + 0.471328; 0.131629;, + 0.422714; 0.070478;, + 0.422527; 0.131480;, + 0.556505; 0.251909;, + 0.605381; 0.227658;, + 0.556580; 0.227508;, + 0.605381; 0.227658;, + 0.556505; 0.251909;, + 0.604932; 0.374062;, + 0.604932; 0.374062;, + 0.556505; 0.251909;, + 0.556430; 0.276310;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.604932; 0.374062;, + 0.556430; 0.276310;, + 0.556131; 0.373912;, + 0.495617; 0.131480;, + 0.544568; 0.082828;, + 0.495766; 0.082678;, + 0.544568; 0.082828;, + 0.495617; 0.131480;, + 0.544418; 0.131629;, + 0.350711; 0.067007;, + 0.301760; 0.115659;, + 0.350562; 0.115808;, + 0.301760; 0.115659;, + 0.350711; 0.067007;, + 0.301910; 0.066857;, + 0.066783; 0.212683;, + 0.079058; 0.188320;, + 0.066933; 0.163882;, + 0.079058; 0.188320;, + 0.066783; 0.212683;, + 0.078984; 0.212721;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.066933; 0.163882;, + 0.079058; 0.188320;, + 0.079133; 0.163920;, + 0.678320; 0.531693;, + 0.617019; 0.434277;, + 0.666120; 0.531730;, + 0.617019; 0.434277;, + 0.678320; 0.531693;, + 0.678021; 0.434090;, + 0.666120; 0.531730;, + 0.617019; 0.434277;, + 0.617468; 0.580681;, + 0.617468; 0.580681;, + 0.666270; 0.580531;, + 0.666120; 0.531730;, + 0.435402; 0.276310;, + 0.484353; 0.227658;, + 0.435552; 0.227508;, + 0.484353; 0.227658;, + 0.435402; 0.276310;, + 0.484278; 0.252059;, + 0.484278; 0.252059;, + 0.435402; 0.276310;, + 0.484203; 0.276459;, + 0.484203; 0.276459;, + 0.435402; 0.276310;, + 0.435102; 0.373912;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.362424; 0.227508;, + 0.361975; 0.373912;, + 0.411226; 0.227658;, + 0.411226; 0.227658;, + 0.361975; 0.373912;, + 0.410776; 0.374062;, + 0.078984; 0.128106;, + 0.030332; 0.079154;, + 0.030182; 0.127956;, + 0.030332; 0.079154;, + 0.078984; 0.128106;, + 0.079133; 0.079304;, + 0.799986; 0.993732;, + 0.750735; 0.847477;, + 0.751184; 0.993882;, + 0.799911; 0.969331;, + 0.750735; 0.847477;, + 0.799986; 0.993732;, + 0.799836; 0.944931;, + 0.750735; 0.847477;, + 0.799911; 0.969331;, + 0.799761; 0.920530;, + 0.750735; 0.847477;, + 0.799836; 0.944931;, + 0.750735; 0.847477;, + 0.799761; 0.920530;, + 0.799537; 0.847328;, + 0.484128; 0.300860;, + 0.435102; 0.373912;, + 0.483904; 0.374062;, + 0.484203; 0.276459;, + 0.435102; 0.373912;, + 0.484128; 0.300860;, + 0.556131; 0.131479;, + 0.605082; 0.082828;, + 0.556280; 0.082678;, + 0.605082; 0.082828;, + 0.556131; 0.131479;, + 0.605007; 0.107228;, + 0.605007; 0.107228;, + 0.556131; 0.131479;, + 0.604932; 0.131629;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.738048; 0.787113;, + 0.787298; 0.640858;, + 0.738497; 0.640709;, + 0.787298; 0.640858;, + 0.738048; 0.787113;, + 0.786849; 0.787263;, + 0.810814; 0.167555;, + 0.859414; 0.101524;, + 0.810612; 0.101674;, + 0.859414; 0.101524;, + 0.810814; 0.167555;, + 0.859616; 0.167406;, + 0.139348; 0.079304;, + 0.090397; 0.127956;, + 0.139198; 0.128106;, + 0.090397; 0.127956;, + 0.139348; 0.079304;, + 0.090547; 0.079154;, + 0.919681; 0.167555;, + 0.871082; 0.101524;, + 0.870880; 0.167406;, + 0.871082; 0.101524;, + 0.919681; 0.167555;, + 0.919883; 0.101674;, + 0.859563; 0.041459;, + 0.810612; 0.090110;, + 0.859414; 0.090260;, + 0.810612; 0.090110;, + 0.859563; 0.041459;, + 0.810762; 0.041309;, + 0.932107; 0.531917;, + 0.883508; 0.465885;, + 0.883306; 0.531767;, + 0.883508; 0.465885;, + 0.932107; 0.531917;, + 0.932309; 0.466035;, + 0.617266; 0.155843;, + 0.666270; 0.090110;, + 0.617468; 0.089961;, + 0.666270; 0.090110;, + 0.617266; 0.155843;, + 0.666068; 0.155992;, + 0.178172; 0.683797;, + 0.350711; 0.787320;, + 0.212680; 0.649289;, + 0.350711; 0.787320;, + 0.178172; 0.683797;, + 0.316203; 0.821828;, + 0.739472; 0.798676;, + 0.702272; 0.993769;, + 0.738873; 0.993882;, + 0.702272; 0.993769;, + 0.739472; 0.798676;, + 0.702871; 0.798564;, + 0.726185; 0.787263;, + 0.690183; 0.591945;, + 0.689584; 0.787150;, + 0.690183; 0.591945;, + 0.726185; 0.787263;, + 0.726784; 0.592057;, + 0.178172; 0.683797;, + 0.040140; 0.821828;, + 0.316203; 0.821828;, + 0.316203; 0.821828;, + 0.040140; 0.821828;, + 0.178172; 0.959860;, + 0.350711; 0.236200;, + 0.313512; 0.431294;, + 0.350113; 0.431406;, + 0.313512; 0.431294;, + 0.350711; 0.236200;, + 0.314110; 0.236088;, + 0.726185; 0.580681;, + 0.690183; 0.385363;, + 0.689584; 0.580569;, + 0.690183; 0.385363;, + 0.726185; 0.580681;, + 0.726784; 0.385476;, + 0.178172; 0.959860;, + 0.350711; 0.856336;, + 0.316203; 0.821828;, + 0.350711; 0.856336;, + 0.178172; 0.959860;, + 0.212680; 0.994368;, + 0.738272; 0.556093;, + 0.786849; 0.629445;, + 0.787074; 0.556243;, + 0.786849; 0.629445;, + 0.738272; 0.556093;, + 0.738048; 0.629295;, + 0.139198; 0.139369;, + 0.090622; 0.212721;, + 0.139423; 0.212571;, + 0.090622; 0.212721;, + 0.139198; 0.139369;, + 0.090397; 0.139519;, + 0.178172; 0.959860;, + 0.005632; 0.856336;, + 0.143664; 0.994368;, + 0.005632; 0.856336;, + 0.178172; 0.959860;, + 0.040140; 0.821828;, + 0.605157; 0.143043;, + 0.556131; 0.216095;, + 0.604932; 0.216245;, + 0.556131; 0.216095;, + 0.605157; 0.143043;, + 0.556355; 0.142893;, + 0.139348; 0.067741;, + 0.114873; 0.043415;, + 0.090547; 0.067891;, + 0.139348; 0.067741;, + 0.114798; 0.019015;, + 0.114873; 0.043415;, + 0.114798; 0.019015;, + 0.139348; 0.067741;, + 0.139198; 0.018940;, + 0.544418; 0.216245;, + 0.495841; 0.142893;, + 0.495617; 0.216095;, + 0.495841; 0.142893;, + 0.544418; 0.216245;, + 0.544643; 0.143043;, + 0.178172; 0.683797;, + 0.005632; 0.787320;, + 0.040140; 0.821828;, + 0.005632; 0.787320;, + 0.178172; 0.683797;, + 0.143664; 0.649289;, + 0.362200; 0.143043;, + 0.411226; 0.216095;, + 0.411001; 0.142893;, + 0.411226; 0.216095;, + 0.362200; 0.143043;, + 0.362424; 0.216245;, + 0.005632; 0.212571;, + 0.054658; 0.139519;, + 0.005856; 0.139369;, + 0.054658; 0.139519;, + 0.005632; 0.212571;, + 0.054433; 0.212721;, + 0.471890; 0.591870;, + 0.496066; 0.665147;, + 0.545092; 0.592094;, + 0.496066; 0.665147;, + 0.471890; 0.591870;, + 0.471291; 0.787075;, + 0.496066; 0.665147;, + 0.471291; 0.787075;, + 0.495916; 0.713948;, + 0.495916; 0.713948;, + 0.471291; 0.787075;, + 0.520317; 0.714023;, + 0.520317; 0.714023;, + 0.471291; 0.787075;, + 0.520242; 0.738424;, + 0.520242; 0.738424;, + 0.471291; 0.787075;, + 0.544642; 0.738499;, + 0.544642; 0.738499;, + 0.471291; 0.787075;, + 0.544493; 0.787300;, + 0.471291; 0.142893;, + 0.422714; 0.216245;, + 0.471515; 0.216095;, + 0.422714; 0.216245;, + 0.471291; 0.142893;, + 0.422489; 0.143043;, + 0.750323; 0.142930;, + 0.798900; 0.216282;, + 0.799124; 0.143080;, + 0.798900; 0.216282;, + 0.750323; 0.142930;, + 0.750098; 0.216132;, + 0.362574; 0.385326;, + 0.435177; 0.580756;, + 0.435776; 0.385550;, + 0.435177; 0.580756;, + 0.362574; 0.385326;, + 0.361975; 0.580531;, + 0.871088; 0.738386;, + 0.896088; 0.543256;, + 0.871687; 0.543181;, + 0.896088; 0.543256;, + 0.871088; 0.738386;, + 0.895489; 0.738461;, + 0.678695; 0.042081;, + 0.703021; 0.066557;, + 0.703095; 0.042156;, + 0.703021; 0.066557;, + 0.678695; 0.042081;, + 0.678620; 0.066482;, + 0.798637; 0.749725;, + 0.822962; 0.774200;, + 0.823037; 0.749800;, + 0.822962; 0.774200;, + 0.798637; 0.749725;, + 0.798562; 0.774126;, + 0.634273; 0.767054;, + 0.617019; 0.749800;, + 0.617019; 0.784308;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.917814; 0.454622;, + 0.917814; 0.385606;, + 0.883306; 0.420114;, + 0.629707; 0.956419;, + 0.629707; 0.990927;, + 0.646961; 0.973673;, + 0.326236; 0.055519;, + 0.350711; 0.031193;, + 0.326311; 0.031118;, + 0.350711; 0.031193;, + 0.326236; 0.055519;, + 0.350637; 0.055594;, + 0.931222; 0.034139;, + 0.955547; 0.058614;, + 0.955622; 0.034213;, + 0.955547; 0.058614;, + 0.931222; 0.034139;, + 0.931147; 0.058539;, + 0.678695; 0.006342;, + 0.703021; 0.030818;, + 0.703095; 0.006417;, + 0.703021; 0.030818;, + 0.678695; 0.006342;, + 0.678620; 0.030743;, + 0.285956; 0.171217;, + 0.261705; 0.122341;, + 0.261555; 0.171143;, + 0.286180; 0.098015;, + 0.261705; 0.122341;, + 0.285956; 0.171217;, + 0.237379; 0.097866;, + 0.261705; 0.122341;, + 0.286180; 0.098015;, + 0.261705; 0.122341;, + 0.237379; 0.097866;, + 0.237304; 0.122266;, + 0.950672; 0.713986;, + 0.974998; 0.738461;, + 0.975073; 0.714061;, + 0.974998; 0.738461;, + 0.950672; 0.713986;, + 0.950597; 0.738386;, + 0.955847; 0.167481;, + 0.931147; 0.069953;, + 0.931446; 0.167555;, + 0.931147; 0.069953;, + 0.955847; 0.167481;, + 0.955547; 0.069878;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.150687; 0.139519;, + 0.175162; 0.163845;, + 0.199488; 0.139369;, + 0.150687; 0.139519;, + 0.175312; 0.212646;, + 0.175162; 0.163845;, + 0.175312; 0.212646;, + 0.150687; 0.139519;, + 0.150911; 0.212721;, + 0.186351; 0.067816;, + 0.210827; 0.043490;, + 0.186426; 0.043415;, + 0.210827; 0.043490;, + 0.186351; 0.067816;, + 0.210752; 0.067891;, + 0.435027; 0.787225;, + 0.460027; 0.592095;, + 0.435102; 0.762825;, + 0.460027; 0.592095;, + 0.435027; 0.787225;, + 0.459428; 0.787300;, + 0.714359; 0.030743;, + 0.738835; 0.006417;, + 0.714434; 0.006342;, + 0.738835; 0.006417;, + 0.714359; 0.030743;, + 0.738760; 0.030818;, + 0.175012; 0.043415;, + 0.150687; 0.067891;, + 0.175087; 0.067816;, + 0.150687; 0.067891;, + 0.175012; 0.043415;, + 0.150612; 0.043490;, + 0.870639; 0.749725;, + 0.894965; 0.774200;, + 0.895040; 0.749800;, + 0.894965; 0.774200;, + 0.870639; 0.749725;, + 0.870564; 0.774126;, + 0.090547; 0.067891;, + 0.114873; 0.043415;, + 0.090472; 0.043490;, + 0.967185; 0.143080;, + 0.991511; 0.167555;, + 0.991586; 0.143155;, + 0.991511; 0.167555;, + 0.967185; 0.143080;, + 0.967110; 0.167481;, + 0.966961; 0.034139;, + 0.991287; 0.058614;, + 0.991361; 0.034213;, + 0.991287; 0.058614;, + 0.966961; 0.034139;, + 0.966886; 0.058539;, + 0.669937; 0.749800;, + 0.645612; 0.774275;, + 0.670012; 0.774200;, + 0.645612; 0.774275;, + 0.669937; 0.749800;, + 0.645537; 0.749875;, + 0.848112; 0.798601;, + 0.871913; 0.993882;, + 0.872512; 0.798676;, + 0.871913; 0.993882;, + 0.848112; 0.798601;, + 0.847513; 0.993807;, + 0.810612; 0.374025;, + 0.835612; 0.178894;, + 0.811211; 0.178819;, + 0.835612; 0.178894;, + 0.810612; 0.374025;, + 0.835013; 0.374100;, + 0.213299; 0.442595;, + 0.285902; 0.638025;, + 0.286501; 0.442819;, + 0.285902; 0.638025;, + 0.213299; 0.442595;, + 0.212700; 0.637800;, + 0.750735; 0.835989;, + 0.775211; 0.811663;, + 0.750810; 0.811588;, + 0.775211; 0.811663;, + 0.750735; 0.835989;, + 0.775136; 0.836064;, + 0.834301; 0.385438;, + 0.858777; 0.409764;, + 0.858702; 0.385363;, + 0.858777; 0.409764;, + 0.834301; 0.385438;, + 0.834376; 0.409839;, + 0.556280; 0.071414;, + 0.580606; 0.046939;, + 0.556206; 0.047014;, + 0.605082; 0.071265;, + 0.580606; 0.046939;, + 0.556280; 0.071414;, + 0.604932; 0.022463;, + 0.580606; 0.046939;, + 0.605082; 0.071265;, + 0.580606; 0.046939;, + 0.604932; 0.022463;, + 0.580531; 0.022538;, + 0.799012; 0.034776;, + 0.774686; 0.059251;, + 0.799087; 0.059177;, + 0.774686; 0.059251;, + 0.799012; 0.034776;, + 0.774611; 0.034851;, + 0.950672; 0.668341;, + 0.974998; 0.692816;, + 0.975073; 0.668416;, + 0.974998; 0.692816;, + 0.950672; 0.668341;, + 0.950597; 0.692741;, + 0.948644; 0.945035;, + 0.973195; 0.993762;, + 0.973045; 0.944960;, + 0.973195; 0.993762;, + 0.948644; 0.945035;, + 0.948794; 0.993837;, + 0.544942; 0.640896;, + 0.545092; 0.592094;, + 0.520541; 0.640821;, + 0.545092; 0.592094;, + 0.496066; 0.665147;, + 0.520541; 0.640821;, + 0.520466; 0.665222;, + 0.520541; 0.640821;, + 0.496066; 0.665147;, + 0.079208; 0.032077;, + 0.054733; 0.007751;, + 0.054808; 0.032152;, + 0.054733; 0.007751;, + 0.079208; 0.032077;, + 0.079133; 0.007676;, + 0.495841; 0.458453;, + 0.520317; 0.434127;, + 0.495916; 0.434052;, + 0.544268; 0.580606;, + 0.520317; 0.434127;, + 0.495841; 0.458453;, + 0.544867; 0.385401;, + 0.520317; 0.434127;, + 0.544268; 0.580606;, + 0.520317; 0.434127;, + 0.544867; 0.385401;, + 0.520466; 0.385326;, + 0.871276; 0.374100;, + 0.847474; 0.178819;, + 0.846876; 0.374025;, + 0.847474; 0.178819;, + 0.871276; 0.374100;, + 0.871875; 0.178894;, + 0.941025; 0.374070;, + 0.951384; 0.178894;, + 0.941624; 0.178864;, + 0.951384; 0.178894;, + 0.941025; 0.374070;, + 0.950785; 0.374100;, + 0.753438; 0.010450;, + 0.763348; 0.059222;, + 0.763198; 0.010420;, + 0.763348; 0.059222;, + 0.753438; 0.010450;, + 0.753587; 0.059251;, + 0.286031; 0.037651;, + 0.261705; 0.062126;, + 0.286180; 0.086452;, + 0.261705; 0.062126;, + 0.286031; 0.037651;, + 0.261630; 0.037726;, + 0.987123; 0.239004;, + 0.962647; 0.214678;, + 0.962722; 0.239079;, + 0.962647; 0.214678;, + 0.987123; 0.239004;, + 0.987048; 0.214603;, + 0.987123; 0.302546;, + 0.962647; 0.278220;, + 0.962722; 0.302621;, + 0.962647; 0.278220;, + 0.987123; 0.302546;, + 0.987048; 0.278146;, + 0.544268; 0.580606;, + 0.520017; 0.531730;, + 0.519867; 0.580531;, + 0.544268; 0.580606;, + 0.495841; 0.458453;, + 0.520017; 0.531730;, + 0.520017; 0.531730;, + 0.495841; 0.458453;, + 0.495691; 0.507254;, + 0.495691; 0.507254;, + 0.495841; 0.458453;, + 0.471291; 0.507180;, + 0.471291; 0.507180;, + 0.495841; 0.458453;, + 0.471440; 0.458378;, + 0.906378; 0.774200;, + 0.930704; 0.749725;, + 0.906303; 0.749800;, + 0.930704; 0.749725;, + 0.906378; 0.774200;, + 0.930779; 0.774126;, + 0.974998; 0.592102;, + 0.950747; 0.543226;, + 0.950597; 0.592027;, + 0.950747; 0.543226;, + 0.974998; 0.592102;, + 0.975147; 0.543301;, + 0.682700; 0.980819;, + 0.658225; 0.956494;, + 0.658300; 0.980894;, + 0.658225; 0.956494;, + 0.682700; 0.980819;, + 0.682625; 0.956419;, + 0.822962; 0.409839;, + 0.798637; 0.385363;, + 0.798562; 0.409764;, + 0.798637; 0.385363;, + 0.822962; 0.409839;, + 0.823037; 0.385438;, + 0.079133; 0.067891;, + 0.054808; 0.043415;, + 0.054733; 0.067816;, + 0.054808; 0.043415;, + 0.079133; 0.067891;, + 0.079208; 0.043490;, + 0.943573; 0.465960;, + 0.968123; 0.514687;, + 0.967974; 0.465885;, + 0.968123; 0.514687;, + 0.943573; 0.465960;, + 0.943723; 0.514762;, + 0.520017; 0.531730;, + 0.495691; 0.507254;, + 0.495617; 0.531655;, + 0.362275; 0.022613;, + 0.411151; 0.046864;, + 0.411076; 0.022463;, + 0.411151; 0.046864;, + 0.362275; 0.022613;, + 0.386750; 0.046939;, + 0.386750; 0.046939;, + 0.362275; 0.022613;, + 0.386825; 0.071340;, + 0.386825; 0.071340;, + 0.362275; 0.022613;, + 0.362424; 0.071414;, + 0.738835; 0.042156;, + 0.714359; 0.066482;, + 0.738760; 0.066557;, + 0.714359; 0.066482;, + 0.738835; 0.042156;, + 0.714434; 0.042081;, + 0.237379; 0.086602;, + 0.261705; 0.062126;, + 0.237304; 0.062201;, + 0.261705; 0.062126;, + 0.237379; 0.086602;, + 0.286180; 0.086452;, + 0.301760; 0.055564;, + 0.311670; 0.006792;, + 0.301910; 0.006762;, + 0.311670; 0.006792;, + 0.301760; 0.055564;, + 0.311521; 0.055594;, + 0.927620; 0.798601;, + 0.936782; 0.993837;, + 0.937380; 0.798631;, + 0.936782; 0.993837;, + 0.927620; 0.798601;, + 0.927021; 0.993807;, + 0.823561; 0.543256;, + 0.798562; 0.738386;, + 0.822963; 0.738461;, + 0.798562; 0.738386;, + 0.823561; 0.543256;, + 0.799161; 0.543181;, + 0.033394; 0.063130;, + 0.009068; 0.038655;, + 0.008994; 0.063056;, + 0.009068; 0.038655;, + 0.033394; 0.063130;, + 0.033469; 0.038730;, + 0.835424; 0.543181;, + 0.859226; 0.738461;, + 0.859825; 0.543256;, + 0.859226; 0.738461;, + 0.835424; 0.543181;, + 0.834825; 0.738386;, + 0.984458; 0.847403;, + 0.994368; 0.798631;, + 0.984608; 0.798601;, + 0.994368; 0.798631;, + 0.984458; 0.847403;, + 0.994218; 0.847432;, + 0.979387; 0.465960;, + 0.989297; 0.514732;, + 0.989147; 0.465930;, + 0.989297; 0.514732;, + 0.979387; 0.465960;, + 0.979537; 0.514762;, + 0.977954; 0.434407;, + 0.953478; 0.410081;, + 0.929152; 0.434557;, + 0.977954; 0.434407;, + 0.953403; 0.385681;, + 0.953478; 0.410081;, + 0.953403; 0.385681;, + 0.977954; 0.434407;, + 0.977804; 0.385606;, + 0.966518; 0.749800;, + 0.942043; 0.774126;, + 0.966443; 0.774200;, + 0.942043; 0.774126;, + 0.966518; 0.749800;, + 0.942118; 0.749725;, + 0.447040; 0.034813;, + 0.471515; 0.059139;, + 0.471440; 0.034739;, + 0.471515; 0.059139;, + 0.447040; 0.034813;, + 0.447115; 0.059214;, + 0.929152; 0.434557;, + 0.953478; 0.410081;, + 0.929078; 0.410156;, + 0.907351; 0.738431;, + 0.917711; 0.543256;, + 0.907950; 0.543226;, + 0.917711; 0.543256;, + 0.907351; 0.738431;, + 0.917112; 0.738461;, + 0.426016; 0.010383;, + 0.435626; 0.059214;, + 0.435776; 0.010413;, + 0.435626; 0.059214;, + 0.426016; 0.010383;, + 0.425866; 0.059184;, + 0.520092; 0.046939;, + 0.495617; 0.022613;, + 0.495766; 0.071414;, + 0.495617; 0.022613;, + 0.520092; 0.046939;, + 0.544418; 0.022463;, + 0.544493; 0.046864;, + 0.544418; 0.022463;, + 0.520092; 0.046939;, + 0.971786; 0.652167;, + 0.981696; 0.603395;, + 0.971935; 0.603366;, + 0.981696; 0.603395;, + 0.971786; 0.652167;, + 0.981546; 0.652197;, + 0.905997; 0.798601;, + 0.915159; 0.993837;, + 0.915758; 0.798631;, + 0.915159; 0.993837;, + 0.905997; 0.798601;, + 0.905399; 0.993807;, + 0.811249; 0.993807;, + 0.836249; 0.798676;, + 0.811848; 0.798601;, + 0.836249; 0.798676;, + 0.811249; 0.993807;, + 0.835650; 0.993882;, + 0.984458; 0.907587;, + 0.994368; 0.858816;, + 0.984608; 0.858786;, + 0.994368; 0.858816;, + 0.984458; 0.907587;, + 0.994218; 0.907617;, + 0.984608; 0.918881;, + 0.994218; 0.967712;, + 0.994368; 0.918911;, + 0.994218; 0.967712;, + 0.984608; 0.918881;, + 0.984458; 0.967682;, + 0.617266; 0.029896;, + 0.666142; 0.054147;, + 0.666068; 0.029746;, + 0.666142; 0.054147;, + 0.617266; 0.029896;, + 0.641742; 0.054222;, + 0.641742; 0.054222;, + 0.617266; 0.029896;, + 0.641817; 0.078622;, + 0.641817; 0.078622;, + 0.617266; 0.029896;, + 0.617416; 0.078697;, + 0.987123; 0.203265;, + 0.962647; 0.178939;, + 0.962722; 0.203340;, + 0.962647; 0.178939;, + 0.987123; 0.203265;, + 0.987048; 0.178864;, + 0.186351; 0.032077;, + 0.210827; 0.007751;, + 0.186426; 0.007676;, + 0.210827; 0.007751;, + 0.186351; 0.032077;, + 0.210752; 0.032152;, + 0.301910; 0.442670;, + 0.350113; 0.638025;, + 0.350711; 0.442819;, + 0.350113; 0.638025;, + 0.301910; 0.442670;, + 0.301311; 0.637875;, + 0.447040; 0.580726;, + 0.457399; 0.385550;, + 0.447639; 0.385521;, + 0.457399; 0.385550;, + 0.447040; 0.580726;, + 0.456800; 0.580756;, + 0.884375; 0.798601;, + 0.893536; 0.993837;, + 0.894135; 0.798631;, + 0.893536; 0.993837;, + 0.884375; 0.798601;, + 0.883776; 0.993807;, + 0.569642; 0.798564;, + 0.617844; 0.993919;, + 0.618443; 0.798713;, + 0.617844; 0.993919;, + 0.569642; 0.798564;, + 0.569043; 0.993769;, + 0.928974; 0.738431;, + 0.939333; 0.543256;, + 0.929573; 0.543226;, + 0.939333; 0.543256;, + 0.928974; 0.738431;, + 0.938734; 0.738461;, + 0.920001; 0.178864;, + 0.929162; 0.374100;, + 0.929761; 0.178894;, + 0.929162; 0.374100;, + 0.920001; 0.178864;, + 0.919402; 0.374070;, + 0.556355; 0.787150;, + 0.605756; 0.592095;, + 0.556954; 0.591945;, + 0.605756; 0.592095;, + 0.556355; 0.787150;, + 0.605157; 0.787300;, + 0.201436; 0.442819;, + 0.005632; 0.637426;, + 0.200837; 0.638025;, + 0.005632; 0.637426;, + 0.201436; 0.442819;, + 0.006231; 0.442221;, + 0.605157; 0.580681;, + 0.556954; 0.385326;, + 0.556355; 0.580531;, + 0.556954; 0.385326;, + 0.605157; 0.580681;, + 0.605756; 0.385476;, + 0.520092; 0.046939;, + 0.495766; 0.071414;, + 0.520167; 0.071339;, + 0.883139; 0.178894;, + 0.908138; 0.374025;, + 0.907539; 0.178819;, + 0.908138; 0.374025;, + 0.883139; 0.178894;, + 0.883738; 0.374100;, + 0.962722; 0.338360;, + 0.987048; 0.313885;, + 0.962647; 0.313960;, + 0.987048; 0.313885;, + 0.962722; 0.338360;, + 0.987123; 0.338286;, + 0.987123; 0.349699;, + 0.962647; 0.374025;, + 0.987048; 0.374100;, + 0.962647; 0.374025;, + 0.987123; 0.349699;, + 0.962722; 0.349624;, + 0.834900; 0.774200;, + 0.859226; 0.749725;, + 0.834825; 0.749800;, + 0.859226; 0.749725;, + 0.834900; 0.774200;, + 0.859301; 0.774126;, + 0.435102; 0.762825;, + 0.460027; 0.592095;, + 0.386301; 0.762675;, + 0.386301; 0.762675;, + 0.460027; 0.592095;, + 0.386376; 0.738274;, + 0.386376; 0.738274;, + 0.460027; 0.592095;, + 0.361975; 0.738199;, + 0.361975; 0.738199;, + 0.460027; 0.592095;, + 0.435551; 0.616420;, + 0.435551; 0.616420;, + 0.460027; 0.592095;, + 0.435626; 0.592020;, + 0.361975; 0.738199;, + 0.435551; 0.616420;, + 0.386675; 0.640671;, + 0.386750; 0.616271;, + 0.386675; 0.640671;, + 0.435551; 0.616420;, + 0.991586; 0.069953;, + 0.967110; 0.094279;, + 0.991511; 0.094353;, + 0.967110; 0.094279;, + 0.991586; 0.069953;, + 0.967185; 0.069878;, + 0.948794; 0.907617;, + 0.973045; 0.858741;, + 0.948644; 0.858816;, + 0.973045; 0.858741;, + 0.948794; 0.907617;, + 0.973195; 0.907542;, + 0.362274; 0.640596;, + 0.361975; 0.738199;, + 0.386675; 0.640671;, + 0.991511; 0.105617;, + 0.967185; 0.130093;, + 0.991586; 0.130018;, + 0.967185; 0.130093;, + 0.991511; 0.105617;, + 0.967110; 0.105692;, + 0.199488; 0.139369;, + 0.175162; 0.163845;, + 0.199563; 0.163770;, + 0.150687; 0.032152;, + 0.175012; 0.007676;, + 0.150612; 0.007751;, + 0.175012; 0.007676;, + 0.150687; 0.032152;, + 0.175087; 0.032077;, + 0.973195; 0.798676;, + 0.948644; 0.847403;, + 0.973045; 0.847477;, + 0.948644; 0.847403;, + 0.973195; 0.798676;, + 0.948794; 0.798601;, + 0.557779; 0.799163;, + 0.361975; 0.993769;, + 0.557181; 0.994368;, + 0.361975; 0.993769;, + 0.557779; 0.799163;, + 0.362574; 0.798564;, + 0.005632; 0.321587;, + 0.079133; 0.224209;, + 0.005931; 0.223985;, + 0.079133; 0.224209;, + 0.005632; 0.321587;, + 0.078834; 0.321812;, + 0.798840; 0.440922;, + 0.871764; 0.531917;, + 0.872042; 0.441146;, + 0.871764; 0.531917;, + 0.798840; 0.440922;, + 0.798562; 0.531693;, + 0.005931; 0.333076;, + 0.096402; 0.430957;, + 0.096702; 0.333354;, + 0.096402; 0.430957;, + 0.005931; 0.333076;, + 0.005632; 0.430678;, + 0.285902; 0.273476;, + 0.212978; 0.182481;, + 0.212700; 0.273252;, + 0.212978; 0.182481;, + 0.285902; 0.273476;, + 0.286180; 0.182706;, + 0.201436; 0.430678;, + 0.110366; 0.333354;, + 0.110666; 0.430957;, + 0.110366; 0.333354;, + 0.201436; 0.430678;, + 0.201137; 0.333076;, + 0.171437; 0.312022;, + 0.181167; 0.321812;, + 0.181467; 0.224209;, + 0.181167; 0.321812;, + 0.171437; 0.312022;, + 0.107965; 0.321587;, + 0.117756; 0.311857;, + 0.107965; 0.321587;, + 0.171437; 0.312022;, + 0.107965; 0.321587;, + 0.117756; 0.311857;, + 0.108265; 0.223985;, + 0.108265; 0.223985;, + 0.117756; 0.311857;, + 0.117995; 0.233775;, + 0.295025; 0.431331;, + 0.285504; 0.353219;, + 0.285265; 0.431301;, + 0.285504; 0.353219;, + 0.295025; 0.431331;, + 0.295265; 0.353249;, + 0.684914; 0.216117;, + 0.738835; 0.138200;, + 0.685153; 0.138035;, + 0.738835; 0.138200;, + 0.684914; 0.216117;, + 0.738595; 0.216282;, + 0.950597; 0.657047;, + 0.960522; 0.603395;, + 0.950762; 0.603366;, + 0.960522; 0.603395;, + 0.950597; 0.657047;, + 0.960357; 0.657077;, + 0.222700; 0.171187;, + 0.212700; 0.093135;, + 0.212939; 0.171217;, + 0.212700; 0.093135;, + 0.222700; 0.171187;, + 0.222460; 0.093105;, + 0.171437; 0.312022;, + 0.181467; 0.224209;, + 0.171677; 0.233939;, + 0.171677; 0.233939;, + 0.181467; 0.224209;, + 0.117995; 0.233775;, + 0.108265; 0.223985;, + 0.117995; 0.233775;, + 0.181467; 0.224209;, + 0.008994; 0.128076;, + 0.018919; 0.074424;, + 0.009158; 0.074394;, + 0.018919; 0.074424;, + 0.008994; 0.128076;, + 0.018754; 0.128106;, + 0.273552; 0.431331;, + 0.224900; 0.382380;, + 0.224751; 0.431181;, + 0.273552; 0.431331;, + 0.274001; 0.284927;, + 0.224900; 0.382380;, + 0.212999; 0.284740;, + 0.224900; 0.382380;, + 0.274001; 0.284927;, + 0.224900; 0.382380;, + 0.212999; 0.284740;, + 0.212700; 0.382343;, + 0.350711; 0.127222;, + 0.301611; 0.224675;, + 0.350412; 0.224824;, + 0.301611; 0.224675;, + 0.350711; 0.127222;, + 0.301910; 0.127072;, + 0.798900; 0.131667;, + 0.750285; 0.070515;, + 0.750098; 0.131517;, + 0.750285; 0.070515;, + 0.798900; 0.131667;, + 0.799087; 0.070665;, + 0.798974; 0.349699;, + 0.750098; 0.373950;, + 0.798900; 0.374100;, + 0.750098; 0.373950;, + 0.798974; 0.349699;, + 0.750547; 0.227546;, + 0.750547; 0.227546;, + 0.798974; 0.349699;, + 0.799049; 0.325298;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.750547; 0.227546;, + 0.799049; 0.325298;, + 0.799349; 0.227695;, + 0.199413; 0.128105;, + 0.150761; 0.079154;, + 0.150612; 0.127956;, + 0.150761; 0.079154;, + 0.199413; 0.128105;, + 0.199563; 0.079304;, + 0.870880; 0.090110;, + 0.919831; 0.041459;, + 0.871029; 0.041309;, + 0.919831; 0.041459;, + 0.870880; 0.090110;, + 0.919681; 0.090260;, + 0.297615; 0.293154;, + 0.285340; 0.317517;, + 0.297465; 0.341955;, + 0.285340; 0.317517;, + 0.297615; 0.293154;, + 0.285414; 0.293116;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.297465; 0.341955;, + 0.285340; 0.317517;, + 0.285265; 0.341918;, + 0.678320; 0.689548;, + 0.617019; 0.592132;, + 0.666120; 0.689585;, + 0.617019; 0.592132;, + 0.678320; 0.689548;, + 0.678021; 0.591945;, + 0.666120; 0.689585;, + 0.617019; 0.592132;, + 0.617468; 0.738536;, + 0.617468; 0.738536;, + 0.666270; 0.738386;, + 0.666120; 0.689585;; + } // End of Group UV coordinates + MeshMaterialList { // Group material list + 1; + 390; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material FrontCol { + 0.800000; 0.800000; 0.800000; 1.000000;; + 96.078431; + 0.164706; 0.164706; 0.164706;; + 0.000000; 0.000000; 0.000000;; + } + } // End of Group material list + XSkinMeshHeader { + 1; + 3; + 7; + } + SkinWeights { + "Armature_Bone_003"; + 66; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000530,-0.000000, 0.000000, + 0.000530,-1.000000, 0.000000, 0.000000, + -0.000000,-0.000000,-1.000000, 0.000000, + -3.256083,-6.620042, 1.176457, 1.000000;; + } // End of Armature_Bone_003 skin weights + SkinWeights { + "Armature_Bone_002"; + 36; + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-1.000000,-0.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.000001,-6.540645,-1.176457, 1.000000;; + } // End of Armature_Bone_002 skin weights + SkinWeights { + "Armature_Bone_001"; + 84; + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000, 1.000000, 0.000000, 0.000000, + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.000000,-6.571156,-1.504138, 1.000000;; + } // End of Armature_Bone_001 skin weights + SkinWeights { + "Armature_Bone_006"; + 78; + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 3.238797,-6.572360,-1.176455, 1.000000;; + } // End of Armature_Bone_006 skin weights + SkinWeights { + "Armature_Bone_005"; + 78; + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -3.236709,-6.627153,-1.176456, 1.000000;; + } // End of Armature_Bone_005 skin weights + SkinWeights { + "Armature_Bone_004"; + 66; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.999997, 0.002319,-0.000000, 0.000000, + -0.002319, 0.999997,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -3.239560,-6.573480,-1.176455, 1.000000;; + } // End of Armature_Bone_004 skin weights + SkinWeights { + "Armature_Bone"; + 762; + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 1.176456, 3.892252,-0.000000, 1.000000;; + } // End of Armature_Bone skin weights + } // End of Group mesh + } // End of Group + } // End of Armature + Frame Camera { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + } // End of Camera + Frame Model { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + } // End of Model +} // End of Root +AnimationSet Global { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 135; + 0;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Armature_Bone} + AnimationKey { // Rotation + 0; + 135; + 0;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 1;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 2;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 3;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 4;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 5;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 6;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 7;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 8;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 9;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 10;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 11;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 12;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 13;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 14;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 15;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 16;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 17;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 18;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 19;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 20;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 21;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 22;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 23;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 24;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 25;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 26;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 27;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 28;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 29;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 30;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 31;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 32;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 33;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 34;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 35;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 36;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 37;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 38;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 39;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 40;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 41;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 42;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 43;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 44;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 45;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 46;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 47;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 48;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 49;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 50;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 51;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 52;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 53;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 54;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 55;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 56;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 57;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 58;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 59;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 60;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 61;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 62;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 63;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 64;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 65;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 66;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 67;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 68;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 69;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 70;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 71;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 72;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 73;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 74;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 75;4;-0.501896, 0.501896, 0.498019,-0.498019;;, + 76;4;-0.507238, 0.507238, 0.492439,-0.492439;;, + 77;4;-0.514096, 0.514096, 0.485275,-0.485275;;, + 78;4;-0.519438, 0.519437, 0.479695,-0.479695;;, + 79;4;-0.521334, 0.521334, 0.477714,-0.477714;;, + 80;4;-0.521209, 0.521209, 0.477875,-0.477875;;, + 81;4;-0.520042, 0.520042, 0.479166,-0.479166;;, + 82;4;-0.517145, 0.517145, 0.482246,-0.482246;;, + 83;4;-0.508966, 0.508966, 0.490743,-0.490743;;, + 84;4;-0.502239, 0.502239, 0.497696,-0.497696;;, + 85;4;-0.501218, 0.501217, 0.498747,-0.498747;;, + 86;4;-0.500505, 0.500505, 0.499480,-0.499480;;, + 87;4;-0.500134, 0.500134, 0.499862,-0.499862;;, + 88;4;-0.500014, 0.500014, 0.499986,-0.499986;;, + 89;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 90;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 91;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 92;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 93;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 94;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 95;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 96;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 97;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 98;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 99;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 100;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 101;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 102;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 103;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 104;4;-0.500000, 0.500000, 0.500000,-0.500000;;, + 105;4;-0.500184, 0.500130, 0.499850,-0.499831;;, + 106;4;-0.500740, 0.500521, 0.499396,-0.499320;;, + 107;4;-0.501651, 0.501163, 0.498652,-0.498484;;, + 108;4;-0.502864, 0.502019, 0.497661,-0.497369;;, + 109;4;-0.504285, 0.503020, 0.496502,-0.496064;;, + 110;4;-0.505779, 0.504074, 0.495281,-0.494691;;, + 111;4;-0.507200, 0.505075, 0.494121,-0.493386;;, + 112;4;-0.508413, 0.505931, 0.493131,-0.492271;;, + 113;4;-0.509324, 0.506573, 0.492387,-0.491434;;, + 114;4;-0.509880, 0.506964, 0.491933,-0.490924;;, + 115;4;-0.510064, 0.507094, 0.491783,-0.490754;;, + 116;4;-0.509850, 0.506944, 0.491959,-0.490953;;, + 117;4;-0.509197, 0.506485, 0.492499,-0.491559;;, + 118;4;-0.508175, 0.505766, 0.493341,-0.492507;;, + 119;4;-0.506993, 0.504934, 0.494315,-0.493602;;, + 120;4;-0.505900, 0.504164, 0.495215,-0.494613;;, + 121;4;-0.505051, 0.503566, 0.495910,-0.495396;;, + 122;4;-0.504337, 0.503063, 0.496494,-0.496053;;, + 123;4;-0.503611, 0.502551, 0.497085,-0.496718;;, + 124;4;-0.502897, 0.502047, 0.497664,-0.497369;;, + 125;4;-0.502229, 0.501575, 0.498205,-0.497978;;, + 126;4;-0.501640, 0.501159, 0.498680,-0.498513;;, + 127;4;-0.501152, 0.500814, 0.499073,-0.498956;;, + 128;4;-0.500768, 0.500543, 0.499382,-0.499304;;, + 129;4;-0.500480, 0.500339, 0.499614,-0.499565;;, + 130;4;-0.500261, 0.500184, 0.499790,-0.499764;;, + 131;4;-0.500108, 0.500076, 0.499913,-0.499902;;, + 132;4;-0.500029, 0.500020, 0.499977,-0.499974;;, + 133;4;-0.500003, 0.500002, 0.499998,-0.499997;;, + 134;4;-0.500000, 0.500000, 0.500000,-0.500000;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3;-3.892252,-0.000000, 1.176455;;, + 1;3;-3.892252,-0.000000, 1.176455;;, + 2;3;-3.892252,-0.000000, 1.176455;;, + 3;3;-3.892252,-0.000000, 1.176455;;, + 4;3;-3.892252,-0.000000, 1.176455;;, + 5;3;-3.892252,-0.000000, 1.176455;;, + 6;3;-3.892252,-0.000000, 1.176455;;, + 7;3;-3.892252,-0.000000, 1.176455;;, + 8;3;-3.892252,-0.000000, 1.176455;;, + 9;3;-3.892252,-0.000000, 1.176455;;, + 10;3;-3.892252,-0.000000, 1.176455;;, + 11;3;-3.892252,-0.000000, 1.176455;;, + 12;3;-3.892252,-0.000000, 1.176455;;, + 13;3;-3.892252,-0.000000, 1.176455;;, + 14;3;-3.892252,-0.000000, 1.176455;;, + 15;3;-3.892252,-0.000000, 1.176455;;, + 16;3;-3.892252,-0.000000, 1.176455;;, + 17;3;-3.892252,-0.000000, 1.176455;;, + 18;3;-3.892252,-0.000000, 1.176455;;, + 19;3;-3.892252,-0.000000, 1.176455;;, + 20;3;-3.892252,-0.000000, 1.176455;;, + 21;3;-3.892252,-0.000000, 1.176455;;, + 22;3;-3.892252,-0.000000, 1.176455;;, + 23;3;-3.892252,-0.000000, 1.176455;;, + 24;3;-3.892252,-0.000000, 1.176455;;, + 25;3;-3.892252,-0.000000, 1.176455;;, + 26;3;-3.892252,-0.000000, 1.176455;;, + 27;3;-3.892252,-0.000000, 1.176455;;, + 28;3;-3.892252,-0.000000, 1.176455;;, + 29;3;-3.892252,-0.000000, 1.176455;;, + 30;3;-3.892252,-0.000000, 1.176455;;, + 31;3;-3.892252,-0.000000, 1.176455;;, + 32;3;-3.892252,-0.000000, 1.176455;;, + 33;3;-3.892252,-0.000000, 1.176455;;, + 34;3;-3.892252,-0.000000, 1.176455;;, + 35;3;-3.892252,-0.000000, 1.176455;;, + 36;3;-3.892252,-0.000000, 1.176455;;, + 37;3;-3.892252,-0.000000, 1.176455;;, + 38;3;-3.892252,-0.000000, 1.176455;;, + 39;3;-3.892252,-0.000000, 1.176455;;, + 40;3;-3.892252,-0.000000, 1.176455;;, + 41;3;-3.892252,-0.000000, 1.176455;;, + 42;3;-3.892252,-0.000000, 1.176455;;, + 43;3;-3.892252,-0.000000, 1.176455;;, + 44;3;-3.892252,-0.000000, 1.176455;;, + 45;3;-3.892252,-0.000000, 1.176455;;, + 46;3;-3.892252,-0.000000, 1.176455;;, + 47;3;-3.892252,-0.000000, 1.176455;;, + 48;3;-3.892252,-0.000000, 1.176455;;, + 49;3;-3.892252,-0.000000, 1.176455;;, + 50;3;-3.892252,-0.000000, 1.176455;;, + 51;3;-3.892252,-0.000000, 1.176455;;, + 52;3;-3.892252,-0.000000, 1.176455;;, + 53;3;-3.892252,-0.000000, 1.176455;;, + 54;3;-3.892252,-0.000000, 1.176455;;, + 55;3;-3.892252,-0.000000, 1.176455;;, + 56;3;-3.892252,-0.000000, 1.176455;;, + 57;3;-3.892252,-0.000000, 1.176455;;, + 58;3;-3.892252,-0.000000, 1.176455;;, + 59;3;-3.892252,-0.000000, 1.176455;;, + 60;3;-3.901372,-0.000000, 1.176455;;, + 61;3;-3.929474,-0.000000, 1.176455;;, + 62;3;-3.976703,-0.000000, 1.176455;;, + 63;3;-4.041287,-0.000000, 1.176455;;, + 64;3;-4.119045,-0.000000, 1.176455;;, + 65;3;-4.203746,-0.000000, 1.176455;;, + 66;3;-4.288462,-0.000000, 1.176455;;, + 67;3;-4.367190,-0.000000, 1.176455;;, + 68;3;-4.435832,-0.000000, 1.176455;;, + 69;3;-4.492252,-0.000000, 1.176455;;, + 70;3;-4.545861,-0.000000, 1.176455;;, + 71;3;-4.602494,-0.000000, 1.176455;;, + 72;3;-4.651581,-0.000000, 1.176455;;, + 73;3;-4.682503,-0.000000, 1.176455;;, + 74;3;-4.692252,-0.000000, 1.176455;;, + 75;3;-4.634608,-0.000000, 1.176455;;, + 76;3;-4.463247,-0.000000, 1.176455;;, + 77;3;-4.217097,-0.000000, 1.176455;;, + 78;3;-3.973085,-0.000000, 1.176455;;, + 79;3;-3.792252,-0.000000, 1.176455;;, + 80;3;-3.647005,-0.000000, 1.176455;;, + 81;3;-3.530641,-0.000000, 1.176455;;, + 82;3;-3.492252,-0.000000, 1.176455;;, + 83;3;-3.645425,-0.000000, 1.176455;;, + 84;3;-3.820419,-0.000000, 1.176455;;, + 85;3;-3.853267,-0.000000, 1.176455;;, + 86;3;-3.876095,-0.000000, 1.176455;;, + 87;3;-3.887969,-0.000000, 1.176455;;, + 88;3;-3.891807,-0.000000, 1.176455;;, + 89;3;-3.892252,-0.000000, 1.176455;;, + 90;3;-3.883363,-0.000000, 1.176455;;, + 91;3;-3.858326,-0.000000, 1.176455;;, + 92;3;-3.826179,-0.000000, 1.176455;;, + 93;3;-3.801142,-0.000000, 1.176455;;, + 94;3;-3.792252,-0.000000, 1.176455;;, + 95;3;-3.792252,-0.000000, 1.176455;;, + 96;3;-3.792252,-0.000000, 1.176455;;, + 97;3;-3.792252,-0.000000, 1.176455;;, + 98;3;-3.792252,-0.000000, 1.176455;;, + 99;3;-3.792252,-0.000000, 1.176455;;, + 100;3;-3.792252,-0.000000, 1.176455;;, + 101;3;-3.792252,-0.000000, 1.176455;;, + 102;3;-3.792252,-0.000000, 1.176455;;, + 103;3;-3.792252,-0.000000, 1.176455;;, + 104;3;-3.792252,-0.000000, 1.176455;;, + 105;3;-3.792252,-0.000000, 1.176455;;, + 106;3;-3.792252,-0.000000, 1.176455;;, + 107;3;-3.792252,-0.000000, 1.176455;;, + 108;3;-3.792252,-0.000000, 1.176455;;, + 109;3;-3.792252,-0.000000, 1.176455;;, + 110;3;-3.792252,-0.000000, 1.176455;;, + 111;3;-3.792252,-0.000000, 1.176455;;, + 112;3;-3.792252,-0.000000, 1.176455;;, + 113;3;-3.792252,-0.000000, 1.176455;;, + 114;3;-3.792252,-0.000000, 1.176455;;, + 115;3;-3.792252,-0.000000, 1.176455;;, + 116;3;-3.792252,-0.000000, 1.176455;;, + 117;3;-3.792252,-0.000000, 1.176455;;, + 118;3;-3.792252,-0.000000, 1.176455;;, + 119;3;-3.792252,-0.000000, 1.176455;;, + 120;3;-3.792252,-0.000000, 1.176455;;, + 121;3;-3.792252,-0.000000, 1.176455;;, + 122;3;-3.792252,-0.000000, 1.176455;;, + 123;3;-3.792252,-0.000000, 1.176455;;, + 124;3;-3.792252,-0.000000, 1.176455;;, + 125;3;-3.792252,-0.000000, 1.176455;;, + 126;3;-3.792252,-0.000000, 1.176455;;, + 127;3;-3.792252,-0.000000, 1.176455;;, + 128;3;-3.792252,-0.000000, 1.176455;;, + 129;3;-3.792252,-0.000000, 1.176455;;, + 130;3;-3.792252,-0.000000, 1.176455;;, + 131;3;-3.792252,-0.000000, 1.176455;;, + 132;3;-3.792252,-0.000000, 1.176455;;, + 133;3;-3.792252,-0.000000, 1.176455;;, + 134;3;-3.792252,-0.000000, 1.176455;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { // Rotation + 0; + 135; + 0;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 1;4;-0.707104, 0.000338,-0.707104,-0.000338;;, + 2;4;-0.707095, 0.001352,-0.707095,-0.001352;;, + 3;4;-0.707081, 0.002981,-0.707081,-0.002981;;, + 4;4;-0.707063, 0.005053,-0.707063,-0.005053;;, + 5;4;-0.707043, 0.007288,-0.707043,-0.007288;;, + 6;4;-0.707025, 0.009360,-0.707025,-0.009360;;, + 7;4;-0.707011, 0.010988,-0.707011,-0.010988;;, + 8;4;-0.707002, 0.012003,-0.707002,-0.012003;;, + 9;4;-0.706999, 0.012341,-0.706999,-0.012341;;, + 10;4;-0.707002, 0.012171,-0.707001,-0.012171;;, + 11;4;-0.707009, 0.011642,-0.707009,-0.011642;;, + 12;4;-0.707020, 0.010744,-0.707020,-0.010744;;, + 13;4;-0.707036, 0.009500,-0.707036,-0.009500;;, + 14;4;-0.707053, 0.007977,-0.707053,-0.007977;;, + 15;4;-0.707070, 0.006283,-0.707070,-0.006283;;, + 16;4;-0.707086, 0.004542,-0.707085,-0.004542;;, + 17;4;-0.707097, 0.002866,-0.707097,-0.002867;;, + 18;4;-0.707105, 0.001337,-0.707104,-0.001338;;, + 19;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 20;4;-0.707105,-0.001338,-0.707104, 0.001337;;, + 21;4;-0.707097,-0.002867,-0.707097, 0.002866;;, + 22;4;-0.707086,-0.004542,-0.707085, 0.004542;;, + 23;4;-0.707070,-0.006283,-0.707070, 0.006283;;, + 24;4;-0.707053,-0.007977,-0.707053, 0.007977;;, + 25;4;-0.707036,-0.009500,-0.707036, 0.009500;;, + 26;4;-0.707020,-0.010744,-0.707020, 0.010744;;, + 27;4;-0.707009,-0.011642,-0.707009, 0.011642;;, + 28;4;-0.707002,-0.012171,-0.707001, 0.012171;;, + 29;4;-0.706999,-0.012341,-0.706999, 0.012341;;, + 30;4;-0.707002,-0.012067,-0.707001, 0.012067;;, + 31;4;-0.707009,-0.011244,-0.707009, 0.011244;;, + 32;4;-0.707020,-0.009905,-0.707020, 0.009905;;, + 33;4;-0.707036,-0.008154,-0.707036, 0.008154;;, + 34;4;-0.707053,-0.006170,-0.707053, 0.006170;;, + 35;4;-0.707070,-0.004187,-0.707070, 0.004187;;, + 36;4;-0.707086,-0.002436,-0.707085, 0.002436;;, + 37;4;-0.707097,-0.001097,-0.707097, 0.001097;;, + 38;4;-0.707105,-0.000274,-0.707104, 0.000274;;, + 39;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 40;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 41;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 42;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 43;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 44;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 45;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 46;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 47;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 48;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 49;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 50;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 51;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 52;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 53;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 54;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 55;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 56;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 57;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 58;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 59;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 60;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 61;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 62;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 63;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 64;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 65;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 66;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 67;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 68;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 69;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 70;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 71;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 72;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 73;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 74;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 75;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 76;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 77;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 78;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 79;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 80;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 81;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 82;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 83;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 84;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 85;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 86;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 87;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 88;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 89;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 90;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 91;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 92;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 93;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 94;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 95;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 96;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 97;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 98;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 99;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 100;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 101;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 102;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 103;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 104;4;-0.707107,-0.000000,-0.707107,-0.000000;;, + 105;4;-0.707106,-0.000226,-0.707104,-0.000226;;, + 106;4;-0.707103,-0.000908,-0.707095,-0.000906;;, + 107;4;-0.707097,-0.002026,-0.707081,-0.002022;;, + 108;4;-0.707090,-0.003515,-0.707062,-0.003509;;, + 109;4;-0.707082,-0.005259,-0.707040,-0.005249;;, + 110;4;-0.707074,-0.007094,-0.707016,-0.007079;;, + 111;4;-0.707065,-0.008839,-0.706994,-0.008818;;, + 112;4;-0.707058,-0.010330,-0.706975,-0.010304;;, + 113;4;-0.707053,-0.011450,-0.706961,-0.011417;;, + 114;4;-0.707050,-0.012134,-0.706952,-0.012095;;, + 115;4;-0.707049,-0.012364,-0.706949,-0.012318;;, + 116;4;-0.707045,-0.012105,-0.706961,-0.012050;;, + 117;4;-0.707035,-0.011306,-0.706994,-0.011239;;, + 118;4;-0.707021,-0.010053,-0.707044,-0.009974;;, + 119;4;-0.707008,-0.008604,-0.707095,-0.008513;;, + 120;4;-0.707003,-0.007262,-0.707134,-0.007163;;, + 121;4;-0.707007,-0.006221,-0.707153,-0.006119;;, + 122;4;-0.707016,-0.005343,-0.707159,-0.005244;;, + 123;4;-0.707027,-0.004451,-0.707161,-0.004358;;, + 124;4;-0.707039,-0.003574,-0.707159,-0.003491;;, + 125;4;-0.707052,-0.002751,-0.707153,-0.002682;;, + 126;4;-0.707065,-0.002025,-0.707144,-0.001971;;, + 127;4;-0.707076,-0.001423,-0.707135,-0.001382;;, + 128;4;-0.707085,-0.000950,-0.707127,-0.000921;;, + 129;4;-0.707091,-0.000595,-0.707121,-0.000574;;, + 130;4;-0.707096,-0.000325,-0.707116,-0.000311;;, + 131;4;-0.707101,-0.000136,-0.707112,-0.000128;;, + 132;4;-0.707104,-0.000037,-0.707109,-0.000033;;, + 133;4;-0.707106,-0.000004,-0.707107,-0.000003;;, + 134;4;-0.707107,-0.000000,-0.707107,-0.000000;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 0.955494, 0.955494, 0.955494;;, + 91;3; 0.830311, 0.830311, 0.830311;;, + 92;3; 0.669689, 0.669689, 0.669689;;, + 93;3; 0.544506, 0.544506, 0.544506;;, + 94;3; 0.500000, 0.500000, 0.500000;;, + 95;3; 0.500000, 0.500000, 0.500000;;, + 96;3; 0.500000, 0.500000, 0.500000;;, + 97;3; 0.500000, 0.500000, 0.500000;;, + 98;3; 0.500000, 0.500000, 0.500000;;, + 99;3; 0.500000, 0.500000, 0.500000;;, + 100;3; 0.544506, 0.544506, 0.544506;;, + 101;3; 0.669689, 0.669689, 0.669689;;, + 102;3; 0.830311, 0.830311, 0.830311;;, + 103;3; 0.955494, 0.955494, 0.955494;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3;-0.327682, 8.463408, 0.000000;;, + 1;3;-0.327682, 8.463408, 0.000000;;, + 2;3;-0.327682, 8.463408, 0.000000;;, + 3;3;-0.327682, 8.463408, 0.000000;;, + 4;3;-0.327682, 8.463408, 0.000000;;, + 5;3;-0.327682, 8.463408, 0.000000;;, + 6;3;-0.327682, 8.463408, 0.000000;;, + 7;3;-0.327682, 8.463408, 0.000000;;, + 8;3;-0.327682, 8.463408, 0.000000;;, + 9;3;-0.327682, 8.463408, 0.000000;;, + 10;3;-0.327682, 8.463408, 0.000000;;, + 11;3;-0.327682, 8.463408, 0.000000;;, + 12;3;-0.327682, 8.463408, 0.000000;;, + 13;3;-0.327682, 8.463408, 0.000000;;, + 14;3;-0.327682, 8.463408, 0.000000;;, + 15;3;-0.327682, 8.463408, 0.000000;;, + 16;3;-0.327682, 8.463408, 0.000000;;, + 17;3;-0.327682, 8.463408, 0.000000;;, + 18;3;-0.327682, 8.463408, 0.000000;;, + 19;3;-0.327682, 8.463408, 0.000000;;, + 20;3;-0.327682, 8.463408, 0.000000;;, + 21;3;-0.327682, 8.463408, 0.000000;;, + 22;3;-0.327682, 8.463408, 0.000000;;, + 23;3;-0.327682, 8.463408, 0.000000;;, + 24;3;-0.327682, 8.463408, 0.000000;;, + 25;3;-0.327682, 8.463408, 0.000000;;, + 26;3;-0.327682, 8.463408, 0.000000;;, + 27;3;-0.327682, 8.463408, 0.000000;;, + 28;3;-0.327682, 8.463408, 0.000000;;, + 29;3;-0.327682, 8.463408, 0.000000;;, + 30;3;-0.327682, 8.463408, 0.000000;;, + 31;3;-0.327682, 8.463408, 0.000000;;, + 32;3;-0.327682, 8.463408, 0.000000;;, + 33;3;-0.327682, 8.463408, 0.000000;;, + 34;3;-0.327682, 8.463408, 0.000000;;, + 35;3;-0.327682, 8.463408, 0.000000;;, + 36;3;-0.327682, 8.463408, 0.000000;;, + 37;3;-0.327682, 8.463408, 0.000000;;, + 38;3;-0.327682, 8.463408, 0.000000;;, + 39;3;-0.327682, 8.463408, 0.000000;;, + 40;3;-0.327682, 8.463408, 0.000000;;, + 41;3;-0.327682, 8.463408, 0.000000;;, + 42;3;-0.327682, 8.463408, 0.000000;;, + 43;3;-0.327682, 8.463408, 0.000000;;, + 44;3;-0.327682, 8.463408, 0.000000;;, + 45;3;-0.327682, 8.463408, 0.000000;;, + 46;3;-0.327682, 8.463408, 0.000000;;, + 47;3;-0.327682, 8.463408, 0.000000;;, + 48;3;-0.327682, 8.463408, 0.000000;;, + 49;3;-0.327682, 8.463408, 0.000000;;, + 50;3;-0.327682, 8.463408, 0.000000;;, + 51;3;-0.327682, 8.463408, 0.000000;;, + 52;3;-0.327682, 8.463408, 0.000000;;, + 53;3;-0.327682, 8.463408, 0.000000;;, + 54;3;-0.327682, 8.463408, 0.000000;;, + 55;3;-0.327682, 8.463408, 0.000000;;, + 56;3;-0.327682, 8.463408, 0.000000;;, + 57;3;-0.327682, 8.463408, 0.000000;;, + 58;3;-0.327682, 8.463408, 0.000000;;, + 59;3;-0.327682, 8.463408, 0.000000;;, + 60;3;-0.327682, 8.463408, 0.000000;;, + 61;3;-0.327682, 8.463408, 0.000000;;, + 62;3;-0.327682, 8.463408, 0.000000;;, + 63;3;-0.327682, 8.463408, 0.000000;;, + 64;3;-0.327682, 8.463408, 0.000000;;, + 65;3;-0.327682, 8.463408, 0.000000;;, + 66;3;-0.327682, 8.463408, 0.000000;;, + 67;3;-0.327682, 8.463408, 0.000000;;, + 68;3;-0.327682, 8.463408, 0.000000;;, + 69;3;-0.327682, 8.463408, 0.000000;;, + 70;3;-0.327682, 8.463408, 0.000000;;, + 71;3;-0.327682, 8.463408, 0.000000;;, + 72;3;-0.327682, 8.463408, 0.000000;;, + 73;3;-0.327682, 8.463408, 0.000000;;, + 74;3;-0.327682, 8.463408, 0.000000;;, + 75;3;-0.327682, 8.463408, 0.000000;;, + 76;3;-0.327682, 8.463408, 0.000000;;, + 77;3;-0.327682, 8.463408, 0.000000;;, + 78;3;-0.327682, 8.463408, 0.000000;;, + 79;3;-0.327682, 8.463408, 0.000000;;, + 80;3;-0.327682, 8.463407, 0.000000;;, + 81;3;-0.327682, 8.463408, 0.000000;;, + 82;3;-0.327682, 8.463407, 0.000000;;, + 83;3;-0.327682, 8.463408, 0.000000;;, + 84;3;-0.327682, 8.463408, 0.000000;;, + 85;3;-0.327682, 8.463408, 0.000000;;, + 86;3;-0.327682, 8.463408, 0.000000;;, + 87;3;-0.327682, 8.463408, 0.000000;;, + 88;3;-0.327682, 8.463408, 0.000000;;, + 89;3;-0.327682, 8.463408, 0.000000;;, + 90;3;-0.315545, 8.255070, 0.000794;;, + 91;3;-0.281360, 7.684577, 0.003030;;, + 92;3;-0.237470, 6.962128, 0.005900;;, + 93;3;-0.203286, 6.391635, 0.008136;;, + 94;3;-0.191148, 6.183297, 0.008930;;, + 95;3;-0.191148, 6.183297, 0.008930;;, + 96;3;-0.191148, 6.183297, 0.008930;;, + 97;3;-0.191148, 6.183297, 0.008930;;, + 98;3;-0.191148, 6.183297, 0.008930;;, + 99;3;-0.191148, 6.183297, 0.008930;;, + 100;3;-0.203286, 6.391635, 0.008136;;, + 101;3;-0.237470, 6.962128, 0.005900;;, + 102;3;-0.281360, 7.684577, 0.003030;;, + 103;3;-0.315545, 8.255070, 0.000794;;, + 104;3;-0.327682, 8.463408, 0.000000;;, + 105;3;-0.327682, 8.463408, 0.000000;;, + 106;3;-0.327682, 8.463408, 0.000000;;, + 107;3;-0.327682, 8.463408, 0.000000;;, + 108;3;-0.327682, 8.463407, 0.000000;;, + 109;3;-0.327682, 8.463408, 0.000000;;, + 110;3;-0.327682, 8.463408, 0.000000;;, + 111;3;-0.327682, 8.463408, 0.000000;;, + 112;3;-0.327682, 8.463408, 0.000000;;, + 113;3;-0.327682, 8.463408, 0.000000;;, + 114;3;-0.327682, 8.463408, 0.000000;;, + 115;3;-0.327682, 8.463408, 0.000000;;, + 116;3;-0.327682, 8.463407, 0.000000;;, + 117;3;-0.327682, 8.463408, 0.000000;;, + 118;3;-0.327682, 8.463408, 0.000000;;, + 119;3;-0.327682, 8.463408, 0.000000;;, + 120;3;-0.327682, 8.463408, 0.000000;;, + 121;3;-0.327682, 8.463408, 0.000000;;, + 122;3;-0.327682, 8.463408, 0.000000;;, + 123;3;-0.327682, 8.463408, 0.000000;;, + 124;3;-0.327682, 8.463408, 0.000000;;, + 125;3;-0.327682, 8.463407, 0.000000;;, + 126;3;-0.327682, 8.463408, 0.000000;;, + 127;3;-0.327682, 8.463408, 0.000000;;, + 128;3;-0.327682, 8.463408, 0.000000;;, + 129;3;-0.327682, 8.463408, 0.000000;;, + 130;3;-0.327682, 8.463408, 0.000000;;, + 131;3;-0.327682, 8.463408, 0.000000;;, + 132;3;-0.327682, 8.463408, 0.000000;;, + 133;3;-0.327682, 8.463408, 0.000000;;, + 134;3;-0.327682, 8.463408, 0.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { // Rotation + 0; + 135; + 0;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 1;4;-0.000507, 0.707100, 0.000507,-0.707100;;, + 2;4;-0.002028, 0.707080, 0.002029,-0.707080;;, + 3;4;-0.004471, 0.707048, 0.004471,-0.707048;;, + 4;4;-0.007579, 0.707008, 0.007579,-0.707008;;, + 5;4;-0.010931, 0.706964, 0.010931,-0.706964;;, + 6;4;-0.014039, 0.706923, 0.014039,-0.706923;;, + 7;4;-0.016482, 0.706891, 0.016482,-0.706891;;, + 8;4;-0.018003, 0.706871, 0.018003,-0.706871;;, + 9;4;-0.018510, 0.706865, 0.018510,-0.706865;;, + 10;4;-0.018100, 0.706870, 0.018100,-0.706870;;, + 11;4;-0.016865, 0.706886, 0.016865,-0.706886;;, + 12;4;-0.014857, 0.706912, 0.014857,-0.706912;;, + 13;4;-0.012230, 0.706947, 0.012230,-0.706947;;, + 14;4;-0.009255, 0.706986, 0.009255,-0.706986;;, + 15;4;-0.006280, 0.707025, 0.006280,-0.707025;;, + 16;4;-0.003653, 0.707059, 0.003653,-0.707059;;, + 17;4;-0.001645, 0.707085, 0.001645,-0.707085;;, + 18;4;-0.000410, 0.707101, 0.000410,-0.707101;;, + 19;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 20;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 21;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 22;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 23;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 24;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 25;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 26;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 27;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 28;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 29;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 30;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 31;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 32;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 33;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 34;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 35;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 36;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 37;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 38;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 39;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 40;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 41;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 42;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 43;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 44;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 45;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 46;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 47;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 48;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 49;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 50;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 51;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 52;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 53;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 54;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 55;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 56;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 57;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 58;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 59;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 60;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 61;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 62;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 63;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 64;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 65;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 66;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 67;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 68;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 69;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 70;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 71;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 72;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 73;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 74;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 75;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 76;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 77;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 78;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 79;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 80;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 81;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 82;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 83;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 84;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 85;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 86;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 87;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 88;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 89;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 90;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 91;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 92;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 93;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 94;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 95;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 96;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 97;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 98;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 99;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 100;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 101;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 102;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 103;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 104;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 105;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 106;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 107;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 108;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 109;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 110;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 111;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 112;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 113;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 114;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 115;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 116;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 117;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 118;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 119;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 120;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 121;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 122;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 123;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 124;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 125;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 126;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 127;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 128;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 129;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 130;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 131;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 132;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 133;4;-0.000000, 0.707107, 0.000000,-0.707107;;, + 134;4;-0.000000, 0.707107, 0.000000,-0.707107;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 0.955494, 0.955494, 0.955494;;, + 91;3; 0.830311, 0.830311, 0.830311;;, + 92;3; 0.669689, 0.669689, 0.669689;;, + 93;3; 0.544506, 0.544506, 0.544506;;, + 94;3; 0.500000, 0.500000, 0.500000;;, + 95;3; 0.500000, 0.500000, 0.500000;;, + 96;3; 0.500000, 0.500000, 0.500000;;, + 97;3; 0.500000, 0.500000, 0.500000;;, + 98;3; 0.500000, 0.500000, 0.500000;;, + 99;3; 0.500000, 0.500000, 0.500000;;, + 100;3; 0.544506, 0.544506, 0.544506;;, + 101;3; 0.669689, 0.669689, 0.669689;;, + 102;3; 0.830311, 0.830311, 0.830311;;, + 103;3; 0.955494, 0.955494, 0.955494;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3;-0.000001,-0.648392,-0.000000;;, + 1;3;-0.000001,-0.648392,-0.000000;;, + 2;3;-0.000001,-0.648392,-0.000000;;, + 3;3;-0.000001,-0.648392,-0.000000;;, + 4;3;-0.000001,-0.648392,-0.000000;;, + 5;3;-0.000001,-0.648392,-0.000000;;, + 6;3;-0.000001,-0.648392,-0.000000;;, + 7;3;-0.000001,-0.648392,-0.000000;;, + 8;3;-0.000001,-0.648392,-0.000000;;, + 9;3;-0.000001,-0.648392,-0.000000;;, + 10;3;-0.000001,-0.648392,-0.000000;;, + 11;3;-0.000001,-0.648392,-0.000000;;, + 12;3;-0.000001,-0.648392,-0.000000;;, + 13;3;-0.000001,-0.648392,-0.000000;;, + 14;3;-0.000001,-0.648392,-0.000000;;, + 15;3;-0.000001,-0.648392,-0.000000;;, + 16;3;-0.000001,-0.648392,-0.000000;;, + 17;3;-0.000001,-0.648392,-0.000000;;, + 18;3;-0.000001,-0.648392,-0.000000;;, + 19;3;-0.000001,-0.648392,-0.000000;;, + 20;3;-0.000001,-0.648392,-0.000000;;, + 21;3;-0.000001,-0.648392,-0.000000;;, + 22;3;-0.000001,-0.648392,-0.000000;;, + 23;3;-0.000001,-0.648392,-0.000000;;, + 24;3;-0.000001,-0.648392,-0.000000;;, + 25;3;-0.000001,-0.648392,-0.000000;;, + 26;3;-0.000001,-0.648392,-0.000000;;, + 27;3;-0.000001,-0.648392,-0.000000;;, + 28;3;-0.000001,-0.648392,-0.000000;;, + 29;3;-0.000001,-0.648392,-0.000000;;, + 30;3;-0.000001,-0.648392,-0.000000;;, + 31;3;-0.000001,-0.648392,-0.000000;;, + 32;3;-0.000001,-0.648392,-0.000000;;, + 33;3;-0.000001,-0.648392,-0.000000;;, + 34;3;-0.000001,-0.648392,-0.000000;;, + 35;3;-0.000001,-0.648392,-0.000000;;, + 36;3;-0.000001,-0.648392,-0.000000;;, + 37;3;-0.000001,-0.648392,-0.000000;;, + 38;3;-0.000001,-0.648392,-0.000000;;, + 39;3;-0.000001,-0.648392,-0.000000;;, + 40;3;-0.000001,-0.648392,-0.000000;;, + 41;3;-0.000001,-0.648392,-0.000000;;, + 42;3;-0.000001,-0.648392,-0.000000;;, + 43;3;-0.000001,-0.648392,-0.000000;;, + 44;3;-0.000001,-0.648392,-0.000000;;, + 45;3;-0.000001,-0.648392,-0.000000;;, + 46;3;-0.000001,-0.648392,-0.000000;;, + 47;3;-0.000001,-0.648392,-0.000000;;, + 48;3;-0.000001,-0.648392,-0.000000;;, + 49;3;-0.000001,-0.648392,-0.000000;;, + 50;3;-0.000001,-0.648392,-0.000000;;, + 51;3;-0.000001,-0.648392,-0.000000;;, + 52;3;-0.000001,-0.648392,-0.000000;;, + 53;3;-0.000001,-0.648392,-0.000000;;, + 54;3;-0.000001,-0.648392,-0.000000;;, + 55;3;-0.000001,-0.648392,-0.000000;;, + 56;3;-0.000001,-0.648392,-0.000000;;, + 57;3;-0.000001,-0.648392,-0.000000;;, + 58;3;-0.000001,-0.648392,-0.000000;;, + 59;3;-0.000001,-0.648392,-0.000000;;, + 60;3;-0.000001,-0.648392,-0.000000;;, + 61;3;-0.000001,-0.648392,-0.000000;;, + 62;3;-0.000001,-0.648392,-0.000000;;, + 63;3;-0.000001,-0.648392,-0.000000;;, + 64;3;-0.000001,-0.648392,-0.000000;;, + 65;3;-0.000001,-0.648392,-0.000000;;, + 66;3;-0.000001,-0.648392,-0.000000;;, + 67;3;-0.000001,-0.648392,-0.000000;;, + 68;3;-0.000001,-0.648392,-0.000000;;, + 69;3;-0.000001,-0.648392,-0.000000;;, + 70;3;-0.000001,-0.648392,-0.000000;;, + 71;3;-0.000001,-0.648392,-0.000000;;, + 72;3;-0.000001,-0.648392,-0.000000;;, + 73;3;-0.000001,-0.648392,-0.000000;;, + 74;3;-0.000001,-0.648392,-0.000000;;, + 75;3;-0.000001,-0.648392,-0.000000;;, + 76;3;-0.000001,-0.648392,-0.000000;;, + 77;3;-0.000001,-0.648392,-0.000000;;, + 78;3;-0.000001,-0.648392,-0.000000;;, + 79;3;-0.000001,-0.648392,-0.000000;;, + 80;3;-0.000001,-0.648393,-0.000000;;, + 81;3;-0.000001,-0.648392,-0.000000;;, + 82;3;-0.000001,-0.648392,-0.000000;;, + 83;3;-0.000001,-0.648392,-0.000000;;, + 84;3;-0.000001,-0.648392,-0.000000;;, + 85;3;-0.000001,-0.648392,-0.000000;;, + 86;3;-0.000001,-0.648392,-0.000000;;, + 87;3;-0.000001,-0.648393,-0.000000;;, + 88;3;-0.000001,-0.648392,-0.000000;;, + 89;3;-0.000001,-0.648392,-0.000000;;, + 90;3;-0.002428,-0.440470, 0.000793;;, + 91;3;-0.009265, 0.128944, 0.003029;;, + 92;3;-0.018043, 0.850061, 0.005900;;, + 93;3;-0.024880, 1.419475, 0.008136;;, + 94;3;-0.027307, 1.627397, 0.008929;;, + 95;3;-0.027307, 1.627397, 0.008929;;, + 96;3;-0.027307, 1.627397, 0.008929;;, + 97;3;-0.027307, 1.627397, 0.008929;;, + 98;3;-0.027307, 1.627397, 0.008929;;, + 99;3;-0.027307, 1.627397, 0.008929;;, + 100;3;-0.024880, 1.380496, 0.008136;;, + 101;3;-0.018043, 0.711232, 0.005900;;, + 102;3;-0.009265,-0.132227, 0.003029;;, + 103;3;-0.002428,-0.801491, 0.000793;;, + 104;3;-0.000001,-1.048393,-0.000000;;, + 105;3;-0.000001,-1.048393,-0.000000;;, + 106;3;-0.000001,-1.048393,-0.000000;;, + 107;3;-0.000001,-1.048393,-0.000000;;, + 108;3;-0.000001,-1.048393,-0.000000;;, + 109;3;-0.000001,-1.048392,-0.000000;;, + 110;3;-0.000001,-1.048393,-0.000000;;, + 111;3;-0.000001,-1.048393,-0.000000;;, + 112;3;-0.000001,-1.048393,-0.000000;;, + 113;3;-0.000001,-1.048392,-0.000000;;, + 114;3;-0.000001,-1.048393,-0.000000;;, + 115;3;-0.000001,-1.048392,-0.000000;;, + 116;3;-0.000001,-1.048393,-0.000000;;, + 117;3;-0.000001,-1.048393,-0.000000;;, + 118;3;-0.000001,-1.048392,-0.000000;;, + 119;3;-0.000001,-1.048393,-0.000000;;, + 120;3;-0.000001,-1.048393,-0.000000;;, + 121;3;-0.000001,-1.048393,-0.000000;;, + 122;3;-0.000001,-1.048393,-0.000000;;, + 123;3;-0.000001,-1.048393,-0.000000;;, + 124;3;-0.000001,-1.048393,-0.000000;;, + 125;3;-0.000001,-1.048392,-0.000000;;, + 126;3;-0.000001,-1.048393,-0.000000;;, + 127;3;-0.000001,-1.048393,-0.000000;;, + 128;3;-0.000001,-1.048392,-0.000000;;, + 129;3;-0.000001,-1.048392,-0.000000;;, + 130;3;-0.000001,-1.048393,-0.000000;;, + 131;3;-0.000001,-1.048393,-0.000000;;, + 132;3;-0.000001,-1.048393,-0.000000;;, + 133;3;-0.000001,-1.048393,-0.000000;;, + 134;3;-0.000001,-1.048393,-0.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { // Rotation + 0; + 135; + 0;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 1;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 2;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 3;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 4;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 5;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 6;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 7;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 8;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 9;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 10;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 11;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 12;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 13;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 14;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 15;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 16;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 17;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 18;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 19;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 20;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 21;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 22;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 23;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 24;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 25;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 26;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 27;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 28;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 29;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 30;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 31;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 32;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 33;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 34;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 35;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 36;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 37;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 38;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 39;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 40;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 41;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 42;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 43;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 44;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 45;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 46;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 47;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 48;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 49;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 50;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 51;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 52;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 53;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 54;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 55;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 56;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 57;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 58;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 59;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 60;4;-0.449249, 0.542003, 0.552532, 0.442344;;, + 61;4;-0.461675, 0.519790, 0.561127, 0.434701;;, + 62;4;-0.481843, 0.483639, 0.575065, 0.422242;;, + 63;4;-0.508154, 0.436296, 0.593228, 0.405885;;, + 64;4;-0.537854, 0.382562, 0.613698, 0.387253;;, + 65;4;-0.567398, 0.328671, 0.634013, 0.368466;;, + 66;4;-0.593256, 0.280875, 0.651724, 0.351656;;, + 67;4;-0.612713, 0.244017, 0.664954, 0.338490;;, + 68;4;-0.624228, 0.220892, 0.672638, 0.329937;;, + 69;4;-0.627298, 0.212452, 0.674436, 0.326339;;, + 70;4;-0.634290, 0.221335, 0.665431, 0.315466;;, + 71;4;-0.654862, 0.249714, 0.643365, 0.285789;;, + 72;4;-0.678475, 0.290014, 0.618722, 0.245063;;, + 73;4;-0.690542, 0.328057, 0.605842, 0.207363;;, + 74;4;-0.683061, 0.353391, 0.612466, 0.182832;;, + 75;4;-0.644742, 0.377681, 0.637155, 0.174833;;, + 76;4;-0.568666, 0.414546, 0.673851, 0.185489;;, + 77;4;-0.475621, 0.458112, 0.709364, 0.211651;;, + 78;4;-0.398514, 0.498377, 0.727337, 0.243412;;, + 79;4;-0.358441, 0.528451, 0.720170, 0.271320;;, + 80;4;-0.340851, 0.555993, 0.695296, 0.292027;;, + 81;4;-0.330681, 0.586319, 0.665671, 0.306758;;, + 82;4;-0.328908, 0.610699, 0.644691, 0.321309;;, + 83;4;-0.374963, 0.594738, 0.602188, 0.375352;;, + 84;4;-0.426082, 0.562960, 0.563908, 0.425694;;, + 85;4;-0.433569, 0.557784, 0.558436, 0.433254;;, + 86;4;-0.436770, 0.555897, 0.556350, 0.436514;;, + 87;4;-0.437673, 0.555567, 0.555919, 0.437449;;, + 88;4;-0.439675, 0.554002, 0.554315, 0.439456;;, + 89;4;-0.445115, 0.549380, 0.549671, 0.444879;;, + 90;4;-0.455328, 0.540439, 0.540711, 0.455071;;, + 91;4;-0.470084, 0.527206, 0.527467, 0.469817;;, + 92;4;-0.485516, 0.513212, 0.513473, 0.485247;;, + 93;4;-0.496440, 0.503247, 0.503510, 0.496173;;, + 94;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 95;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 96;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 97;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 98;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 99;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 100;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 101;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 102;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 103;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 104;4;-0.500133, 0.499867, 0.500133, 0.499867;;, + 105;4;-0.504658, 0.495343, 0.497751, 0.498936;;, + 106;4;-0.518403, 0.481599, 0.490669, 0.496028;;, + 107;4;-0.541171, 0.458832, 0.479293, 0.491025;;, + 108;4;-0.571923, 0.428082, 0.464550, 0.483943;;, + 109;4;-0.608589, 0.391418, 0.447964, 0.474983;;, + 110;4;-0.648166, 0.351843, 0.431516, 0.464553;;, + 111;4;-0.687206, 0.312804, 0.417305, 0.453216;;, + 112;4;-0.722513, 0.277496, 0.407121, 0.441573;;, + 113;4;-0.751694, 0.248314, 0.402160, 0.430152;;, + 114;4;-0.773339, 0.226666, 0.402981, 0.419337;;, + 115;4;-0.786897, 0.213103, 0.409633, 0.409367;;, + 116;4;-0.790950, 0.206559, 0.424578, 0.396979;;, + 117;4;-0.783646, 0.206527, 0.450256, 0.379272;;, + 118;4;-0.766473, 0.212907, 0.483853, 0.358489;;, + 119;4;-0.744416, 0.223688, 0.519078, 0.338704;;, + 120;4;-0.723687, 0.235752, 0.549230, 0.323740;;, + 121;4;-0.708400, 0.246633, 0.570618, 0.315309;;, + 122;4;-0.690841, 0.263966, 0.581443, 0.317930;;, + 123;4;-0.662392, 0.296011, 0.580376, 0.336018;;, + 124;4;-0.625126, 0.340288, 0.568236, 0.367713;;, + 125;4;-0.583586, 0.391069, 0.548100, 0.407977;;, + 126;4;-0.544120, 0.440175, 0.525108, 0.449137;;, + 127;4;-0.512759, 0.479678, 0.504835, 0.483388;;, + 128;4;-0.493284, 0.504469, 0.491410, 0.505357;;, + 129;4;-0.486899, 0.512768, 0.486854, 0.512808;;, + 130;4;-0.488130, 0.511691, 0.488106, 0.511713;;, + 131;4;-0.491454, 0.508474, 0.491444, 0.508483;;, + 132;4;-0.495685, 0.504297, 0.495682, 0.504299;;, + 133;4;-0.498969, 0.501030, 0.498968, 0.501030;;, + 134;4;-0.500133, 0.499867, 0.500133, 0.499867;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 0.955494, 0.955494, 0.955494;;, + 91;3; 0.830311, 0.830311, 0.830311;;, + 92;3; 0.669689, 0.669689, 0.669689;;, + 93;3; 0.544506, 0.544506, 0.544506;;, + 94;3; 0.500000, 0.500000, 0.500000;;, + 95;3; 0.500000, 0.500000, 0.500000;;, + 96;3; 0.500000, 0.500000, 0.500000;;, + 97;3; 0.500000, 0.500000, 0.500000;;, + 98;3; 0.500000, 0.500000, 0.500000;;, + 99;3; 0.500000, 0.500000, 0.500000;;, + 100;3; 0.544506, 0.544506, 0.544506;;, + 101;3; 0.669689, 0.669689, 0.669689;;, + 102;3; 0.830311, 0.830311, 0.830311;;, + 103;3; 0.955494, 0.955494, 0.955494;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3;-0.000000, 7.151142, 2.618314;;, + 1;3;-0.000000, 7.151142, 2.618314;;, + 2;3;-0.000000, 7.151142, 2.618314;;, + 3;3;-0.000000, 7.151142, 2.618314;;, + 4;3;-0.000000, 7.151142, 2.618314;;, + 5;3;-0.000000, 7.151142, 2.618314;;, + 6;3;-0.000000, 7.151142, 2.618314;;, + 7;3;-0.000000, 7.151142, 2.618314;;, + 8;3;-0.000000, 7.151142, 2.618314;;, + 9;3;-0.000000, 7.151142, 2.618314;;, + 10;3;-0.000000, 7.151142, 2.618314;;, + 11;3;-0.000000, 7.151142, 2.618314;;, + 12;3;-0.000000, 7.151142, 2.618314;;, + 13;3;-0.000000, 7.151142, 2.618314;;, + 14;3;-0.000000, 7.151142, 2.618314;;, + 15;3;-0.000000, 7.151142, 2.618314;;, + 16;3;-0.000000, 7.151142, 2.618314;;, + 17;3;-0.000000, 7.151142, 2.618314;;, + 18;3;-0.000000, 7.151142, 2.618314;;, + 19;3;-0.000000, 7.151142, 2.618314;;, + 20;3;-0.000000, 7.151142, 2.618314;;, + 21;3;-0.000000, 7.151142, 2.618314;;, + 22;3;-0.000000, 7.151142, 2.618314;;, + 23;3;-0.000000, 7.151142, 2.618314;;, + 24;3;-0.000000, 7.151142, 2.618314;;, + 25;3;-0.000000, 7.151142, 2.618314;;, + 26;3;-0.000000, 7.151142, 2.618314;;, + 27;3;-0.000000, 7.151142, 2.618314;;, + 28;3;-0.000000, 7.151142, 2.618314;;, + 29;3;-0.000000, 7.151142, 2.618314;;, + 30;3;-0.000000, 7.151142, 2.618314;;, + 31;3;-0.000000, 7.151142, 2.618314;;, + 32;3;-0.000000, 7.151142, 2.618314;;, + 33;3;-0.000000, 7.151142, 2.618314;;, + 34;3;-0.000000, 7.151142, 2.618314;;, + 35;3;-0.000000, 7.151142, 2.618314;;, + 36;3;-0.000000, 7.151142, 2.618314;;, + 37;3;-0.000000, 7.151142, 2.618314;;, + 38;3;-0.000000, 7.151142, 2.618314;;, + 39;3;-0.000000, 7.151142, 2.618314;;, + 40;3;-0.000000, 7.151142, 2.618314;;, + 41;3;-0.000000, 7.151142, 2.618314;;, + 42;3;-0.000000, 7.151142, 2.618314;;, + 43;3;-0.000000, 7.151142, 2.618314;;, + 44;3;-0.000000, 7.151142, 2.618314;;, + 45;3;-0.000000, 7.151142, 2.618314;;, + 46;3;-0.000000, 7.151142, 2.618314;;, + 47;3;-0.000000, 7.151142, 2.618314;;, + 48;3;-0.000000, 7.151142, 2.618314;;, + 49;3;-0.000000, 7.151142, 2.618314;;, + 50;3;-0.000000, 7.151142, 2.618314;;, + 51;3;-0.000000, 7.151142, 2.618314;;, + 52;3;-0.000000, 7.151142, 2.618314;;, + 53;3;-0.000000, 7.151142, 2.618314;;, + 54;3;-0.000000, 7.151142, 2.618314;;, + 55;3;-0.000000, 7.151142, 2.618314;;, + 56;3;-0.000000, 7.151142, 2.618314;;, + 57;3;-0.000000, 7.151142, 2.618314;;, + 58;3;-0.000000, 7.151142, 2.618314;;, + 59;3;-0.000000, 7.151142, 2.618314;;, + 60;3;-0.000000, 7.151142, 2.618314;;, + 61;3;-0.000000, 7.151142, 2.618314;;, + 62;3;-0.000000, 7.151142, 2.618314;;, + 63;3;-0.000000, 7.151142, 2.618314;;, + 64;3; 0.000000, 7.151142, 2.618314;;, + 65;3; 0.000000, 7.151142, 2.618314;;, + 66;3; 0.000000, 7.151142, 2.618314;;, + 67;3; 0.000000, 7.151142, 2.618314;;, + 68;3; 0.000000, 7.151142, 2.618314;;, + 69;3; 0.000000, 7.151142, 2.618314;;, + 70;3; 0.000000, 7.151142, 2.618314;;, + 71;3; 0.000000, 7.151142, 2.618314;;, + 72;3; 0.000000, 7.151142, 2.618314;;, + 73;3; 0.000000, 7.151142, 2.618314;;, + 74;3; 0.000000, 7.151142, 2.618314;;, + 75;3;-0.017714, 7.152692, 2.618314;;, + 76;3;-0.067598, 7.157056, 2.618314;;, + 77;3;-0.131641, 7.162659, 2.618314;;, + 78;3;-0.181525, 7.167024, 2.618314;;, + 79;3;-0.199239, 7.168574, 2.618314;;, + 80;3;-0.199239, 7.168573, 2.618314;;, + 81;3;-0.199239, 7.168573, 2.618314;;, + 82;3;-0.199239, 7.168573, 2.618314;;, + 83;3;-0.122866, 7.161892, 2.618314;;, + 84;3;-0.035779, 7.154272, 2.618314;;, + 85;3;-0.019448, 7.153105, 2.618314;;, + 86;3;-0.008069, 7.152724, 2.618314;;, + 87;3;-0.002139, 7.152692, 2.618314;;, + 88;3;-0.000222, 7.152318, 2.618314;;, + 89;3;-0.000000, 7.151142, 2.618314;;, + 90;3;-0.002427, 7.003605, 2.501667;;, + 91;3;-0.009264, 6.596964, 2.176184;;, + 92;3;-0.018043, 6.079250, 1.760217;;, + 93;3;-0.024880, 5.673338, 1.434734;;, + 94;3;-0.027307, 5.527164, 1.318086;;, + 95;3;-0.027307, 5.527164, 1.318086;;, + 96;3;-0.027307, 5.527164, 1.318086;;, + 97;3;-0.027307, 5.527164, 1.318086;;, + 98;3;-0.027307, 5.527164, 1.318086;;, + 99;3;-0.027307, 5.527164, 1.318086;;, + 100;3;-0.024880, 5.662300, 1.423411;;, + 101;3;-0.018043, 6.042881, 1.722508;;, + 102;3;-0.009265, 6.540624, 2.117665;;, + 103;3;-0.002428, 6.955214, 2.451799;;, + 104;3;-0.000000, 7.151142, 2.618314;;, + 105;3;-0.007324, 7.216349, 2.683282;;, + 106;3;-0.029407, 7.269654, 2.736558;;, + 107;3;-0.065611, 7.310823, 2.777849;;, + 108;3;-0.113849, 7.340499, 2.807723;;, + 109;3;-0.170311, 7.360460, 2.827884;;, + 110;3;-0.229711, 7.373590, 2.841161;;, + 111;3;-0.286169, 7.383459, 2.851100;;, + 112;3;-0.334401, 7.393634, 2.861266;;, + 113;3;-0.370599, 7.407079, 2.874632;;, + 114;3;-0.392677, 7.425855, 2.893255;;, + 115;3;-0.400000, 7.451142, 2.918314;;, + 116;3;-0.389894, 7.484374, 2.951136;;, + 117;3;-0.359148, 7.524864, 2.990964;;, + 118;3;-0.311450, 7.567104, 3.032404;;, + 119;3;-0.256961, 7.602792, 3.067355;;, + 120;3;-0.207551, 7.625269, 3.089342;;, + 121;3;-0.170564, 7.632551, 3.096458;;, + 122;3;-0.140034, 7.615844, 3.079865;;, + 123;3;-0.108687, 7.565982, 3.030340;;, + 124;3;-0.078085, 7.487494, 2.952384;;, + 125;3;-0.050407, 7.391885, 2.857424;;, + 126;3;-0.027870, 7.296265, 2.762452;;, + 127;3;-0.011915, 7.217749, 2.684468;;, + 128;3;-0.002823, 7.167860, 2.634918;;, + 129;3;-0.000000, 7.151142, 2.618314;;, + 130;3; 0.000000, 7.151142, 2.618314;;, + 131;3; 0.000000, 7.151142, 2.618314;;, + 132;3; 0.000000, 7.151142, 2.618314;;, + 133;3;-0.000000, 7.151142, 2.618313;;, + 134;3;-0.000000, 7.151142, 2.618314;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { // Rotation + 0; + 135; + 0;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 1;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 2;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 3;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 4;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 5;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 6;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 7;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 8;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 9;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 10;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 11;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 12;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 13;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 14;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 15;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 16;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 17;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 18;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 19;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 20;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 21;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 22;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 23;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 24;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 25;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 26;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 27;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 28;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 29;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 30;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 31;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 32;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 33;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 34;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 35;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 36;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 37;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 38;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 39;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 40;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 41;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 42;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 43;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 44;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 45;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 46;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 47;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 48;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 49;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 50;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 51;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 52;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 53;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 54;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 55;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 56;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 57;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 58;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 59;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 60;4;-0.449645,-0.541509,-0.553017, 0.441942;;, + 61;4;-0.462064,-0.519288,-0.561592, 0.434288;;, + 62;4;-0.482220,-0.483125,-0.575497, 0.421811;;, + 63;4;-0.508516,-0.435765,-0.593617, 0.405430;;, + 64;4;-0.538200,-0.382013,-0.614040, 0.386772;;, + 65;4;-0.567728,-0.328104,-0.634306, 0.367958;;, + 66;4;-0.593570,-0.280292,-0.651975, 0.351126;;, + 67;4;-0.613016,-0.243422,-0.665172, 0.337942;;, + 68;4;-0.624522,-0.220290,-0.672835, 0.329379;;, + 69;4;-0.627590,-0.211849,-0.674626, 0.325778;;, + 70;4;-0.634567,-0.220735,-0.665633, 0.314905;;, + 71;4;-0.655102,-0.249121,-0.643603, 0.285222;;, + 72;4;-0.678670,-0.289432,-0.619005, 0.244485;;, + 73;4;-0.690707,-0.327491,-0.606155, 0.206770;;, + 74;4;-0.683224,-0.352843,-0.612782, 0.182221;;, + 75;4;-0.644918,-0.377135,-0.637472, 0.174233;;, + 76;4;-0.568856,-0.413971,-0.674198, 0.184952;;, + 77;4;-0.475826,-0.457496,-0.709758, 0.211208;;, + 78;4;-0.398736,-0.497732,-0.727778, 0.243051;;, + 79;4;-0.358683,-0.527807,-0.720643, 0.270999;;, + 80;4;-0.341108,-0.555356,-0.695797, 0.291737;;, + 81;4;-0.330946,-0.585693,-0.666205, 0.306493;;, + 82;4;-0.329195,-0.610122,-0.645237, 0.321015;;, + 83;4;-0.375314,-0.594241,-0.602705, 0.374975;;, + 84;4;-0.426477,-0.562493,-0.564396, 0.425276;;, + 85;4;-0.433964,-0.557305,-0.558926, 0.432846;;, + 86;4;-0.437164,-0.555409,-0.556844, 0.436114;;, + 87;4;-0.438065,-0.555074,-0.556415, 0.437054;;, + 88;4;-0.440068,-0.553508,-0.554810, 0.439061;;, + 89;4;-0.445512,-0.548888,-0.550162, 0.444481;;, + 90;4;-0.455735,-0.539954,-0.541193, 0.454666;;, + 91;4;-0.470504,-0.526732,-0.527938, 0.469398;;, + 92;4;-0.485950,-0.512751,-0.513931, 0.484814;;, + 93;4;-0.496884,-0.502796,-0.503960, 0.495730;;, + 94;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 95;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 96;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 97;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 98;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 99;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 100;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 101;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 102;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 103;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 104;4;-0.500579,-0.499420,-0.500579, 0.499420;;, + 105;4;-0.505104,-0.494897,-0.498193, 0.498485;;, + 106;4;-0.518846,-0.481160,-0.491100, 0.495564;;, + 107;4;-0.541610,-0.458404,-0.479703, 0.490541;;, + 108;4;-0.572356,-0.427666,-0.464933, 0.483432;;, + 109;4;-0.609014,-0.391017,-0.448313, 0.474439;;, + 110;4;-0.648581,-0.351457,-0.431830, 0.463973;;, + 111;4;-0.687611,-0.312431,-0.417584, 0.452601;;, + 112;4;-0.722908,-0.277132,-0.407369, 0.440927;;, + 113;4;-0.752079,-0.247954,-0.402382, 0.429479;;, + 114;4;-0.773714,-0.226305,-0.403183, 0.418645;;, + 115;4;-0.787263,-0.212737,-0.409823, 0.408664;;, + 116;4;-0.791305,-0.206179,-0.424762, 0.396272;;, + 117;4;-0.783985,-0.206125,-0.450440, 0.378571;;, + 118;4;-0.766793,-0.212474,-0.484043, 0.357804;;, + 119;4;-0.744719,-0.223223,-0.519278, 0.338038;;, + 120;4;-0.723977,-0.235260,-0.549440, 0.323093;;, + 121;4;-0.708682,-0.246123,-0.570838, 0.314676;;, + 122;4;-0.691125,-0.263445,-0.581679, 0.317313;;, + 123;4;-0.662692,-0.295491,-0.580641, 0.335427;;, + 124;4;-0.625453,-0.339778,-0.568541, 0.367156;;, + 125;4;-0.583949,-0.390577,-0.548451, 0.407457;;, + 126;4;-0.544519,-0.439703,-0.525504, 0.448653;;, + 127;4;-0.513188,-0.479223,-0.505266, 0.482932;;, + 128;4;-0.493733,-0.504026,-0.491864, 0.504918;;, + 129;4;-0.487355,-0.512330,-0.487314, 0.512375;;, + 130;4;-0.488586,-0.511253,-0.488565, 0.511278;;, + 131;4;-0.491907,-0.508033,-0.491899, 0.508044;;, + 132;4;-0.496135,-0.503853,-0.496133, 0.503857;;, + 133;4;-0.499416,-0.500583,-0.499416, 0.500584;;, + 134;4;-0.500579,-0.499420,-0.500579, 0.499420;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 0.955494, 0.955494, 0.955494;;, + 91;3; 0.830311, 0.830311, 0.830311;;, + 92;3; 0.669689, 0.669689, 0.669689;;, + 93;3; 0.544506, 0.544506, 0.544506;;, + 94;3; 0.500000, 0.500000, 0.500000;;, + 95;3; 0.500000, 0.500000, 0.500000;;, + 96;3; 0.500000, 0.500000, 0.500000;;, + 97;3; 0.500000, 0.500000, 0.500000;;, + 98;3; 0.500000, 0.500000, 0.500000;;, + 99;3; 0.500000, 0.500000, 0.500000;;, + 100;3; 0.544506, 0.544506, 0.544506;;, + 101;3; 0.669689, 0.669689, 0.669689;;, + 102;3; 0.830311, 0.830311, 0.830311;;, + 103;3; 0.955494, 0.955494, 0.955494;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3;-0.000001, 7.143965,-2.565951;;, + 1;3;-0.000001, 7.143965,-2.565951;;, + 2;3;-0.000001, 7.143965,-2.565951;;, + 3;3;-0.000001, 7.143965,-2.565951;;, + 4;3;-0.000001, 7.143965,-2.565951;;, + 5;3;-0.000001, 7.143965,-2.565951;;, + 6;3;-0.000001, 7.143965,-2.565951;;, + 7;3;-0.000001, 7.143965,-2.565951;;, + 8;3;-0.000001, 7.143965,-2.565951;;, + 9;3;-0.000001, 7.143965,-2.565951;;, + 10;3;-0.000001, 7.143965,-2.565951;;, + 11;3;-0.000001, 7.143965,-2.565951;;, + 12;3;-0.000001, 7.143965,-2.565951;;, + 13;3;-0.000001, 7.143965,-2.565951;;, + 14;3;-0.000001, 7.143965,-2.565951;;, + 15;3;-0.000001, 7.143965,-2.565951;;, + 16;3;-0.000001, 7.143965,-2.565951;;, + 17;3;-0.000001, 7.143965,-2.565951;;, + 18;3;-0.000001, 7.143965,-2.565951;;, + 19;3;-0.000001, 7.143965,-2.565951;;, + 20;3;-0.000001, 7.143965,-2.565951;;, + 21;3;-0.000001, 7.143965,-2.565951;;, + 22;3;-0.000001, 7.143965,-2.565951;;, + 23;3;-0.000001, 7.143965,-2.565951;;, + 24;3;-0.000001, 7.143965,-2.565951;;, + 25;3;-0.000001, 7.143965,-2.565951;;, + 26;3;-0.000001, 7.143965,-2.565951;;, + 27;3;-0.000001, 7.143965,-2.565951;;, + 28;3;-0.000001, 7.143965,-2.565951;;, + 29;3;-0.000001, 7.143965,-2.565951;;, + 30;3;-0.000001, 7.143965,-2.565951;;, + 31;3;-0.000001, 7.143965,-2.565951;;, + 32;3;-0.000001, 7.143965,-2.565951;;, + 33;3;-0.000001, 7.143965,-2.565951;;, + 34;3;-0.000001, 7.143965,-2.565951;;, + 35;3;-0.000001, 7.143965,-2.565951;;, + 36;3;-0.000001, 7.143965,-2.565951;;, + 37;3;-0.000001, 7.143965,-2.565951;;, + 38;3;-0.000001, 7.143965,-2.565951;;, + 39;3;-0.000001, 7.143965,-2.565951;;, + 40;3;-0.000001, 7.143965,-2.565951;;, + 41;3;-0.000001, 7.143965,-2.565951;;, + 42;3;-0.000001, 7.143965,-2.565951;;, + 43;3;-0.000001, 7.143965,-2.565951;;, + 44;3;-0.000001, 7.143965,-2.565951;;, + 45;3;-0.000001, 7.143965,-2.565951;;, + 46;3;-0.000001, 7.143965,-2.565951;;, + 47;3;-0.000001, 7.143965,-2.565951;;, + 48;3;-0.000001, 7.143965,-2.565951;;, + 49;3;-0.000001, 7.143965,-2.565951;;, + 50;3;-0.000001, 7.143965,-2.565951;;, + 51;3;-0.000001, 7.143965,-2.565951;;, + 52;3;-0.000001, 7.143965,-2.565951;;, + 53;3;-0.000001, 7.143965,-2.565951;;, + 54;3;-0.000001, 7.143965,-2.565951;;, + 55;3;-0.000001, 7.143965,-2.565951;;, + 56;3;-0.000001, 7.143965,-2.565951;;, + 57;3;-0.000001, 7.143965,-2.565951;;, + 58;3;-0.000001, 7.143965,-2.565951;;, + 59;3;-0.000001, 7.143965,-2.565951;;, + 60;3;-0.000001, 7.143965,-2.565951;;, + 61;3;-0.000001, 7.143965,-2.565951;;, + 62;3;-0.000001, 7.143965,-2.565951;;, + 63;3;-0.000001, 7.143965,-2.565951;;, + 64;3;-0.000000, 7.143965,-2.565951;;, + 65;3;-0.000000, 7.143965,-2.565951;;, + 66;3;-0.000000, 7.143965,-2.565951;;, + 67;3;-0.000000, 7.143965,-2.565951;;, + 68;3;-0.000000, 7.143965,-2.565951;;, + 69;3;-0.000000, 7.143965,-2.565951;;, + 70;3;-0.000000, 7.143965,-2.565951;;, + 71;3;-0.000000, 7.143965,-2.565951;;, + 72;3;-0.000000, 7.143965,-2.565951;;, + 73;3;-0.000000, 7.143965,-2.565951;;, + 74;3;-0.000000, 7.143965,-2.565951;;, + 75;3;-0.017714, 7.145515,-2.565951;;, + 76;3;-0.067598, 7.149879,-2.565951;;, + 77;3;-0.131641, 7.155483,-2.565951;;, + 78;3;-0.181525, 7.159847,-2.565951;;, + 79;3;-0.199239, 7.161397,-2.565951;;, + 80;3;-0.199239, 7.161397,-2.565951;;, + 81;3;-0.199239, 7.161397,-2.565951;;, + 82;3;-0.199239, 7.161396,-2.565951;;, + 83;3;-0.122867, 7.154716,-2.565951;;, + 84;3;-0.035779, 7.147096,-2.565951;;, + 85;3;-0.019448, 7.145928,-2.565951;;, + 86;3;-0.008070, 7.145547,-2.565951;;, + 87;3;-0.002139, 7.145515,-2.565951;;, + 88;3;-0.000222, 7.145142,-2.565951;;, + 89;3;-0.000001, 7.143965,-2.565951;;, + 90;3;-0.002428, 6.996767,-2.450060;;, + 91;3;-0.009265, 6.591022,-2.126660;;, + 92;3;-0.018043, 6.074424,-1.713337;;, + 93;3;-0.024880, 5.669410,-1.389936;;, + 94;3;-0.027307, 5.523576,-1.274046;;, + 95;3;-0.027307, 5.523576,-1.274046;;, + 96;3;-0.027307, 5.523576,-1.274046;;, + 97;3;-0.027307, 5.523576,-1.274046;;, + 98;3;-0.027307, 5.523576,-1.274046;;, + 99;3;-0.027307, 5.523576,-1.274046;;, + 100;3;-0.024880, 5.658372,-1.378614;;, + 101;3;-0.018044, 6.038046,-1.675619;;, + 102;3;-0.009265, 6.534667,-2.068125;;, + 103;3;-0.002428, 6.948370,-2.400186;;, + 104;3;-0.000000, 7.143965,-2.565952;;, + 105;3;-0.007324, 7.209167,-2.630919;;, + 106;3;-0.029408, 7.262470,-2.684201;;, + 107;3;-0.065612, 7.303640,-2.725502;;, + 108;3;-0.113850, 7.333318,-2.755392;;, + 109;3;-0.170312, 7.353280,-2.775567;;, + 110;3;-0.229711, 7.366412,-2.788857;;, + 111;3;-0.286170, 7.376281,-2.798799;;, + 112;3;-0.334401, 7.386456,-2.808964;;, + 113;3;-0.370599, 7.399901,-2.822317;;, + 114;3;-0.392678, 7.418678,-2.840922;;, + 115;3;-0.400000, 7.443965,-2.865952;;, + 116;3;-0.389894, 7.477197,-2.898725;;, + 117;3;-0.359148, 7.517688,-2.938473;;, + 118;3;-0.311451, 7.559928,-2.979817;;, + 119;3;-0.256962, 7.595616,-3.014677;;, + 120;3;-0.207552, 7.618093,-3.036605;;, + 121;3;-0.170564, 7.625375,-3.043701;;, + 122;3;-0.140035, 7.608667,-3.027121;;, + 123;3;-0.108687, 7.558805,-2.977638;;, + 124;3;-0.078085, 7.480318,-2.899747;;, + 125;3;-0.050407, 7.384709,-2.804865;;, + 126;3;-0.027871, 7.289088,-2.709971;;, + 127;3;-0.011915, 7.210572,-2.632051;;, + 128;3;-0.002823, 7.160683,-2.582542;;, + 129;3;-0.000000, 7.143965,-2.565952;;, + 130;3;-0.000000, 7.143966,-2.565952;;, + 131;3;-0.000000, 7.143966,-2.565952;;, + 132;3;-0.000000, 7.143966,-2.565952;;, + 133;3;-0.000000, 7.143966,-2.565952;;, + 134;3;-0.000000, 7.143965,-2.565952;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { // Rotation + 0; + 135; + 0;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 1;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 2;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 3;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 4;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 5;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 6;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 7;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 8;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 9;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 10;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 11;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 12;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 13;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 14;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 15;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 16;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 17;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 18;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 19;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 20;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 21;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 22;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 23;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 24;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 25;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 26;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 27;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 28;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 29;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 30;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 31;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 32;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 33;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 34;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 35;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 36;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 37;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 38;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 39;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 40;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 41;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 42;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 43;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 44;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 45;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 46;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 47;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 48;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 49;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 50;4;-0.543330, 0.448853,-0.438420,-0.552532;;, + 51;4;-0.524687, 0.460458,-0.418627,-0.561579;;, + 52;4;-0.494378, 0.479323,-0.386447,-0.576285;;, + 53;4;-0.454739, 0.503994,-0.344363,-0.595517;;, + 54;4;-0.409838, 0.531939,-0.296691,-0.617300;;, + 55;4;-0.364940, 0.559882,-0.249023,-0.639081;;, + 56;4;-0.325307, 0.584547,-0.206944,-0.658307;;, + 57;4;-0.295005, 0.603406,-0.174772,-0.673006;;, + 58;4;-0.276367, 0.615005,-0.154985,-0.682048;;, + 59;4;-0.270174, 0.618860,-0.148409,-0.685053;;, + 60;4;-0.273225, 0.617897,-0.151373,-0.684315;;, + 61;4;-0.282638, 0.614826,-0.160545,-0.681955;;, + 62;4;-0.298480, 0.609420,-0.176045,-0.677794;;, + 63;4;-0.320179, 0.601601,-0.197389,-0.671763;;, + 64;4;-0.346353, 0.591526,-0.223309,-0.663970;;, + 65;4;-0.374928, 0.579615,-0.251855,-0.654730;;, + 66;4;-0.403586, 0.566474,-0.280808,-0.644503;;, + 67;4;-0.430317, 0.552740,-0.308215,-0.633777;;, + 68;4;-0.453744, 0.538950,-0.332710,-0.622969;;, + 69;4;-0.473147, 0.525483,-0.353553,-0.612373;;, + 70;4;-0.492551, 0.509176,-0.375013,-0.598987;;, + 71;4;-0.514485, 0.488054,-0.399883,-0.581095;;, + 72;4;-0.534202, 0.466812,-0.423123,-0.563442;;, + 73;4;-0.546505, 0.451470,-0.438939,-0.551978;;, + 74;4;-0.549525, 0.444997,-0.444997,-0.549525;;, + 75;4;-0.546086, 0.444311,-0.443725,-0.554660;;, + 76;4;-0.535830, 0.448587,-0.434417,-0.567682;;, + 77;4;-0.514839, 0.461455,-0.413350,-0.589863;;, + 78;4;-0.482155, 0.484321,-0.380203,-0.619384;;, + 79;4;-0.440494, 0.515325,-0.338310,-0.652650;;, + 80;4;-0.359295, 0.568445,-0.251348,-0.686290;;, + 81;4;-0.248046, 0.634645,-0.127768,-0.710808;;, + 82;4;-0.201207, 0.661680,-0.075166,-0.718363;;, + 83;4;-0.211413, 0.655344,-0.086005,-0.713435;;, + 84;4;-0.228001, 0.645048,-0.103623,-0.705428;;, + 85;4;-0.236154, 0.639963,-0.112145,-0.701590;;, + 86;4;-0.240015, 0.637506,-0.115921,-0.699959;;, + 87;4;-0.243818, 0.635098,-0.119703,-0.698307;;, + 88;4;-0.252982, 0.629428,-0.129547,-0.693800;;, + 89;4;-0.270174, 0.618860,-0.148409,-0.685053;;, + 90;4;-0.305823, 0.598947,-0.196430,-0.660803;;, + 91;4;-0.366156, 0.567478,-0.287535,-0.613047;;, + 92;4;-0.433568, 0.533251,-0.393435,-0.556885;;, + 93;4;-0.482973, 0.508483,-0.472498,-0.514716;;, + 94;4;-0.500000, 0.500000,-0.500000,-0.500000;;, + 95;4;-0.500000, 0.500000,-0.500000,-0.500000;;, + 96;4;-0.500000, 0.500000,-0.500000,-0.500000;;, + 97;4;-0.500000, 0.500000,-0.500000,-0.500000;;, + 98;4;-0.500000, 0.500000,-0.500000,-0.500000;;, + 99;4;-0.500000, 0.500000,-0.500000,-0.500000;;, + 100;4;-0.449956, 0.518269,-0.449956,-0.518269;;, + 101;4;-0.309346, 0.569444,-0.309346,-0.569445;;, + 102;4;-0.129026, 0.634972,-0.129026,-0.634972;;, + 103;4; 0.011585, 0.686147, 0.011585,-0.686147;;, + 104;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 105;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 106;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 107;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 108;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 109;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 110;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 111;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 112;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 113;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 114;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 115;4; 0.061628, 0.704416, 0.061628,-0.704416;;, + 116;4; 0.060866, 0.704348, 0.062385,-0.704478;;, + 117;4; 0.058647, 0.704148, 0.064588,-0.704655;;, + 118;4; 0.055461, 0.703857, 0.067757,-0.704908;;, + 119;4; 0.052280, 0.703561, 0.070931,-0.705156;;, + 120;4; 0.050076, 0.703347, 0.073149,-0.705319;;, + 121;4; 0.049335, 0.703257, 0.073927,-0.705359;;, + 122;4; 0.049816, 0.703243, 0.073911,-0.705300;;, + 123;4; 0.051224, 0.703251, 0.073798,-0.705171;;, + 124;4; 0.053472, 0.703283, 0.073556,-0.704979;;, + 125;4; 0.056294, 0.703337, 0.073165,-0.704744;;, + 126;4; 0.059262, 0.703408, 0.072620,-0.704501;;, + 127;4; 0.061924, 0.703487, 0.071942,-0.704285;;, + 128;4; 0.063960, 0.703568, 0.071166,-0.704119;;, + 129;4; 0.065223, 0.703644, 0.070324,-0.704015;;, + 130;4; 0.065523, 0.703764, 0.068931,-0.703998;;, + 131;4; 0.064737, 0.703967, 0.066640,-0.704089;;, + 132;4; 0.063319, 0.704194, 0.064107,-0.704240;;, + 133;4; 0.062087, 0.704359, 0.062262,-0.704369;;, + 134;4; 0.061628, 0.704416, 0.061628,-0.704416;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 0.955494, 0.955494, 0.955494;;, + 91;3; 0.830311, 0.830311, 0.830311;;, + 92;3; 0.669689, 0.669689, 0.669689;;, + 93;3; 0.544506, 0.544506, 0.544506;;, + 94;3; 0.500000, 0.500000, 0.500000;;, + 95;3; 0.500000, 0.500000, 0.500000;;, + 96;3; 0.500000, 0.500000, 0.500000;;, + 97;3; 0.500000, 0.500000, 0.500000;;, + 98;3; 0.500000, 0.500000, 0.500000;;, + 99;3; 0.500000, 0.500000, 0.500000;;, + 100;3; 0.544506, 0.544506, 0.544506;;, + 101;3; 0.669689, 0.669689, 0.669689;;, + 102;3; 0.830311, 0.830311, 0.830311;;, + 103;3; 0.955494, 0.955494, 0.955494;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3; 0.000000, 0.655544, 2.627153;;, + 1;3; 0.000000, 0.655544, 2.627153;;, + 2;3; 0.000000, 0.655544, 2.627153;;, + 3;3; 0.000000, 0.655544, 2.627153;;, + 4;3; 0.000000, 0.655544, 2.627153;;, + 5;3; 0.000000, 0.655544, 2.627153;;, + 6;3; 0.000000, 0.655544, 2.627153;;, + 7;3; 0.000000, 0.655544, 2.627153;;, + 8;3; 0.000000, 0.655544, 2.627153;;, + 9;3; 0.000000, 0.655544, 2.627153;;, + 10;3; 0.000000, 0.655544, 2.627153;;, + 11;3; 0.000000, 0.655544, 2.627153;;, + 12;3; 0.000000, 0.655544, 2.627153;;, + 13;3; 0.000000, 0.655544, 2.627153;;, + 14;3; 0.000000, 0.655544, 2.627153;;, + 15;3; 0.000000, 0.655544, 2.627153;;, + 16;3; 0.000000, 0.655544, 2.627153;;, + 17;3; 0.000000, 0.655544, 2.627153;;, + 18;3; 0.000000, 0.655544, 2.627153;;, + 19;3; 0.000000, 0.655544, 2.627153;;, + 20;3; 0.000000, 0.655544, 2.627153;;, + 21;3; 0.000000, 0.655544, 2.627153;;, + 22;3; 0.000000, 0.655544, 2.627153;;, + 23;3; 0.000000, 0.655544, 2.627153;;, + 24;3; 0.000000, 0.655544, 2.627153;;, + 25;3; 0.000000, 0.655544, 2.627153;;, + 26;3; 0.000000, 0.655544, 2.627153;;, + 27;3; 0.000000, 0.655544, 2.627153;;, + 28;3; 0.000000, 0.655544, 2.627153;;, + 29;3; 0.000000, 0.655544, 2.627153;;, + 30;3; 0.000000, 0.655544, 2.627153;;, + 31;3; 0.000000, 0.655544, 2.627153;;, + 32;3; 0.000000, 0.655544, 2.627153;;, + 33;3; 0.000000, 0.655544, 2.627153;;, + 34;3; 0.000000, 0.655544, 2.627153;;, + 35;3; 0.000000, 0.655544, 2.627153;;, + 36;3; 0.000000, 0.655544, 2.627153;;, + 37;3; 0.000000, 0.655544, 2.627153;;, + 38;3; 0.000000, 0.655544, 2.627153;;, + 39;3; 0.000000, 0.655544, 2.627153;;, + 40;3; 0.000000, 0.655544, 2.627153;;, + 41;3; 0.000000, 0.655544, 2.627153;;, + 42;3; 0.000000, 0.655544, 2.627153;;, + 43;3; 0.000000, 0.655544, 2.627153;;, + 44;3; 0.000000, 0.655544, 2.627153;;, + 45;3; 0.000000, 0.655544, 2.627153;;, + 46;3; 0.000000, 0.655544, 2.627153;;, + 47;3; 0.000000, 0.655544, 2.627153;;, + 48;3; 0.000000, 0.655544, 2.627153;;, + 49;3; 0.000000, 0.655544, 2.627153;;, + 50;3; 0.000000, 0.655544, 2.641408;;, + 51;3; 0.000000, 0.655544, 2.684302;;, + 52;3; 0.000000, 0.655544, 2.754026;;, + 53;3; 0.000000, 0.655544, 2.845196;;, + 54;3; 0.000000, 0.655544, 2.948456;;, + 55;3; 0.000000, 0.655544, 3.051702;;, + 56;3; 0.000000, 0.655544, 3.142840;;, + 57;3; 0.000000, 0.655544, 3.212525;;, + 58;3; 0.000000, 0.655544, 3.255390;;, + 59;3; 0.000000, 0.655544, 3.269634;;, + 60;3; 0.000000, 0.655544, 3.265988;;, + 61;3; 0.000000, 0.655544, 3.254390;;, + 62;3; 0.000000, 0.655544, 3.234070;;, + 63;3; 0.000000, 0.655544, 3.204830;;, + 64;3; 0.000000, 0.655544, 3.167369;;, + 65;3; 0.000000, 0.655544, 3.123368;;, + 66;3; 0.000000, 0.655544, 3.075166;;, + 67;3; 0.000000, 0.655544, 3.025171;;, + 68;3; 0.000000, 0.655544, 2.975374;;, + 69;3; 0.000000, 0.655544, 2.927153;;, + 70;3; 0.000000, 0.655544, 2.866679;;, + 71;3; 0.000000, 0.655544, 2.785321;;, + 72;3; 0.000000, 0.655544, 2.703211;;, + 73;3; 0.000000, 0.655544, 2.646215;;, + 74;3; 0.000000, 0.655544, 2.627153;;, + 75;3; 0.000000, 0.655543, 2.635624;;, + 76;3; 0.000000, 0.655544, 2.667345;;, + 77;3; 0.000000, 0.655543, 2.729331;;, + 78;3; 0.000000, 0.655544, 2.819288;;, + 79;3;-0.000000, 0.655544, 2.927153;;, + 80;3; 0.000000, 0.655543, 3.107117;;, + 81;3; 0.000000, 0.655544, 3.333982;;, + 82;3; 0.000000, 0.655544, 3.427153;;, + 83;3; 0.000000, 0.655544, 3.403851;;, + 84;3; 0.000000, 0.655544, 3.366007;;, + 85;3; 0.000000, 0.655544, 3.347583;;, + 86;3; 0.000000, 0.655543, 3.339150;;, + 87;3; 0.000000, 0.655543, 3.330880;;, + 88;3; 0.000000, 0.655544, 3.310014;;, + 89;3; 0.000000, 0.655544, 3.269634;;, + 90;3;-0.002427, 0.801957, 3.058650;;, + 91;3;-0.009264, 1.208398, 2.566390;;, + 92;3;-0.018043, 1.726511, 1.960995;;, + 93;3;-0.024880, 2.132951, 1.491267;;, + 94;3;-0.027307, 2.279365, 1.322506;;, + 95;3;-0.027307, 2.279365, 1.322506;;, + 96;3;-0.027307, 2.279365, 1.322506;;, + 97;3;-0.027307, 2.279365, 1.322506;;, + 98;3;-0.027307, 2.279365, 1.322506;;, + 99;3;-0.027307, 2.279365, 1.322506;;, + 100;3;-0.024880, 2.037588, 1.476426;;, + 101;3;-0.018043, 1.381288, 1.903081;;, + 102;3;-0.009264, 0.553621, 2.446577;;, + 103;3;-0.002427,-0.102679, 2.873233;;, + 104;3; 0.000000,-0.344456, 3.027152;;, + 105;3; 0.000000,-0.344457, 3.027152;;, + 106;3; 0.000000,-0.344457, 3.027153;;, + 107;3; 0.000000,-0.344457, 3.027153;;, + 108;3; 0.000000,-0.344456, 3.027152;;, + 109;3; 0.000000,-0.344456, 3.027152;;, + 110;3; 0.000000,-0.344457, 3.027152;;, + 111;3; 0.000000,-0.344457, 3.027153;;, + 112;3; 0.000000,-0.344457, 3.027153;;, + 113;3; 0.000000,-0.344457, 3.027152;;, + 114;3; 0.000000,-0.344457, 3.027152;;, + 115;3; 0.000000,-0.344456, 3.027152;;, + 116;3;-0.000015,-0.344463, 3.027152;;, + 117;3;-0.000059,-0.344482, 3.027153;;, + 118;3;-0.000122,-0.344509, 3.027152;;, + 119;3;-0.000185,-0.344535, 3.027153;;, + 120;3;-0.000230,-0.344554, 3.027152;;, + 121;3;-0.000245,-0.344561, 3.027152;;, + 122;3;-0.000240,-0.344558, 3.027152;;, + 123;3;-0.000225,-0.344552, 3.027153;;, + 124;3;-0.000200,-0.344541, 3.027153;;, + 125;3;-0.000168,-0.344528, 3.027152;;, + 126;3;-0.000133,-0.344513, 3.027153;;, + 127;3;-0.000099,-0.344499, 3.027152;;, + 128;3;-0.000072,-0.344487, 3.027152;;, + 129;3;-0.000051,-0.344478, 3.027153;;, + 130;3;-0.000034,-0.344471, 3.027152;;, + 131;3;-0.000019,-0.344464, 3.027152;;, + 132;3;-0.000008,-0.344460, 3.027152;;, + 133;3;-0.000001,-0.344457, 3.027152;;, + 134;3; 0.000000,-0.344456, 3.027152;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { // Rotation + 0; + 135; + 0;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 1;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 2;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 3;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 4;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 5;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 6;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 7;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 8;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 9;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 10;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 11;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 12;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 13;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 14;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 15;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 16;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 17;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 18;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 19;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 20;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 21;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 22;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 23;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 24;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 25;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 26;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 27;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 28;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 29;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 30;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 31;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 32;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 33;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 34;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 35;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 36;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 37;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 38;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 39;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 40;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 41;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 42;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 43;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 44;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 45;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 46;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 47;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 48;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 49;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 50;4;-0.438420,-0.552532,-0.543330, 0.448853;;, + 51;4;-0.418627,-0.561579,-0.524687, 0.460458;;, + 52;4;-0.386447,-0.576285,-0.494378, 0.479323;;, + 53;4;-0.344363,-0.595517,-0.454739, 0.503995;;, + 54;4;-0.296691,-0.617300,-0.409838, 0.531939;;, + 55;4;-0.249023,-0.639080,-0.364940, 0.559882;;, + 56;4;-0.206944,-0.658306,-0.325307, 0.584547;;, + 57;4;-0.174772,-0.673006,-0.295004, 0.603406;;, + 58;4;-0.154985,-0.682048,-0.276367, 0.615006;;, + 59;4;-0.148410,-0.685052,-0.270174, 0.618860;;, + 60;4;-0.151373,-0.684314,-0.273225, 0.617898;;, + 61;4;-0.160545,-0.681954,-0.282638, 0.614826;;, + 62;4;-0.176045,-0.677794,-0.298480, 0.609420;;, + 63;4;-0.197389,-0.671762,-0.320179, 0.601601;;, + 64;4;-0.223309,-0.663970,-0.346353, 0.591526;;, + 65;4;-0.251855,-0.654730,-0.374927, 0.579615;;, + 66;4;-0.280808,-0.644503,-0.403586, 0.566474;;, + 67;4;-0.308215,-0.633777,-0.430317, 0.552741;;, + 68;4;-0.332710,-0.622968,-0.453744, 0.538950;;, + 69;4;-0.353554,-0.612372,-0.473147, 0.525483;;, + 70;4;-0.375013,-0.598986,-0.492551, 0.509176;;, + 71;4;-0.399883,-0.581095,-0.514484, 0.488054;;, + 72;4;-0.423123,-0.563442,-0.534202, 0.466812;;, + 73;4;-0.438939,-0.551978,-0.546505, 0.451470;;, + 74;4;-0.444997,-0.549525,-0.549525, 0.444997;;, + 75;4;-0.443725,-0.554660,-0.546086, 0.444311;;, + 76;4;-0.434417,-0.567682,-0.535830, 0.448587;;, + 77;4;-0.413350,-0.589863,-0.514839, 0.461455;;, + 78;4;-0.380203,-0.619384,-0.482155, 0.484322;;, + 79;4;-0.338310,-0.652649,-0.440494, 0.515325;;, + 80;4;-0.251348,-0.686290,-0.359295, 0.568445;;, + 81;4;-0.127768,-0.710808,-0.248046, 0.634645;;, + 82;4;-0.075167,-0.718363,-0.201206, 0.661680;;, + 83;4;-0.086006,-0.713434,-0.211413, 0.655344;;, + 84;4;-0.103623,-0.705428,-0.228001, 0.645049;;, + 85;4;-0.112145,-0.701590,-0.236154, 0.639963;;, + 86;4;-0.115921,-0.699958,-0.240015, 0.637506;;, + 87;4;-0.119703,-0.698306,-0.243818, 0.635098;;, + 88;4;-0.129547,-0.693800,-0.252982, 0.629428;;, + 89;4;-0.148410,-0.685052,-0.270174, 0.618860;;, + 90;4;-0.196430,-0.660803,-0.305823, 0.598947;;, + 91;4;-0.287535,-0.613046,-0.366156, 0.567478;;, + 92;4;-0.393435,-0.556885,-0.433568, 0.533251;;, + 93;4;-0.472498,-0.514716,-0.482973, 0.508484;;, + 94;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 95;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 96;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 97;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 98;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 99;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 100;4;-0.449956,-0.518269,-0.449956, 0.518269;;, + 101;4;-0.309346,-0.569444,-0.309346, 0.569445;;, + 102;4;-0.129026,-0.634971,-0.129026, 0.634972;;, + 103;4; 0.011585,-0.686147, 0.011585, 0.686147;;, + 104;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 105;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 106;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 107;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 108;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 109;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 110;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 111;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 112;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 113;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 114;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 115;4; 0.061628,-0.704416, 0.061628, 0.704416;;, + 116;4; 0.062384,-0.704480, 0.060865, 0.704344;;, + 117;4; 0.064584,-0.704665, 0.058645, 0.704134;;, + 118;4; 0.067748,-0.704929, 0.055456, 0.703829;;, + 119;4; 0.070916,-0.705189, 0.052271, 0.703520;;, + 120;4; 0.073127,-0.705363, 0.050062, 0.703298;;, + 121;4; 0.073899,-0.705410, 0.049316, 0.703210;;, + 122;4; 0.073880,-0.705355, 0.049793, 0.703201;;, + 123;4; 0.073766,-0.705225, 0.051199, 0.703215;;, + 124;4; 0.073528,-0.705028, 0.053450, 0.703252;;, + 125;4; 0.073142,-0.704785, 0.056276, 0.703311;;, + 126;4; 0.072604,-0.704533, 0.059248, 0.703387;;, + 127;4; 0.071932,-0.704307, 0.061915, 0.703470;;, + 128;4; 0.071159,-0.704134, 0.063954, 0.703554;;, + 129;4; 0.070319,-0.704025, 0.065218, 0.703634;;, + 130;4; 0.068927,-0.704005, 0.065518, 0.703758;;, + 131;4; 0.066637,-0.704093, 0.064734, 0.703964;;, + 132;4; 0.064106,-0.704242, 0.063317, 0.704192;;, + 133;4; 0.062262,-0.704369, 0.062087, 0.704359;;, + 134;4; 0.061628,-0.704416, 0.061628, 0.704416;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 0.955494, 0.955494, 0.955494;;, + 91;3; 0.830311, 0.830311, 0.830311;;, + 92;3; 0.669689, 0.669689, 0.669689;;, + 93;3; 0.544506, 0.544506, 0.544506;;, + 94;3; 0.500000, 0.500000, 0.500000;;, + 95;3; 0.500000, 0.500000, 0.500000;;, + 96;3; 0.500000, 0.500000, 0.500000;;, + 97;3; 0.500000, 0.500000, 0.500000;;, + 98;3; 0.500000, 0.500000, 0.500000;;, + 99;3; 0.500000, 0.500000, 0.500000;;, + 100;3; 0.544506, 0.544506, 0.544506;;, + 101;3; 0.669689, 0.669689, 0.669689;;, + 102;3; 0.830311, 0.830311, 0.830311;;, + 103;3; 0.955494, 0.955494, 0.955494;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3;-0.000001, 0.653455,-2.572360;;, + 1;3;-0.000001, 0.653455,-2.572360;;, + 2;3;-0.000001, 0.653455,-2.572360;;, + 3;3;-0.000001, 0.653455,-2.572360;;, + 4;3;-0.000001, 0.653455,-2.572360;;, + 5;3;-0.000001, 0.653455,-2.572360;;, + 6;3;-0.000001, 0.653455,-2.572360;;, + 7;3;-0.000001, 0.653455,-2.572360;;, + 8;3;-0.000001, 0.653455,-2.572360;;, + 9;3;-0.000001, 0.653455,-2.572360;;, + 10;3;-0.000001, 0.653455,-2.572360;;, + 11;3;-0.000001, 0.653455,-2.572360;;, + 12;3;-0.000001, 0.653455,-2.572360;;, + 13;3;-0.000001, 0.653455,-2.572360;;, + 14;3;-0.000001, 0.653455,-2.572360;;, + 15;3;-0.000001, 0.653455,-2.572360;;, + 16;3;-0.000001, 0.653455,-2.572360;;, + 17;3;-0.000001, 0.653455,-2.572360;;, + 18;3;-0.000001, 0.653455,-2.572360;;, + 19;3;-0.000001, 0.653455,-2.572360;;, + 20;3;-0.000001, 0.653455,-2.572360;;, + 21;3;-0.000001, 0.653455,-2.572360;;, + 22;3;-0.000001, 0.653455,-2.572360;;, + 23;3;-0.000001, 0.653455,-2.572360;;, + 24;3;-0.000001, 0.653455,-2.572360;;, + 25;3;-0.000001, 0.653455,-2.572360;;, + 26;3;-0.000001, 0.653455,-2.572360;;, + 27;3;-0.000001, 0.653455,-2.572360;;, + 28;3;-0.000001, 0.653455,-2.572360;;, + 29;3;-0.000001, 0.653455,-2.572360;;, + 30;3;-0.000001, 0.653455,-2.572360;;, + 31;3;-0.000001, 0.653455,-2.572360;;, + 32;3;-0.000001, 0.653455,-2.572360;;, + 33;3;-0.000001, 0.653455,-2.572360;;, + 34;3;-0.000001, 0.653455,-2.572360;;, + 35;3;-0.000001, 0.653455,-2.572360;;, + 36;3;-0.000001, 0.653455,-2.572360;;, + 37;3;-0.000001, 0.653455,-2.572360;;, + 38;3;-0.000001, 0.653455,-2.572360;;, + 39;3;-0.000001, 0.653455,-2.572360;;, + 40;3;-0.000001, 0.653455,-2.572360;;, + 41;3;-0.000001, 0.653455,-2.572360;;, + 42;3;-0.000001, 0.653455,-2.572360;;, + 43;3;-0.000001, 0.653455,-2.572360;;, + 44;3;-0.000001, 0.653455,-2.572360;;, + 45;3;-0.000001, 0.653455,-2.572360;;, + 46;3;-0.000001, 0.653455,-2.572360;;, + 47;3;-0.000001, 0.653455,-2.572360;;, + 48;3;-0.000001, 0.653455,-2.572360;;, + 49;3;-0.000001, 0.653455,-2.572360;;, + 50;3;-0.000001, 0.653455,-2.586616;;, + 51;3;-0.000001, 0.653455,-2.629509;;, + 52;3;-0.000001, 0.653455,-2.699233;;, + 53;3;-0.000001, 0.653455,-2.790404;;, + 54;3;-0.000001, 0.653455,-2.893663;;, + 55;3;-0.000001, 0.653455,-2.996909;;, + 56;3;-0.000001, 0.653455,-3.088047;;, + 57;3;-0.000001, 0.653455,-3.157732;;, + 58;3;-0.000001, 0.653455,-3.200597;;, + 59;3;-0.000001, 0.653455,-3.214842;;, + 60;3;-0.000001, 0.653455,-3.211195;;, + 61;3;-0.000001, 0.653455,-3.199597;;, + 62;3;-0.000001, 0.653455,-3.179277;;, + 63;3;-0.000001, 0.653455,-3.150037;;, + 64;3;-0.000001, 0.653455,-3.112576;;, + 65;3;-0.000001, 0.653455,-3.068575;;, + 66;3;-0.000001, 0.653455,-3.020373;;, + 67;3;-0.000001, 0.653455,-2.970378;;, + 68;3;-0.000001, 0.653455,-2.920582;;, + 69;3;-0.000001, 0.653455,-2.872360;;, + 70;3;-0.000001, 0.653455,-2.811886;;, + 71;3;-0.000001, 0.653455,-2.730528;;, + 72;3;-0.000001, 0.653455,-2.648418;;, + 73;3;-0.000001, 0.653455,-2.591422;;, + 74;3;-0.000001, 0.653455,-2.572360;;, + 75;3;-0.000001, 0.653455,-2.580831;;, + 76;3;-0.000001, 0.653455,-2.612552;;, + 77;3;-0.000001, 0.653454,-2.674538;;, + 78;3;-0.000001, 0.653455,-2.764495;;, + 79;3;-0.000001, 0.653455,-2.872360;;, + 80;3;-0.000001, 0.653455,-3.052324;;, + 81;3;-0.000001, 0.653454,-3.279190;;, + 82;3;-0.000001, 0.653455,-3.372360;;, + 83;3;-0.000001, 0.653455,-3.349058;;, + 84;3;-0.000001, 0.653455,-3.311214;;, + 85;3;-0.000001, 0.653455,-3.292789;;, + 86;3;-0.000001, 0.653455,-3.284356;;, + 87;3;-0.000001, 0.653455,-3.276085;;, + 88;3;-0.000001, 0.653455,-3.255218;;, + 89;3;-0.000001, 0.653455,-3.214842;;, + 90;3;-0.002428, 0.799965,-3.004742;;, + 91;3;-0.009265, 1.206666,-2.514848;;, + 92;3;-0.018043, 1.725109,-1.912437;;, + 93;3;-0.024880, 2.131810,-1.445110;;, + 94;3;-0.027307, 2.278321,-1.277250;;, + 95;3;-0.027307, 2.278321,-1.277250;;, + 96;3;-0.027307, 2.278321,-1.277250;;, + 97;3;-0.027307, 2.278321,-1.277250;;, + 98;3;-0.027307, 2.278321,-1.277250;;, + 99;3;-0.027307, 2.278321,-1.277250;;, + 100;3;-0.024880, 2.036441,-1.430283;;, + 101;3;-0.018043, 1.379881,-1.854553;;, + 102;3;-0.009265, 0.551895,-2.395057;;, + 103;3;-0.002428,-0.104666,-2.819328;;, + 104;3;-0.000001,-0.346545,-2.972360;;, + 105;3;-0.000001,-0.346545,-2.972360;;, + 106;3;-0.000001,-0.346545,-2.972360;;, + 107;3;-0.000001,-0.346546,-2.972361;;, + 108;3;-0.000001,-0.346546,-2.972360;;, + 109;3;-0.000001,-0.346545,-2.972360;;, + 110;3;-0.000001,-0.346545,-2.972361;;, + 111;3;-0.000001,-0.346546,-2.972360;;, + 112;3;-0.000001,-0.346545,-2.972360;;, + 113;3;-0.000001,-0.346545,-2.972360;;, + 114;3;-0.000001,-0.346545,-2.972361;;, + 115;3;-0.000001,-0.346546,-2.972360;;, + 116;3; 0.000014,-0.346539,-2.972360;;, + 117;3; 0.000058,-0.346520,-2.972361;;, + 118;3; 0.000122,-0.346493,-2.972360;;, + 119;3; 0.000185,-0.346466,-2.972360;;, + 120;3; 0.000229,-0.346448,-2.972360;;, + 121;3; 0.000244,-0.346441,-2.972360;;, + 122;3; 0.000239,-0.346444,-2.972360;;, + 123;3; 0.000224,-0.346450,-2.972360;;, + 124;3; 0.000199,-0.346460,-2.972360;;, + 125;3; 0.000167,-0.346474,-2.972360;;, + 126;3; 0.000132,-0.346489,-2.972361;;, + 127;3; 0.000099,-0.346503,-2.972361;;, + 128;3; 0.000071,-0.346515,-2.972360;;, + 129;3; 0.000050,-0.346524,-2.972360;;, + 130;3; 0.000033,-0.346531,-2.972360;;, + 131;3; 0.000018,-0.346538,-2.972360;;, + 132;3; 0.000007,-0.346542,-2.972361;;, + 133;3; 0.000001,-0.346545,-2.972361;;, + 134;3;-0.000001,-0.346545,-2.972360;;; + } + } + Animation { + {Camera} + AnimationKey { // Rotation + 0; + 135; + 0;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Group} + AnimationKey { // Rotation + 0; + 135; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Model} + AnimationKey { // Rotation + 0; + 135; + 0;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 135; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 135; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;; + } + } +} // End of AnimationSet Global diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..4fbec53 --- /dev/null +++ b/readme.md @@ -0,0 +1,28 @@ +# Basic Robot Terminal + +*Documentation is not up to date* and need to be remade + +This add a craftable terminal unit related to the [basic_robot](https://github.com/ac-minetest/basic_robot/) mod. +It can be used to consult documentation about robots and browse some scripts contained into the world folder + +I made it to use in a subgame that is meant to be used in surival mode, without any admin privileges and without basic machines. +Scripts and documentation included are focused on only basic robot + +-[x] Fromspec window to browse scripts +-[x] Also provide some documentation +-[x] Terminal block to acces the formspec +-[ ] Documentation book (and treasurer support) +-[ ] Book storage into the terminal block +-[ ] Copy script to a book from the terminal +-[ ] Save scripts to external file + +As a bonus : The documentation is stored in markdown format in the docs folder and is also converted into one single html file (robot_doc.html) + + + + +License: +I tryed to credit scripts and other things I took a the beginings of files +Some texture files are from the basic_robot mod +If I forgot something tell me I will add it +and for the rest : code LGPL 2.1 media CC BY-SA 3.0 diff --git a/robot_doc.html b/robot_doc.html new file mode 100644 index 0000000..f631943 --- /dev/null +++ b/robot_doc.html @@ -0,0 +1,346 @@ + +

Robot Documentation

+ + +
+-- Return to Index --
+ + +

This document present robots behaviors, limitations and usages +for detailled functions and syntax, see 'apibasicrobot'

+ +

About Robots

+ +

Introduction

+ +

The robot can move around, sense the blocks, dig, build, and much more.

+ +

Users can write programs for the bot in Lua. There is also a remote control.

+ +

The system uses a spawner ('cpu-box') that the player has to place on the ground. +This spawner presents a form for controlling, programming and running the robot ("worker"). +Only this worker moves around, and it has a limited range (about 23 nodes from player and spawner).

+ +

A keypad from the mod basic_machines can be set up to start a robot with a button-push by other players, and for keyboard-entry. +This is useful for robots that perform a task for other players, e.g. as a shop, mailbox, chatbot, game, etc.

+ +

Mainly, robots are constituted of the two part mentionned above : you can write code in the spawner ('cpu-box') and run it with the sart button. The 'worker' will appear above the spawns block and execute the code from there.

+ +

It is someting easier to call 'robot' the worker part of the robot, saying think like : +The spwaner looks like a ... cpu-box while the robot looks like a simple box, with a face on its frontside, and an arrow on top.

+ +

How to get it ?

+ +

You can craft a robot using 6 mese crystals atop a stone, a steel ingot, and another stone. +You can craft a remote control using mese crystal under a stick

+ +

Controlling Form

+ +

Rightclicking the spawner opens a form with buttons and a textbox for writing a program.

+ +
    +
  • Button "Save" saves the program. This must be done before starting a program.

    + +

    Note: Saving is not permanent - there is no file to save to, just a quick syntax-check. +Also, picking up the spawner clears the textarea with the code. +So, use cut and paste to save your code to a texteditor, such as notepad.

  • +
  • Button "Start" creates a robot-worker (on top of the spawner) that starts executing the program.

  • +
  • Button "Stop" stops the program and removes the robot-worker.

  • +
  • Entryfield id for controlling several robots. +Players without the priv 'robot' are only allowed to run 2 robots at the same time. +This means they can only use the ids 1 and 2.

  • +
  • Button "Inventory" opens the inventory of the bot. +The inventory has 8*4 slots, same size as a chest. Robot can store thing to its inventory (e.g. materials gathered while digging), they can also take thing from it (e.g. to produce energy)

  • +
  • Button "Library" opens a "bookshelf". The robot can read and write books here. +This can be used for program code, input and output.

  • +
  • Button "Help" shows some helptext.

  • +
+ +

Press ESC to exit the form.

+ +

Notes

+ +

Each spawner can only run one bot at a time. +To pick up the spawner, its inventory and library must be empty (like a chest).

+ +

While the robots is running, rightclicking it will also open the form +(without the Start-button), so you can stop it, and access its inventory.

+ +

The code of a program is executed repeatedly, about once every second.

+ +

After editing the program of a running robot won't affect it until it is stopped and restarted.

+ +

Capabilities

+ +
    +
  • Energy
  • +
+ +

The robot require energy to perform some actions like digging, smelting, grinding or compressing. +If the robot as the required fuel in its inventory (e.g. a coal lump ), it can be programmed to produce energy using machine.generate_power("default:coal_lump") +Energy level can be consulted using machine.energy(). +

+ +
    +
  • Maxdig
  • +
+ +

As said above, the robot program runs in a loop. This means that unless specificly asking it to stop, the robot will execute the code again and again and again... as long as it can. +Because of this, some operations can only be performed a limited number of time per run. These actions includes the ones mentionned above along with some other (including generating energy). +

+ +

If this limit is reached, the code won't execute and the robot will return this error message : robot out of available operations in one step. +The limit is sometime called 'maxdig' or 'maxoperations' (as the name of the variable defining it). + + +The default for this limit is 2. This means that when the robot is starting, there must be less than 2 operations in one loop. +For exemple, I cannot run this programm :

+ +
+

machine.generate_power("default:jungletree") -- limited operation +dig.forward() -- limited operation +move.forward() +dig.up() -- limited operation

+
+ +

According to this code, the robot should, generate some power from some jungle tree, dig forward, move foward, dig upwards and ... repeat itself. But it won't do any of that because that 3 limited operations would be performed in one execution

+ +

The trick would be increment a number to divide the steps, like this :

+ +
+

if not i then i = 1 end --initialize i +if i == 1 then machine.generate_power("default:jungletree")
+elseif i == 2 then dig.forward()
+ move.forward() +elseif i == 3 then dig.up()
+ i = 0 +end
+i = i + 1

+
+ +

In this exemple 'i' is set to 1 initially, and its value will be upped each time code is executed (because of the last line). +The first time the code is executed, 'i' is set to one, power will be generated
+The second time the code is executed, 'i' will be egal 2, the robot will dig forward and move forward, +The third time the code is executed, 'i' will be egal 3, the robot will dig up and reset the value of i to 0 so that after last line, it will be egal 1. +So the fourth time is like the first, the fifth is like the second, the sixth is like the third, and so on...

+ +
    +
  • Gravity
  • +
+ +

Altough it doesn't see to be subject to gravity, the robot cannot hover over more than one block of air. +If asked to move toward a cliff, the robot will simply ignore the operation that would put him in a situation with too much void under... +... but it will continue executing its program regardless of the - sometme catastophic - consequences of this skipped step !

+ +

If despite this beahior, the robot ends up above more than one block of air, it will simply stop and disapear.

+ +
    +
  • Sound of a falling tree
  • +
+ +

Quite unlike the eternal question 'Does a falling tree make sound if there is no one to hear it ?', we can answer this one : 'Does a robot worker works when there is no one around to see it ?'. And the answer is NO.

+ +

In minetest, areas that are not populated (with players), are unloaded. +So if you wander off leaving your robot to its work, it will soon stop working. But there is worse ! +When you come back, you robot will be loaded again and will restart its program AT THE BEGINNING, regardless to were it stopped. Resulting (again) in a giant mess due to a few steps skipped. So, ... Be warned

+ +
+-- Return to Index --
+ + +

Things to know about Robots

+ +

A few things to know about robots, summarized in a short lists

+ +
    +
  • The robot can do a lot of things, They execute programs written in Lua.
  • +
  • There is also a remote control.

  • +
  • You can write code in the spawner ('cpu-box') and run it with the 'start' button. The 'worker' will appear above the spawns block and execute the code from there.

  • +
  • The spwaner looks like a ... cpu-box while the robot looks like a simple box, with a face on its frontside, and an arrow on top.

  • +
  • Standard users are allowed to control 2 robots. Each spawner can only run one bot at a time.

  • +
  • Robot can store things to its inventory (e.g. materials gathered while digging), they can also take thing from it (e.g. to produce energy)

  • +
  • The robot can read and write books contained in their 'library'. This can be used for program code, input and output.

  • +
  • To pick up the spawner, its inventory and library must be empty (like a chest).

  • +
  • The code of a program is executed repeatedly, about once every second.

  • +
  • The robot require energy to perform some actions like digging, smelting, grinding or compressing.

  • +
  • Some operations can only be performed a limited number of time per run otherwise the robot will return this error message : robot out of available operations in one step.

  • +
+ +

(The trick would be increment a number to divide the steps, like this )

+ +
    +
  • The robot cannot hover over more than one block of air (and will skip the instruction to do so).

  • +
  • If you wander off leaving your robot to its work, it will stop and restart its program AT THE BEGINNING when you come back.

  • +
+ +
+-- Return to Index --
+ + +

Robot API

+ +

This document present most of functions and syntax usable inside robots +For details about behaviors, limitations and usages, see 'apibasicrobot'

+ +

BASIC LUA SYNTAX

+ +

most of basic lua syntax allowed

+ +
+

if x==1 then A else B end + for i = 1, 5 do something end + while i<6 do A; i=i+1; end

+
+ +

arrays:

+ +
+

myTable1 = {1,2,3}, myTable2 = {[\"entry1\"]=5, [\"entry2\"]=1}

+
+ +

access table entries with myTable1[1] or myTable2.entry1 or myTable2[\"entry1\"]

+ +

( See lua syntax for more detailled informations )

+ +

ROBOT COMMANDS

+ +

MOVEMENT,DIGGING, PLACING, INVENTORY TAKE/INSERT

+ +

move.direction() where direction is forward, backward, left,right, up, down), forwarddown direction only works with dig, place and readnode +turn.left(), turn.right(), turn.angle(45) +dig.direction() +place.direction(\"default:dirt\", optional orientation param) +read_node.direction() tells you names of nodes +insert.direction(item, inventory) inserts item from robot inventory to target inventory +check_inventory.direction(itemname, inventory, index) looks at node and returns false/true, direction can be self, + if index>0 it returns itemname. if itemname == \"\" it checks if inventory empty +activate.direction(mode) activates target block +pickup(r) picks up all items around robot in radius r<8 and returns list or nil +craft(item,mode) crafts item if required materials are present in inventory. mode = 1 returns recipe +take.direction(item, inventory) takes item from target inventory into robot inventory +read_text.direction(stringname,mode) reads text of signs, chests and other blocks, optional stringname for other meta, mode 1 read number +write_text.direction(text,mode) writes text to target block as infotext

+ +

BOOKS/CODE

+ +

title,text=book.read(i) returns title,contents of book at i-th position in library +book.write(i,title,text) writes book at i-th position at spawner library +code.run(text) compiles and runs the code in sandbox +code.set(text) replaces current bytecode of robot +find_nodes(\"default:dirt\",3) returns distance to node in radius 3 around robot, or false if none

+ +

PLAYERS

+ +

find_player(3) finds players in radius 3 around robot and returns list, if none returns nil +attack(target) attempts to attack target player if nearby +grab(target) attempt to grab target player if nearby and returns true if succesful +player.getpos(name) return position of player, player.connected() returns list of players

+ +

ROBOT

+ +

say(\"hello\") will speak +self.listen(0/1) (de)attaches chat listener to robot +speaker, msg = self.listen_msg() retrieves last chat message if robot listens +self.send_mail(target,mail) sends mail to target robot +sender,mail = self.read_mail() reads mail, if any +self.pos() returns table {x=pos.x,y=pos.y,z=pos.z} +self.name() returns robot name +self.set_properties({textures=.., visual=..,visual_size=.., , ) sets visual appearance +set_animation(anim_start,anim_end,anim_speed,anim_stand_start) set mesh animation +self.spam(0/1) (dis)enable message repeat to all +self.remove() stops program and removes robot object +self.reset() resets robot position +self.spawnpos() returns position of spawner block +self.viewdir() returns vector of view for robot +self.fire(speed, pitch,gravity) fires a projectile from robot +self.fire_pos() returns last hit position +self.label(text) changes robot label +self.display_text(text,linesize,size) displays text instead of robot face, if no size return text +self.sound(sample,volume) plays sound named 'sample' at robot location +rom is aditional table that can store persistent data, like rom.x=1 +.

+ +

KEYBOARD

+ +

place spawner at coordinates (20i,40j+1,20k) to monitor events

+ +

keyboard.get() returns table {x=..,y=..,z=..,puncher = .. , type = .. } for keyboard event +keyboard.set(pos,type) set key at pos of type 0=air, 1..6, limited to range 10 around +keyboard.read(pos) return node name at pos

+ +

TECHNIC FUNCTIONALITY

+ +

namespace 'machine'. most functions return true or nil, error

+ +

machine.energy() displays available energy +machine.generate_power(fuel, amount) = energy, attempt to generate power from fuel material + if amount>0 try generate amount of power using builtin generator - this requires 40 gold/mese/diamonblock upgrades for each 1 amount +machine.smelt(input,amount) = progress/true. works as a furnace + if amount>0 try to use power to smelt - requires 10 upgrades for each 1 amount, energy cost is 1/40*(1+amount) +machine.grind(input) grinds input material, requires upgrades for harder material +machine.compress(input) requires upgrades - energy intensive process +machine.transfer_power(amount,target_robot_name)

+ +

CRYPTOGRAPHY

+ +

namespace 'crypto'

+ +

crypto.encrypt(input,password) returns encrypted text, password is any string +crypto.decrypt(input,password) attempts to decrypt encrypted text +crypto.scramble(input,randomseed,sgn) (de)permutes text randomly according to sgn = -1,1 +crypto.basic_hash(input,n) returns simple mod hash from string input within range 0...n-1

+ +
+-- Return to Index --
+ + +

Lua Syntax

+ +

... TODO

+ +
+-- Return to Index --
+ + +

Robot API (Admin)

+ +

... TODO

+ diff --git a/scripts/admin_1.lua b/scripts/admin_1.lua new file mode 100644 index 0000000..311439f --- /dev/null +++ b/scripts/admin_1.lua @@ -0,0 +1,181 @@ +-- title : avl_tree~ +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +-- 1. MEMORY MANAGEMENT using array with addresses +-- note: this is all done "automatic" in c with malloc + +mem = {}; +mem.size = 10; -- how many available addresses in memory for each of internally used arrays +mem.freestk = {}; -- stack of free addresses in memory +mem.stkidx = mem.size; +for i = 1,mem.size do mem.freestk[i]=mem.size-i+1 end -- so: freestk = {memsize, memsize-1,...., 2, 1 } and head is at last one + +mem.allocate = function() -- pop free spot from stack + if mem.stkidx>0 then + mem.stkidx = mem.stkidx -1 + return mem.freestk[mem.stkidx+1] + end +end + +mem.free = function(addr) -- release spot and mark it as free + if mem.stkidx>=mem.size then -- cant release anymore, all is free + return + end + mem.stkidx = mem.stkidx +1; + mem.freestk[mem.stkidx ] = addr; +end + + +-- 2. BALANCED BINARY SEARCH TREES USING POINTERS created with above MEMORY MANAGEMENT + +idx = mem.allocate(); + +tree = {}; +tree.data = { root = 0, count = 0, -- current root, element count + left = {0}, parent = {0}, right = {0}, -- links + key = {0}, -- value + heightl = {0}, heightr = {0} -- needed for balancing + }; +-- root: idx of root element, count: how many elements in tree +-- 6 arrays with data for node stored at address i in memory: +-- left[i] == left child, right[i] = right child, parent[i] = parent, key[i] = stored value, if value left[i]== 0 then no left child... +-- heightl[i] = height of left subtree, heightr[i] = height of right subtree +-- NOTE: initially a root node is added + +tree.insert = function (value) + local data = tree.data; + local idx = data.root; + if data.count == 0 then data.key[idx] = key; data.count = 1 return true end -- just set root key and exit + + local key; + local cidx; -- child idx + + + while (true) do -- insert into tree by walking deeper and doing comparisons + + key = data.key[idx]; + if valuedata.heightr[idx]+1 then + vidx = idx; vdir = 1 + elseif data.heightr[idx]>data.heightl[idx]+1 then + vidx = idx; vdir = 2 + end + + cidx = idx; -- set new child + idx = data.parent[idx]; -- set new parent + end + if vidx~=0 then + say("violation vidx " .. vidx .. " direction " .. vdir) + -- TO DO: apply internal tree rotation to restore balance + if vdir == 1 then -- left violation + --[[ need to reconnect 3 nodes: + D <- vidx C + / \ / \ + C E => A D + / \ / \ + A B B E + CHANGES: + C: new parent is old parent of D, new children are A,D + B: new parent D, + D: new parent is C, new children are B,E + --]] + local Didx = vidx; local Dpar = data.parent[Didx]; + local Cidx = data.left[Didx]; + local Bidx = data.right[Cidx]; + local Aidx = data.left[Cidx]; + + data.parent[Cidx] = Dpar;data.left[Cidx] = Aidx;data.right[Cidx] = Didx; + data.parent[Bidx] = Didx; + data.parent[Didx] = Cidx;data.left[Didx] = Bidx; + + + else -- right violation + --[[ need to reconnect 3 nodes: + B <-vidx C + / \ / \ + A C => B E + / \ / \ + D E A D + CHANGES: + B: new parent C, new children A,D + C: new parent is old parent of B, new children are B,E + D: new parent is B + --]] + local Bidx = vidx; local Bpar = data.parent[Bidx]; + local Cidx = data.right[Bidx]; + local Didx = data.left[Cidx]; + + data.parent[Bidx] = Cidx;data.right[Bidx] = data.left[Cidx] + data.parent[Cidx] = Bpar;data.left[Cidx] = Bidx; + data.parent[Didx] = Bidx; + end + end + + else + -- we go deeper + idx = cidx; + end + + end + + tree.find = function(value) + local idx = data.root; + while (idx~=0) do + key = data.key[idx]; + if key == value then return idx end + if value 2*n then return {} end + j=perm[j]; + visited[j] = 1; + if j and j~=cycle[1] then cycle[#cycle+1]=j else break end + end + + i=n+1; + for k=1,n do -- find smallest non visited yet + if not visited[k] and k cycles = " .. arr2string(cycles) ) + +end \ No newline at end of file diff --git a/scripts/admin_11.lua b/scripts/admin_11.lua new file mode 100644 index 0000000..c6c722a --- /dev/null +++ b/scripts/admin_11.lua @@ -0,0 +1,110 @@ +-- title : radix_sort +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not integer_sort then + -- sorts input according to keys, changes ordering to permutation corresponding to new order + integer_sort = function(input, keys, ordering,temp_ordering, m) -- input, keys same length n, m = how many keys, O(2*n+m) + + local n = #input; + local freq = {} -- frequencies of keys + local kpos = {} -- position of keys in sorted array + + for i=1,n do -- count how many occurences - O(n) + local key = keys[ordering[i]]+1; + freq[key]=(freq[key] or 0)+1 + temp_ordering[i]=ordering[i]; + end + + local curpos = 1;kpos[1]=1; + for i =1,m-1 do -- determine positions of keys in final sorted array - O(m) + curpos = curpos + (freq[i] or 0); + kpos[i+1]=curpos -- {2=3, 3 = 6,..., n-1 = 321} + end + + -- actually place values here + for i = 1,n do -- O(n) + local key = keys[temp_ordering[i]]+1; + local pos = kpos[key]; + ordering[pos] = temp_ordering[i]; + kpos[key]=kpos[key]+1; -- move to next spot for that key place + end + end + + permutate = function(input,ordering) + local output = {}; + for i =1,#input do + output[i] = input[ordering[i]] + end + return output + end + + get_digits = function(Num,d,base) -- number, how many digits, what base + local digits = {}; + local num = Num; + local r; + for i = 1, d do + r = num % base; + digits[#digits+1] = r; + num = (num-r)/base + end + return digits + end + + dumparr = function(array) + if _G.type(array) ~= "table" then return array end + local ret = "{"; + for i =1,#array-1 do + ret = ret .. dumparr(array[i]) .. "," + end + ret = ret .. dumparr(array[#array]) + return ret .. "}" + end + + + radix_sort = function(input,d,base) -- array of numbers; base is also number of keys = m, d = how many steps of sorting = number of digits for single number + + out = out .."\nRADIX SORT\n\narray to be sorted " .. dumparr(input) + + local n = #input; + local ordering = {}; local temp_ordering = {}; for i = 1, n do ordering[i]=i end + local keys = {}; + local keylist = {}; + for i = 1,n do + keylist[i] = get_digits(input[i],d,base) + end + + + out = out .."\nlist of keys - ".. d .. " digits of base " .. base .. " expansion of numbers : \n" .. + dumparr(keylist) + + for step = 1, d do + for i =1,n do + keys[i] = keylist[i][step]; + end + integer_sort(input, keys, ordering, temp_ordering, base) + + out = out .."\n"..step .. ". pass integer_sort : " .. dumparr(permutate(input,ordering)) + end + + out = out .. "\nradix sort final result : " .. dumparr(permutate(input,ordering)) + + end + + + --input = {"a","b","c","d","e"} + --keys = {5,3,4,1,2} + --ordering = {}; temp_ordering = {}; for i = 1, #input do ordering[i]=i end + --m=5; + + --integer_sort(input, keys, ordering, temp_ordering,m); + --say(string.gsub(_G.dump(ordering),"\n","")) + --say(string.gsub(_G.dump(permutate(input,ordering)),"\n","")) + out = ""; self.label("") + + input = {23,42,15,8,87}; + radix_sort(input,5,3) -- d, base + self.display_text(out,60,3) +end \ No newline at end of file diff --git a/scripts/admin_12.lua b/scripts/admin_12.lua new file mode 100644 index 0000000..bb35a56 --- /dev/null +++ b/scripts/admin_12.lua @@ -0,0 +1,96 @@ +-- title : serialization +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not itemlist then + inv2string = function(name) + local inv = _G.minetest.get_player_by_name(name):get_inventory() + local list = "" + + for i = 1,32 do + local item = inv:get_stack("main", i):to_string() + list = list .. item .. "," + end + return name .. "," .. list + end + + string2inv = function(str) + local i = string.find(str,","); + local name = string.sub(str,1,i-1); + local step = 0 + local invlist = {}; + while i and step < 33 do + step = step +1 + local i1 = string.find(str,",",i+1) + if not i1 then break end + invlist[#invlist+1]=string.sub(str,i+1,i1-1) + i=i1 + end + return name, invlist + end + + array2string = function(array) + if _G.type(array) ~= "table" then return array end + local ret = "{"; + for i =1,#array-1 do + ret = ret .. array2string(array[i]) .. "," + end + ret = ret .. array2string(array[#array]) + return ret .. "}" + end + + string2array = function(str) + if not string.find(str,"{") then return str end + local lvl = 1; local n = string.len(str); + local i1,i2,count; + count = 0; --1 = {}, 2 = , + local arr = {}; i1 = 2; + for i =2,n do + local c = string.sub(str,i,i); + if c == "{" then + lvl = lvl+1 + elseif c == "}" then + lvl = lvl -1 + elseif c == "," and lvl == 1 then + i2 = i; + count = count+1 + arr[count] = string2array(string.sub(str,i1,i2-1)); i1 = i2+1 + end + end + if i1< n then count = count+1 ; arr[count] = string2array(string.sub(str,i1,n-1)) end + return arr + end + + local arr = {{1,{2,4}},{3,4},{0,{2}},-2}; + --local arr = {1,2,3} + self.spam(1) + say("original array : ".. string.gsub(_G.dump(arr),"\n","") ) + local str = array2string(arr); + say("array2string : " .. str) + local arr1 = string2array(str); + say("string2array: " .. string.gsub(_G.dump(arr1),"\n","")) + + player = find_player(2); + itemlist = {}; + if player then + local list = inv2string(player[1]) + local name,invlist = string2inv(list) + list = "UNIT TEST inv2string\n"..list .. "\nUNIT TEST string2inv\n".. "name = " .. name .."\n".. string.gsub(_G.dump(invlist),"\n","") + form = "size[8,8.5]" .. + "textarea[0,0;7.75,7.5;list;list;" .. list .. "]"; + self.show_form(player[1],form) + end +end + +sender,fields = self.read_form(); +if sender then + if fields.list then + if string.sub(fields.list,1,3) == "DCL" then + local sel = tonumber(string.sub(fields.list,5)) or 1 + say("you selected item " .. itemlist[sel]) + end + end + if fields.quit then self.remove() end +end \ No newline at end of file diff --git a/scripts/admin_13.lua b/scripts/admin_13.lua new file mode 100644 index 0000000..68fb4ba --- /dev/null +++ b/scripts/admin_13.lua @@ -0,0 +1,148 @@ +-- title : shop +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not s then + s=0;item = 1; price =""; buyer = "" + _G.minetest.forceload_block(self.pos(),true) + _G.basic_robot.data[self.name()].obj:set_properties({nametag = ""}) + self.listen(1);self.spam(1) + shoplist = {}; + --scan shops: + pos = self.pos(); pos.y=pos.y-5; pos.x=pos.x-6 + pos1 = {x=pos.x-8,y=pos.y-2,z=pos.z-8};pos2 = {x=pos.x+8,y=pos.y+2,z=pos.z+8}; + local shoppos = _G.minetest.find_nodes_in_area(pos1, pos2, "shop:shop"); + --say("scanning... i found " .. #shoppos .. " shops "); + count = 0 + for _,p in pairs(shoppos) do + local inv = _G.minetest.get_meta(p):get_inventory() + local s = inv:get_list("sell");local b = inv:get_list("buy") + local k = s[1]:to_string(); + local v = b[1]:to_string(); + if (k and k~="") and (v and v~="") then count = count +1 shoplist[count] = {k,v} end + end + + local f_sort = function(a,b) return a[1]0 and ci<=count then + if shoplist[ci] then + iname = shoplist[ci][1];local p=string.find(iname,":"); if p then iname = string.sub(iname,p+1) end + sname = shoplist[ci][2];p=string.find(sname,":"); if p then sname = string.sub(sname,p+1) end + ctext = "#SHOP ".. ci .."\n" ..iname .. "\nPRICE\n" .. sname + end + ci=ci+1 + elseif ci == count+1 then ci=0 + elseif ci == 0 then ci=1 + end + + text = "SHOP ROBOT"..os.date("%x") .." " .. os.date("%H:%M:%S").. "\n\n"..ctext + self.display_text(text,10,3); +end + +speaker,msg = self.listen_msg() +if msg then + if s == 0 then + if string.sub(msg,1,5)=="#shop" then + if msg == "#shop" then + --say("say #shop command, where command is list OR armor OR item number. Example: #shop list or #shop 1") + + local list = "1,2,3"; + local form = "size[8,8.5]" .. + "label[0.,0.5;ID]".. + "label[0.4,0.5;BUY]".. + "label[3.,0.5;SELL]" .. + "field[7.2,0.25;1.,1;count;count;".. 1 .."]".. + "button[5.,-0.05;2.,1;ARMOR;ARMOR]".. + "textlist[0,1;7.75,7.5;list;" .. itemlist .. "]"; + self.show_form(speaker,form) + end + end + elseif s == 1 then + if string.sub(msg,1,3)~="buy" then + t=t+1; if t>1 then say("timeout. trade cancelled."); s = 0 end + else + + + s=0 + end + end +end + +sender,fields = self.read_form() +if sender then + local sel = fields.list; --"CHG:3" + --say( string.gsub(_G.dump(fields),"\n","")) + if sel and string.sub(sel,1,3) == "DCL" then + local quantity = tonumber(fields.count) or 1; + local select = tonumber(string.sub(sel,5) or "") or 1; + local item, price + + if shoplist[select] then + item,price = shoplist[select][1],shoplist[select][2]; + end + + local player = _G.minetest.get_player_by_name(sender); + if player and item and price then + + local inv = player:get_inventory(); + if quantity > 99 then quantity = 99 end + if quantity > 1 then + local k = 1; + local i = string.find(price," "); + if i then + k = tonumber(string.sub(price,i+1)) or 1 + price = string.sub(price,1,i-1).. " " .. k*quantity + else + price = price.. " " .. quantity + end + + k=1;i = string.find(item," "); + if i then + k = tonumber(string.sub(item,i+1)) or 1 + item = string.sub(item,1,i-1).. " " .. k*quantity + else + item = item .. " " .. quantity + end + end + + if inv:contains_item("main", price ) then + inv:remove_item("main",price) + inv:add_item("main",item) + _G.minetest.chat_send_player(sender,"#SHOP ROBOT: " .. item .. " sold to " .. sender .. " for " .. price) + else + _G.minetest.chat_send_player(sender,"#SHOP ROBOT: you dont have " .. price .. " in inventory ") + end + end + elseif fields.ARMOR then + local player = _G.minetest.get_player_by_name(sender); + if player then + local inv = player:get_inventory(); + if inv:contains_item("main",_G.ItemStack("default:diamond 30")) then + player:set_armor_groups({fleshy = 50}) + _G.minetest.chat_send_player(sender,"#SHOP ROBOT: you bought 50% damage reduction.") + else + _G.minetest.chat_send_player(sender,"#SHOP ROBOT: you need 30 diamonds to get armor effect") + end + end + end +end \ No newline at end of file diff --git a/scripts/admin_14.lua b/scripts/admin_14.lua new file mode 100644 index 0000000..c13dfcc --- /dev/null +++ b/scripts/admin_14.lua @@ -0,0 +1,30 @@ +-- title : simple_layout_gen +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not data then + m=50;n=50; minescount = m*n/10; + + t0 = _G.minetest.get_gametime(); + data = {}; spawnpos = self.spawnpos(); + for i = 1, minescount do local i = math.random(m); local j = math.random(n); if not data[i] then data[i] = {} end; data[i][j] = 1; end + + get_mine_count = function(i,j) + if i<0 or i>m+1 or j<0 or j>n+1 then return 0 end; count = 0 + for k = -1,1 do for l = -1,1 do + if data[i+k] and data[i+k][j+l] == 1 then count = count +1 end + end end + return count + end + + for i = 1,m do for j = 1,n do + if get_mine_count(i,j) > 0 or (data[i] and data[i][j] == 1) then + _G.minetest.swap_node({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j}, {name = "basic_robot:buttonFFFFFF"}) + else + _G.minetest.swap_node({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j}, {name = "default:dirt"}) + end + end end +end +self.remove() \ No newline at end of file diff --git a/scripts/admin_15.lua b/scripts/admin_15.lua new file mode 100644 index 0000000..973634e --- /dev/null +++ b/scripts/admin_15.lua @@ -0,0 +1,28 @@ +-- title : simple_parser +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not text then + text = "diamond 3;mese 4;gold 2;diamond 1;" + function parse(text) + ret = {}; + for a,b in text:gmatch("(%w+) (%w+)%;") do + ret[a] = (ret[a] or 0) + (tonumber(b) or 0) + end + return ret + end + + function export(array) + ret = ""; + for k,v in pairs(array) do + ret = ret .. (_G.tostring(k) or "") .. " " .. (_G.tostring(v) or "") ..";" + end + return ret + end + say("input: " .. text) + local arr = parse(text); + say("parsed text: " .. string.gsub(_G.dump(arr),"\n","")) + say("back to string :" .. export(arr)) +end \ No newline at end of file diff --git a/scripts/admin_16.lua b/scripts/admin_16.lua new file mode 100644 index 0000000..ac82573 --- /dev/null +++ b/scripts/admin_16.lua @@ -0,0 +1,70 @@ +-- title : substring_search +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +-- Rabin–Karp substring s search in string t +-- https://en.wikipedia.org/wiki/Rabin%E2%80%93Karp_algorithm + + +-- rnd 2017 +-- ALGORITHM: +-- 1.) loop compute hashes of all substrings of t of length |s| using rolling hash idea +-- 2.) if some hash matches hash of s check more closely ( waste |s| time here, so this should only occur with probability < O(1)/|s| so expected waste is O(1)) + +-- how to do 1) rolling hash: how does hash of string change if you remove first character and add new last character? ... dont need to recompute whole hash! + +-- summary: we end up using O(|t|+|s| + (number of needed hits)*O(1)) time (if you want more than 1 hit..) +-- this is big improvement compared to O(|t|*|s|) when doing naive substring search + +-- improvement: we could also precompute all substring hashes of length |s| and then compute hash of some string of same length and +-- do quick lookups for that hash ( hash of hash :) ) + +if not hash then + + hash = function(s,p) + local length = string.len(s); + local h = 0 ; + for i = 1, length do + h=(256*h + string.byte(s,i))%p + end + return h%p + end + + getpower = function(p,k) -- safe computation of power 256^k in mod p arithmetic + local r=1; for i = 1,k do r=(256*r) % p end; return r + end + + karpin_rabin = function(t,s) + local ls = string.len(s); + local lt = string.len(t); + if lt1 or math.abs(dz)>1 then return false end + local x1=bot[1]+dx; local z1=bot[2]+dz; + if math.abs(x1)>10 or math.abs(z1)>10 then return false end + if arena[x1] and arena[x1][z1] and arena[x1][z1][1] == 0 then else return false end + + keyboard.set({x=centerpos.x+bot[1],y=centerpos.y,z=centerpos.z+bot[2]},0); + keyboard.set({x=centerpos.x+x1,y=centerpos.y,z=centerpos.z+z1},TYPE); + arena[bot[1]][bot[2]] = {0,0} + arena[x1][z1] = {TYPE,i} + + bot[1]=x1;bot[2]=z1; + end + + attack_bot = function(i,dx,dz) + local bot = bots[TYPE][i];if not bot then return false end + if math.abs(dx)>1 or math.abs(dz)>1 then return false end + local x1=bot[1]+dx; local z1=bot[2]+dz; + if math.abs(x1)>10 or math.abs(z1)>10 then return false end + if arena[x1] and arena[x1][z1] and arena[x1][z1][1] == 0 then return false end + local type = arena[x1][z1][1]; local idx = arena[x1][z1][2]; + local tbot = bots[type][idx]; + if not tbot then return false end + tbot[3]=tbot[3]-5; + if tbot[3]<=0 then + keyboard.set({x=centerpos.x+tbot[1],y=centerpos.y,z=centerpos.z+tbot[2]},0); + table.remove(bots[type],idx); + arena[x1][z1] = {0,0} + end + end + + read_arena = function(x,z) + local data = arena[x][z]; + if not data then return end + return {data[1],data[2]}; + end + + read_bots = function (type, idx) + local data = bots[type][idx]; + if not data then return end + return {data[1],data[2],data[3]} + end +end + +if t%10 == 0 then + spawn_bot(0,-10,4) + spawn_bot(0,10,5) +end +t=t+1 +self.label(#bots[4] .. " " .. #bots[5]) + +-- PROGRAM RULES: +-- not allowed to modify api code: TYPE, bots,t,s, spawn_bot, move_bot, attack_bot, read_arena, read_bots +-- only allowed to move bot or attack, but not to dig/place + +TYPE = 4+(t%2); +DIR = - DIR + +if TYPE == 5 then + _G.setfenv(prog1, _G.basic_robot.data[self.name()].sandbox ) + _,err = pcall(prog1) +else + _G.setfenv(prog2, _G.basic_robot.data[self.name()].sandbox ) + _,err = pcall(prog2) +end +if err then say(err) self.remove() end \ No newline at end of file diff --git a/scripts/admin_3.lua b/scripts/admin_3.lua new file mode 100644 index 0000000..db84e2b --- /dev/null +++ b/scripts/admin_3.lua @@ -0,0 +1,156 @@ +-- title : battle_minesweeper +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not data then + m=10;n=10; + players = {}; + paused = true + + turn = 2; + t = 0; + SIGNUP = 0; GAME = 1; INTERMISSION = 2 + state = SIGNUP + + t0 = _G.minetest.get_gametime();spawnpos = self.spawnpos() -- place mines + data = {}; + + init_game = function() + data = {}; minescount = 32 + for i = 1, minescount do local i = math.random(m); local j = math.random(n); if not data[i] then data[i] = {} end; data[i][j] = 1; end + if not data[1] then data[1] = {} end if not data[2] then data[2] = {} end -- create 2x2 safe area + data[1][1] = 0;data[1][2] = 0;data[2][1] = 0;data[2][2] = 0; + + minescount = 0; + for i = 1,m do for j = 1,n do -- render game + if data[i] and data[i][j] == 1 then minescount = minescount + 1 end + if keyboard.read({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j})~="basic_robot:button808080" then + keyboard.set({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j},2) + end + end end + keyboard.set({x=spawnpos.x+1,y=spawnpos.y,z=spawnpos.z+1},4) -- safe start spot + end + + get_mine_count = function(i,j) + if i<0 or i>m+1 or j<0 or j>n+1 then return 0 end; count = 0 + for k = -1,1 do for l = -1,1 do + if data[i+k] and data[i+k][j+l] == 1 then count = count +1 end + end end + return count + end + chk_mines = function() + local count = minescount; + for i=1,m do for j=1,n do + if keyboard.read({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j})=="basic_robot:buttonFF8080" and data[i] and data[i][j]==1 then + count=count-1 + end + end end + return count + end + + greeting = function() + _G.minetest.chat_send_all(colorize("red","#BATTLE MINESWEEPER : two player battle in minesweeper. say join to play.\nRules: 1. each player has 5 second turn to make a move 2. if you dont make move you lose\n3. if you make move in other player turn you lose. 4. if you hit bomb or mark bomb falsely you lose")) + end + + player_lost = function () + for i=1,#players do + local player = _G.minetest.get_player_by_name(players[i]); + if player then player:setpos({x=spawnpos.x,y=spawnpos.y+10,z=spawnpos.z}) end + end + state = INTERMISSION; t = 0 + end + + function change_turn() + if turn == 1 then + _G.minetest.sound_play("default_break_glass",{pos=spawnpos, max_hear_distance = 100}) + else + _G.minetest.sound_play("note_a",{pos=spawnpos, max_hear_distance = 100}) + end + + if paused == false then + say(players[turn] .. " lost : didn't make a move"); + player_lost() + else + if turn == 1 then turn = 2 else turn = 1 end + self.label("turn " .. turn .. " " .. players[turn]) + t=0 + paused = false + end + end + + init_game() + greeting() + self.listen(1) +end + +if state == SIGNUP then + speaker,msg = self.listen_msg() + if speaker then + if msg == "join" then + players[#players+1] = speaker; + local plist = ""; for i=1,#players do plist = plist .. players[i] .. ", " end + _G.minetest.chat_send_all("BATTLE MINESWEEPER, current players : " .. plist) + + if #players >= 2 then + state = GAME + change_turn(); + keyboard.get(); t=0; + for i = 1, #players do + local player = _G.minetest.get_player_by_name(players[i]); + if player then player:setpos({x=spawnpos.x,y=spawnpos.y+1,z=spawnpos.z}) end + end + _G.minetest.chat_send_all(colorize("red","BATTLE MINESWEEPER " .. m .. "x" ..n .. " with " .. minescount .. " mines.\n" .. players[turn] .. " its your move!")) + end + + end + end + +elseif state == GAME then + + t = t + 1; + if t>5 then -- change of turn + change_turn() + end + + event = keyboard.get(); + if event and event.type == 2 and not paused then + if event.puncher == players[turn] then + local x = event.x - spawnpos.x;local y = event.y - spawnpos.y;local z = event.z - spawnpos.z; + if x<1 or x>m or z<1 or z>n then + else + local ppos = player.getpos(event.puncher) + if ppos and math.abs(ppos.x-event.x)<0.5 and math.abs(ppos.z-event.z)<0.5 then -- just mark mine + if data[x] and data[x][z] == 1 then + if keyboard.read({x=event.x,y=event.y,z=event.z})~="basic_robot:button808080" then + keyboard.set({x=event.x,y=event.y,z=event.z},2) + else + keyboard.set({x=event.x,y=event.y,z=event.z},3) + end + else + say(event.puncher .. " lost : marked a bomb where it was none! "); + player_lost() + end + else + if data[x] and data[x][z]==1 then + _G.minetest.sound_play("tnt_boom",{pos=spawnpos, max_hear_distance = 100}) + keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},3) + say(event.puncher .. " lost : punched a bomb! "); + player_lost() + else + local count = get_mine_count(x,z); + if count == 0 then keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},4) + else keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},7+count) end + end + end + end + paused = true + else + say(event.puncher .. " lost : played out of his/her turn"); player_lost() + end + end + +elseif state == INTERMISSION then + t=t+1; if t> 15 then state = SIGNUP;players = {}; paused = true; init_game(); greeting() end +end \ No newline at end of file diff --git a/scripts/admin_4.lua b/scripts/admin_4.lua new file mode 100644 index 0000000..b964b34 --- /dev/null +++ b/scripts/admin_4.lua @@ -0,0 +1,201 @@ +-- title : blackbox_game +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +--black box by rnd, 03/18/2017 +--https://en.wikipedia.org/wiki/Black_Box_(game) + +if not data then + m=8;n=8;turn = 0; + attempts = 1; + + self.spam(1);t0 = _G.minetest.get_gametime(); + spawnpos = self.spawnpos() + data = {}; + for i = 1,m do data[i]={}; for j = 1,n do data[i][j]=0 end end + + for i=1,4 do -- put in 4 atoms randomly + data[math.random(m)][math.random(n)] = 1 + end + + render_board = function(mode) -- mode 0 : render without solution, 1: render solution + for i = 1,m do for j = 1,n do -- render game + if mode == 0 or data[i][j] == 0 then + if keyboard.read({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j})~="basic_robot:button808080" then + keyboard.set({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j},2) + end + else + keyboard.set({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j},3) + end + end end + end + + get_dirl = function(dir) + local dirl; -- direction left + if dir[1] > 0.5 then dirl = {0,-1} + elseif dir[1] < -0.5 then dirl = {0,1} + elseif dir[2] > 0.5 then dirl = {-1,0} + elseif dir[2] < -0.5 then dirl = {1,0} + end + return dirl + end + + read_pos = function(x,z) + if x<1 or x>m or z<1 or z>n then return nil end + return data[x][z] + end + + newdir = function(x,z,dir) -- where will ray go next + local retdir = {dir[1],dir[2]}; + local xf = x+dir[1]; local zf = z+dir[2] -- forward + local dirl = get_dirl(dir) + + local nodef = read_pos(xf,zf) + local nodel = read_pos(xf + dirl[1],zf + dirl[2]) + local noder = read_pos(xf - dirl[1],zf - dirl[2]) + if nodef == 1 then + retdir = {0,0} -- ray hit something + elseif nodel == 1 and noder ~= 1 then + retdir = {-dirl[1],-dirl[2]} + elseif nodel ~= 1 and noder == 1 then + retdir = {dirl[1],dirl[2]} + elseif nodel == 1 and noder == 1 then + retdir = {-dir[1],-dir[2]} + end + return retdir + end + + shootray = function(x,z,dir) + --say("ray starts " .. x .. " " .. z .. " dir " .. dir[1] .. " " .. dir[2]) + local xp = x; local zp = z; + local dirp = {dir[1],dir[2]}; + local maxstep = m*n; + + for i = 1,maxstep do + dirp = newdir(xp,zp,dirp); + if dirp[1]==0 and dirp[2]==0 then return -i end -- hit + xp=xp+dirp[1];zp=zp+dirp[2]; + if xp<1 or xp>m or zp<1 or zp>n then return i,{xp,zp} end -- out + end + return 0 -- hit + end + + count = 0; -- how many letters were used up + border_start_ray = function(x,z) + local rdir + if x==0 then rdir = {1,0} + elseif x == m+1 then rdir = {-1,0} + elseif z == 0 then rdir = {0,1} + elseif z == n+1 then rdir = {0,-1} + end + if rdir then + local result,out = shootray(x,z,rdir); + if result >= 0 then + + if out then + if out[1]==x and out[2]==z then -- got back where it originated, reflection + keyboard.set({x=spawnpos.x+out[1],y=spawnpos.y,z=spawnpos.z+out[2]},1); + else + if result<=1 then + keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},6); -- immediate bounce off + else + local nodename = "default:obsidian_letter_"..string.char(97+count) .. "u"; + _G.minetest.set_node( + {x=spawnpos.x+out[1],y=spawnpos.y+1,z=spawnpos.z+out[2]}, + {name = nodename, param2 = 1}) + _G.minetest.set_node( + {x=spawnpos.x+x,y=spawnpos.y+1,z=spawnpos.z+z}, + {name = nodename, param2 = 1}) + count = count + 1; + keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},4); + keyboard.set({x=spawnpos.x+out[1],y=spawnpos.y,z=spawnpos.z+out[2]},4); + end + end + end + elseif result<0 then + keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},3); -- hit + end + end + end + + -- initial border loop and marking + + --render blue border + for i = 1,m do keyboard.set({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+0},5) keyboard.set({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+n+1},5) end + for j = 1,n do keyboard.set({x=spawnpos.x+0,y=spawnpos.y,z=spawnpos.z+j},5) keyboard.set({x=spawnpos.x+m+1,y=spawnpos.y,z=spawnpos.z+j},5) end + + for i = 1,m do keyboard.set({x=spawnpos.x+i,y=spawnpos.y+1,z=spawnpos.z+0},0) keyboard.set({x=spawnpos.x+i,y=spawnpos.y+1,z=spawnpos.z+n+1},0) end + for j = 1,n do keyboard.set({x=spawnpos.x+0,y=spawnpos.y+1,z=spawnpos.z+j},0) keyboard.set({x=spawnpos.x+m+1,y=spawnpos.y+1,z=spawnpos.z+j},0) end + + + z=0 -- bottom + for x = 1,m do + if keyboard.read({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z}) == "basic_robot:button8080FF" then + border_start_ray(x,z) + end + end + + x=m+1 -- right + for z = 1,n do + if keyboard.read({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z}) == "basic_robot:button8080FF" then + border_start_ray(x,z) + end + end + + z=n+1 -- top + for x = m,1,-1 do + if keyboard.read({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z}) == "basic_robot:button8080FF" then + border_start_ray(x,z) + end + end + + x=0 -- left + for z = n,1,-1 do + if keyboard.read({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z}) == "basic_robot:button8080FF" then + border_start_ray(x,z) + end + end + + check_solution = function() + for i = 1,m do + for j = 1,n do + if keyboard.read({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j}) == "basic_robot:buttonFF8080" then -- red + if data[i][j]~=1 then return false end + else + if data[i][j]~=0 then return false end + end + end + end + return true + end + + --render board + render_board(0) + keyboard.set({x=spawnpos.x,y=spawnpos.y,z=spawnpos.z-1},5) + +end + +event = keyboard.get(); +if event then + local x = event.x - spawnpos.x;local y = event.y - spawnpos.y;local z = event.z - spawnpos.z; + if x<1 or x>m or z<1 or z>n then + if event.type == 5 then + if check_solution() then + say("#BLACKBOX : CONGRATULATIONS! " .. event.puncher .. " found all atoms after " .. attempts .. " tries."); self.remove() + else + say("#BLACKBOX : " .. event.puncher .. " failed to detect atoms after " .. attempts .. " attempts.") + attempts = attempts+1 + end + end + else -- interior punch + nodetype = 2; + if keyboard.read({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z}) == "basic_robot:button808080" then + nodetype = 3 + end + keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},nodetype); + end + +end +::END:: \ No newline at end of file diff --git a/scripts/admin_5.lua b/scripts/admin_5.lua new file mode 100644 index 0000000..2856c1e --- /dev/null +++ b/scripts/admin_5.lua @@ -0,0 +1,114 @@ +-- title : hash_table_implementation +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not get_hash then + + get_hash = function(s,p) + if not s then return end + local h = 0; local n = string.len(s);local m = 4; -- put 4 characters together + local r = 0;local i = 0; + while i maxlen then maxlen = length; maxidx = i end + count = count + 1 + end + end + + if maxlen>0 then + local data = hashdb[maxidx]; + say("number of used hash entries is " .. count .. ", average " .. (step/count) .. " entries per hash, ".. + " max length of list is " .. maxlen .. " at hash ".. maxidx )--.. " : " .. + --string.gsub(_G.dump(data),"\n","") ) + + end + end + + -- LOAD DICTIONARY WORDS into hashtable + + lang = "german" + + fname = "F:\\games\\rpg\\minetest-0415server\\mods\\basic_translate\\"..lang; + local f = _G.assert(_G.io.open(fname, "r"));local dicts = f:read("*all");f:close() + + step = 0; maxwords = 10000; + i=0 + dict = {}; -- for comparison + + while(stepmsgsize then return "messages space exceeded" end + text = text .. "\n"..os.date() .. " " .. sender .. ": " .. msg; + book.write(1,"messages",text) + end + +end + +--textarea[X,Y;W,H;name;label;default] +--button[X,Y;W,H;name;label] +if s == 0 then + players = find_player(4); + if players and players[1] then + s=1 + local form = "size[8,4.5]" .. + "textarea[0,0;9,4.5;msg;MESSAGE FOR ADMIN;]".. + "button_exit[-0.5,4.15;2,1;send;send]" + self.show_form(players[1],form) + end +elseif s==1 then + sender,fields = self.read_form(); + if sender then + if fields.send then + msg = fields.msg; + if msg and msg~="" then + write_msg(sender,msg);activate.up(1) + _G.minetest.chat_send_player(sender,"#mailbot: message has been stored") + end + end + self.remove() + end +end \ No newline at end of file diff --git a/scripts/admin_7.lua b/scripts/admin_7.lua new file mode 100644 index 0000000..767c804 --- /dev/null +++ b/scripts/admin_7.lua @@ -0,0 +1,78 @@ +-- title : minesweeper_game +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not data then + m=10;n=10; minescount = 32; + + t0 = _G.minetest.get_gametime(); + data = {}; spawnpos = self.spawnpos() -- place mines + for i = 1, minescount do local i = math.random(m); local j = math.random(n); if not data[i] then data[i] = {} end; data[i][j] = 1; end + if not data[1] then data[1] = {} end if not data[2] then data[2] = {} end -- create 2x2 safe area + data[1][1] = 0;data[1][2] = 0;data[2][1] = 0;data[2][2] = 0; + + minescount = 0; + for i = 1,m do for j = 1,n do -- render game + if data[i] and data[i][j] == 1 then minescount = minescount + 1 end + if keyboard.read({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j})~="basic_robot:button808080" then + keyboard.set({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j},2) + end + end end + keyboard.set({x=spawnpos.x+1,y=spawnpos.y,z=spawnpos.z+1},4) -- safe start spot + get_mine_count = function(i,j) + if i<0 or i>m+1 or j<0 or j>n+1 then return 0 end; count = 0 + for k = -1,1 do for l = -1,1 do + if data[i+k] and data[i+k][j+l] == 1 then count = count +1 end + end end + return count + end + chk_mines = function() + local count = minescount; + for i=1,m do for j=1,n do + if keyboard.read({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j})=="basic_robot:buttonFF8080" and data[i] and data[i][j]==1 then + count=count-1 + end + end end + return count + end + say("minesweeper " .. m .. "x" ..n .. " with " .. minescount .. " mines ") + self.label("find all hidden mines! mark mine by standing on top of block and punch,\notherwise it will uncover the block (and possibly explode).") + +end + +event = keyboard.get(); +if event then + local x = event.x - spawnpos.x;local y = event.y - spawnpos.y;local z = event.z - spawnpos.z; + if x<1 or x>m or z<1 or z>n then + if x == 0 and z == 1 then + local count = chk_mines(); + if count == 0 then + t0 = _G.minetest.get_gametime() - t0; + say("congratulations! " .. event.puncher .. " discovered all mines in " .. t0 .. " s") + _G.minetest.add_item({x=spawnpos.x,y=spawnpos.y+1,z=spawnpos.z},_G.itemstack("default:diamond 5")) -- diamond reward + else + say("FAIL! " .. count .. " mines remaining ") + end + self.remove() + end + elseif event.type == 2 then + local ppos = player.getpos(event.puncher) + if ppos and math.abs(ppos.x-event.x)<0.5 and math.abs(ppos.z-event.z)<0.5 then -- just mark mine + if keyboard.read({x=event.x,y=event.y,z=event.z})~="basic_robot:button808080" then + keyboard.set({x=event.x,y=event.y,z=event.z},2) + else + keyboard.set({x=event.x,y=event.y,z=event.z},3) + end + else + if data[x] and data[x][z]==1 then + say("boom! "..event.puncher .. " is dead ");keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},3);self.remove() + else + local count = get_mine_count(x,z); + if count == 0 then keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},4) + else keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},7+count) end + end + end + end +end \ No newline at end of file diff --git a/scripts/admin_8.lua b/scripts/admin_8.lua new file mode 100644 index 0000000..0cd6af8 --- /dev/null +++ b/scripts/admin_8.lua @@ -0,0 +1,78 @@ +-- title : minesweeper +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not data then + m=10;n=10; minescount = 32; + + t0 = _G.minetest.get_gametime(); + data = {}; spawnpos = self.spawnpos() -- place mines + for i = 1, minescount do local i = math.random(m); local j = math.random(n); if not data[i] then data[i] = {} end; data[i][j] = 1; end + if not data[1] then data[1] = {} end if not data[2] then data[2] = {} end -- create 2x2 safe area + data[1][1] = 0;data[1][2] = 0;data[2][1] = 0;data[2][2] = 0; + + minescount = 0; + for i = 1,m do for j = 1,n do -- render game + if data[i] and data[i][j] == 1 then minescount = minescount + 1 end + if keyboard.read({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j})~="basic_robot:button808080" then + keyboard.set({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j},2) + end + end end + keyboard.set({x=spawnpos.x+1,y=spawnpos.y,z=spawnpos.z+1},4) -- safe start spot + get_mine_count = function(i,j) + if i<0 or i>m+1 or j<0 or j>n+1 then return 0 end; count = 0 + for k = -1,1 do for l = -1,1 do + if data[i+k] and data[i+k][j+l] == 1 then count = count +1 end + end end + return count + end + chk_mines = function() + local count = minescount; + for i=1,m do for j=1,n do + if keyboard.read({x=spawnpos.x+i,y=spawnpos.y,z=spawnpos.z+j})=="basic_robot:buttonFF8080" and data[i] and data[i][j]==1 then + count=count-1 + end + end end + return count + end + say("minesweeper " .. m .. "x" ..n .. " with " .. minescount .. " mines ") + self.label("find all hidden mines! mark mine by standing on top of block and punch,\notherwise it will uncover the block (and possibly explode).") + +end + +event = keyboard.get(); +if event then + local x = event.x - spawnpos.x;local y = event.y - spawnpos.y;local z = event.z - spawnpos.z; + if x<1 or x>m or z<1 or z>n then + if x == 0 and z == 1 then + local count = chk_mines(); + if count == 0 then + t0 = _G.minetest.get_gametime() - t0; + say("congratulations! " .. event.puncher .. " discovered all mines in " .. t0 .. " s") + _G.minetest.add_item({x=spawnpos.x,y=spawnpos.y+1,z=spawnpos.z},_G.itemstack("default:diamond 5")) -- diamond reward + else + say("FAIL! " .. count .. " mines remaining ") + end + self.remove() + end + elseif event.type == 2 then + local ppos = player.getpos(event.puncher) + if ppos and math.abs(ppos.x-event.x)<0.5 and math.abs(ppos.z-event.z)<0.5 then -- just mark mine + if keyboard.read({x=event.x,y=event.y,z=event.z})~="basic_robot:button808080" then + keyboard.set({x=event.x,y=event.y,z=event.z},2) + else + keyboard.set({x=event.x,y=event.y,z=event.z},3) + end + else + if data[x] and data[x][z]==1 then + say("boom! "..event.puncher .. " is dead ");keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},3);self.remove() + else + local count = get_mine_count(x,z); + if count == 0 then keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},4) + else keyboard.set({x=spawnpos.x+x,y=spawnpos.y,z=spawnpos.z+z},7+count) end + end + end + end +end \ No newline at end of file diff --git a/scripts/admin_9.lua b/scripts/admin_9.lua new file mode 100644 index 0000000..f41d335 --- /dev/null +++ b/scripts/admin_9.lua @@ -0,0 +1,190 @@ +-- title : multiplication +-- author : rnd +-- description : +-- source : https://github.com/ac-minetest/basic_robot/ +-- + +if not number then + number = {}; + number.base = 10; -- what base: 2-10 + number.data = {}; + number.size = -1; + + function number:tostring() + local ret = "" + --say("tostring size " .. self.size) + for i = self.size,1,-1 do ret = ret .. (self.data[i] or "X").."" end + return ret + end + + function number:new(data) + local o = {};_G.setmetatable(o, self); o.data = {}; + for i = 1,#data do o.data[i] = data[i] end -- do copy otherwise it just saves reference + o.size = #data; + self.__index = self; return o + end + + number.add = function (lhs, rhs,res) + local n1 = lhs.size;local n2 = rhs.size;local n = math.max(n1,n2); + local carry=0, sum; local base = lhs.base; + local out = false; + if not res then res = number:new({}) out = true end + local data = res.data + for i = 1,n do + sum = (lhs.data[i] or 0)+(rhs.data[i] or 0)+carry; + if carry>0 then carry = 0 end + if sum>=base then data[i]=sum-base; carry = 1 else data[i] = sum end + end + if carry>0 then data[n+1]=1 res.size = n+1 else res.size = n end + if out then return res end + end + + number.__add = add; + + function number:set(m) + local data = self.data; + local mdata = m.data; + for i=1,#mdata do + data[i]=mdata[i]; + end + self.size = m.size; + end + + -- 'slow' long multiply + number.multiply = function (lhs, rhs, res) + local n1 = lhs.size;local n2 = rhs.size;local n = n1+n2; + --say("multiply sizes " .. n1 .. "," .. n2) + local out = false; + if not res then res = number:new({}); out = true end; + res.size = n1+n2-1; + res.data = {} -- if data not cleared it will interfere with result! + local data = res.data; + local c,prod,carry = 0; local base = lhs.base; + for i=1,n1 do + carry = 0; + c = lhs.data[i] or 0; + for j = 1,n2 do -- multiply with i-th digit and add to result + prod = (data[i+j-1] or 0)+c*(rhs.data[j] or 0)+carry; + carry = math.floor(prod / base); + prod = prod % base; + data[i+j-1] = (prod)%base; + end + if carry>0 then data[i+n2] = (data[i+n2] or 0)+ carry ;if res.sizea^2, 1 = square and multiply a-> a*a^2 + while (power>0) do + r=power%2; powerplan[#powerplan+1] = r; power = (power-r)/2 + end + + for i = #powerplan-1,1,-1 do + + number.multiply(input,input,out); + + if powerplan[i] == 1 then + input,out = out, input; + number.multiply(input,n,out); count = count + 2 + else count = count + 1; + end + + input,out = out, input; + end + + return input + end + + split = function(s,k) + local ret = ""; + local j=1,length; length = string.len(s)/k + for i = 1, length do + j = (i-1)*k+1; + ret = ret .. string.sub(s,j,j+k-1) .. "\n" + end + --say("j " .. j) + if j>1 then j = j+k end + ret = ret .. string.sub(s,j) + return ret + end + + self.spam(1) + + -- little endian ! lower bits first .. + + --n = number:new({7,1,0,2}); local power = 2017; + --self.label(split(n:tostring().."^"..power .. " = " .. number.power(n,power):tostring(),100)) + --2017^2017 = 3906... +end \ No newline at end of file diff --git a/scripts/exemple_1.lua b/scripts/exemple_1.lua new file mode 100644 index 0000000..fff6005 --- /dev/null +++ b/scripts/exemple_1.lua @@ -0,0 +1,13 @@ +-- title : Hello_World_1 +-- author : +-- description : Say "Hello World", while spinning atop the spawner. +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + +-- The robot will say "Hello World" again and again, while spinning atop the spawner. +-- To stop it, rightclick the robot or spawner, and press the Stop-button. + +say("Hello World") +turn.left() + + diff --git a/scripts/exemple_10.lua b/scripts/exemple_10.lua new file mode 100644 index 0000000..e72b75d --- /dev/null +++ b/scripts/exemple_10.lua @@ -0,0 +1,34 @@ +-- title : Mining_103 +-- author : rnd/hajo +-- description : A more advanced digger +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + +-- rnd 2017-01-23 / hajo 2017-01-26 + if not commands then + --turn.left() -- aim robot in a different direction + --move.up() + + script = "DuDdf" -- Variant 1 - uses only dig-forward + -- script = "^Df" -- Variant 2: DigUp, DigForward, MoveForward + + commands = { + ["f"] = function() move.forward() end, + ["b"] = function() move.backward() end, + ["l"] = function() move.left() end, + ["r"] = function() move.right() end, + ["u"] = function() move.up() end, + ["d"] = function() move.down() end, + + ["<"] = function() turn.left() end, + [">"] = function() turn.right() end, + + ["D"] = function() dig.forward() end, + ["^"] = function() dig.up() end, + } + + i=1; n=string.len(script) + end + + c=string.sub(script,i,i); commands[c](); + if i>=n then i=1 else i=i+1 end diff --git a/scripts/exemple_11.lua b/scripts/exemple_11.lua new file mode 100644 index 0000000..92adbe2 --- /dev/null +++ b/scripts/exemple_11.lua @@ -0,0 +1,20 @@ +-- title : Big_Display +-- author : +-- description : Show text from the book in slot#1 on a big screen. +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + + +if not pn then pn="BigDisplay" -- show news on big display + title,text = book.read(1); + if not text then say("No text... \n Place a written book into the first slot of the library"); self.remove(); goto ex end + + self.name("") + self.label(title) + self.display_text(text,20,3) --triple-size, 20 char per line + +--turn.left() --turn into the direction of the player + turn.right() +end + +::ex:: diff --git a/scripts/exemple_12.lua b/scripts/exemple_12.lua new file mode 100644 index 0000000..634069b --- /dev/null +++ b/scripts/exemple_12.lua @@ -0,0 +1,14 @@ +-- title : Find_you +-- author : +-- description : Find players in a 5 nodes radius. +-- source : https://forum.minetest.net/viewtopic.php?f=3&t=18345 +-- + + +players = find_player(5); +if players then +msg = table.concat(players," and ") +msg = "Around me i see " .. msg +say(msg) +self.remove() +end diff --git a/scripts/exemple_13.lua b/scripts/exemple_13.lua new file mode 100644 index 0000000..7171b13 --- /dev/null +++ b/scripts/exemple_13.lua @@ -0,0 +1,30 @@ +-- title : Ore-detector1 +-- author : +-- description : Find ores in a 9 nodes radius. +-- source : https://wiki.minetest.net/Mods/basic_robot +-- +-- TIP : Run this detector on the robot, and use an 'empty' remote controller to move the bot around to find the good stuff. + + + if (rg==nil) then s="Ore-detector v0.3" + say(s) + self.label(s) + rg=9 i=1 next=0 + ore={'diamond', 'mese', 'gold', 'copper', 'iron', 'coal', '-'} --Table of valueable stuff + end + + if (ore[i]=="-") then next=1 i=0 end + if next>0 then + i=i+1 rg=9 next=0 + say("Seaching: "..ore[i]) + end + if (rg>8) then rg=8 end + + f = find_nodes("default:stone_with_"..ore[i], rg) -- returns true/false + if f then + say("Found "..ore[i].." within range "..rg) + rg=rg-1 + else + --say("no "..i.." @ rg"..rg) + next=1 + end diff --git a/scripts/exemple_14.lua b/scripts/exemple_14.lua new file mode 100644 index 0000000..e5d99cc --- /dev/null +++ b/scripts/exemple_14.lua @@ -0,0 +1,48 @@ +-- title : Ore-detector2 +-- author : +-- description : A faster, optimized version of the Ore-Detector1. +-- source : https://wiki.minetest.net/Mods/basic_robot +-- +-- TIP : Run this detector on the robot, and use an 'empty' remote controller to move the bot around to find the good stuff. +-- It also searches for water and lava, to prevent surprises during mining. + + if not s then s="Ore-detector2 v0.4f" + say(s) + self.label(s) + rg=9 i=1 next=0 msg="" + + --Table of stuff to search: + ore={'@diamond', '@mese', '@gold', + '@copper', '@iron', '@coal', + --'!torch', '!torch_wall', + '!lava_source', '!lava_flowing', + '!water_source', '!water_flowing', + '-'} --todo: moreores, mobs + say(#ore) -- + end + + if (ore[i]=="-") then next=1 i=0 + --say("done.") self.remove() + end + if next>0 then + i=i+1 rg=9 next=0 + --msg="Seaching: "..ore[i] say(msg) msg="" + end + if (rg>8) then rg=8 end + + s = ore[i] + c1 = string.sub(s,1,1) + s = string.sub(s,2) + if c1=="@" then s="default:stone_with_"..s end + if c1=="!" then s="default:" ..s end + + f = find_nodes(s, rg) -- returns true/false + if f then + msg="Found "..s.." within range "..rg + rg=rg-1 + else + --say(i.." no "..s.." @ rg"..rg) --debug + if #msg>0 then say("--> "..msg) end + msg="" + next=1 + end diff --git a/scripts/exemple_15.lua b/scripts/exemple_15.lua new file mode 100644 index 0000000..a8d5368 --- /dev/null +++ b/scripts/exemple_15.lua @@ -0,0 +1,39 @@ +-- title : Robot Penguin +-- author : ixfud +-- description : Robot that look like a penguin and interact with the player. +-- source : +-- + +-- Initialise +if not i then + i = 0 + move.left() + -- Change le texte au dessus du Robot + self.label("Robot Penguin") + -- Definit le modele 3D + self.set_properties({ + visual = "mesh", + mesh = "mobs_penguin.b3d", + visual_size = {x = 0.35, y = 0.35}, + collisionbox = {-0.2, -0.0, -0.2, 0.2, 0.5, 0.2}, + textures = {"mobs_penguin.png"} + }) +elseif i < 6 then + -- say(i.." - place") + move.up() + place.down("default:dirt") +else + under = read_node.down() + if (( under ~= "basic_robot:spawner" ) + and (under ~= "default:obsidian_block")) then + + dig.down() + move.down() + else + i = 0 + turn.left() + move.left() + end +end + +i = i + 1 diff --git a/scripts/exemple_16.lua b/scripts/exemple_16.lua new file mode 100644 index 0000000..d17189e --- /dev/null +++ b/scripts/exemple_16.lua @@ -0,0 +1,210 @@ +-- title : Cobble Stair +-- author : ixfud +-- description : Build cobble stairway from the bottom and dig if necessary. it needs cobble and tree to create energy, and optionnally torches. +-- source : +-- + +-- . +-- TODO Change variable "tower_mode" to true to prevent digging while climbing +-- TODO Change variable "spiral_mode" to false to clime a straigth line prevent digging while climbing + +local c = "default:cobble" +local t = "default:torch" +local d = "default:dirt" +local s = "stairs:stair_cobble" +local p = self.pos() +local r = 1 + +if not l then l = 1 +elseif l > 4 then + -- return + l = 1 +end + +local e = machine.energy() +say(e) + +local cmb = {"default:tree", "default:pine_tree", "default:jungle_tree", "default:aspen_tree", "default:acacia_tree", "default:coal_lump"} +if e < 1 then + local src + for _,s in ipairs(cmb) do + if check_inventory.self(s) then src = s ; break ; end + end + if not src then + say("I can't create energy ! Give me some wood or coal !") + l = 404 + else + say('Creating energy from '..src) + machine.generate_power(src) + end + return +end + +if check_inventory.self(c) == false then + say("I need cobble !") + return +end +if check_inventory.self(s) == false then + say("Ho I have to craft some stairs ...") + if craft(s) then say("... done") + else + l = 404 + say("Oups, I can't do that ! I may be short of cobble.") + return + end +end + + +if l == 1 then r = 1 +elseif l == 2 then r = 24 +elseif l == 3 then r = 3 +elseif l == 4 then r = 4 +end + +if not a then a = "place_stair" end +if not i then i = 1 end + +if a == "place_stair" then + if not hold then + if i == 1 then say("Placing stairs ...") + elseif i == 2 then move.left() + elseif i == 3 then move.right() ; move.right() + else + move.left() + a = "move_stair" + i = 1 + return + end + else + hold = nil + end + n = read_node.forward() + if n ~= "air" then + dig.forward() + hold = true + return + else + place.forward(s,r) + i = i + 1 + end +end + + +if a == "move_stair" then + if i == 1 then dir = "up" + elseif i == 2 then dir = "forward" + end + + n = read_node[dir]() + if n ~= "air" then dig[dir]() ; return end + move[dir]() + + i = i + 1 + if i > 2 then + a = "do_floor" + i = 1 + return + end +end + +if a == "do_floor" then + if not j then + say("Let's make sure there is a floor") + j = 1 + end + + if j == 1 then dir = "forward_down" + elseif j == 2 then + n = read_node.forward() + if n ~= "air" then dig.forward() ; return + else move.forward(); dir="left_down" + end + elseif j == 3 then dir = "right_down" + end + + if i < 4 then + n = read_node[dir]() + -- say('I should place '.. c.. ' '..dir) + if n == "air" then + place[dir](c) + -- say("Therefore I place "..c) + end + j = j + 1 + if j > 3 then + j = 1 + i = i + 1 + end + return + elseif i > 6 then + n = read_node.up() + if n ~= "air" then dig.up() + else + move.up() + a = "clear_floor" + i = 1 + j = nil + end + return + else + move.backward() + i = i + 1 + return + end +end + +if a == "clear_floor" then + if not j then + say("I will clear the floor now") + j = 1 + end + + where = {"down","up","left_up" , "right_up", "left","right", "left_down","right_down"} + if j < ( #where + 1 ) then + dir = where[j] + while read_node[dir]() == "air" do + j = j + 1 + if j > #where then + j = ( #where + 1 ) + return + else dir = where[j] + end + end + dig[dir]() + j = j + 1 + return + else + say('Slice '.. i .. '/4 ...done.') + if i < 4 then + n = read_node.forward() + if n ~= "air" then dig.forward() ; return + else + move.forward() + j = 1 + i = i + 1 + return + end + else + if check_inventory.self(t) then place.right_down(t,1) end + a = "turn_and_restart" + i = 1 + j = nil + say("Ok, let's get ready for the next step !") + return + end + end +end + +if a == "turn_and_restart" then + if i == 1 then move.down() + elseif i == 2 then move.backward() + elseif i == 3 then move.left() + else + turn.left() + l = l + 1 + i = nil + a = nil + return + end + i = i + 1 + return +end diff --git a/scripts/exemple_2.lua b/scripts/exemple_2.lua new file mode 100644 index 0000000..c096bf0 --- /dev/null +++ b/scripts/exemple_2.lua @@ -0,0 +1,30 @@ +-- title : Hello_World_2 +-- author : +-- description : Outputs "Hi !" (only once), then start counting and turning. +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + +if (i == nil) then + say("Hi !") + self.label("Hugo") + i = 0 +end + +i = i+1 +turn.left() +say(i) + + +-- Outputs "Hi !" (only once), then start counting and turning. +-- +-- == is the check to compare the values on both sides, i.e. "if i is-equal-to nil". +-- = is an assignment, i.e. "i=0" means "put the value 0 into the variable i". + +-- To calculate i+1, the variable i must have a value assigned first. +-- And because all the code is executed again every second, +-- this first assignment must be done only once. + +-- (Otherwise, we couldn't count to 2) + +-- At the start, no variables exist yet, so we can test for nil ("no-value"). +-- Note: nil is different from any string or number ! diff --git a/scripts/exemple_3.lua b/scripts/exemple_3.lua new file mode 100644 index 0000000..56aab76 --- /dev/null +++ b/scripts/exemple_3.lua @@ -0,0 +1,14 @@ +-- title : Hello_World_3 +-- author : +-- description : Shorter version of Hello_World_2. +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + + if i==nil then i="Hi !"; say(i); i=0 end + i=i+1 say(i) turn.left() + +-- Same as above, but with multiple statements in one line, +-- and some variations (e.g. braces and ";" are optional). + +-- In lua, the value of a variables can be of any type. +-- Here, i first is assigned the string "Hi !", and later a number. diff --git a/scripts/exemple_4.lua b/scripts/exemple_4.lua new file mode 100644 index 0000000..d75458b --- /dev/null +++ b/scripts/exemple_4.lua @@ -0,0 +1,16 @@ +-- title : Catch_Me_1 +-- author : +-- description : Some program that works perfectly well, but still shoots the player's foot :-) +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + + dig.down() + move.down() + +-- The robot keeps digging down, and will continue unless it is stopped or it finds a cave, or an unloaded map-block. +-- With the first dig, it will also destroy its spawner. +-- So, to get at the stop-button, the user has to jump into the hole to get at the robot. +-- (Quickly, otherwise the player also gets falling damage !) + +-- Leaving the game, and entering again probably also stops the bot... +-- (Maybe a bug: without the spawner, the inventory of the robot is not accessible) diff --git a/scripts/exemple_5.lua b/scripts/exemple_5.lua new file mode 100644 index 0000000..5edb63a --- /dev/null +++ b/scripts/exemple_5.lua @@ -0,0 +1,22 @@ +-- title : Catch_Me_2 +-- author : +-- description : Now we go up, instead of down. :-) +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + + dig.up() + move.up() + local dirt_place = place.down("default:dirt") + if not dirt_place then say("I need dirt in my inventory") end + p = self.pos() -- returns a table, with elements x, y, and z + say("Position: " .. p.x .. "," .. p.y .. "," .. p.z) + +-- Now we go up, instead of down. +-- After stopping the robot, and pressing start again, +-- there will be a block of dirt above the bot from the first go. +-- We need to dig away this block so that the bot can move up again. + +-- The command "say()" outputs a single string, but several strings can be concatenated with '..'. +-- Numbers are automatically converted to strings for output (e.g. the number in p.x). + +-- Note: y is used as the height here in minetest. diff --git a/scripts/exemple_6.lua b/scripts/exemple_6.lua new file mode 100644 index 0000000..5db0143 --- /dev/null +++ b/scripts/exemple_6.lua @@ -0,0 +1,19 @@ +-- title : Run_1 +-- author : +-- description : The robot run and turn when hitting an obstacle +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + + if (i==nil) then say("Demo1"); i=0 end + + if read_node.forward()=="air" then + move.forward() + else + turn.right() + end + +-- If nothing ("air" mean nothing solid) is in front of it, the robot moves forward, otherwise it turns. +-- The robot can "fly" one block above the ground, like the player can reach by jumping up. The bot just doesn't need to bounce up & down. + +-- That means, if the robot reaches a place where the ground one step ahead is more then one block lower, he cannot move forward. +-- With the above program, he just stops moving, because there are no instructions in the code to handle that case. diff --git a/scripts/exemple_7.lua b/scripts/exemple_7.lua new file mode 100644 index 0000000..b76f4a9 --- /dev/null +++ b/scripts/exemple_7.lua @@ -0,0 +1,49 @@ +-- title : Run_2 +-- author : +-- description : Essentially the same program as 'Run_1', but with more checking and reporting +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + + local function report_pos(msg,complement) + p = self.pos() + say(msg .. " position x=" .. p.x .. " y=" .. p.y .. " z=" .. p.z .. "/n" .. complement) + end + -- + if (i==nil) then say("\nDemo2"); i=0 end + -- + n = read_node.forward() + if n~="air" then + report_pos("Now at") + say("found "..n..", turning") + turn.right() + else + if move.forward() then + i=i+1 -- move was ok + else + report_pos("Cannot move at","(probably because I would need to fly to go there)") + --self.remove() -- stop program, and remove robot + end + end + +if i > 20 then + say("After 20 steps, I turn without any reason, this way I avoid getting stuck") + if math.random(1,2) == 1 then turn.right() else turn.left() end + i=1 +end + +-- This is essentially the same program as 'Run1' above, but with more checking and reporting: +-- now there is a check if the move was successful, and output to report the position. +-- +-- Because we want to report the current position of the bot at more then one place in the code, +-- the common instructions for that have been moved into a function. +-- When called, the function gets a string as a parameter, that is used in the message that is generated. +-- There is no return-statement at the end of the function, because we don't need a result. + +-- ".." is the lua-command for concatenating strings. +-- "\n" is newline. +-- "~=" is the check for not-equal. +-- "--" starts a comment. Text after this until the end of the line is ignored. + +-- Here, we have also commented-out the statement "self.remove()", + -- so that it doesn't get executed. + diff --git a/scripts/exemple_8.lua b/scripts/exemple_8.lua new file mode 100644 index 0000000..d9a8e57 --- /dev/null +++ b/scripts/exemple_8.lua @@ -0,0 +1,19 @@ +-- title : Mining_101 +-- author : +-- description : Simple digger 1x1 +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + +-- simple digger1x1 + if not i then -- Init: + i=0 + turn.left() -- initital positioning: aim robot in a different direction + --move.up() + end + + -- Work: + i=i+1 say(i) + if i<=20 then + dig.forward() + move.forward() + end diff --git a/scripts/exemple_9.lua b/scripts/exemple_9.lua new file mode 100644 index 0000000..6dcb03e --- /dev/null +++ b/scripts/exemple_9.lua @@ -0,0 +1,23 @@ +-- title : Mining_102 +-- author : +-- description : simple digger 2x1 +-- source : https://wiki.minetest.net/Mods/basic_robot +-- + +-- simple digger 2x1 + if not i then -- Init: + i=0 + turn.left() -- initital positioning: aim robot in a different direction + --move.up() + end + + -- Work: + i=i+1 say(i) + if i<=20 then + dig.forward() + -- ?? + dig.up() -- !! doesn't work with setting 'maxdig=1' + move.forward() + else + say("stop") self.remove() + end diff --git a/scripts/notes.txt b/scripts/notes.txt new file mode 100644 index 0000000..567996a --- /dev/null +++ b/scripts/notes.txt @@ -0,0 +1,11 @@ +bugs : +Return compilation errors for commented words : +repeat not allowed! because some comment contains the word 'repeatedly' (exemple1) +until not allowed! because some comment contains the word 'until' (exemple4) + +-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- +=²exemple 5 - catch_me_2 Ajouter retour "I need dirt !" +exemple 7 - run_2 Remplacer "cannot move" with explaination, bug until +-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- +exempe 9 - 11 - mining request energy +exempe 10 - mining102 out of available operation diff --git a/shell/doc_to_html.sh b/shell/doc_to_html.sh new file mode 100644 index 0000000..781220b --- /dev/null +++ b/shell/doc_to_html.sh @@ -0,0 +1,64 @@ +#!/bin/sh +# Generate a html page from all the markdown documents present in rep 'docs' +# Require 'markdown' command +# + +#-- Markdown docs path +docpath="../docs" +if [ ! -d "$docpath" ];then exit ;fi + +#-- Temporary files +html_menu_tmp="~html_doc_menu.tmp" +html_content_tmp="~html_doc_content.tmp" +if [ -f "$html_menu_tmp" ];then + echo "The temporary destination file '$html_menu_tmp' already exist. Aborting" + exit +fi +if [ -f "$html_content_tmp" ];then + echo "The temporary destination file '$html_menu_tmp' already exist. Aborting" + exit +fi +#-- output file +output="../robot_doc.html" +# if [ -f "$output" ];then echo "The output file '${output}' already exist"; exit; fi + +#-- Initialize files +echo "

Robot Documentation

" > "$html_menu_tmp" +echo "" > "$html_content_tmp" +echo "
    " >> "$html_menu_tmp" + + +#-- Loop through file +files=$(ls $docpath |grep -e "^robot_doc_.*\.md$") +for mddoc in $files ; do + #-- Full path + doc="${docpath}/${mddoc}" + + #-- Get infos + pat_title="\-\- title :" + title=$(grep "$pat_title" $doc |sed "s#$pat_title##") + pat_description="\-\- description :" + description=$(grep "$pat_description" $doc |sed "s#$pat_description##") + + #-- Menu entry + echo "
  • ${title}" >> "$html_menu_tmp" + echo "
    - ${description}
  • " >> "$html_menu_tmp" + + #-- Anchor + echo "
    " >> "$html_content_tmp" + echo "-- Return to Index --
    " >> "$html_content_tmp" + + #-- Content + markdown "$doc" >> "$html_content_tmp" + echo "" >> "$html_content_tmp" +done +echo "
" >> "$html_menu_tmp" + +#-- Join files +echo "" > "$output" +cat "$html_menu_tmp" >> "$output" +cat "$html_content_tmp" >> "$output" + +#-- Delete temporary files +rm -f "$html_menu_tmp" +rm -f "$html_content_tmp" diff --git a/shell/rename_scripts.sh b/shell/rename_scripts.sh new file mode 100644 index 0000000..f654894 --- /dev/null +++ b/shell/rename_scripts.sh @@ -0,0 +1,54 @@ +#!/bin/sh +# Rename scripts to be readable by lua as _.lua +# And add title and author as comment at the beginning of the file +# +# Arguments : +### 1 : path of directory containing scripts +### 2 : prefix +### 3 : number to start numerotation +### 4 : author of the scripts +### 5 : source of the scripts +### 6 : description of the scripts + + + +dirpath="$1" +prefix="$2" +n="$3" +author="$4" +source="$5" +description="$6" +help="Usage : +rename_scripts " + +#-- Return if not a valid directory +if [ ! -d "$dirpath" ]; then + echo "Wrong argument 1 (directory path) :'$dirpath' " + echo "$help" + exit +fi +#-- Return if prefix is empty +if [ -z "$prefix" ]; then + echo "Argument 2 (prefix) is empty and must be definined" + echo "$help" + exit +fi +#-- Set n to 1 if empty +if [ -z "$n" ]; then n=1 ;fi + +for scp in $(ls $dirpath |grep -e "\.lua$"); do + title=$(basename --suffix=.lua $scp) + in="${dirpath}/${scp}" + out="${dirpath}/${prefix}_${n}.lua" + + echo "-- title : $title" > "$out" + echo "-- author : $author" >> "$out" + echo "-- description : $description" >> "$out" + echo "-- source : $source" >> "$out" + echo "--" >> "$out" + echo "" >> "$out" + cat "$in" >> "$out" + + rm "$in" + n=$((n+1)) +done diff --git a/sounds/basic_robot_terminal_blop.ogg b/sounds/basic_robot_terminal_blop.ogg new file mode 100644 index 0000000000000000000000000000000000000000..3fbe176b6330bfa46b09bedc24d71b37e537e796 GIT binary patch literal 8873 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 u+1|%O$WD@{VY)RhkE)2#X*kT)BSz zama-mH#h=W9xq^?ktSBcnA5;{Q)Ncxi5wBvA8S&R6qp2_s<|Z{;$+ykUii`j2F`mx PqZmA0{an^LB{Ts5lRz-F literal 0 HcmV?d00001 diff --git a/textures/255.xcf b/textures/255.xcf new file mode 100644 index 0000000000000000000000000000000000000000..a6842edf9f3e5158f01faf0e821fd12e007e6810 GIT binary patch literal 2388 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 IM6N<$f=(S#CjbBd literal 0 HcmV?d00001 diff --git a/textures/machine_texture.xcf b/textures/machine_texture.xcf new file mode 100644 index 0000000000000000000000000000000000000000..33f93f8d4ced295d3ab65e8c065f19d2c04d8884 GIT binary patch literal 2592 zcmeH}&2JM&7{+I9H^HGTRG4oLd#Mx-LF8Y6Ggq$2c5JhfW2bSD;FMEE{0Sri$0nf) z1mna6JBj0@w6ruF8dXJ5i5_U20NFaJ1gWZu1CR~N`^?OuAX2FZgj$K$dOg2+-kJ4y zp7o9cT5Fqn-0N5UTF}QRRGHw4d?woq<3aI@}nB(aOqL0M0^O)|!9rSW^H-5j9H zHfgQyfUhaguCrA!k>OTXf9*?xSy;>-sHd~)X;)(S{sWlx7X&tH-@*ed?FhA_~M|>Tx7l_$! zOG0^bD)vE!5@*cbEIQ5xDXP>Wv6uA+-N7%8aZha2MbuGZ+fB+1k}=dNnHq-e#~1`I zYw^Z4{P7z8WDRd3#&xZLz1IA-mdm>BfCQCVB#pHlrWT=!wE5BLWN~KHSdHys_Szn{ zN~qL!GFxqxwB4k+n4_kMA)U6n?`OQu3|h~MZs0~yW?#*Pg86{)ut;;CcKU4kb zzDt9H`Kjqrv0RxbmnRw~o>oRL-y`4<^f+kp`)_7`u7JjG|9E$v zYvtd5oqaqCZS-+<@kI$#G#39bi=dLZq?=bkBW6uEukot6upp>pKAN{^zG_vg_bu)I ztfkG$YRRlVu&NIitj}2Z-5kM{3#Ptg@)eZK#U(?mZ)I_Ac?{L@C)Ho(xK^CIH*;qK zTKV=*-~GU=#alNfE7zfYJ2_s;4-x%6ba|{eaK0yhHJ2Y6E^I6)!(SKjgJ1Pu92vb9 z?M@~VsZ=5l17*4>+k#k!-ZbN#(NeHU^UXWp$# zt{pDv5=giN5-x#+OCaGANVo(NE`fwgyvkh?Rk$PwE{Q5!5*l0*8e9?@ToMGA1i>Yc za7k!z2~_4TfrLvS;S#TMm$=4V0tuIh{x>e+-um!cdiTGjP6t0z-ti(W|!5 zKb2cUL7%rn3y1Jzv>un%qrH=~e{&FjD(B+F*i31sq_ECZ$TFPW1gcEZojF;MnzMqw NhwU^!dJpMguK;TS%a8y7 literal 0 HcmV?d00001 diff --git a/textures/mobs_bunny_grey.png b/textures/mobs_bunny_grey.png new file mode 100644 index 0000000000000000000000000000000000000000..d41d6c1865172645314879d6f5fdc75d35968cc3 GIT binary patch literal 771 zcmV+e1N{7nP)Ud$RBNVw>C`8R8|~QW-VRg zJ%mRf+Dj=W`0*ly?~AICXfav>PJBLd1yQTl%Jfz+iIGL(0*R3RzM4b4lv+#9xteNP zmt}#}!pxBO z^YjXdU0F;g@O%~}CYeA*>(l|n_0ailSwe2DpM>WL_!K+c(Z;UA6!#IH^RVBIN6PAOG?142|VYn|U2*@ZRop5#ag4w*tYtD=NgNT>mT=aC2sc&UQFRx@O$ zWi~MZn2J7GQu-N^$m?_wQ;573V9LQMWjMhO8?~e53ISzU9=78UG{#4oQ_kW5te(AB zovDU=wBgEUOVcSBSkW8m(0A&e;p6xmE@UX$y?BSRBB%dALJwO@YfNH&R0H4>coXwh ztRW`NJSXLZi)Zzn>Nfyl0RY>w#+Z(zHZGVBn@xVc1309?GbFM%vFo~qzH{JTARVo# zMCObDudgvM>FBlPQsUllVUql@@&|>HLmwBKY~EVSxxnYV9bu&#$qmZ{_j@1A=limd zm@S*!*PwheyCEJzw;gw)b432%=zKEk$ro?bW)CB@#%t%U;8bZj@4?;l;$Ick4ar6K?T002ovPDHLkV1hNA BTy6jW literal 0 HcmV?d00001 diff --git a/textures/mobs_chicken.png b/textures/mobs_chicken.png new file mode 100644 index 0000000000000000000000000000000000000000..19cbd159b4c00f616b480ea159eec2609202822d GIT binary patch literal 2969 zcmai$_aoH*1IJ(QyTe&$U3Q#`NO9&_owxNV8D&*6qA0V-Dh+QTCn9NxLzEmLC9+)+ zWyPV$ID6}479HRIgYPfT=i`URFVEkeaVM;g@bgIW008*SkDA&70R2ONVA21w+xLjh zziK#PX>SH^9X96Vw&TEBVtHM;xc&IKLUA|>FD?x$KvY*fr+gqt6J>3#LowrhV8s_< zWpU2MGTRQ9=OUKxDN^Jw@i5T8JXo^qn$+`%>$TCl(-M8^;^jUh?rV6Y^fEo=3stR+ zs??cFd`Zi#&duq3rT?m^fL@UIx}>PD)U2{B?_GIm^ZU1z)fKfhrFHb$mXEaNrrM^@ zpT;{JJ38Bj7__eL&fcEZ!EYb>2l@sF7z?BHkum1@SpVz{b7i(;c7BHS>t}Ih9P!^A zDA?B84!~1=7XaXiHa9i0zxrd5%71F0N%+og544q}BvI^AarV9g#n*>=n_Bib7~AIV z?7XTf)!35z!Z{w`mpymbNKsw8ZM^?!fB&N+dyjC;ifxjA7=M3O{rXry_;9E8>p%sq zx!dp9!>XznWIcjiBZZWf77N0qJLC6icj^GWyM{w-rnwMB{n_KFJL&p4?O>* zlgR5e%+^I{@W56W$FoHi3i6I{V9#b)Cf4K>lw*h)u3lUfbyYXifNumB7SC8HSW*yS z9nG|#3`E&$CE60}Qmv>urL|Sr!Ur6Ql)Xxh#lI ziO^T&S7J?|2d9QekMPx1385#%mxc|qI8}?wh`jgNCpA3#N@oQj`maJ>KoG#QYJXn? z)6=KCcBZAQM!uEp@VK~1f#+TJl7@>sNY3x>fgE9~Ye(Vy`{12VGoqT+gM0udJ2`s( zBJgwI`Fep-vBkg6yy-m?S}ug>-9j3gqr@}B{Nu*1eR;@L#a>>kOB~(azNDREGCnsK zvnzX@A|SiYL%1~X_&sDlC!6`%$3{jauZ2FJ{+N8$MLR^RcIF^B@3-%P0%B_VW7|>z zt79WRqLV%}JUkRtH$2oqPU-2bRt+m1sJc+vfj){+jOw;`Y3+%@@LNxYIZE1NVTIN! z+Rt^DIL*_2=Ts0pGo(Wt9S_0SK=^>O`s4gDtg}(Z!xhp-N!}Cz23Vl2L z>XI&my@DArBpYA~45H^n5hsNW4B{3MvAH_37km(;U->ovHHj%qlqyyh)GczYpP{NtANA^E(i*vvUxWbX;yvBNh|@?iV<~ zP0g%x0gNvuT^R7a$4P}KUtoTPd+IwxrDkT<QAHLdr5C$u&0%QYQGG@ z0y?)+)R30LaoOCk%R!pr2@suZbwhpA8>nNqz4Qzk1&O@@Qt&SW!jZIB6dOvweRuhwu4?G$isw0ZB%LxklulbgV*`QpX%Oki?NO0V8Qk3*R0ns zUg~tRgCxOJect$c4a}eoShpB&9)BLj5={UT^KF-bPJVyH^4{4cV!MqoVetugfljIo z<283H{R7#_sOVj*fGFxqKxv=au)~b} z?n8;Qx1!H)eU@T7t)0opAgSIND6yLc8t|x1MY>*$*`Y=8P=zF%VE<*E~Hm$a^B)HhGa{x#u921n9j5Ss*8keUNU}sN)Tu zeeN^?N|UgQ@TZ>-D&H7hF2t{4;Vx-Z{?DX71&Na;Y)*O^+n$$}QXz_N$wX14#Y#k= zF8i+Unl$zxMEC~H`0sw^&tJrb;li*;8ML4Za+M#s)xjYw2G7(Cb%l#vot?kv68rM{ zM_c82aJy3CgzuAE$czC<7DpGMOM3M{P8Kk}IFtT?kZ`u*ZYa1PDg#!;YP=0adeaoK zDoe}XS$at420JEjTYT}XKOp>5!ldaRxlrYULZ<~P0k!+@Bv_iw-~hN0VMQH?MiuTf zkGm`if+ldGSst=>dtnd9XHu98IhbP$gS2nz*HG}FE>PxmGg?w~9;#HD{JVQ#WR1WIMja@+TOismB2bV8BkyE*UBEmx%EU!g1plQuIRr>fmvTrkNnQoHv zqw32!rGUlLn$9EUU|B3UPq09B6|cM|R$xr2&V|jjZ5t@DoNlfQz^#8b$aa}m?yU`) zJKiYnEs={M2ubLI@5hhxBf-AFqDxDFvgRM?vG%~dj*;N;CcZ(y}E2X1hh8e4|J&z z6v?U8UlpbCCD$7lUIm4wzR=tz-PHcz3SkN!PnPvwI(D($`}Gfb+pe_i%BR+*LSf-@ zr|oAm?7g!$7?oKqFc6(Rvr-yRZ}MztteHS-4^7Efy?-~IJiisxQ;!#&4fz=Sb}j95d++^kJM$I9{S3_g}cGgI6=y58M}n zlo^_2(-f}{--_0s8%4g=RR?Zlds~^Fn0m|bN5dqp%d#RJGPa)gR8mjwIcBG2iSn!b zGS@H8TBzt_Va45wOjnp>jNJ`s)4C=!YB=!DrQ@zDLa)fbw(sFl*WLyTK8dAb;f zl?$)brPBBpM`g`~w=$hh@_Tk5Y$xYf#ig(=zx}_fySj3g~ns#y#df?FVaVC zcieozs{3v{deX*Uv)u=RbH=W7j>Lv;96!nApw+l?=yD;JkKEkz&*vtjRZyhWM@1jn z%1wlG${vMo?oG~R9GNiTM0ijSoYJOrW2`zhoVj2!P79&E;kE7egJ$m72rHLbNN?t6 ziW~PfQg;P8SlZ-3=}#u4W*}nwNQ{;ACh2E{9^a@=kRiF59b^pd3xX7)@WS8G*sp!R zKZ$a}FD$s{cJiO@I=*7baZIBtdSGSJqK~g+XHM{@(0tjH!U<>Yqi+kj5%MW|Ws&&n z4u9*e+=qYpTb*N0bMOCtx};xyW41xh?;hdfCnM0OZ{!nSUxTAxBlL7%7=39oRVZIj zEF2Evy@MiwaJKqQD2{&7@zA=c(uM#-=uF%i&(q@7+j_uP`_-acs=jYrqnc|!hO82|5_0&_EK(_&+{+y4ViK36CJ literal 0 HcmV?d00001 diff --git a/textures/mobs_kitten_striped.png b/textures/mobs_kitten_striped.png new file mode 100644 index 0000000000000000000000000000000000000000..4d1a0ccb6857114531cc7033eab7546d3273b31a GIT binary patch literal 416 zcmV;R0bl-!P)%&`#Im8e1vPXK#}@R%yA63mUi9`bmh zhp=oswGi(!n&vAyAiVB@Tm2dbGaPte@4cO^HDA%|PF$Fl0{R0}q_C%+=TPvP*vlJD ztvF&Ku<7$zj^o(;0DPzjok&JL$FE@yTJ}Jx_j2s}ucBu6Mpwzi;#&W4Kp3=@yVNNE zwt&Q?-xjdAfj1n$0Nr` literal 0 HcmV?d00001 diff --git a/textures/mobs_penguin.png b/textures/mobs_penguin.png new file mode 100644 index 0000000000000000000000000000000000000000..f7928d353b7275e36ae9e9824771ff3e9fe0b124 GIT binary patch literal 892 zcmV-?1B3jDP)0zycN=ejOj*98EW(_N{8jlGiu{CJrghqvIz%P^zPh>!0O~#DBkudYE{JQfmoz_K z#`)Df_D+&qrJm>UIF3OGkp?iv&~CTkI1T_{I2=k32n9xlQbW&&X-FOgwJg`>;q1Vg zyX&&G8|L@S_dVdW9vjh1OaZNs<(nAOO^Qy`Cg`y&jH^jw*XZC|4nNZdn$Z&8B*B zN~ydI&+~Xu#b-D_4 zM&6Ji*5mOQlu}-=*TEP=6h+XCfUaE7dcKuzMB>9FN#s^5u3KweIl+qVMhHO|hB6ri z)Z{EX+MB9k$(-_pA!T~{!Z|Sa;nWZjcm1w6D4iaSMsmHrzP?x$Oum1c`O(m!|Lq9n zwr$HxHD;lSD67=66bqg>FGQ8-=SQId;SI~&b(xwUjYg^R6ozDZp{6R*@$=V{Lid+B zE$8t~p{Vinx7>N7(Ez|CU8U18#;~%oVpML$;SHPFF#v3AY~;FM-+5L}6yXoyx};2B S3#k|Y0000$?o~Ta!>QSLho4uPIHzySLUZb zYOA|FGwOm7YvsOarN4iD{x_}jvRs?O^vag*73t3}>e&ANr^tMh?~uK?-LFd$VjZ&* zPfC3{e9>gW-mO-*6VkZ?rcd>GY3O`Kn!#bZYjml4mi(k12bLxfVgQ0emJ433+4uZr zdE`kB7X>i7?Ok#@yG_MJx~Xon6K~)ZL5>9ZqP_2)uJZr2N|DJ?0jP_C;lSLbcF*=a z<~OunAjH8W2u6%=u4F!Z@$CKH|D_?$BBfw;Ktkaff50Dm)k4|$Hjt2~tDnm{r-UW| D7dUy2 literal 0 HcmV?d00001 diff --git a/textures/mobs_turtle2.png b/textures/mobs_turtle2.png new file mode 100644 index 0000000000000000000000000000000000000000..bc08cecf17a6b43b31adeef58b69852d8aab38e6 GIT binary patch literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^DImuWfP=akx0~Msw~BQPZ2ExdE(ozD*pQ7Y)vD z-M6fhxnatu?6|vHq<>hrLwIiC`jw}zkV(&2B zuddO%`u6|k{&$rL$3dcw0*)ZnPztCC$gI&{Em7!wy+!01@Bc||;IqP)Q}|HhD)@2t$+AP7@u@J&X@I81$QPYlwj2WuF4NHF{!a+7Z@jb*795g|++1R)5TD0{b_ z$5=y8q7Mnyi=+~wfro$~2%555O;tsh`dZagvuLWUU}ZcHVd@|VK|m0Kpt-WQ#U`;Y zRg8E1uVKXH`sN$MGdD&Y+4Q;fJr81tkSw-tn_=n|a@Irkyg&C?|Bi5R>dRfRwzw!| z)fEX>mCPa}7zB~B+O5h&h?E6_5CjAv2$a1_Xb~c1LCT8C+VXp9{eq0c)ZhKU0V!+8 jOywaU2vaYxANUl1PJ-plZ%Sgf00000NkvXXu0mjfSRMQ8 literal 0 HcmV?d00001 diff --git a/textures/mobs_turtle4.png b/textures/mobs_turtle4.png new file mode 100644 index 0000000000000000000000000000000000000000..0bdedd3d686688e6afd9c8d66b90e2ae9933b0c7 GIT binary patch literal 744 zcmVP)`DH z1*u)|=#8{M;D|NI%@|TvS~}*paW&`Ef`p6h#ePg(rK%gX-d>&}XB^VYYQ3sWdmgd8 zp)n;L9p}-I#Ea$hbWKMIY_W#$9O0a@cW^i;wvdtjI~TZH5fhuI<@_n)C3j$Kk*WV{ zE39;!rJ6{3TC=61&kI(z073wSI7)ku_<0Li)-;4zE(Uvzsm97yhQzSYuZUlk>U(p)q~4l%@#I#7r~*SucE3R`pudUP5} zNfRyWxx!tIHFx6VzMptkh9}o{WWB_Y!A6sN;}BVvF+d1}00@DQaoNk&`etNV#;SZ= z77EcVylSkr<#m$S_^#JO09h7<00<$dTSMtfDr;W#r(M^e5M#zAUe!Ph0T41}P}d4# zy{cdD?h}RJvOvm1KnMx}5OUIuKnMx}5CR~?MWt>vu#TvX&j#@xY#ULj8!?7o3XRLcWdU54(MlhM1RG-EnL-FTXsHkah#?l!U|}O{ a#gH%5<%f<0g{T|=0000&(HjoF4)e@pwN3tXpi4*)4x}~&+DJQJo{g&WpbeVt{<_J-mmYO@cCoV)H(CoiaoY1vYYn)_PUqybKk5Bl%6NM`T2`qZTAaz-z&?#{^fgi zUsc5OUxi%1y`26h_a^L7%F1h2c4~T<_&UM3 zpCj;!j$5-*maO4h4=P~-KK~_t z{&^;6|FV01|0T4IpEyVzjt_GST%#yfx+(HXePN(9tFg<3-7}WEPMDK)WUW5X84L`X z`KEHkzhebh1X&ze90eS~f(#FK*AzZfsg{@jdc?rEiK9uO2_g<959}6aUZu_XnbT}B ONW|0C&t;ucLK6UGd0rj> literal 0 HcmV?d00001 diff --git a/textures/mobs_turtle7.png b/textures/mobs_turtle7.png new file mode 100644 index 0000000000000000000000000000000000000000..a0cfbaa0db9ecf3d2c05ebd5dde36aef9059da6a GIT binary patch literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^DImx690>__{3S%9j* zz%cB_6+gN4^Q1twK){3atC#sdC-X4D1Q7HcbH1|%O$WD@{VY)RhkE)1JMu;8P_RgiRnM`SSr z1Gg{;GcwGYBLNg-FY)wsWq-&c&0{6j?R+)_DCF+x;us=vIeE&IDSys8Fl;aYf-`e0 zg_k#d`BKuMB*89wz-03R?gZ9JlP3K)&%N~}J}Bsuy`Gt{nfU@{H8v%Nz`P_CwK)t8 XoN|R%?#90W8p+`4>gTe~DWM4fO9wRU literal 0 HcmV?d00001 diff --git a/textures/parent.png b/textures/parent.png new file mode 100644 index 0000000000000000000000000000000000000000..e5153de5c57aa6e620232e0e3c7500243ec42e8b GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>1|%O$WD@{VY)RhkE)4%caKYZ?lR?r29+AZi z4BWyX%*Zfnjs#GUy~NYkmHi=)w6LM-0ojR1fI`-uE{-7*my@SVneykn1A~E~0OJR( zS(e3W%amp)_)ShbH|OMpdGq>01-Umd#i$t`s%by3vZK^xW(z+9!=DYJf!T2~B0ysp NJYD@<);T3K0RUjjF;@Tp literal 0 HcmV?d00001 diff --git a/textures/power.png b/textures/power.png new file mode 100644 index 0000000000000000000000000000000000000000..dddb57b22393e6f4f615cdf7cfd8689d21bb4c29 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>1|%O$WD@{VY)RhkE^8@Pd%xRKp`7X7sn8Z%gG4|2|xOK%yVyjk&o@^ zWaKi-y>+C4=fY2oT^l#fl;~i1qWS6bXXW!MZYz`xYnpSkVg&6N7@ogSNmp337UTj3 MPgg&ebxsLQ0Eb*Li2wiq literal 0 HcmV?d00001 diff --git a/textures/save.png b/textures/save.png new file mode 100644 index 0000000000000000000000000000000000000000..7a80230b0e813fa3f58cd76ed795fb1912729b9c GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>1|%O$WD@{VY)RhkE)4%caKYZ?lR?r29+AZi z4BWyX%*Zfnjs#GUy~NYkmHi=)vE_Njz8Cy;=RSxX?u9jO%H=F{v|l_8)HV;81Ll-Szh+YnZgMMWEuw1we}# NJYD@<);T3K0RV%ZN{9de literal 0 HcmV?d00001