diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 2e62a4e59..000000000 --- a/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -*.cpp diff=cpp -*.h diff=cpp diff --git a/.gitignore b/.gitignore deleted file mode 100644 index cd6ee3e32..000000000 --- a/.gitignore +++ /dev/null @@ -1,87 +0,0 @@ -## Editors and Development environments -*~ -*.swp -*.bak* -*.orig -# Vim -*.vim -# Kate -.*.kate-swp -.swp.* -# KDevelop4 -.kdev4/ -*.kdev4 -# Eclipse (CDT and LDT) -.project -.cproject -.settings/ -.buildpath -.metadata -# GNU Global -tags -!tags/ -gtags.files - -## Files related to minetest development cycle -/*.patch -# GNU Patch reject file -*.rej - -## Non-static Minetest directories or symlinks to these -/bin/ -/games/* -!/games/minimal/ -/cache -/textures/* -!/textures/base/ -/screenshots -/sounds -/mods/* -!/mods/minetest/ -/mods/minetest/* -!/mods/minetest/mods_here.txt -/worlds -/world/ - -## Configuration/log files -minetest.conf -debug.txt - -## Doxygen files -doc/Doxyfile -doc/html/ -doc/doxygen_* - -## Build files -CMakeFiles -Makefile -!build/android/Makefile -cmake_install.cmake -CMakeCache.txt -CPackConfig.cmake -CPackSourceConfig.cmake -src/android_version.h -src/android_version_githash.h -src/cmake_config.h -src/cmake_config_githash.h -src/lua/build/ -locale/ -.directory -*.cbp -*.layout -*.o -*.a - -## Android build files -build/android/assets -build/android/bin -build/android/Debug -build/android/deps -build/android/gen -build/android/jni/src -build/android/libs -build/android/obj -build/android/path.cfg -build/android/and_env -build/android/AndroidManifest.xml -timestamp diff --git a/.mailmap b/.mailmap deleted file mode 100644 index c487460a0..000000000 --- a/.mailmap +++ /dev/null @@ -1,33 +0,0 @@ -0gb.us <0gb.us@0gb.us> -Calinou -Perttu Ahola celeron55 -Perttu Ahola celeron55 -Craig Robbins -Diego Martínez -Ilya Zhuravlev -kwolekr -PilzAdam PilzAdam -PilzAdam Pilz Adam -PilzAdam PilzAdam -proller -proller -RealBadAngel -RealBadAngel -Selat -ShadowNinja ShadowNinja -Shen Zheyu arsdragonfly -Pavel Elagin elagin -Esteban I. Ruiz Moreno Esteban I. RM -manuel duarte manuel joaquim -manuel duarte sweetbomber -Diego Martínez kaeza -Diego Martínez Diego Martinez -Lord James Lord89James -BlockMen Block Men -sfan5 Sfan5 -DannyDark dannydark -Ilya Pavlov Ilya -Ilya Zhuravlev xyzz -sapier sapier -sapier sapier - diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9d1600818..000000000 --- a/.travis.yml +++ /dev/null @@ -1,29 +0,0 @@ -language: cpp -compiler: - - gcc - - clang -os: - - osx - - linux -env: - - PLATFORM=Win32 - - PLATFORM=Win64 - - PLATFORM=Unix -before_install: ./util/travis/before_install.sh -script: ./util/travis/script.sh -sudo: required -notifications: - email: false -matrix: - fast_finish: true - exclude: - - env: PLATFORM=Win32 - compiler: clang - - env: PLATFORM=Win64 - compiler: clang - - env: PLATFORM=Win32 - os: osx - - env: PLATFORM=Win64 - os: osx - - compiler: gcc - os: osx diff --git a/CMakeCache.txt b/CMakeCache.txt new file mode 100644 index 000000000..54f4ca767 --- /dev/null +++ b/CMakeCache.txt @@ -0,0 +1,995 @@ +# This is the CMakeCache file. +# For build in directory: /home/foghrye4/minetest +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Build client +BUILD_CLIENT:BOOL=TRUE + +//Build server +BUILD_SERVER:BOOL=FALSE + +//Path to a file. +BZIP2_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +BZIP2_LIBRARY_DEBUG:FILEPATH=BZIP2_LIBRARY_DEBUG-NOTFOUND + +//Path to a library. +BZIP2_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libbz2.so + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build. Options are: None Debug SemiDebug RelWithDebInfo +// MinSizeRel. +CMAKE_BUILD_TYPE:STRING=Release + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the C++ compiler during semidebug builds. +CMAKE_CXX_FLAGS_SEMIDEBUG:STRING=-O1 -g -Wall -Wabi + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the C compiler during semidebug builds. +CMAKE_C_FLAGS_SEMIDEBUG:STRING=-O1 -g -Wall -pedantic + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=minetest + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If true, cmake will use relative paths in makefiles and projects. +CMAKE_USE_RELATIVE_PATHS:BOOL=OFF + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Path to a file. +CURL_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +CURL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libcurl.so + +//Path to a library. +CURSES_CURSES_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libcurses.so + +//Path to a library. +CURSES_FORM_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libform.so + +//Path to a file. +CURSES_INCLUDE_PATH:PATH=/usr/include + +//Path to libncursesw.so or .lib or .a +CURSES_NCURSESW_LIBRARY:FILEPATH=CURSES_NCURSESW_LIBRARY-NOTFOUND + +//Path to a library. +CURSES_NCURSES_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libncurses.so + +//Directory to install binaries into +CUSTOM_BINDIR:STRING= + +//Directory to install documentation into +CUSTOM_DOCDIR:STRING= + +//Directory to install example config file into +CUSTOM_EXAMPLE_CONF_DIR:STRING= + +//Directory to install icons into +CUSTOM_ICONDIR:STRING= + +//Directory to install l10n files into +CUSTOM_LOCALEDIR:STRING= + +//Directory to install manpages into +CUSTOM_MANDIR:STRING= + +//Directory to install data files into +CUSTOM_SHAREDIR:STRING= + +//Directory to install .desktop files into +CUSTOM_XDG_APPS_DIR:STRING= + +//Graphviz Dot tool for using Doxygen +DOXYGEN_DOT_EXECUTABLE:FILEPATH=DOXYGEN_DOT_EXECUTABLE-NOTFOUND + +//Doxygen documentation generation tool (http://www.doxygen.org) +DOXYGEN_EXECUTABLE:FILEPATH=/usr/bin/doxygen + +//Enable cURL support for fetching media +ENABLE_CURL:BOOL=ON + +//Enable ncurses console +ENABLE_CURSES:BOOL=ON + +//Enable FreeType2 (TrueType fonts and basic unicode support) +ENABLE_FREETYPE:BOOL=ON + +//Use GetText for internationalization +ENABLE_GETTEXT:BOOL=OFF + +//Enable OpenGL ES support +ENABLE_GLES:BOOL=OFF + +//Enable LevelDB backend +ENABLE_LEVELDB:BOOL=ON + +//Enable LuaJIT support +ENABLE_LUAJIT:BOOL=ON + +//Enable Redis backend +ENABLE_REDIS:BOOL=ON + +//Enable sound +ENABLE_SOUND:BOOL=ON + +//Enable SpatialIndex AreaStore backend +ENABLE_SPATIAL:BOOL=ON + +//Use GMP from system +ENABLE_SYSTEM_GMP:BOOL=ON + +//Enable using a system-wide JSONCPP. May cause segfaults and +// other memory errors! +ENABLE_SYSTEM_JSONCPP:BOOL=OFF + +//Path to a file. +FREETYPE_INCLUDE_DIR_freetype2:PATH=/usr/include/x86_64-linux-gnu/freetype2 + +//Path to a file. +FREETYPE_INCLUDE_DIR_ft2build:PATH=/usr/include/freetype2 + +//Path to a library. +FREETYPE_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libfreetype.so + +//Path to a file. +GMP_INCLUDE_DIR:PATH=/usr/include/x86_64-linux-gnu + +//Path to a library. +GMP_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libgmp.so + +//Path to a library. +ICONV_LIBRARY:FILEPATH=ICONV_LIBRARY-NOTFOUND + +//Path to a file. +IRRLICHT_INCLUDE_DIR:PATH=/usr/include/irrlicht + +//Path to a library. +IRRLICHT_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libIrrlicht.so + +//Path to irrlicht source directory (optional) +IRRLICHT_SOURCE_DIR:PATH= + +//Path to a file. +JPEG_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +JPEG_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libjpeg.so + +//Path to a file. +LEVELDB_INCLUDE_DIR:PATH=/usr/include/leveldb + +//Path to a library. +LEVELDB_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libleveldb.so + +//Path to a file. +LUA_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +LUA_LIBRARY:FILEPATH=/usr/local/lib/libluajit-5.1.so + +//Path to a file. +OGG_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +OGG_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libogg.so + +//Path to a file. +OPENAL_INCLUDE_DIR:PATH=/usr/include/AL + +//Path to a library. +OPENAL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libopenal.so + +//Path to a file. +OPENGL_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +OPENGL_gl_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libGL.so + +//Path to a library. +OPENGL_glu_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libGLU.so + +//Path to a file. +OPENGL_xmesa_INCLUDE_DIR:PATH=OPENGL_xmesa_INCLUDE_DIR-NOTFOUND + +//Path to a library. +PNG_LIBRARY_DEBUG:FILEPATH=PNG_LIBRARY_DEBUG-NOTFOUND + +//Path to a library. +PNG_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libpng.so + +//Path to a file. +PNG_PNG_INCLUDE_DIR:PATH=/usr/include + +//Path to a file. +REDIS_INCLUDE_DIR:PATH=/usr/include/hiredis + +//Path to a library. +REDIS_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libhiredis.so + +//Run directly in source directory structure +RUN_IN_PLACE:BOOL=TRUE + +//Path to a file. +SPATIAL_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +SPATIAL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libspatialindex.so + +//Path to a file. +SQLITE3_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +SQLITE3_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libsqlite3.so + +//Use -pg flag for g++ +USE_GPROF:BOOL=FALSE + +//Stuff to append to version string +VERSION_EXTRA:STRING= + +//Path to a library. +VORBISFILE_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libvorbisfile.so + +//Path to a file. +VORBIS_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +VORBIS_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libvorbis.so + +//Enable -Wall for Release build +WARN_ALL:BOOL=TRUE + +//Path to a file. +X11_ICE_INCLUDE_PATH:PATH=/usr/include + +//Path to a library. +X11_ICE_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libICE.so + +//Path to a file. +X11_SM_INCLUDE_PATH:PATH=/usr/include + +//Path to a library. +X11_SM_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libSM.so + +//Path to a file. +X11_X11_INCLUDE_PATH:PATH=/usr/include + +//Path to a library. +X11_X11_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libX11.so + +//Path to a file. +X11_XRes_INCLUDE_PATH:PATH=X11_XRes_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_XRes_LIB:FILEPATH=X11_XRes_LIB-NOTFOUND + +//Path to a file. +X11_XShm_INCLUDE_PATH:PATH=/usr/include + +//Path to a file. +X11_XSync_INCLUDE_PATH:PATH=/usr/include + +//Path to a file. +X11_XTest_INCLUDE_PATH:PATH=X11_XTest_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_XTest_LIB:FILEPATH=X11_XTest_LIB-NOTFOUND + +//Path to a file. +X11_Xaccessrules_INCLUDE_PATH:PATH=X11_Xaccessrules_INCLUDE_PATH-NOTFOUND + +//Path to a file. +X11_Xaccessstr_INCLUDE_PATH:PATH=/usr/include + +//Path to a file. +X11_Xau_INCLUDE_PATH:PATH=/usr/include + +//Path to a library. +X11_Xau_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXau.so + +//Path to a file. +X11_Xcomposite_INCLUDE_PATH:PATH=X11_Xcomposite_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xcomposite_LIB:FILEPATH=X11_Xcomposite_LIB-NOTFOUND + +//Path to a file. +X11_Xcursor_INCLUDE_PATH:PATH=X11_Xcursor_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xcursor_LIB:FILEPATH=X11_Xcursor_LIB-NOTFOUND + +//Path to a file. +X11_Xdamage_INCLUDE_PATH:PATH=/usr/include + +//Path to a library. +X11_Xdamage_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXdamage.so + +//Path to a file. +X11_Xdmcp_INCLUDE_PATH:PATH=/usr/include + +//Path to a library. +X11_Xdmcp_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXdmcp.so + +//Path to a library. +X11_Xext_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXext.so + +//Path to a file. +X11_Xfixes_INCLUDE_PATH:PATH=/usr/include + +//Path to a library. +X11_Xfixes_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXfixes.so + +//Path to a file. +X11_Xft_INCLUDE_PATH:PATH=X11_Xft_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xft_LIB:FILEPATH=X11_Xft_LIB-NOTFOUND + +//Path to a file. +X11_Xi_INCLUDE_PATH:PATH=X11_Xi_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xi_LIB:FILEPATH=X11_Xi_LIB-NOTFOUND + +//Path to a file. +X11_Xinerama_INCLUDE_PATH:PATH=X11_Xinerama_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xinerama_LIB:FILEPATH=X11_Xinerama_LIB-NOTFOUND + +//Path to a file. +X11_Xinput_INCLUDE_PATH:PATH=X11_Xinput_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xinput_LIB:FILEPATH=X11_Xinput_LIB-NOTFOUND + +//Path to a file. +X11_Xkb_INCLUDE_PATH:PATH=/usr/include + +//Path to a file. +X11_Xkbfile_INCLUDE_PATH:PATH=X11_Xkbfile_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xkbfile_LIB:FILEPATH=X11_Xkbfile_LIB-NOTFOUND + +//Path to a file. +X11_Xkblib_INCLUDE_PATH:PATH=/usr/include + +//Path to a file. +X11_Xlib_INCLUDE_PATH:PATH=/usr/include + +//Path to a file. +X11_Xmu_INCLUDE_PATH:PATH=X11_Xmu_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xmu_LIB:FILEPATH=X11_Xmu_LIB-NOTFOUND + +//Path to a file. +X11_Xpm_INCLUDE_PATH:PATH=X11_Xpm_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xpm_LIB:FILEPATH=X11_Xpm_LIB-NOTFOUND + +//Path to a file. +X11_Xrandr_INCLUDE_PATH:PATH=X11_Xrandr_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xrandr_LIB:FILEPATH=X11_Xrandr_LIB-NOTFOUND + +//Path to a file. +X11_Xrender_INCLUDE_PATH:PATH=X11_Xrender_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xrender_LIB:FILEPATH=X11_Xrender_LIB-NOTFOUND + +//Path to a file. +X11_Xscreensaver_INCLUDE_PATH:PATH=X11_Xscreensaver_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xscreensaver_LIB:FILEPATH=X11_Xscreensaver_LIB-NOTFOUND + +//Path to a file. +X11_Xshape_INCLUDE_PATH:PATH=/usr/include + +//Path to a file. +X11_Xt_INCLUDE_PATH:PATH=X11_Xt_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xt_LIB:FILEPATH=X11_Xt_LIB-NOTFOUND + +//Path to a file. +X11_Xutil_INCLUDE_PATH:PATH=/usr/include + +//Path to a file. +X11_Xv_INCLUDE_PATH:PATH=X11_Xv_INCLUDE_PATH-NOTFOUND + +//Path to a library. +X11_Xv_LIB:FILEPATH=X11_Xv_LIB-NOTFOUND + +//Path to a library. +X11_Xxf86misc_LIB:FILEPATH=X11_Xxf86misc_LIB-NOTFOUND + +//Path to a library. +X11_Xxf86vm_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXxf86vm.so + +//Path to a file. +X11_dpms_INCLUDE_PATH:PATH=/usr/include + +//Path to a file. +X11_xf86misc_INCLUDE_PATH:PATH=X11_xf86misc_INCLUDE_PATH-NOTFOUND + +//Path to a file. +X11_xf86vmode_INCLUDE_PATH:PATH=/usr/include + +//Path to a library. +XXF86VM_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libXxf86vm.so + +//Path to a file. +ZLIB_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +ZLIB_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libz.so + +//Dependencies for the target +cguittfont_LIB_DEPENDS:STATIC=general;/usr/lib/x86_64-linux-gnu/libIrrlicht.so;general;/usr/lib/x86_64-linux-gnu/libfreetype.so;general;/usr/lib/x86_64-linux-gnu/libz.so; + +//Dependencies for target +jsoncpp_LIB_DEPENDS:STATIC= + +//Value Computed by CMake +minetest_BINARY_DIR:STATIC=/home/foghrye4/minetest/src + +//Value Computed by CMake +minetest_SOURCE_DIR:STATIC=/home/foghrye4/minetest/src + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: BZIP2_INCLUDE_DIR +BZIP2_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: BZIP2_LIBRARY_DEBUG +BZIP2_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: BZIP2_LIBRARY_RELEASE +BZIP2_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//Have library /usr/lib/x86_64-linux-gnu/libbz2.so +BZIP2_NEED_PREFIX:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/foghrye4/minetest +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=2 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_SEMIDEBUG +CMAKE_CXX_FLAGS_SEMIDEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_SEMIDEBUG +CMAKE_C_FLAGS_SEMIDEBUG-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Have function connect +CMAKE_HAVE_CONNECT:INTERNAL=1 +//Have function gethostbyname +CMAKE_HAVE_GETHOSTBYNAME:INTERNAL=1 +//Have function remove +CMAKE_HAVE_REMOVE:INTERNAL=1 +//Have function shmat +CMAKE_HAVE_SHMAT:INTERNAL=1 +//Start directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/foghrye4/minetest +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//Have library ICE +CMAKE_LIB_ICE_HAS_ICECONNECTIONNUMBER:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=13 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.2 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS +CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CURL_INCLUDE_DIR +CURL_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CURL_LIBRARY +CURL_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CURSES_CURSES_LIBRARY +CURSES_CURSES_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CURSES_FORM_LIBRARY +CURSES_FORM_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CURSES_INCLUDE_PATH +CURSES_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CURSES_NCURSESW_LIBRARY +CURSES_NCURSESW_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CURSES_NCURSES_LIBRARY +CURSES_NCURSES_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: DOXYGEN_DOT_EXECUTABLE +DOXYGEN_DOT_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: DOXYGEN_EXECUTABLE +DOXYGEN_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ENABLE_GLES +ENABLE_GLES-ADVANCED:INTERNAL=1 +//Details about finding BZip2 +FIND_PACKAGE_MESSAGE_DETAILS_BZip2:INTERNAL=[/usr/lib/x86_64-linux-gnu/libbz2.so][/usr/include][v1.0.6()] +//Details about finding CURL +FIND_PACKAGE_MESSAGE_DETAILS_CURL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libcurl.so][/usr/include][v()] +//Details about finding Curses +FIND_PACKAGE_MESSAGE_DETAILS_Curses:INTERNAL=[/usr/lib/x86_64-linux-gnu/libcurses.so][/usr/include][v()] +//Details about finding Doxygen +FIND_PACKAGE_MESSAGE_DETAILS_Doxygen:INTERNAL=[/usr/bin/doxygen][v1.8.9.1()] +//Details about finding Freetype +FIND_PACKAGE_MESSAGE_DETAILS_Freetype:INTERNAL=[/usr/lib/x86_64-linux-gnu/libfreetype.so][/usr/include/freetype2;/usr/include/x86_64-linux-gnu/freetype2][v()] +//Details about finding GMP +FIND_PACKAGE_MESSAGE_DETAILS_GMP:INTERNAL=[/usr/lib/x86_64-linux-gnu/libgmp.so][/usr/include/x86_64-linux-gnu][v()] +//Details about finding Irrlicht +FIND_PACKAGE_MESSAGE_DETAILS_Irrlicht:INTERNAL=[/usr/lib/x86_64-linux-gnu/libIrrlicht.so][/usr/include/irrlicht][v()] +//Details about finding JPEG +FIND_PACKAGE_MESSAGE_DETAILS_JPEG:INTERNAL=[/usr/lib/x86_64-linux-gnu/libjpeg.so][/usr/include][v()] +//Details about finding LuaJit +FIND_PACKAGE_MESSAGE_DETAILS_LuaJit:INTERNAL=[/usr/local/lib/libluajit-5.1.so][/usr/include][v()] +//Details about finding OpenAL +FIND_PACKAGE_MESSAGE_DETAILS_OpenAL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libopenal.so][/usr/include/AL][v()] +//Details about finding OpenGL +FIND_PACKAGE_MESSAGE_DETAILS_OpenGL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libGL.so][/usr/include][v()] +//Details about finding PNG +FIND_PACKAGE_MESSAGE_DETAILS_PNG:INTERNAL=[/usr/lib/x86_64-linux-gnu/libpng.so][/usr/include][v1.2.51()] +//Details about finding SQLite3 +FIND_PACKAGE_MESSAGE_DETAILS_SQLite3:INTERNAL=[/usr/lib/x86_64-linux-gnu/libsqlite3.so][/usr/include][v()] +//Details about finding VORBIS +FIND_PACKAGE_MESSAGE_DETAILS_VORBIS:INTERNAL=[/usr/include][/usr/include][/usr/lib/x86_64-linux-gnu/libogg.so][/usr/lib/x86_64-linux-gnu/libvorbis.so][/usr/lib/x86_64-linux-gnu/libvorbisfile.so][v()] +//Details about finding X11 +FIND_PACKAGE_MESSAGE_DETAILS_X11:INTERNAL=[/usr/lib/x86_64-linux-gnu/libX11.so][/usr/include] +//Details about finding ZLIB +FIND_PACKAGE_MESSAGE_DETAILS_ZLIB:INTERNAL=[/usr/lib/x86_64-linux-gnu/libz.so][/usr/include][v1.2.8()] +//ADVANCED property for variable: FREETYPE_INCLUDE_DIR_freetype2 +FREETYPE_INCLUDE_DIR_freetype2-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: FREETYPE_INCLUDE_DIR_ft2build +FREETYPE_INCLUDE_DIR_ft2build-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: FREETYPE_LIBRARY +FREETYPE_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GMP_INCLUDE_DIR +GMP_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GMP_LIBRARY +GMP_LIBRARY-ADVANCED:INTERNAL=1 +//Have include endian.h +HAVE_ENDIAN_H:INTERNAL=1 +//ADVANCED property for variable: ICONV_LIBRARY +ICONV_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: IRRLICHT_INCLUDE_DIR +IRRLICHT_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: IRRLICHT_LIBRARY +IRRLICHT_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: JPEG_INCLUDE_DIR +JPEG_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: JPEG_LIBRARY +JPEG_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: LUA_INCLUDE_DIR +LUA_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: LUA_LIBRARY +LUA_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OGG_INCLUDE_DIR +OGG_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OGG_LIBRARY +OGG_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENAL_INCLUDE_DIR +OPENAL_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENAL_LIBRARY +OPENAL_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_INCLUDE_DIR +OPENGL_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_gl_LIBRARY +OPENGL_gl_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_glu_LIBRARY +OPENGL_glu_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_xmesa_INCLUDE_DIR +OPENGL_xmesa_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PNG_LIBRARY_DEBUG +PNG_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PNG_LIBRARY_RELEASE +PNG_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PNG_PNG_INCLUDE_DIR +PNG_PNG_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: SQLITE3_INCLUDE_DIR +SQLITE3_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: SQLITE3_LIBRARY +SQLITE3_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: VORBISFILE_LIBRARY +VORBISFILE_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: VORBIS_INCLUDE_DIR +VORBIS_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: VORBIS_LIBRARY +VORBIS_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_ICE_INCLUDE_PATH +X11_ICE_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_ICE_LIB +X11_ICE_LIB-ADVANCED:INTERNAL=1 +//Have library /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so +X11_LIB_X11_SOLO:INTERNAL=1 +//ADVANCED property for variable: X11_SM_INCLUDE_PATH +X11_SM_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_SM_LIB +X11_SM_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_X11_INCLUDE_PATH +X11_X11_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_X11_LIB +X11_X11_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_XRes_INCLUDE_PATH +X11_XRes_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_XRes_LIB +X11_XRes_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_XShm_INCLUDE_PATH +X11_XShm_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_XSync_INCLUDE_PATH +X11_XSync_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_XTest_INCLUDE_PATH +X11_XTest_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_XTest_LIB +X11_XTest_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xaccessrules_INCLUDE_PATH +X11_Xaccessrules_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xaccessstr_INCLUDE_PATH +X11_Xaccessstr_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xau_INCLUDE_PATH +X11_Xau_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xau_LIB +X11_Xau_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xcomposite_INCLUDE_PATH +X11_Xcomposite_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xcomposite_LIB +X11_Xcomposite_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xcursor_INCLUDE_PATH +X11_Xcursor_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xcursor_LIB +X11_Xcursor_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xdamage_INCLUDE_PATH +X11_Xdamage_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xdamage_LIB +X11_Xdamage_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xdmcp_INCLUDE_PATH +X11_Xdmcp_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xdmcp_LIB +X11_Xdmcp_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xext_LIB +X11_Xext_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xfixes_INCLUDE_PATH +X11_Xfixes_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xfixes_LIB +X11_Xfixes_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xft_INCLUDE_PATH +X11_Xft_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xft_LIB +X11_Xft_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xi_INCLUDE_PATH +X11_Xi_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xi_LIB +X11_Xi_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xinerama_INCLUDE_PATH +X11_Xinerama_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xinerama_LIB +X11_Xinerama_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xinput_INCLUDE_PATH +X11_Xinput_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xinput_LIB +X11_Xinput_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xkb_INCLUDE_PATH +X11_Xkb_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xkbfile_INCLUDE_PATH +X11_Xkbfile_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xkbfile_LIB +X11_Xkbfile_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xkblib_INCLUDE_PATH +X11_Xkblib_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xlib_INCLUDE_PATH +X11_Xlib_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xmu_INCLUDE_PATH +X11_Xmu_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xmu_LIB +X11_Xmu_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xpm_INCLUDE_PATH +X11_Xpm_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xpm_LIB +X11_Xpm_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xrandr_INCLUDE_PATH +X11_Xrandr_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xrandr_LIB +X11_Xrandr_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xrender_INCLUDE_PATH +X11_Xrender_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xrender_LIB +X11_Xrender_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xscreensaver_INCLUDE_PATH +X11_Xscreensaver_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xscreensaver_LIB +X11_Xscreensaver_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xshape_INCLUDE_PATH +X11_Xshape_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xt_INCLUDE_PATH +X11_Xt_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xt_LIB +X11_Xt_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xutil_INCLUDE_PATH +X11_Xutil_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xv_INCLUDE_PATH +X11_Xv_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xv_LIB +X11_Xv_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xxf86misc_LIB +X11_Xxf86misc_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_Xxf86vm_LIB +X11_Xxf86vm_LIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_dpms_INCLUDE_PATH +X11_dpms_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_xf86misc_INCLUDE_PATH +X11_xf86misc_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: X11_xf86vmode_INCLUDE_PATH +X11_xf86vmode_INCLUDE_PATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: XXF86VM_LIBRARY +XXF86VM_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ZLIB_INCLUDE_DIR +ZLIB_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ZLIB_LIBRARY +ZLIB_LIBRARY-ADVANCED:INTERNAL=1 + diff --git a/CMakeFiles/3.2.2/CMakeCCompiler.cmake b/CMakeFiles/3.2.2/CMakeCCompiler.cmake new file mode 100644 index 000000000..f32cca203 --- /dev/null +++ b/CMakeFiles/3.2.2/CMakeCCompiler.cmake @@ -0,0 +1,63 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "5.2.1") +set(CMAKE_C_COMPILE_FEATURES "c_function_prototypes;c_restrict;c_variadic_macros;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_static_assert") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + + + + +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "c") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") + + + diff --git a/CMakeFiles/3.2.2/CMakeCXXCompiler.cmake b/CMakeFiles/3.2.2/CMakeCXXCompiler.cmake new file mode 100644 index 000000000..a0ce6bd0e --- /dev/null +++ b/CMakeFiles/3.2.2/CMakeCXXCompiler.cmake @@ -0,0 +1,64 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "5.2.1") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_template_template_parameters;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + + + + +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;c") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") + + + diff --git a/CMakeFiles/3.2.2/CMakeDetermineCompilerABI_C.bin b/CMakeFiles/3.2.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 000000000..f5c1ca56e Binary files /dev/null and b/CMakeFiles/3.2.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/CMakeFiles/3.2.2/CMakeDetermineCompilerABI_CXX.bin b/CMakeFiles/3.2.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 000000000..235c7db47 Binary files /dev/null and b/CMakeFiles/3.2.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/CMakeFiles/3.2.2/CMakeSystem.cmake b/CMakeFiles/3.2.2/CMakeSystem.cmake new file mode 100644 index 000000000..274636a06 --- /dev/null +++ b/CMakeFiles/3.2.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-4.2.0-35-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "4.2.0-35-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-4.2.0-35-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "4.2.0-35-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/CMakeFiles/3.2.2/CompilerIdC/CMakeCCompilerId.c b/CMakeFiles/3.2.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 000000000..cf01596c4 --- /dev/null +++ b/CMakeFiles/3.2.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,499 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" + +#elif defined(SDCC) +# define COMPILER_ID "SDCC" + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID "" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM) +# define ARCHITECTURE_ID "ARM" + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif + (void)argv; + return require; +} +#endif diff --git a/CMakeFiles/3.2.2/CompilerIdC/a.out b/CMakeFiles/3.2.2/CompilerIdC/a.out new file mode 100755 index 000000000..a88a7fb00 Binary files /dev/null and b/CMakeFiles/3.2.2/CompilerIdC/a.out differ diff --git a/CMakeFiles/3.2.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/CMakeFiles/3.2.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 000000000..8c848912a --- /dev/null +++ b/CMakeFiles/3.2.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,489 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID "" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM) +# define ARCHITECTURE_ID "ARM" + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif + (void)argv; + return require; +} diff --git a/CMakeFiles/3.2.2/CompilerIdCXX/a.out b/CMakeFiles/3.2.2/CompilerIdCXX/a.out new file mode 100755 index 000000000..525efa12a Binary files /dev/null and b/CMakeFiles/3.2.2/CompilerIdCXX/a.out differ diff --git a/CMakeFiles/CMakeDirectoryInformation.cmake b/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..885c613d6 --- /dev/null +++ b/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.2 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/foghrye4/minetest") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/foghrye4/minetest") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/CMakeFiles/CMakeOutput.log b/CMakeFiles/CMakeOutput.log new file mode 100644 index 000000000..6e88688e5 --- /dev/null +++ b/CMakeFiles/CMakeOutput.log @@ -0,0 +1,686 @@ +The system is: Linux - 4.2.0-35-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/foghrye4/minetest/CMakeFiles/3.2.2/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/foghrye4/minetest/CMakeFiles/3.2.2/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec1132849819/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1132849819.dir/build.make CMakeFiles/cmTryCompileExec1132849819.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1132849819.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTryCompileExec1132849819.dir/testCCompiler.c.o -c /home/foghrye4/minetest/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTryCompileExec1132849819 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1132849819.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTryCompileExec1132849819.dir/testCCompiler.c.o -o cmTryCompileExec1132849819 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec3193539673/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec3193539673.dir/build.make CMakeFiles/cmTryCompileExec3193539673.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec3193539673.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -o CMakeFiles/cmTryCompileExec3193539673.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.2/Modules/CMakeCCompilerABI.c +Linking C executable cmTryCompileExec3193539673 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3193539673.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTryCompileExec3193539673.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec3193539673 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.2.1-22ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3193539673' '-rdynamic' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccaPgNw3.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3193539673 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTryCompileExec3193539673.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTryCompileExec3193539673/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec3193539673.dir/build.make CMakeFiles/cmTryCompileExec3193539673.dir/build] + ignore line: [make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building C object CMakeFiles/cmTryCompileExec3193539673.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -o CMakeFiles/cmTryCompileExec3193539673.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.2/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTryCompileExec3193539673] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3193539673.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTryCompileExec3193539673.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec3193539673 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.2.1-22ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3193539673' '-rdynamic' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccaPgNw3.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3193539673 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTryCompileExec3193539673.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccaPgNw3.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec3193539673] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTryCompileExec3193539673.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec3143275397/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec3143275397.dir/build.make CMakeFiles/cmTryCompileExec3143275397.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec3143275397.dir/feature_tests.c.o +/usr/bin/cc -std=c11 -o CMakeFiles/cmTryCompileExec3143275397.dir/feature_tests.c.o -c /home/foghrye4/minetest/CMakeFiles/feature_tests.c +Linking C executable cmTryCompileExec3143275397 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3143275397.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTryCompileExec3143275397.dir/feature_tests.c.o -o cmTryCompileExec3143275397 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec2736326126/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2736326126.dir/build.make CMakeFiles/cmTryCompileExec2736326126.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec2736326126.dir/feature_tests.c.o +/usr/bin/cc -std=c99 -o CMakeFiles/cmTryCompileExec2736326126.dir/feature_tests.c.o -c /home/foghrye4/minetest/CMakeFiles/feature_tests.c +Linking C executable cmTryCompileExec2736326126 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2736326126.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTryCompileExec2736326126.dir/feature_tests.c.o -o cmTryCompileExec2736326126 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec2841156319/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2841156319.dir/build.make CMakeFiles/cmTryCompileExec2841156319.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec2841156319.dir/feature_tests.c.o +/usr/bin/cc -std=c90 -o CMakeFiles/cmTryCompileExec2841156319.dir/feature_tests.c.o -c /home/foghrye4/minetest/CMakeFiles/feature_tests.c +Linking C executable cmTryCompileExec2841156319 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2841156319.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTryCompileExec2841156319.dir/feature_tests.c.o -o cmTryCompileExec2841156319 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec350456110/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec350456110.dir/build.make CMakeFiles/cmTryCompileExec350456110.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec350456110.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec350456110.dir/testCXXCompiler.cxx.o -c /home/foghrye4/minetest/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTryCompileExec350456110 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec350456110.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec350456110.dir/testCXXCompiler.cxx.o -o cmTryCompileExec350456110 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec3466718232/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec3466718232.dir/build.make CMakeFiles/cmTryCompileExec3466718232.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec3466718232.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec3466718232.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.2/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTryCompileExec3466718232 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3466718232.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTryCompileExec3466718232.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec3466718232 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.2.1-22ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3466718232' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccYF5fUJ.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3466718232 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTryCompileExec3466718232.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTryCompileExec3466718232/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec3466718232.dir/build.make CMakeFiles/cmTryCompileExec3466718232.dir/build] + ignore line: [make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building CXX object CMakeFiles/cmTryCompileExec3466718232.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec3466718232.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.2/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTryCompileExec3466718232] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3466718232.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec3466718232.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec3466718232 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.2.1-22ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3466718232' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccYF5fUJ.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3466718232 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTryCompileExec3466718232.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccYF5fUJ.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec3466718232] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTryCompileExec3466718232.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec113439068/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec113439068.dir/build.make CMakeFiles/cmTryCompileExec113439068.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec113439068.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTryCompileExec113439068.dir/feature_tests.cxx.o -c /home/foghrye4/minetest/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTryCompileExec113439068 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec113439068.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec113439068.dir/feature_tests.cxx.o -o cmTryCompileExec113439068 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec2580767947/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2580767947.dir/build.make CMakeFiles/cmTryCompileExec2580767947.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec2580767947.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTryCompileExec2580767947.dir/feature_tests.cxx.o -c /home/foghrye4/minetest/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTryCompileExec2580767947 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2580767947.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec2580767947.dir/feature_tests.cxx.o -o cmTryCompileExec2580767947 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec749823235/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec749823235.dir/build.make CMakeFiles/cmTryCompileExec749823235.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec749823235.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTryCompileExec749823235.dir/feature_tests.cxx.o -c /home/foghrye4/minetest/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTryCompileExec749823235 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec749823235.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec749823235.dir/feature_tests.cxx.o -o cmTryCompileExec749823235 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates +Determining if the function XOpenDisplay exists in the /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec1232054095/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1232054095.dir/build.make CMakeFiles/cmTryCompileExec1232054095.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1232054095.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=XOpenDisplay -o CMakeFiles/cmTryCompileExec1232054095.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.2/Modules/CheckFunctionExists.c +Linking C executable cmTryCompileExec1232054095 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1232054095.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=XOpenDisplay CMakeFiles/cmTryCompileExec1232054095.dir/CheckFunctionExists.c.o -o cmTryCompileExec1232054095 -rdynamic -lX11 -lXext +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Determining if the function gethostbyname exists passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec1367161622/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1367161622.dir/build.make CMakeFiles/cmTryCompileExec1367161622.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1367161622.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=gethostbyname -o CMakeFiles/cmTryCompileExec1367161622.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.2/Modules/CheckFunctionExists.c +Linking C executable cmTryCompileExec1367161622 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1367161622.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=gethostbyname CMakeFiles/cmTryCompileExec1367161622.dir/CheckFunctionExists.c.o -o cmTryCompileExec1367161622 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Determining if the function connect exists passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec4167715552/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec4167715552.dir/build.make CMakeFiles/cmTryCompileExec4167715552.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec4167715552.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=connect -o CMakeFiles/cmTryCompileExec4167715552.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.2/Modules/CheckFunctionExists.c +Linking C executable cmTryCompileExec4167715552 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4167715552.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=connect CMakeFiles/cmTryCompileExec4167715552.dir/CheckFunctionExists.c.o -o cmTryCompileExec4167715552 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Determining if the function remove exists passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec3425693365/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec3425693365.dir/build.make CMakeFiles/cmTryCompileExec3425693365.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec3425693365.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=remove -o CMakeFiles/cmTryCompileExec3425693365.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.2/Modules/CheckFunctionExists.c +Linking C executable cmTryCompileExec3425693365 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3425693365.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=remove CMakeFiles/cmTryCompileExec3425693365.dir/CheckFunctionExists.c.o -o cmTryCompileExec3425693365 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Determining if the function shmat exists passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec99721085/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec99721085.dir/build.make CMakeFiles/cmTryCompileExec99721085.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec99721085.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=shmat -o CMakeFiles/cmTryCompileExec99721085.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.2/Modules/CheckFunctionExists.c +Linking C executable cmTryCompileExec99721085 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec99721085.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=shmat CMakeFiles/cmTryCompileExec99721085.dir/CheckFunctionExists.c.o -o cmTryCompileExec99721085 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Determining if the function IceConnectionNumber exists in the ICE passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec1821427664/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1821427664.dir/build.make CMakeFiles/cmTryCompileExec1821427664.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1821427664.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=IceConnectionNumber -o CMakeFiles/cmTryCompileExec1821427664.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.2/Modules/CheckFunctionExists.c +Linking C executable cmTryCompileExec1821427664 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1821427664.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=IceConnectionNumber CMakeFiles/cmTryCompileExec1821427664.dir/CheckFunctionExists.c.o -o cmTryCompileExec1821427664 -rdynamic -lICE +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Determining if the function BZ2_bzCompressInit exists in the /usr/lib/x86_64-linux-gnu/libbz2.so passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec13401149/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec13401149.dir/build.make CMakeFiles/cmTryCompileExec13401149.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec13401149.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=BZ2_bzCompressInit -o CMakeFiles/cmTryCompileExec13401149.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.2/Modules/CheckFunctionExists.c +Linking C executable cmTryCompileExec13401149 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec13401149.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=BZ2_bzCompressInit CMakeFiles/cmTryCompileExec13401149.dir/CheckFunctionExists.c.o -o cmTryCompileExec13401149 -rdynamic -lbz2 +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + +Determining if files endian.h exist passed with the following output: +Change Dir: /home/foghrye4/minetest/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTryCompileExec880625639/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec880625639.dir/build.make CMakeFiles/cmTryCompileExec880625639.dir/build +make[1]: Entering directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec880625639.dir/CheckIncludeFiles.c.o +/usr/bin/cc -o CMakeFiles/cmTryCompileExec880625639.dir/CheckIncludeFiles.c.o -c /home/foghrye4/minetest/CMakeFiles/CMakeTmp/CheckIncludeFiles.c +Linking C executable cmTryCompileExec880625639 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec880625639.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTryCompileExec880625639.dir/CheckIncludeFiles.c.o -o cmTryCompileExec880625639 -rdynamic +make[1]: Leaving directory '/home/foghrye4/minetest/CMakeFiles/CMakeTmp' + + diff --git a/CMakeFiles/CMakeRuleHashes.txt b/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 000000000..e7ac35fc2 --- /dev/null +++ b/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,3 @@ +# Hashes of file build rules. +5a58265d456fa5d72f0e0887026d98f8 CMakeFiles/doc +a1ee9eeecb06fbc2a2f768df33416ae1 src/CMakeFiles/GenerateVersion diff --git a/CMakeFiles/Makefile.cmake b/CMakeFiles/Makefile.cmake new file mode 100644 index 000000000..286f49d2e --- /dev/null +++ b/CMakeFiles/Makefile.cmake @@ -0,0 +1,109 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.2 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "CMakeFiles/3.2.2/CMakeCCompiler.cmake" + "CMakeFiles/3.2.2/CMakeCXXCompiler.cmake" + "CMakeFiles/3.2.2/CMakeSystem.cmake" + "CMakeLists.txt" + "cmake/Modules/FindCURL.cmake" + "cmake/Modules/FindGMP.cmake" + "cmake/Modules/FindIrrlicht.cmake" + "cmake/Modules/FindJson.cmake" + "cmake/Modules/FindLuaJIT.cmake" + "cmake/Modules/FindNcursesw.cmake" + "cmake/Modules/FindSQLite3.cmake" + "cmake/Modules/FindVorbis.cmake" + "doc/Doxyfile.in" + "src/CMakeLists.txt" + "src/cguittfont/CMakeLists.txt" + "src/client/CMakeLists.txt" + "src/cmake_config.h.in" + "src/json/CMakeLists.txt" + "src/network/CMakeLists.txt" + "src/script/CMakeLists.txt" + "src/script/common/CMakeLists.txt" + "src/script/cpp_api/CMakeLists.txt" + "src/script/lua_api/CMakeLists.txt" + "src/threading/CMakeLists.txt" + "src/unittest/CMakeLists.txt" + "src/util/CMakeLists.txt" + "/usr/share/cmake-3.2/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.2/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.2/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/usr/share/cmake-3.2/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.2/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.2/Modules/CMakeParseArguments.cmake" + "/usr/share/cmake-3.2/Modules/CMakePushCheckState.cmake" + "/usr/share/cmake-3.2/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.2/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.2/Modules/CPack.cmake" + "/usr/share/cmake-3.2/Modules/CPackComponent.cmake" + "/usr/share/cmake-3.2/Modules/CheckCXXCompilerFlag.cmake" + "/usr/share/cmake-3.2/Modules/CheckCXXSourceCompiles.cmake" + "/usr/share/cmake-3.2/Modules/CheckFunctionExists.cmake" + "/usr/share/cmake-3.2/Modules/CheckIncludeFiles.cmake" + "/usr/share/cmake-3.2/Modules/CheckLibraryExists.cmake" + "/usr/share/cmake-3.2/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.2/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.2/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.2/Modules/FindBZip2.cmake" + "/usr/share/cmake-3.2/Modules/FindCurses.cmake" + "/usr/share/cmake-3.2/Modules/FindDoxygen.cmake" + "/usr/share/cmake-3.2/Modules/FindFreetype.cmake" + "/usr/share/cmake-3.2/Modules/FindJPEG.cmake" + "/usr/share/cmake-3.2/Modules/FindOpenAL.cmake" + "/usr/share/cmake-3.2/Modules/FindOpenGL.cmake" + "/usr/share/cmake-3.2/Modules/FindPNG.cmake" + "/usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.2/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.2/Modules/FindX11.cmake" + "/usr/share/cmake-3.2/Modules/FindZLIB.cmake" + "/usr/share/cmake-3.2/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.2/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.2/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.2/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.2/Modules/Platform/UnixPaths.cmake" + "/usr/share/cmake-3.2/Modules/SelectLibraryConfigurations.cmake" + "/usr/share/cmake-3.2/Templates/CPackConfig.cmake.in" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CPackConfig.cmake" + "CPackSourceConfig.cmake" + "doc/Doxyfile" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "src/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/json/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/threading/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/network/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/script/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/script/common/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/script/cpp_api/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/script/lua_api/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/unittest/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/util/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/client/CMakeFiles/CMakeDirectoryInformation.cmake" + "src/cguittfont/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/doc.dir/DependInfo.cmake" + "src/CMakeFiles/minetest.dir/DependInfo.cmake" + "src/CMakeFiles/GenerateVersion.dir/DependInfo.cmake" + "src/json/CMakeFiles/jsoncpp.dir/DependInfo.cmake" + "src/cguittfont/CMakeFiles/cguittfont.dir/DependInfo.cmake" + ) diff --git a/CMakeFiles/Makefile2 b/CMakeFiles/Makefile2 new file mode 100644 index 000000000..a58dbad55 --- /dev/null +++ b/CMakeFiles/Makefile2 @@ -0,0 +1,443 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.2 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# The main recursive all target +all: +.PHONY : all + +# The main recursive preinstall target +preinstall: +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/foghrye4/minetest + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/foghrye4/minetest + +#============================================================================= +# Target rules for target CMakeFiles/doc.dir + +# All Build rule for target. +CMakeFiles/doc.dir/all: + $(MAKE) -f CMakeFiles/doc.dir/build.make CMakeFiles/doc.dir/depend + $(MAKE) -f CMakeFiles/doc.dir/build.make CMakeFiles/doc.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles 1 + @echo "Built target doc" +.PHONY : CMakeFiles/doc.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/doc.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 1 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/doc.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 0 +.PHONY : CMakeFiles/doc.dir/rule + +# Convenience name for target. +doc: CMakeFiles/doc.dir/rule +.PHONY : doc + +# clean rule for target. +CMakeFiles/doc.dir/clean: + $(MAKE) -f CMakeFiles/doc.dir/build.make CMakeFiles/doc.dir/clean +.PHONY : CMakeFiles/doc.dir/clean + +# clean rule for target. +clean: CMakeFiles/doc.dir/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory src + +# Convenience name for "all" pass in the directory. +src/all: src/CMakeFiles/minetest.dir/all +src/all: src/json/all +src/all: src/threading/all +src/all: src/network/all +src/all: src/script/all +src/all: src/unittest/all +src/all: src/util/all +src/all: src/client/all +src/all: src/cguittfont/all +.PHONY : src/all + +# Convenience name for "clean" pass in the directory. +src/clean: src/CMakeFiles/GenerateVersion.dir/clean +src/clean: src/CMakeFiles/minetest.dir/clean +src/clean: src/json/clean +src/clean: src/threading/clean +src/clean: src/network/clean +src/clean: src/script/clean +src/clean: src/unittest/clean +src/clean: src/util/clean +src/clean: src/client/clean +src/clean: src/cguittfont/clean +.PHONY : src/clean + +# Convenience name for "preinstall" pass in the directory. +src/preinstall: src/json/preinstall +src/preinstall: src/threading/preinstall +src/preinstall: src/network/preinstall +src/preinstall: src/script/preinstall +src/preinstall: src/unittest/preinstall +src/preinstall: src/util/preinstall +src/preinstall: src/client/preinstall +src/preinstall: src/cguittfont/preinstall +.PHONY : src/preinstall + +#============================================================================= +# Target rules for target src/CMakeFiles/GenerateVersion.dir + +# All Build rule for target. +src/CMakeFiles/GenerateVersion.dir/all: + $(MAKE) -f src/CMakeFiles/GenerateVersion.dir/build.make src/CMakeFiles/GenerateVersion.dir/depend + $(MAKE) -f src/CMakeFiles/GenerateVersion.dir/build.make src/CMakeFiles/GenerateVersion.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles + @echo "Built target GenerateVersion" +.PHONY : src/CMakeFiles/GenerateVersion.dir/all + +# Build rule for subdir invocation for target. +src/CMakeFiles/GenerateVersion.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 src/CMakeFiles/GenerateVersion.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 0 +.PHONY : src/CMakeFiles/GenerateVersion.dir/rule + +# Convenience name for target. +GenerateVersion: src/CMakeFiles/GenerateVersion.dir/rule +.PHONY : GenerateVersion + +# clean rule for target. +src/CMakeFiles/GenerateVersion.dir/clean: + $(MAKE) -f src/CMakeFiles/GenerateVersion.dir/build.make src/CMakeFiles/GenerateVersion.dir/clean +.PHONY : src/CMakeFiles/GenerateVersion.dir/clean + +# clean rule for target. +clean: src/CMakeFiles/GenerateVersion.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target src/CMakeFiles/minetest.dir + +# All Build rule for target. +src/CMakeFiles/minetest.dir/all: src/CMakeFiles/GenerateVersion.dir/all +src/CMakeFiles/minetest.dir/all: src/json/CMakeFiles/jsoncpp.dir/all +src/CMakeFiles/minetest.dir/all: src/cguittfont/CMakeFiles/cguittfont.dir/all + $(MAKE) -f src/CMakeFiles/minetest.dir/build.make src/CMakeFiles/minetest.dir/depend + $(MAKE) -f src/CMakeFiles/minetest.dir/build.make src/CMakeFiles/minetest.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles 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 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 + @echo "Built target minetest" +.PHONY : src/CMakeFiles/minetest.dir/all + +# Include target in all. +all: src/CMakeFiles/minetest.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +src/CMakeFiles/minetest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 99 + $(MAKE) -f CMakeFiles/Makefile2 src/CMakeFiles/minetest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 0 +.PHONY : src/CMakeFiles/minetest.dir/rule + +# Convenience name for target. +minetest: src/CMakeFiles/minetest.dir/rule +.PHONY : minetest + +# clean rule for target. +src/CMakeFiles/minetest.dir/clean: + $(MAKE) -f src/CMakeFiles/minetest.dir/build.make src/CMakeFiles/minetest.dir/clean +.PHONY : src/CMakeFiles/minetest.dir/clean + +# clean rule for target. +clean: src/CMakeFiles/minetest.dir/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory src/json + +# Convenience name for "all" pass in the directory. +src/json/all: src/json/CMakeFiles/jsoncpp.dir/all +.PHONY : src/json/all + +# Convenience name for "clean" pass in the directory. +src/json/clean: src/json/CMakeFiles/jsoncpp.dir/clean +.PHONY : src/json/clean + +# Convenience name for "preinstall" pass in the directory. +src/json/preinstall: +.PHONY : src/json/preinstall + +#============================================================================= +# Target rules for target src/json/CMakeFiles/jsoncpp.dir + +# All Build rule for target. +src/json/CMakeFiles/jsoncpp.dir/all: + $(MAKE) -f src/json/CMakeFiles/jsoncpp.dir/build.make src/json/CMakeFiles/jsoncpp.dir/depend + $(MAKE) -f src/json/CMakeFiles/jsoncpp.dir/build.make src/json/CMakeFiles/jsoncpp.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles + @echo "Built target jsoncpp" +.PHONY : src/json/CMakeFiles/jsoncpp.dir/all + +# Include target in all. +all: src/json/CMakeFiles/jsoncpp.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +src/json/CMakeFiles/jsoncpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 src/json/CMakeFiles/jsoncpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 0 +.PHONY : src/json/CMakeFiles/jsoncpp.dir/rule + +# Convenience name for target. +jsoncpp: src/json/CMakeFiles/jsoncpp.dir/rule +.PHONY : jsoncpp + +# clean rule for target. +src/json/CMakeFiles/jsoncpp.dir/clean: + $(MAKE) -f src/json/CMakeFiles/jsoncpp.dir/build.make src/json/CMakeFiles/jsoncpp.dir/clean +.PHONY : src/json/CMakeFiles/jsoncpp.dir/clean + +# clean rule for target. +clean: src/json/CMakeFiles/jsoncpp.dir/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory src/threading + +# Convenience name for "all" pass in the directory. +src/threading/all: +.PHONY : src/threading/all + +# Convenience name for "clean" pass in the directory. +src/threading/clean: +.PHONY : src/threading/clean + +# Convenience name for "preinstall" pass in the directory. +src/threading/preinstall: +.PHONY : src/threading/preinstall + +#============================================================================= +# Directory level rules for directory src/network + +# Convenience name for "all" pass in the directory. +src/network/all: +.PHONY : src/network/all + +# Convenience name for "clean" pass in the directory. +src/network/clean: +.PHONY : src/network/clean + +# Convenience name for "preinstall" pass in the directory. +src/network/preinstall: +.PHONY : src/network/preinstall + +#============================================================================= +# Directory level rules for directory src/script + +# Convenience name for "all" pass in the directory. +src/script/all: src/script/common/all +src/script/all: src/script/cpp_api/all +src/script/all: src/script/lua_api/all +.PHONY : src/script/all + +# Convenience name for "clean" pass in the directory. +src/script/clean: src/script/common/clean +src/script/clean: src/script/cpp_api/clean +src/script/clean: src/script/lua_api/clean +.PHONY : src/script/clean + +# Convenience name for "preinstall" pass in the directory. +src/script/preinstall: src/script/common/preinstall +src/script/preinstall: src/script/cpp_api/preinstall +src/script/preinstall: src/script/lua_api/preinstall +.PHONY : src/script/preinstall + +#============================================================================= +# Directory level rules for directory src/script/common + +# Convenience name for "all" pass in the directory. +src/script/common/all: +.PHONY : src/script/common/all + +# Convenience name for "clean" pass in the directory. +src/script/common/clean: +.PHONY : src/script/common/clean + +# Convenience name for "preinstall" pass in the directory. +src/script/common/preinstall: +.PHONY : src/script/common/preinstall + +#============================================================================= +# Directory level rules for directory src/script/cpp_api + +# Convenience name for "all" pass in the directory. +src/script/cpp_api/all: +.PHONY : src/script/cpp_api/all + +# Convenience name for "clean" pass in the directory. +src/script/cpp_api/clean: +.PHONY : src/script/cpp_api/clean + +# Convenience name for "preinstall" pass in the directory. +src/script/cpp_api/preinstall: +.PHONY : src/script/cpp_api/preinstall + +#============================================================================= +# Directory level rules for directory src/script/lua_api + +# Convenience name for "all" pass in the directory. +src/script/lua_api/all: +.PHONY : src/script/lua_api/all + +# Convenience name for "clean" pass in the directory. +src/script/lua_api/clean: +.PHONY : src/script/lua_api/clean + +# Convenience name for "preinstall" pass in the directory. +src/script/lua_api/preinstall: +.PHONY : src/script/lua_api/preinstall + +#============================================================================= +# Directory level rules for directory src/unittest + +# Convenience name for "all" pass in the directory. +src/unittest/all: +.PHONY : src/unittest/all + +# Convenience name for "clean" pass in the directory. +src/unittest/clean: +.PHONY : src/unittest/clean + +# Convenience name for "preinstall" pass in the directory. +src/unittest/preinstall: +.PHONY : src/unittest/preinstall + +#============================================================================= +# Directory level rules for directory src/util + +# Convenience name for "all" pass in the directory. +src/util/all: +.PHONY : src/util/all + +# Convenience name for "clean" pass in the directory. +src/util/clean: +.PHONY : src/util/clean + +# Convenience name for "preinstall" pass in the directory. +src/util/preinstall: +.PHONY : src/util/preinstall + +#============================================================================= +# Directory level rules for directory src/client + +# Convenience name for "all" pass in the directory. +src/client/all: +.PHONY : src/client/all + +# Convenience name for "clean" pass in the directory. +src/client/clean: +.PHONY : src/client/clean + +# Convenience name for "preinstall" pass in the directory. +src/client/preinstall: +.PHONY : src/client/preinstall + +#============================================================================= +# Directory level rules for directory src/cguittfont + +# Convenience name for "all" pass in the directory. +src/cguittfont/all: src/cguittfont/CMakeFiles/cguittfont.dir/all +.PHONY : src/cguittfont/all + +# Convenience name for "clean" pass in the directory. +src/cguittfont/clean: src/cguittfont/CMakeFiles/cguittfont.dir/clean +.PHONY : src/cguittfont/clean + +# Convenience name for "preinstall" pass in the directory. +src/cguittfont/preinstall: +.PHONY : src/cguittfont/preinstall + +#============================================================================= +# Target rules for target src/cguittfont/CMakeFiles/cguittfont.dir + +# All Build rule for target. +src/cguittfont/CMakeFiles/cguittfont.dir/all: + $(MAKE) -f src/cguittfont/CMakeFiles/cguittfont.dir/build.make src/cguittfont/CMakeFiles/cguittfont.dir/depend + $(MAKE) -f src/cguittfont/CMakeFiles/cguittfont.dir/build.make src/cguittfont/CMakeFiles/cguittfont.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles + @echo "Built target cguittfont" +.PHONY : src/cguittfont/CMakeFiles/cguittfont.dir/all + +# Include target in all. +all: src/cguittfont/CMakeFiles/cguittfont.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +src/cguittfont/CMakeFiles/cguittfont.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 src/cguittfont/CMakeFiles/cguittfont.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 0 +.PHONY : src/cguittfont/CMakeFiles/cguittfont.dir/rule + +# Convenience name for target. +cguittfont: src/cguittfont/CMakeFiles/cguittfont.dir/rule +.PHONY : cguittfont + +# clean rule for target. +src/cguittfont/CMakeFiles/cguittfont.dir/clean: + $(MAKE) -f src/cguittfont/CMakeFiles/cguittfont.dir/build.make src/cguittfont/CMakeFiles/cguittfont.dir/clean +.PHONY : src/cguittfont/CMakeFiles/cguittfont.dir/clean + +# clean rule for target. +clean: src/cguittfont/CMakeFiles/cguittfont.dir/clean +.PHONY : clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/CMakeFiles/TargetDirectories.txt b/CMakeFiles/TargetDirectories.txt new file mode 100644 index 000000000..a67383116 --- /dev/null +++ b/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,5 @@ +/home/foghrye4/minetest/src/CMakeFiles/minetest.dir +/home/foghrye4/minetest/src/CMakeFiles/GenerateVersion.dir +/home/foghrye4/minetest/CMakeFiles/doc.dir +/home/foghrye4/minetest/src/cguittfont/CMakeFiles/cguittfont.dir +/home/foghrye4/minetest/src/json/CMakeFiles/jsoncpp.dir diff --git a/CMakeFiles/cmake.check_cache b/CMakeFiles/cmake.check_cache new file mode 100644 index 000000000..3dccd7317 --- /dev/null +++ b/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/CMakeFiles/doc.dir/DependInfo.cmake b/CMakeFiles/doc.dir/DependInfo.cmake new file mode 100644 index 000000000..aaba1d6f7 --- /dev/null +++ b/CMakeFiles/doc.dir/DependInfo.cmake @@ -0,0 +1,15 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + ) +set(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +set(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +set(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) diff --git a/CMakeFiles/doc.dir/build.make b/CMakeFiles/doc.dir/build.make new file mode 100644 index 000000000..978ebc525 --- /dev/null +++ b/CMakeFiles/doc.dir/build.make @@ -0,0 +1,68 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.2 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/foghrye4/minetest + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/foghrye4/minetest + +# Utility rule file for doc. + +# Include the progress variables for this target. +include CMakeFiles/doc.dir/progress.make + +CMakeFiles/doc: + $(CMAKE_COMMAND) -E cmake_progress_report /home/foghrye4/minetest/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "Generating API documentation with Doxygen" + cd /home/foghrye4/minetest/doc && /usr/bin/doxygen /home/foghrye4/minetest/doc/Doxyfile + +doc: CMakeFiles/doc +doc: CMakeFiles/doc.dir/build.make +.PHONY : doc + +# Rule to build all files generated by this target. +CMakeFiles/doc.dir/build: doc +.PHONY : CMakeFiles/doc.dir/build + +CMakeFiles/doc.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/doc.dir/cmake_clean.cmake +.PHONY : CMakeFiles/doc.dir/clean + +CMakeFiles/doc.dir/depend: + cd /home/foghrye4/minetest && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/foghrye4/minetest /home/foghrye4/minetest /home/foghrye4/minetest /home/foghrye4/minetest /home/foghrye4/minetest/CMakeFiles/doc.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/doc.dir/depend + diff --git a/CMakeFiles/doc.dir/cmake_clean.cmake b/CMakeFiles/doc.dir/cmake_clean.cmake new file mode 100644 index 000000000..1d42bb798 --- /dev/null +++ b/CMakeFiles/doc.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/doc" +) + +# Per-language clean rules from dependency scanning. +foreach(lang) + include(CMakeFiles/doc.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/CMakeFiles/doc.dir/progress.make b/CMakeFiles/doc.dir/progress.make new file mode 100644 index 000000000..781c7de27 --- /dev/null +++ b/CMakeFiles/doc.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 1 + diff --git a/CMakeFiles/feature_tests.bin b/CMakeFiles/feature_tests.bin new file mode 100755 index 000000000..e6fb647c2 Binary files /dev/null and b/CMakeFiles/feature_tests.bin differ diff --git a/CMakeFiles/feature_tests.c b/CMakeFiles/feature_tests.c new file mode 100644 index 000000000..5a17cdbaa --- /dev/null +++ b/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/CMakeFiles/feature_tests.cxx b/CMakeFiles/feature_tests.cxx new file mode 100644 index 000000000..54f83f047 --- /dev/null +++ b/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/CMakeFiles/progress.marks b/CMakeFiles/progress.marks new file mode 100644 index 000000000..3ad5abd03 --- /dev/null +++ b/CMakeFiles/progress.marks @@ -0,0 +1 @@ +99 diff --git a/CPackConfig.cmake b/CPackConfig.cmake new file mode 100644 index 000000000..ecc617316 --- /dev/null +++ b/CPackConfig.cmake @@ -0,0 +1,80 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +SET(CPACK_BINARY_7Z "") +SET(CPACK_BINARY_BUNDLE "") +SET(CPACK_BINARY_CYGWIN "") +SET(CPACK_BINARY_DEB "") +SET(CPACK_BINARY_DRAGNDROP "") +SET(CPACK_BINARY_IFW "") +SET(CPACK_BINARY_NSIS "") +SET(CPACK_BINARY_OSXX11 "") +SET(CPACK_BINARY_PACKAGEMAKER "") +SET(CPACK_BINARY_RPM "") +SET(CPACK_BINARY_STGZ "") +SET(CPACK_BINARY_TBZ2 "") +SET(CPACK_BINARY_TGZ "") +SET(CPACK_BINARY_TXZ "") +SET(CPACK_BINARY_TZ "") +SET(CPACK_BINARY_WIX "") +SET(CPACK_BINARY_ZIP "") +SET(CPACK_CMAKE_GENERATOR "Unix Makefiles") +SET(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +SET(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +SET(CPACK_GENERATOR "TGZ") +SET(CPACK_INSTALL_CMAKE_PROJECTS "/home/foghrye4/minetest;minetest;ALL;/") +SET(CPACK_INSTALL_PREFIX "/usr/local") +SET(CPACK_MODULE_PATH "/home/foghrye4/minetest/cmake/Modules/") +SET(CPACK_NSIS_DISPLAY_NAME "minetest 0.4.13") +SET(CPACK_NSIS_INSTALLER_ICON_CODE "") +SET(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +SET(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +SET(CPACK_NSIS_PACKAGE_NAME "minetest 0.4.13") +SET(CPACK_OUTPUT_CONFIG_FILE "/home/foghrye4/minetest/CPackConfig.cmake") +SET(CPACK_PACKAGE_CONTACT "Perttu Ahola ") +SET(CPACK_PACKAGE_DEFAULT_LOCATION "/") +SET(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.2/Templates/CPack.GenericDescription.txt") +SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "An InfiniMiner/Minecraft inspired game") +SET(CPACK_PACKAGE_FILE_NAME "minetest-0.4.13-dev-linux") +SET(CPACK_PACKAGE_INSTALL_DIRECTORY "minetest 0.4.13") +SET(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "minetest 0.4.13") +SET(CPACK_PACKAGE_NAME "minetest") +SET(CPACK_PACKAGE_RELOCATABLE "true") +SET(CPACK_PACKAGE_VENDOR "celeron55") +SET(CPACK_PACKAGE_VERSION "0.4.13") +SET(CPACK_PACKAGE_VERSION_MAJOR "0") +SET(CPACK_PACKAGE_VERSION_MINOR "4") +SET(CPACK_PACKAGE_VERSION_PATCH "13") +SET(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.2/Templates/CPack.GenericLicense.txt") +SET(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.2/Templates/CPack.GenericDescription.txt") +SET(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.2/Templates/CPack.GenericWelcome.txt") +SET(CPACK_SET_DESTDIR "OFF") +SET(CPACK_SOURCE_7Z "") +SET(CPACK_SOURCE_CYGWIN "") +SET(CPACK_SOURCE_GENERATOR "TGZ") +SET(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/foghrye4/minetest/CPackSourceConfig.cmake") +SET(CPACK_SOURCE_TBZ2 "") +SET(CPACK_SOURCE_TGZ "") +SET(CPACK_SOURCE_TXZ "") +SET(CPACK_SOURCE_TZ "") +SET(CPACK_SOURCE_ZIP "") +SET(CPACK_SYSTEM_NAME "Linux") +SET(CPACK_TOPLEVEL_TAG "Linux") +SET(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/home/foghrye4/minetest/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/CPackSourceConfig.cmake b/CPackSourceConfig.cmake new file mode 100644 index 000000000..077d2d437 --- /dev/null +++ b/CPackSourceConfig.cmake @@ -0,0 +1,87 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +SET(CPACK_BINARY_7Z "") +SET(CPACK_BINARY_BUNDLE "") +SET(CPACK_BINARY_CYGWIN "") +SET(CPACK_BINARY_DEB "") +SET(CPACK_BINARY_DRAGNDROP "") +SET(CPACK_BINARY_IFW "") +SET(CPACK_BINARY_NSIS "") +SET(CPACK_BINARY_OSXX11 "") +SET(CPACK_BINARY_PACKAGEMAKER "") +SET(CPACK_BINARY_RPM "") +SET(CPACK_BINARY_STGZ "") +SET(CPACK_BINARY_TBZ2 "") +SET(CPACK_BINARY_TGZ "") +SET(CPACK_BINARY_TXZ "") +SET(CPACK_BINARY_TZ "") +SET(CPACK_BINARY_WIX "") +SET(CPACK_BINARY_ZIP "") +SET(CPACK_CMAKE_GENERATOR "Unix Makefiles") +SET(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +SET(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +SET(CPACK_GENERATOR "TGZ") +SET(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp$;\\.#;/#") +SET(CPACK_INSTALLED_DIRECTORIES "/home/foghrye4/minetest;/") +SET(CPACK_INSTALL_CMAKE_PROJECTS "") +SET(CPACK_INSTALL_PREFIX "/usr/local") +SET(CPACK_MODULE_PATH "/home/foghrye4/minetest/cmake/Modules/") +SET(CPACK_NSIS_DISPLAY_NAME "minetest 0.4.13") +SET(CPACK_NSIS_INSTALLER_ICON_CODE "") +SET(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +SET(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +SET(CPACK_NSIS_PACKAGE_NAME "minetest 0.4.13") +SET(CPACK_OUTPUT_CONFIG_FILE "/home/foghrye4/minetest/CPackConfig.cmake") +SET(CPACK_PACKAGE_CONTACT "Perttu Ahola ") +SET(CPACK_PACKAGE_DEFAULT_LOCATION "/") +SET(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.2/Templates/CPack.GenericDescription.txt") +SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "An InfiniMiner/Minecraft inspired game") +SET(CPACK_PACKAGE_FILE_NAME "minetest-0.4.13-Source") +SET(CPACK_PACKAGE_INSTALL_DIRECTORY "minetest 0.4.13") +SET(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "minetest 0.4.13") +SET(CPACK_PACKAGE_NAME "minetest") +SET(CPACK_PACKAGE_RELOCATABLE "true") +SET(CPACK_PACKAGE_VENDOR "celeron55") +SET(CPACK_PACKAGE_VERSION "0.4.13") +SET(CPACK_PACKAGE_VERSION_MAJOR "0") +SET(CPACK_PACKAGE_VERSION_MINOR "4") +SET(CPACK_PACKAGE_VERSION_PATCH "13") +SET(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.2/Templates/CPack.GenericLicense.txt") +SET(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.2/Templates/CPack.GenericDescription.txt") +SET(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.2/Templates/CPack.GenericWelcome.txt") +SET(CPACK_SET_DESTDIR "OFF") +SET(CPACK_SOURCE_7Z "") +SET(CPACK_SOURCE_CYGWIN "") +SET(CPACK_SOURCE_GENERATOR "TGZ") +SET(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp$;\\.#;/#") +SET(CPACK_SOURCE_INSTALLED_DIRECTORIES "/home/foghrye4/minetest;/") +SET(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/foghrye4/minetest/CPackSourceConfig.cmake") +SET(CPACK_SOURCE_PACKAGE_FILE_NAME "minetest-0.4.13-Source") +SET(CPACK_SOURCE_TBZ2 "") +SET(CPACK_SOURCE_TGZ "") +SET(CPACK_SOURCE_TOPLEVEL_TAG "Linux-Source") +SET(CPACK_SOURCE_TXZ "") +SET(CPACK_SOURCE_TZ "") +SET(CPACK_SOURCE_ZIP "") +SET(CPACK_STRIP_FILES "") +SET(CPACK_SYSTEM_NAME "Linux") +SET(CPACK_TOPLEVEL_TAG "Linux-Source") +SET(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/home/foghrye4/minetest/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..3a0301928 --- /dev/null +++ b/Makefile @@ -0,0 +1,262 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.2 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/foghrye4/minetest + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/foghrye4/minetest + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: install/strip +.PHONY : install/strip/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/foghrye4/minetest/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: install/local +.PHONY : install/local/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles /home/foghrye4/minetest/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/foghrye4/minetest/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named doc + +# Build rule for target. +doc: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 doc +.PHONY : doc + +# fast build rule for target. +doc/fast: + $(MAKE) -f CMakeFiles/doc.dir/build.make CMakeFiles/doc.dir/build +.PHONY : doc/fast + +#============================================================================= +# Target rules for targets named GenerateVersion + +# Build rule for target. +GenerateVersion: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 GenerateVersion +.PHONY : GenerateVersion + +# fast build rule for target. +GenerateVersion/fast: + $(MAKE) -f src/CMakeFiles/GenerateVersion.dir/build.make src/CMakeFiles/GenerateVersion.dir/build +.PHONY : GenerateVersion/fast + +#============================================================================= +# Target rules for targets named minetest + +# Build rule for target. +minetest: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 minetest +.PHONY : minetest + +# fast build rule for target. +minetest/fast: + $(MAKE) -f src/CMakeFiles/minetest.dir/build.make src/CMakeFiles/minetest.dir/build +.PHONY : minetest/fast + +#============================================================================= +# Target rules for targets named jsoncpp + +# Build rule for target. +jsoncpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 jsoncpp +.PHONY : jsoncpp + +# fast build rule for target. +jsoncpp/fast: + $(MAKE) -f src/json/CMakeFiles/jsoncpp.dir/build.make src/json/CMakeFiles/jsoncpp.dir/build +.PHONY : jsoncpp/fast + +#============================================================================= +# Target rules for targets named cguittfont + +# Build rule for target. +cguittfont: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 cguittfont +.PHONY : cguittfont + +# fast build rule for target. +cguittfont/fast: + $(MAKE) -f src/cguittfont/CMakeFiles/cguittfont.dir/build.make src/cguittfont/CMakeFiles/cguittfont.dir/build +.PHONY : cguittfont/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... install/strip" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... install" + @echo "... doc" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... install/local" + @echo "... minetest" + @echo "... GenerateVersion" + @echo "... jsoncpp" + @echo "... cguittfont" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/bin/debug.txt b/bin/debug.txt new file mode 100644 index 000000000..613dbbc1f --- /dev/null +++ b/bin/debug.txt @@ -0,0 +1,186 @@ + + +------------- + Separator +------------- + +2016-04-24 22:05:26: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:05:27: ERROR[Main]: ModError: Failed to load and run script from /home/foghrye4/minetest/bin/../mods/stone_age/init.lua: +2016-04-24 22:05:27: ERROR[Main]: No crafting specified for output (output="default:axe_bronze") +2016-04-24 22:05:27: ERROR[Main]: stack traceback: +2016-04-24 22:05:27: ERROR[Main]: [C]: in function 'clear_craft' +2016-04-24 22:05:27: ERROR[Main]: ...oghrye4/minetest/bin/../mods/stone_age/craft_recipes.lua:48: in main chunk +2016-04-24 22:05:27: ERROR[Main]: [C]: in function 'dofile' +2016-04-24 22:05:27: ERROR[Main]: /home/foghrye4/minetest/bin/../mods/stone_age/init.lua:11: in main chunk +2016-04-24 22:05:27: ERROR[Main]: Check debug.txt for details. + + +------------- + Separator +------------- + +2016-04-24 22:06:19: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:06:19: ERROR[Main]: ModError: Failed to load and run script from /home/foghrye4/minetest/bin/../mods/stone_age/init.lua: +2016-04-24 22:06:19: ERROR[Main]: No crafting specified for output (output="default:axe_bronze") +2016-04-24 22:06:19: ERROR[Main]: stack traceback: +2016-04-24 22:06:19: ERROR[Main]: [C]: in function 'clear_craft' +2016-04-24 22:06:19: ERROR[Main]: ...oghrye4/minetest/bin/../mods/stone_age/craft_recipes.lua:48: in main chunk +2016-04-24 22:06:19: ERROR[Main]: [C]: in function 'dofile' +2016-04-24 22:06:19: ERROR[Main]: /home/foghrye4/minetest/bin/../mods/stone_age/init.lua:11: in main chunk +2016-04-24 22:06:19: ERROR[Main]: Check debug.txt for details. + + +------------- + Separator +------------- + +2016-04-24 22:09:20: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:09:20: ERROR[Main]: ModError: Failed to load and run script from /home/foghrye4/minetest/bin/../mods/stone_age/init.lua: +2016-04-24 22:09:20: ERROR[Main]: No crafting specified for output (output="default:axe_bronze") +2016-04-24 22:09:20: ERROR[Main]: stack traceback: +2016-04-24 22:09:20: ERROR[Main]: [C]: in function 'clear_craft' +2016-04-24 22:09:20: ERROR[Main]: ...oghrye4/minetest/bin/../mods/stone_age/craft_recipes.lua:48: in main chunk +2016-04-24 22:09:20: ERROR[Main]: [C]: in function 'dofile' +2016-04-24 22:09:20: ERROR[Main]: /home/foghrye4/minetest/bin/../mods/stone_age/init.lua:11: in main chunk +2016-04-24 22:09:20: ERROR[Main]: Check debug.txt for details. + + +------------- + Separator +------------- + +2016-04-24 22:32:30: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:32:30: ERROR[Main]: ModError: Failed to load and run script from /home/foghrye4/minetest/bin/../mods/stone_age/init.lua: +2016-04-24 22:32:30: ERROR[Main]: No crafting specified for output (output="default:axe_bronze") +2016-04-24 22:32:30: ERROR[Main]: stack traceback: +2016-04-24 22:32:30: ERROR[Main]: [C]: in function 'clear_craft' +2016-04-24 22:32:30: ERROR[Main]: ...oghrye4/minetest/bin/../mods/stone_age/craft_recipes.lua:48: in main chunk +2016-04-24 22:32:30: ERROR[Main]: [C]: in function 'dofile' +2016-04-24 22:32:30: ERROR[Main]: /home/foghrye4/minetest/bin/../mods/stone_age/init.lua:11: in main chunk +2016-04-24 22:32:30: ERROR[Main]: Check debug.txt for details. +2016-04-24 22:33:37: WARNING[Main]: BanManager: creating /home/foghrye4/minetest/bin/../worlds/2/ipban.txt +2016-04-24 22:33:37: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:33:38: ACTION[Main]: .__ __ __ +2016-04-24 22:33:38: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-04-24 22:33:38: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-04-24 22:33:38: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-04-24 22:33:38: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-04-24 22:33:38: ACTION[Main]: \/ \/ \/ \/ \/ +2016-04-24 22:33:38: ACTION[Main]: World at [/home/foghrye4/minetest/bin/../worlds/2] +2016-04-24 22:33:38: ACTION[Main]: Server for gameid="minetest" listening on 0.0.0.0:52350. +2016-04-24 22:33:38: ACTION[Server]: singleplayer [127.0.0.1] joins game. +2016-04-24 22:33:38: ACTION[Server]: singleplayer joins game. List of players: singleplayer + + +------------- + Separator +------------- + +2016-04-24 22:53:43: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:53:43: ERROR[Main]: ModError: Failed to load and run script from /home/foghrye4/minetest/bin/../mods/stone_age/init.lua: +2016-04-24 22:53:43: ERROR[Main]: No crafting specified for input +2016-04-24 22:53:43: ERROR[Main]: stack traceback: +2016-04-24 22:53:43: ERROR[Main]: [C]: in function 'clear_craft' +2016-04-24 22:53:43: ERROR[Main]: ...oghrye4/minetest/bin/../mods/stone_age/craft_recipes.lua:62: in main chunk +2016-04-24 22:53:43: ERROR[Main]: [C]: in function 'dofile' +2016-04-24 22:53:43: ERROR[Main]: /home/foghrye4/minetest/bin/../mods/stone_age/init.lua:11: in main chunk +2016-04-24 22:53:43: ERROR[Main]: Check debug.txt for details. +2016-04-24 22:54:49: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:54:49: ACTION[Main]: .__ __ __ +2016-04-24 22:54:49: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-04-24 22:54:49: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-04-24 22:54:49: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-04-24 22:54:49: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-04-24 22:54:49: ACTION[Main]: \/ \/ \/ \/ \/ +2016-04-24 22:54:49: ACTION[Main]: World at [/home/foghrye4/minetest/bin/../worlds/Test2] +2016-04-24 22:54:49: ACTION[Main]: Server for gameid="minetest" listening on 0.0.0.0:56439. +2016-04-24 22:54:50: ACTION[Server]: singleplayer [127.0.0.1] joins game. +2016-04-24 22:54:50: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-04-24 22:54:52: ACTION[Server]: singleplayer uses xdecor:crafting_guide, pointing at [nothing] +2016-04-24 22:55:53: ACTION[Server]: singleplayer uses xdecor:crafting_guide, pointing at [nothing] +2016-04-24 22:57:08: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:57:08: ACTION[Main]: .__ __ __ +2016-04-24 22:57:08: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-04-24 22:57:08: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-04-24 22:57:08: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-04-24 22:57:08: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-04-24 22:57:08: ACTION[Main]: \/ \/ \/ \/ \/ +2016-04-24 22:57:08: ACTION[Main]: World at [/home/foghrye4/minetest/bin/../worlds/Test2] +2016-04-24 22:57:08: ACTION[Main]: Server for gameid="minetest" listening on 0.0.0.0:60198. +2016-04-24 22:57:09: ACTION[Server]: singleplayer [127.0.0.1] joins game. +2016-04-24 22:57:09: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-04-24 22:57:14: ACTION[Server]: singleplayer takes default:obsidian_shard from creative inventory +2016-04-24 22:57:23: ACTION[Server]: lifetimer expired, removed mobs_animal:kitten +2016-04-24 22:57:27: ACTION[Server]: lifetimer expired, removed mobs_animal:chicken +2016-04-24 22:57:45: ACTION[Server]: lifetimer expired, removed mobs_animal:sheep_white +2016-04-24 22:57:55: ACTION[Server]: lifetimer expired, removed mobs_animal:bunny +2016-04-24 22:57:55: ACTION[Server]: lifetimer expired, removed mobs_animal:bunny +2016-04-24 22:58:14: ACTION[Server]: lifetimer expired, removed mobs_animal:cow +2016-04-24 22:58:32: ACTION[Server]: lifetimer expired, removed mobs_animal:cow +2016-04-24 22:59:00: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:59:00: ACTION[Main]: .__ __ __ +2016-04-24 22:59:00: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-04-24 22:59:00: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-04-24 22:59:00: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-04-24 22:59:00: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-04-24 22:59:00: ACTION[Main]: \/ \/ \/ \/ \/ +2016-04-24 22:59:00: ACTION[Main]: World at [/home/foghrye4/minetest/bin/../worlds/Test2] +2016-04-24 22:59:00: ACTION[Main]: Server for gameid="minetest" listening on 0.0.0.0:65365. +2016-04-24 22:59:01: ACTION[Server]: singleplayer [127.0.0.1] joins game. +2016-04-24 22:59:01: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-04-24 22:59:28: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:59:28: ACTION[Main]: .__ __ __ +2016-04-24 22:59:28: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-04-24 22:59:28: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-04-24 22:59:28: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-04-24 22:59:28: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-04-24 22:59:28: ACTION[Main]: \/ \/ \/ \/ \/ +2016-04-24 22:59:28: ACTION[Main]: World at [/home/foghrye4/minetest/bin/../worlds/Test2] +2016-04-24 22:59:28: ACTION[Main]: Server for gameid="minetest" listening on 0.0.0.0:49320. +2016-04-24 22:59:29: ACTION[Server]: singleplayer [127.0.0.1] joins game. +2016-04-24 22:59:29: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-04-24 22:59:51: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 22:59:51: ACTION[Main]: .__ __ __ +2016-04-24 22:59:51: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-04-24 22:59:51: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-04-24 22:59:51: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-04-24 22:59:51: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-04-24 22:59:51: ACTION[Main]: \/ \/ \/ \/ \/ +2016-04-24 22:59:51: ACTION[Main]: World at [/home/foghrye4/minetest/bin/../worlds/Test2] +2016-04-24 22:59:51: ACTION[Main]: Server for gameid="minetest" listening on 0.0.0.0:59282. +2016-04-24 22:59:52: ACTION[Server]: singleplayer [127.0.0.1] joins game. +2016-04-24 22:59:52: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-04-24 23:00:10: ACTION[Server]: singleplayer uses xdecor:crafting_guide, pointing at [nothing] +2016-04-24 23:00:20: ACTION[Server]: lifetimer expired, removed mobs_animal:sheep_white +2016-04-24 23:00:54: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 23:00:54: ACTION[Main]: .__ __ __ +2016-04-24 23:00:54: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-04-24 23:00:54: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-04-24 23:00:54: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-04-24 23:00:54: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-04-24 23:00:54: ACTION[Main]: \/ \/ \/ \/ \/ +2016-04-24 23:00:54: ACTION[Main]: World at [/home/foghrye4/minetest/bin/../worlds/Test2] +2016-04-24 23:00:54: ACTION[Main]: Server for gameid="minetest" listening on 0.0.0.0:58949. +2016-04-24 23:00:55: ACTION[Server]: singleplayer [127.0.0.1] joins game. +2016-04-24 23:00:55: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-04-24 23:01:31: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-04-24 23:01:31: ACTION[Main]: .__ __ __ +2016-04-24 23:01:31: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-04-24 23:01:31: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-04-24 23:01:31: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-04-24 23:01:31: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-04-24 23:01:31: ACTION[Main]: \/ \/ \/ \/ \/ +2016-04-24 23:01:31: ACTION[Main]: World at [/home/foghrye4/minetest/bin/../worlds/Test2] +2016-04-24 23:01:31: ACTION[Main]: Server for gameid="minetest" listening on 0.0.0.0:63294. +2016-04-24 23:01:32: ACTION[Server]: singleplayer [127.0.0.1] joins game. +2016-04-24 23:01:32: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-04-24 23:01:34: ACTION[Server]: singleplayer uses xdecor:crafting_guide, pointing at [nothing] +2016-04-24 23:02:30: ACTION[Server]: player singleplayer crafts default:wood 4 +2016-04-24 23:02:30: ACTION[Server]: player singleplayer crafts default:wood 4 +2016-04-24 23:02:30: ACTION[Server]: player singleplayer crafts default:wood 4 +2016-04-24 23:02:30: ACTION[Server]: player singleplayer crafts default:wood 4 +2016-04-24 23:02:30: ACTION[Server]: player singleplayer crafts default:wood 4 +2016-04-24 23:02:31: ACTION[Server]: player singleplayer crafts default:wood 4 +2016-04-24 23:02:31: ACTION[Server]: player singleplayer crafts default:wood 4 +2016-04-24 23:02:44: ACTION[Server]: singleplayer punches object 28: LuaEntitySAO at (-833.858,11.8,137.878) +2016-04-24 23:02:50: ACTION[Server]: singleplayer uses xdecor:crafting_guide, pointing at [nothing] diff --git a/bin/minetest b/bin/minetest new file mode 100755 index 000000000..746933e70 Binary files /dev/null and b/bin/minetest differ diff --git a/bin/minetest (copy) b/bin/minetest (copy) new file mode 100755 index 000000000..7d6bb96f8 Binary files /dev/null and b/bin/minetest (copy) differ diff --git a/builtin/game/register.lua~ b/builtin/game/register.lua~ new file mode 100644 index 000000000..f330491a2 --- /dev/null +++ b/builtin/game/register.lua~ @@ -0,0 +1,519 @@ +-- Minetest: builtin/misc_register.lua + +-- +-- Make raw registration functions inaccessible to anyone except this file +-- + +local register_item_raw = core.register_item_raw +core.register_item_raw = nil + +local register_alias_raw = core.register_alias_raw +core.register_alias_raw = nil + +-- +-- Item / entity / ABM / LBM registration functions +-- + +core.registered_abms = {} +core.registered_lbms = {} +core.registered_entities = {} +core.registered_items = {} +core.registered_nodes = {} +core.registered_craftitems = {} +core.registered_tools = {} +core.registered_aliases = {} + +-- For tables that are indexed by item name: +-- If table[X] does not exist, default to table[core.registered_aliases[X]] +local alias_metatable = { + __index = function(t, name) + return rawget(t, core.registered_aliases[name]) + end +} +setmetatable(core.registered_items, alias_metatable) +setmetatable(core.registered_nodes, alias_metatable) +setmetatable(core.registered_craftitems, alias_metatable) +setmetatable(core.registered_tools, alias_metatable) + +-- These item names may not be used because they would interfere +-- with legacy itemstrings +local forbidden_item_names = { + MaterialItem = true, + MaterialItem2 = true, + MaterialItem3 = true, + NodeItem = true, + node = true, + CraftItem = true, + craft = true, + MBOItem = true, + ToolItem = true, + tool = true, +} + +local function check_modname_prefix(name) + if name:sub(1,1) == ":" then + -- If the name starts with a colon, we can skip the modname prefix + -- mechanism. + return name:sub(2) + else + -- Enforce that the name starts with the correct mod name. + local expected_prefix = core.get_current_modname() .. ":" + if name:sub(1, #expected_prefix) ~= expected_prefix then + error("Name " .. name .. " does not follow naming conventions: " .. + "\"" .. expected_prefix .. "\" or \":\" prefix required") + end + + -- Enforce that the name only contains letters, numbers and underscores. + local subname = name:sub(#expected_prefix+1) + if subname:find("[^%w_]") then + error("Name " .. name .. " does not follow naming conventions: " .. + "contains unallowed characters") + end + + return name + end +end + +function core.register_abm(spec) + -- Add to core.registered_abms + core.registered_abms[#core.registered_abms + 1] = spec + spec.mod_origin = core.get_current_modname() or "??" +end + +function core.register_lbm(spec) + -- Add to core.registered_lbms + check_modname_prefix(spec.name) + core.registered_lbms[#core.registered_lbms + 1] = spec + spec.mod_origin = core.get_current_modname() or "??" +end + +function core.register_entity(name, prototype) + -- Check name + if name == nil then + error("Unable to register entity: Name is nil") + end + name = check_modname_prefix(tostring(name)) + + prototype.name = name + prototype.__index = prototype -- so that it can be used as a metatable + + -- Add to core.registered_entities + core.registered_entities[name] = prototype + prototype.mod_origin = core.get_current_modname() or "??" +end + +function core.register_item(name, itemdef) + -- Check name + if name == nil then + error("Unable to register item: Name is nil") + end + name = check_modname_prefix(tostring(name)) + if forbidden_item_names[name] then + error("Unable to register item: Name is forbidden: " .. name) + end + itemdef.name = name + + -- Apply defaults and add to registered_* table + if itemdef.type == "node" then + -- Use the nodebox as selection box if it's not set manually + if itemdef.drawtype == "nodebox" and not itemdef.selection_box then + itemdef.selection_box = itemdef.node_box + elseif itemdef.drawtype == "fencelike" and not itemdef.selection_box then + itemdef.selection_box = { + type = "fixed", + fixed = {-1/8, -1/2, -1/8, 1/8, 1/2, 1/8}, + } + end + setmetatable(itemdef, {__index = core.nodedef_default}) + core.registered_nodes[itemdef.name] = itemdef + elseif itemdef.type == "craft" then + setmetatable(itemdef, {__index = core.craftitemdef_default}) + core.registered_craftitems[itemdef.name] = itemdef + elseif itemdef.type == "tool" then + setmetatable(itemdef, {__index = core.tooldef_default}) + core.registered_tools[itemdef.name] = itemdef + elseif itemdef.type == "none" then + setmetatable(itemdef, {__index = core.noneitemdef_default}) + else + error("Unable to register item: Type is invalid: " .. dump(itemdef)) + end + + -- Flowing liquid uses param2 + if itemdef.type == "node" and itemdef.liquidtype == "flowing" then + itemdef.paramtype2 = "flowingliquid" + end + + -- BEGIN Legacy stuff + if itemdef.cookresult_itemstring ~= nil and itemdef.cookresult_itemstring ~= "" then + core.register_craft({ + type="cooking", + output=itemdef.cookresult_itemstring, + recipe=itemdef.name, + cooktime=itemdef.furnace_cooktime + }) + end + if itemdef.furnace_burntime ~= nil and itemdef.furnace_burntime >= 0 then + core.register_craft({ + type="fuel", + recipe=itemdef.name, + burntime=itemdef.furnace_burntime + }) + end + -- END Legacy stuff + + itemdef.mod_origin = core.get_current_modname() or "??" + + -- Disable all further modifications + getmetatable(itemdef).__newindex = {} + + --core.log("Registering item: " .. itemdef.name) + core.registered_items[itemdef.name] = itemdef + core.registered_aliases[itemdef.name] = nil + register_item_raw(itemdef) +end + +function core.register_node(name, nodedef) + nodedef.type = "node" + core.register_item(name, nodedef) +end + +function core.register_craftitem(name, craftitemdef) + craftitemdef.type = "craft" + + -- BEGIN Legacy stuff + if craftitemdef.inventory_image == nil and craftitemdef.image ~= nil then + craftitemdef.inventory_image = craftitemdef.image + end + -- END Legacy stuff + + core.register_item(name, craftitemdef) +end + +function core.register_tool(name, tooldef) + tooldef.type = "tool" + tooldef.stack_max = 1 + + -- BEGIN Legacy stuff + if tooldef.inventory_image == nil and tooldef.image ~= nil then + tooldef.inventory_image = tooldef.image + end + if tooldef.tool_capabilities == nil and + (tooldef.full_punch_interval ~= nil or + tooldef.basetime ~= nil or + tooldef.dt_weight ~= nil or + tooldef.dt_crackiness ~= nil or + tooldef.dt_crumbliness ~= nil or + tooldef.dt_cuttability ~= nil or + tooldef.basedurability ~= nil or + tooldef.dd_weight ~= nil or + tooldef.dd_crackiness ~= nil or + tooldef.dd_crumbliness ~= nil or + tooldef.dd_cuttability ~= nil) then + tooldef.tool_capabilities = { + full_punch_interval = tooldef.full_punch_interval, + basetime = tooldef.basetime, + dt_weight = tooldef.dt_weight, + dt_crackiness = tooldef.dt_crackiness, + dt_crumbliness = tooldef.dt_crumbliness, + dt_cuttability = tooldef.dt_cuttability, + basedurability = tooldef.basedurability, + dd_weight = tooldef.dd_weight, + dd_crackiness = tooldef.dd_crackiness, + dd_crumbliness = tooldef.dd_crumbliness, + dd_cuttability = tooldef.dd_cuttability, + } + end + -- END Legacy stuff + + core.register_item(name, tooldef) +end + +function core.register_alias(name, convert_to) + if forbidden_item_names[name] then + error("Unable to register alias: Name is forbidden: " .. name) + end + if core.registered_items[name] ~= nil then + core.log("warning", "Not registering alias, item with same name" .. + " is already defined: " .. name .. " -> " .. convert_to) + else + --core.log("Registering alias: " .. name .. " -> " .. convert_to) + core.registered_aliases[name] = convert_to + register_alias_raw(name, convert_to) + end +end + +function core.on_craft(itemstack, player, old_craft_list, craft_inv) + for _, func in ipairs(core.registered_on_crafts) do + itemstack = func(itemstack, player, old_craft_list, craft_inv) or itemstack + end + return itemstack +end + +function core.craft_predict(itemstack, player, old_craft_list, craft_inv) + for _, func in ipairs(core.registered_craft_predicts) do + itemstack = func(itemstack, player, old_craft_list, craft_inv) or itemstack + end + return itemstack +end + +-- Alias the forbidden item names to "" so they can't be +-- created via itemstrings (e.g. /give) +local name +for name in pairs(forbidden_item_names) do + core.registered_aliases[name] = "" + register_alias_raw(name, "") +end + + +-- Deprecated: +-- Aliases for core.register_alias (how ironic...) +--core.alias_node = core.register_alias +--core.alias_tool = core.register_alias +--core.alias_craftitem = core.register_alias + +-- +-- Built-in node definitions. Also defined in C. +-- + +core.register_item(":unknown", { + type = "none", + description = "Unknown Item", + inventory_image = "unknown_item.png", + on_place = core.item_place, + on_secondary_use = core.item_secondary_use, + on_drop = core.item_drop, + groups = {not_in_creative_inventory=1}, + diggable = true, +}) + +core.register_node(":air", { + description = "Air (you hacker you!)", + inventory_image = "unknown_node.png", + wield_image = "unknown_node.png", + drawtype = "airlike", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + floodable = true, + air_equivalent = true, + drop = "", + groups = {not_in_creative_inventory=1}, +}) + +core.register_node(":ignore", { + description = "Ignore (you hacker you!)", + inventory_image = "unknown_node.png", + wield_image = "unknown_node.png", + drawtype = "airlike", + paramtype = "none", + sunlight_propagates = false, + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, -- A way to remove accidentally placed ignores + air_equivalent = true, + drop = "", + groups = {not_in_creative_inventory=1}, +}) + +-- The hand (bare definition) +core.register_item(":", { + type = "none", + groups = {not_in_creative_inventory=1}, +}) + + +function core.override_item(name, redefinition) + if redefinition.name ~= nil then + error("Attempt to redefine name of "..name.." to "..dump(redefinition.name), 2) + end + if redefinition.type ~= nil then + error("Attempt to redefine type of "..name.." to "..dump(redefinition.type), 2) + end + local item = core.registered_items[name] + if not item then + error("Attempt to override non-existent item "..name, 2) + end + for k, v in pairs(redefinition) do + rawset(item, k, v) + end + register_item_raw(item) +end + + +core.callback_origins = {} + +function core.run_callbacks(callbacks, mode, ...) + assert(type(callbacks) == "table") + local cb_len = #callbacks + if cb_len == 0 then + if mode == 2 or mode == 3 then + return true + elseif mode == 4 or mode == 5 then + return false + end + end + local ret = nil + for i = 1, cb_len do + local origin = core.callback_origins[callbacks[i]] + if origin then + core.set_last_run_mod(origin.mod) + --print("Running " .. tostring(callbacks[i]) .. + -- " (a " .. origin.name .. " callback in " .. origin.mod .. ")") + else + --print("No data associated with callback") + end + local cb_ret = callbacks[i](...) + + if mode == 0 and i == 1 then + ret = cb_ret + elseif mode == 1 and i == cb_len then + ret = cb_ret + elseif mode == 2 then + if not cb_ret or i == 1 then + ret = cb_ret + end + elseif mode == 3 then + if cb_ret then + return cb_ret + end + ret = cb_ret + elseif mode == 4 then + if (cb_ret and not ret) or i == 1 then + ret = cb_ret + end + elseif mode == 5 and cb_ret then + return cb_ret + end + end + return ret +end + +-- +-- Callback registration +-- + +local function make_registration() + local t = {} + local registerfunc = function(func) + t[#t + 1] = func + core.callback_origins[func] = { + mod = core.get_current_modname() or "??", + name = debug.getinfo(1, "n").name or "??" + } + --local origin = core.callback_origins[func] + --print(origin.name .. ": " .. origin.mod .. " registering cbk " .. tostring(func)) + end + return t, registerfunc +end + +local function make_registration_reverse() + local t = {} + local registerfunc = function(func) + table.insert(t, 1, func) + core.callback_origins[func] = { + mod = core.get_current_modname() or "??", + name = debug.getinfo(1, "n").name or "??" + } + --local origin = core.callback_origins[func] + --print(origin.name .. ": " .. origin.mod .. " registering cbk " .. tostring(func)) + end + return t, registerfunc +end + +local function make_registration_wrap(reg_fn_name, clear_fn_name) + local list = {} + + local orig_reg_fn = core[reg_fn_name] + core[reg_fn_name] = function(def) + local retval = orig_reg_fn(def) + if retval ~= nil then + if def.name ~= nil then + list[def.name] = def + else + list[retval] = def + end + end + return retval + end + + local orig_clear_fn = core[clear_fn_name] + core[clear_fn_name] = function() + for k in pairs(list) do + list[k] = nil + end + return orig_clear_fn() + end + + return list +end + +core.registered_on_player_hpchanges = { modifiers = { }, loggers = { } } + +function core.registered_on_player_hpchange(player, hp_change) + local last = false + for i = #core.registered_on_player_hpchanges.modifiers, 1, -1 do + local func = core.registered_on_player_hpchanges.modifiers[i] + hp_change, last = func(player, hp_change) + if type(hp_change) ~= "number" then + local debuginfo = debug.getinfo(func) + error("The register_on_hp_changes function has to return a number at " .. + debuginfo.short_src .. " line " .. debuginfo.linedefined) + end + if last then + break + end + end + for i, func in ipairs(core.registered_on_player_hpchanges.loggers) do + func(player, hp_change) + end + return hp_change +end + +function core.register_on_player_hpchange(func, modifier) + if modifier then + core.registered_on_player_hpchanges.modifiers[#core.registered_on_player_hpchanges.modifiers + 1] = func + else + core.registered_on_player_hpchanges.loggers[#core.registered_on_player_hpchanges.loggers + 1] = func + end + core.callback_origins[func] = { + mod = core.get_current_modname() or "??", + name = debug.getinfo(1, "n").name or "??" + } +end + +core.registered_biomes = make_registration_wrap("register_biome", "clear_registered_biomes") +core.registered_ores = make_registration_wrap("register_ore", "clear_registered_ores") +core.registered_decorations = make_registration_wrap("register_decoration", "clear_registered_decorations") + +core.registered_on_chat_messages, core.register_on_chat_message = make_registration() +core.registered_globalsteps, core.register_globalstep = make_registration() +core.registered_playerevents, core.register_playerevent = make_registration() +core.registered_on_shutdown, core.register_on_shutdown = make_registration() +core.registered_on_punchnodes, core.register_on_punchnode = make_registration() +core.registered_on_placenodes, core.register_on_placenode = make_registration() +core.registered_on_dignodes, core.register_on_dignode = make_registration() +core.registered_on_generateds, core.register_on_generated = make_registration() +core.registered_on_newplayers, core.register_on_newplayer = make_registration() +core.registered_on_dieplayers, core.register_on_dieplayer = make_registration() +core.registered_on_respawnplayers, core.register_on_respawnplayer = make_registration() +core.registered_on_prejoinplayers, core.register_on_prejoinplayer = make_registration() +core.registered_on_joinplayers, core.register_on_joinplayer = make_registration() +core.registered_on_leaveplayers, core.register_on_leaveplayer = make_registration() +core.registered_on_player_receive_fields, core.register_on_player_receive_fields = make_registration_reverse() +core.registered_on_cheats, core.register_on_cheat = make_registration() +core.registered_on_crafts, core.register_on_craft = make_registration() +core.registered_craft_predicts, core.register_craft_predict = make_registration() +core.registered_on_protection_violation, core.register_on_protection_violation = make_registration() +core.registered_on_item_eats, core.register_on_item_eat = make_registration() +core.registered_on_punchplayers, core.register_on_punchplayer = make_registration() + +-- +-- Compatibility for on_mapgen_init() +-- + +core.register_on_mapgen_init = function(func) func(core.get_mapgen_params()) end + diff --git a/builtin/mainmenu/common.lua~ b/builtin/mainmenu/common.lua~ new file mode 100644 index 000000000..46a112b61 --- /dev/null +++ b/builtin/mainmenu/common.lua~ @@ -0,0 +1,306 @@ +--Minetest +--Copyright (C) 2014 sapier +-- +--This program is free software; you can redistribute it and/or modify +--it under the terms of the GNU Lesser General Public License as published by +--the Free Software Foundation; either version 2.1 of the License, or +--(at your option) any later version. +-- +--This program is distributed in the hope that it will be useful, +--but WITHOUT ANY WARRANTY; without even the implied warranty of +--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +--GNU Lesser General Public License for more details. +-- +--You should have received a copy of the GNU Lesser General Public License along +--with this program; if not, write to the Free Software Foundation, Inc., +--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +-------------------------------------------------------------------------------- +-- Global menu data +-------------------------------------------------------------------------------- +menudata = {} + +-------------------------------------------------------------------------------- +-- Local cached values +-------------------------------------------------------------------------------- +local min_supp_proto, max_supp_proto + +function common_update_cached_supp_proto() + min_supp_proto = core.get_min_supp_proto() + max_supp_proto = core.get_max_supp_proto() +end +common_update_cached_supp_proto() +-------------------------------------------------------------------------------- +-- Menu helper functions +-------------------------------------------------------------------------------- + +-------------------------------------------------------------------------------- +local function render_client_count(n) + if n > 99 then return '99+' + elseif n >= 0 then return tostring(n) + else return '?' end +end + +local function configure_selected_world_params(idx) + local worldconfig = modmgr.get_worldconfig(menudata.worldlist:get_list()[idx].path) + if worldconfig.creative_mode then + core.setting_set("creative_mode", worldconfig.creative_mode) + end + if worldconfig.enable_damage then + core.setting_set("enable_damage", worldconfig.enable_damage) + end +end + +-------------------------------------------------------------------------------- +function image_column(tooltip, flagname) + return "image,tooltip=" .. core.formspec_escape(tooltip) .. "," .. + "0=" .. core.formspec_escape(defaulttexturedir .. "blank.png") .. "," .. + "1=" .. core.formspec_escape(defaulttexturedir .. "server_flags_" .. flagname .. ".png") +end + +-------------------------------------------------------------------------------- +function order_favorite_list(list) + local res = {} + --orders the favorite list after support + for i = 1, #list do + local fav = list[i] + if is_server_protocol_compat(fav.proto_min, fav.proto_max) then + res[#res + 1] = fav + end + end + for i = 1, #list do + local fav = list[i] + if not is_server_protocol_compat(fav.proto_min, fav.proto_max) then + res[#res + 1] = fav + end + end + return res +end + +-------------------------------------------------------------------------------- +function render_favorite(spec, is_favorite) + local text = "" + if spec.name then + text = text .. core.formspec_escape(spec.name:trim()) + elseif spec.address then + text = text .. spec.address:trim() + if spec.port then + text = text .. ":" .. spec.port + end + end + + local details = "" + local grey_out = not is_server_protocol_compat(spec.proto_min, spec.proto_max) + + if is_favorite then + details = "1," + else + details = "0," + end + + if spec.clients and spec.clients_max then + local clients_color = '' + local clients_percent = 100 * spec.clients / spec.clients_max + + -- Choose a color depending on how many clients are connected + -- (relatively to clients_max) + if grey_out then clients_color = '#aaaaaa' + elseif spec.clients == 0 then clients_color = '' -- 0 players: default/white + elseif clients_percent <= 60 then clients_color = '#a1e587' -- 0-60%: green + elseif clients_percent <= 90 then clients_color = '#ffdc97' -- 60-90%: yellow + elseif clients_percent == 100 then clients_color = '#dd5b5b' -- full server: red (darker) + else clients_color = '#ffba97' -- 90-100%: orange + end + + details = details .. clients_color .. ',' .. + render_client_count(spec.clients) .. ',/,' .. + render_client_count(spec.clients_max) .. ',' + + elseif grey_out then + details = details .. '#aaaaaa,?,/,?,' + else + details = details .. ',?,/,?,' + end + + if spec.creative then + details = details .. "1," + else + details = details .. "0," + end + + if spec.damage then + details = details .. "1," + else + details = details .. "0," + end + + if spec.pvp then + details = details .. "1," + else + details = details .. "0," + end + + return details .. (grey_out and '#aaaaaa,' or ',') .. text +end + +-------------------------------------------------------------------------------- +os.tempfolder = function() + if core.setting_get("TMPFolder") then + return core.setting_get("TMPFolder") .. DIR_DELIM .. "MT_" .. math.random(0,10000) + end + + local filetocheck = os.tmpname() + os.remove(filetocheck) + + local randname = "MTTempModFolder_" .. math.random(0,10000) + if DIR_DELIM == "\\" then + local tempfolder = os.getenv("TEMP") + return tempfolder .. filetocheck + else + local backstring = filetocheck:reverse() + return filetocheck:sub(0,filetocheck:len()-backstring:find(DIR_DELIM)+1) ..randname + end + +end + +-------------------------------------------------------------------------------- +function menu_render_worldlist() + local retval = "" + local current_worldlist = menudata.worldlist:get_list() + + for i, v in ipairs(current_worldlist) do + if retval ~= "" then retval = retval .. "," end + retval = retval .. core.formspec_escape(v.name) .. + " \\[" .. core.formspec_escape(v.gameid) .. "\\]" + end + + return retval +end + +-------------------------------------------------------------------------------- +function menu_handle_key_up_down(fields, textlist, settingname) + local oldidx, newidx = core.get_textlist_index(textlist) + if fields.key_up or fields.key_down then + if fields.key_up and oldidx and oldidx > 1 then + newidx = oldidx - 1 + elseif fields.key_down and oldidx and + oldidx < menudata.worldlist:size() then + newidx = oldidx + 1 + end + core.setting_set(settingname, menudata.worldlist:get_raw_index(newidx)) + configure_selected_world_params(newidx) + return true + end + return false +end + +-------------------------------------------------------------------------------- +function asyncOnlineFavourites() + if not menudata.public_known then + menudata.public_known = {{ + name = fgettext("Loading..."), + description = fgettext_ne("Try reenabling public serverlist and check your internet connection.") + }} + end + menudata.favorites = menudata.public_known + menudata.favorites_is_public = true + core.handle_async( + function(param) + return core.get_favorites("online") + end, + nil, + function(result) + local favs = order_favorite_list(result) + if favs[1] then + menudata.public_known = favs + menudata.favorites = menudata.public_known + menudata.favorites_is_public = true + end + core.event_handler("Refresh") + end + ) +end + +-------------------------------------------------------------------------------- +function text2textlist(xpos, ypos, width, height, tl_name, textlen, text, transparency) + local textlines = core.splittext(text, textlen) + local retval = "textlist[" .. xpos .. "," .. ypos .. ";" .. width .. + "," .. height .. ";" .. tl_name .. ";" + + for i = 1, #textlines do + textlines[i] = textlines[i]:gsub("\r", "") + retval = retval .. core.formspec_escape(textlines[i]) .. "," + end + + retval = retval .. ";0;" + if transparency then retval = retval .. "true" end + retval = retval .. "]" + + return retval +end + +-------------------------------------------------------------------------------- +function is_server_protocol_compat(server_proto_min, server_proto_max) + return min_supp_proto <= (server_proto_max or 24) and max_supp_proto >= (server_proto_min or 13) +end +-------------------------------------------------------------------------------- +function is_server_protocol_compat_or_error(server_proto_min, server_proto_max) + if not is_server_protocol_compat(server_proto_min, server_proto_max) then + local server_prot_ver_info, client_prot_ver_info + local s_p_min = server_proto_min or 13 + local s_p_max = server_proto_max or 24 + + if s_p_min ~= s_p_max then + server_prot_ver_info = fgettext_ne("Server supports protocol versions between $1 and $2. ", + s_p_min, s_p_max) + else + server_prot_ver_info = fgettext_ne("Server enforces protocol version $1. ", + s_p_min) + end + if min_supp_proto ~= max_supp_proto then + client_prot_ver_info= fgettext_ne("We support protocol versions between version $1 and $2.", + min_supp_proto, max_supp_proto) + else + client_prot_ver_info = fgettext_ne("We only support protocol version $1.", min_supp_proto) + end + gamedata.errormessage = fgettext_ne("Protocol version mismatch. ") + .. server_prot_ver_info + .. client_prot_ver_info + return false + end + + return true +end +-------------------------------------------------------------------------------- +function menu_worldmt(selected, setting, value) + local world = menudata.worldlist:get_list()[selected] + if world then + local filename = world.path .. DIR_DELIM .. "world.mt" + local world_conf = Settings(filename) + + if value then + if not world_conf:write() then + core.log("error", "Failed to write world config file") + end + world_conf:set(setting, value) + world_conf:write() + else + return world_conf:get(setting) + end + else + return nil + end +end + +function menu_worldmt_legacy(selected) + local modes_names = {"creative_mode", "enable_damage", "server_announce"} + for _, mode_name in pairs(modes_names) do + local mode_val = menu_worldmt(selected, mode_name) + if mode_val then + core.setting_set(mode_name, mode_val) + else + menu_worldmt(selected, mode_name, core.setting_get(mode_name)) + end + end +end + + diff --git a/cache/media/001be6f576c3a0bd75c24e76876a9cb1ada59e74 b/cache/media/001be6f576c3a0bd75c24e76876a9cb1ada59e74 new file mode 100644 index 000000000..a556072c0 Binary files /dev/null and b/cache/media/001be6f576c3a0bd75c24e76876a9cb1ada59e74 differ diff --git a/cache/media/00495cef026bea1bc488aed596f68a41fa8becf7 b/cache/media/00495cef026bea1bc488aed596f68a41fa8becf7 new file mode 100644 index 000000000..be949ab68 Binary files /dev/null and b/cache/media/00495cef026bea1bc488aed596f68a41fa8becf7 differ diff --git a/cache/media/0051ed449cc3099a9d77131a738aa12dbe9cda42 b/cache/media/0051ed449cc3099a9d77131a738aa12dbe9cda42 new file mode 100644 index 000000000..f42f3350a Binary files /dev/null and b/cache/media/0051ed449cc3099a9d77131a738aa12dbe9cda42 differ diff --git a/cache/media/0285f26738fc36bfa2749d933f49d08c394d2944 b/cache/media/0285f26738fc36bfa2749d933f49d08c394d2944 new file mode 100644 index 000000000..834a3d5a0 Binary files /dev/null and b/cache/media/0285f26738fc36bfa2749d933f49d08c394d2944 differ diff --git a/cache/media/02c355cfb6aa479b36595866270912d5ad627a02 b/cache/media/02c355cfb6aa479b36595866270912d5ad627a02 new file mode 100644 index 000000000..ac6108d91 Binary files /dev/null and b/cache/media/02c355cfb6aa479b36595866270912d5ad627a02 differ diff --git a/cache/media/02c999d4e07d66196428ee09568c741edba8819e b/cache/media/02c999d4e07d66196428ee09568c741edba8819e new file mode 100644 index 000000000..857b406ae Binary files /dev/null and b/cache/media/02c999d4e07d66196428ee09568c741edba8819e differ diff --git a/cache/media/02f75adaa10a1149ec4b5856429dd02f44d53aa0 b/cache/media/02f75adaa10a1149ec4b5856429dd02f44d53aa0 new file mode 100644 index 000000000..b79ed063c Binary files /dev/null and b/cache/media/02f75adaa10a1149ec4b5856429dd02f44d53aa0 differ diff --git a/cache/media/03007f14e4512b3895a4fd996598e8781deb0188 b/cache/media/03007f14e4512b3895a4fd996598e8781deb0188 new file mode 100644 index 000000000..7cfe3782a Binary files /dev/null and b/cache/media/03007f14e4512b3895a4fd996598e8781deb0188 differ diff --git a/cache/media/035297082f7e2ddeed800ad4ce0439784662d29a b/cache/media/035297082f7e2ddeed800ad4ce0439784662d29a new file mode 100644 index 000000000..de05af1c8 Binary files /dev/null and b/cache/media/035297082f7e2ddeed800ad4ce0439784662d29a differ diff --git a/cache/media/03896ee03c0ebaf16c0ca5776acd4d32dab41bda b/cache/media/03896ee03c0ebaf16c0ca5776acd4d32dab41bda new file mode 100644 index 000000000..ac997a7aa Binary files /dev/null and b/cache/media/03896ee03c0ebaf16c0ca5776acd4d32dab41bda differ diff --git a/cache/media/03e6dd51abddfea1a8ebfedd7df37a4d46f378f7 b/cache/media/03e6dd51abddfea1a8ebfedd7df37a4d46f378f7 new file mode 100644 index 000000000..ea95a6a84 Binary files /dev/null and b/cache/media/03e6dd51abddfea1a8ebfedd7df37a4d46f378f7 differ diff --git a/cache/media/0422cf980a45aa5eb792a36e90682b0b498a75e5 b/cache/media/0422cf980a45aa5eb792a36e90682b0b498a75e5 new file mode 100644 index 000000000..4f4f680be Binary files /dev/null and b/cache/media/0422cf980a45aa5eb792a36e90682b0b498a75e5 differ diff --git a/cache/media/04fb72cdfb1697d1dd85635334e76b84e216a464 b/cache/media/04fb72cdfb1697d1dd85635334e76b84e216a464 new file mode 100644 index 000000000..3b4810c65 Binary files /dev/null and b/cache/media/04fb72cdfb1697d1dd85635334e76b84e216a464 differ diff --git a/cache/media/055c3d6a3541da57a5ffbcc32706ba656ee3a592 b/cache/media/055c3d6a3541da57a5ffbcc32706ba656ee3a592 new file mode 100644 index 000000000..683170da1 Binary files /dev/null and b/cache/media/055c3d6a3541da57a5ffbcc32706ba656ee3a592 differ diff --git a/cache/media/05d57675d2cc66cb86ebeee2ca65781e704b9e82 b/cache/media/05d57675d2cc66cb86ebeee2ca65781e704b9e82 new file mode 100644 index 000000000..a3c9d72f7 Binary files /dev/null and b/cache/media/05d57675d2cc66cb86ebeee2ca65781e704b9e82 differ diff --git a/cache/media/062a734b612569e11718c6343bc7df7fd7f7215d b/cache/media/062a734b612569e11718c6343bc7df7fd7f7215d new file mode 100644 index 000000000..55d8123f8 Binary files /dev/null and b/cache/media/062a734b612569e11718c6343bc7df7fd7f7215d differ diff --git a/cache/media/06a840ca22d31137cdc84c99541360ffbfe71379 b/cache/media/06a840ca22d31137cdc84c99541360ffbfe71379 new file mode 100644 index 000000000..4844682bd Binary files /dev/null and b/cache/media/06a840ca22d31137cdc84c99541360ffbfe71379 differ diff --git a/cache/media/06c34608f80a42af3867c25de23460dec109bc54 b/cache/media/06c34608f80a42af3867c25de23460dec109bc54 new file mode 100644 index 000000000..bc85427ae Binary files /dev/null and b/cache/media/06c34608f80a42af3867c25de23460dec109bc54 differ diff --git a/cache/media/0761c05b6abd2982ef8bf311331325baa6d5f312 b/cache/media/0761c05b6abd2982ef8bf311331325baa6d5f312 new file mode 100644 index 000000000..8d7e480db Binary files /dev/null and b/cache/media/0761c05b6abd2982ef8bf311331325baa6d5f312 differ diff --git a/cache/media/084586f8329722236cb30b1cd07c204eb2726315 b/cache/media/084586f8329722236cb30b1cd07c204eb2726315 new file mode 100644 index 000000000..abf63b63e Binary files /dev/null and b/cache/media/084586f8329722236cb30b1cd07c204eb2726315 differ diff --git a/cache/media/08f4fdb4c448ced92fd66a8cdb22ae55c38ad14d b/cache/media/08f4fdb4c448ced92fd66a8cdb22ae55c38ad14d new file mode 100644 index 000000000..f835ba5b3 Binary files /dev/null and b/cache/media/08f4fdb4c448ced92fd66a8cdb22ae55c38ad14d differ diff --git a/cache/media/0903985e0eec1d3b637c09d1d05c11bcb2ffe57d b/cache/media/0903985e0eec1d3b637c09d1d05c11bcb2ffe57d new file mode 100644 index 000000000..41d954630 Binary files /dev/null and b/cache/media/0903985e0eec1d3b637c09d1d05c11bcb2ffe57d differ diff --git a/cache/media/09042027503b18ee5490ed3b5840527c789a1233 b/cache/media/09042027503b18ee5490ed3b5840527c789a1233 new file mode 100644 index 000000000..fb8dcc7ed Binary files /dev/null and b/cache/media/09042027503b18ee5490ed3b5840527c789a1233 differ diff --git a/cache/media/09077c915cd0f59e122131655d1eaa6383546443 b/cache/media/09077c915cd0f59e122131655d1eaa6383546443 new file mode 100644 index 000000000..c860acef0 Binary files /dev/null and b/cache/media/09077c915cd0f59e122131655d1eaa6383546443 differ diff --git a/cache/media/09300715efcac16434d988e06beacf340d0be152 b/cache/media/09300715efcac16434d988e06beacf340d0be152 new file mode 100644 index 000000000..8bdcbb457 Binary files /dev/null and b/cache/media/09300715efcac16434d988e06beacf340d0be152 differ diff --git a/cache/media/0940fba52da2a4c2cb08a7411690bbf27799d4b2 b/cache/media/0940fba52da2a4c2cb08a7411690bbf27799d4b2 new file mode 100644 index 000000000..0e992671e Binary files /dev/null and b/cache/media/0940fba52da2a4c2cb08a7411690bbf27799d4b2 differ diff --git a/cache/media/09422609d640b2a6c7da1dece93f524878b1ca3a b/cache/media/09422609d640b2a6c7da1dece93f524878b1ca3a new file mode 100644 index 000000000..4e1e4a3cd Binary files /dev/null and b/cache/media/09422609d640b2a6c7da1dece93f524878b1ca3a differ diff --git a/cache/media/09886e32270420da94ff56f02b2e8ce8ec57b2e9 b/cache/media/09886e32270420da94ff56f02b2e8ce8ec57b2e9 new file mode 100644 index 000000000..e7c7591e3 Binary files /dev/null and b/cache/media/09886e32270420da94ff56f02b2e8ce8ec57b2e9 differ diff --git a/cache/media/09bb75168fe761aaf50077089e9e445141c56af2 b/cache/media/09bb75168fe761aaf50077089e9e445141c56af2 new file mode 100644 index 000000000..6ae30f328 Binary files /dev/null and b/cache/media/09bb75168fe761aaf50077089e9e445141c56af2 differ diff --git a/cache/media/0a89bbeb3b0cb96173faa5f80834bccf30b1350f b/cache/media/0a89bbeb3b0cb96173faa5f80834bccf30b1350f new file mode 100644 index 000000000..fc2a59204 Binary files /dev/null and b/cache/media/0a89bbeb3b0cb96173faa5f80834bccf30b1350f differ diff --git a/cache/media/0aa67dee8d7cfa09de3a1c168a620c9a94bc266a b/cache/media/0aa67dee8d7cfa09de3a1c168a620c9a94bc266a new file mode 100644 index 000000000..d5b1bc6bc Binary files /dev/null and b/cache/media/0aa67dee8d7cfa09de3a1c168a620c9a94bc266a differ diff --git a/cache/media/0ae4c03507b05972090009d595d019d089c870d3 b/cache/media/0ae4c03507b05972090009d595d019d089c870d3 new file mode 100644 index 000000000..1cc480e3b Binary files /dev/null and b/cache/media/0ae4c03507b05972090009d595d019d089c870d3 differ diff --git a/cache/media/0b25d3f30a5b63465e688c2c6251c94a9f0f2b9e b/cache/media/0b25d3f30a5b63465e688c2c6251c94a9f0f2b9e new file mode 100644 index 000000000..ea7c567bb Binary files /dev/null and b/cache/media/0b25d3f30a5b63465e688c2c6251c94a9f0f2b9e differ diff --git a/cache/media/0bc6494050a556459087d3819c400c4910020bd8 b/cache/media/0bc6494050a556459087d3819c400c4910020bd8 new file mode 100644 index 000000000..8a29eecfe Binary files /dev/null and b/cache/media/0bc6494050a556459087d3819c400c4910020bd8 differ diff --git a/cache/media/0c77ff0e3c2dfd96ace8ccdd0ceca8d18344fb20 b/cache/media/0c77ff0e3c2dfd96ace8ccdd0ceca8d18344fb20 new file mode 100644 index 000000000..47fe87c32 Binary files /dev/null and b/cache/media/0c77ff0e3c2dfd96ace8ccdd0ceca8d18344fb20 differ diff --git a/cache/media/0d37f45fc17d4d34b3a1624e0cec85b2dcbcbc4f b/cache/media/0d37f45fc17d4d34b3a1624e0cec85b2dcbcbc4f new file mode 100644 index 000000000..d843e5f6d Binary files /dev/null and b/cache/media/0d37f45fc17d4d34b3a1624e0cec85b2dcbcbc4f differ diff --git a/cache/media/0d74dfefd0c1810faf4a89ce4227d1307bf3a7bb b/cache/media/0d74dfefd0c1810faf4a89ce4227d1307bf3a7bb new file mode 100644 index 000000000..34f63a17c Binary files /dev/null and b/cache/media/0d74dfefd0c1810faf4a89ce4227d1307bf3a7bb differ diff --git a/cache/media/0d96917a928d3cc63660278dd6fea3c2db6760a5 b/cache/media/0d96917a928d3cc63660278dd6fea3c2db6760a5 new file mode 100644 index 000000000..e56ec3060 Binary files /dev/null and b/cache/media/0d96917a928d3cc63660278dd6fea3c2db6760a5 differ diff --git a/cache/media/0dc0a6aae3417b22c90aa646e3005b108085e553 b/cache/media/0dc0a6aae3417b22c90aa646e3005b108085e553 new file mode 100644 index 000000000..a41a9f471 Binary files /dev/null and b/cache/media/0dc0a6aae3417b22c90aa646e3005b108085e553 differ diff --git a/cache/media/0de7970656f0d759b16da7e578c8bf9d0fbda68a b/cache/media/0de7970656f0d759b16da7e578c8bf9d0fbda68a new file mode 100644 index 000000000..8cd68d558 Binary files /dev/null and b/cache/media/0de7970656f0d759b16da7e578c8bf9d0fbda68a differ diff --git a/cache/media/0e084f0759f4dba810daaab63ffc4f3edac12a10 b/cache/media/0e084f0759f4dba810daaab63ffc4f3edac12a10 new file mode 100644 index 000000000..8705710ed Binary files /dev/null and b/cache/media/0e084f0759f4dba810daaab63ffc4f3edac12a10 differ diff --git a/cache/media/0e5b8cfe8b15053798dffd7220a139014b6e871b b/cache/media/0e5b8cfe8b15053798dffd7220a139014b6e871b new file mode 100644 index 000000000..de8747701 Binary files /dev/null and b/cache/media/0e5b8cfe8b15053798dffd7220a139014b6e871b differ diff --git a/cache/media/0e71ee10044b413f83babd59d3a6f60615110690 b/cache/media/0e71ee10044b413f83babd59d3a6f60615110690 new file mode 100644 index 000000000..92c563188 Binary files /dev/null and b/cache/media/0e71ee10044b413f83babd59d3a6f60615110690 differ diff --git a/cache/media/0e83a983776ad2a0ba5629bfde9c35b51a9bb961 b/cache/media/0e83a983776ad2a0ba5629bfde9c35b51a9bb961 new file mode 100644 index 000000000..3e9891513 Binary files /dev/null and b/cache/media/0e83a983776ad2a0ba5629bfde9c35b51a9bb961 differ diff --git a/cache/media/0ec63b140374ba704a58fa0c743cb357683313dd b/cache/media/0ec63b140374ba704a58fa0c743cb357683313dd new file mode 100644 index 000000000..1914264c0 Binary files /dev/null and b/cache/media/0ec63b140374ba704a58fa0c743cb357683313dd differ diff --git a/cache/media/0edce21b5ed23c31e47d52dc6cc8b5a34d361c05 b/cache/media/0edce21b5ed23c31e47d52dc6cc8b5a34d361c05 new file mode 100644 index 000000000..486c416ad Binary files /dev/null and b/cache/media/0edce21b5ed23c31e47d52dc6cc8b5a34d361c05 differ diff --git a/cache/media/0eed1e43c0411edd3474453e0bce8ded8dba3bf6 b/cache/media/0eed1e43c0411edd3474453e0bce8ded8dba3bf6 new file mode 100644 index 000000000..128a4d28a Binary files /dev/null and b/cache/media/0eed1e43c0411edd3474453e0bce8ded8dba3bf6 differ diff --git a/cache/media/0f1a4b740e589e82d8a6487d0e8ff5046cd74a01 b/cache/media/0f1a4b740e589e82d8a6487d0e8ff5046cd74a01 new file mode 100644 index 000000000..ea43ed929 Binary files /dev/null and b/cache/media/0f1a4b740e589e82d8a6487d0e8ff5046cd74a01 differ diff --git a/cache/media/0f4fcfc7bbe2e3885527313f4864c428075dde2f b/cache/media/0f4fcfc7bbe2e3885527313f4864c428075dde2f new file mode 100644 index 000000000..04cf9b865 Binary files /dev/null and b/cache/media/0f4fcfc7bbe2e3885527313f4864c428075dde2f differ diff --git a/cache/media/0ff5c2ceade4158495a154b493faa0c7eb193a3d b/cache/media/0ff5c2ceade4158495a154b493faa0c7eb193a3d new file mode 100644 index 000000000..06c4ab3ef Binary files /dev/null and b/cache/media/0ff5c2ceade4158495a154b493faa0c7eb193a3d differ diff --git a/cache/media/1057da05fdff262bce23c89fb47d3844cd215bce b/cache/media/1057da05fdff262bce23c89fb47d3844cd215bce new file mode 100644 index 000000000..a3ab7d168 Binary files /dev/null and b/cache/media/1057da05fdff262bce23c89fb47d3844cd215bce differ diff --git a/cache/media/106b957372cc99f54f11e28a53136e69b9ea9e7a b/cache/media/106b957372cc99f54f11e28a53136e69b9ea9e7a new file mode 100644 index 000000000..9d1384d46 Binary files /dev/null and b/cache/media/106b957372cc99f54f11e28a53136e69b9ea9e7a differ diff --git a/cache/media/11bb532d4bbe69b8354ff79da549d839b51d58f4 b/cache/media/11bb532d4bbe69b8354ff79da549d839b51d58f4 new file mode 100644 index 000000000..6cde64021 Binary files /dev/null and b/cache/media/11bb532d4bbe69b8354ff79da549d839b51d58f4 differ diff --git a/cache/media/120ee34142fe63330aa481661cd7f26af5f2d9e4 b/cache/media/120ee34142fe63330aa481661cd7f26af5f2d9e4 new file mode 100644 index 000000000..14eafbf46 Binary files /dev/null and b/cache/media/120ee34142fe63330aa481661cd7f26af5f2d9e4 differ diff --git a/cache/media/12a8dd2964d6143e60b8b3d4f17b4112d0d19e8e b/cache/media/12a8dd2964d6143e60b8b3d4f17b4112d0d19e8e new file mode 100644 index 000000000..5709a1751 Binary files /dev/null and b/cache/media/12a8dd2964d6143e60b8b3d4f17b4112d0d19e8e differ diff --git a/cache/media/1359a7c402c58efe3e4a61d3fbd9fa56e186a82e b/cache/media/1359a7c402c58efe3e4a61d3fbd9fa56e186a82e new file mode 100644 index 000000000..8099af139 Binary files /dev/null and b/cache/media/1359a7c402c58efe3e4a61d3fbd9fa56e186a82e differ diff --git a/cache/media/137fce6af09ce75dafd17799b2946f3c570b4353 b/cache/media/137fce6af09ce75dafd17799b2946f3c570b4353 new file mode 100644 index 000000000..c7efc7e58 Binary files /dev/null and b/cache/media/137fce6af09ce75dafd17799b2946f3c570b4353 differ diff --git a/cache/media/138d928841f9a791b53797befe52c016e3648678 b/cache/media/138d928841f9a791b53797befe52c016e3648678 new file mode 100644 index 000000000..a695e7808 Binary files /dev/null and b/cache/media/138d928841f9a791b53797befe52c016e3648678 differ diff --git a/cache/media/13a3da23a6c5ce29b9abfc3f95e7d9fc49979ddf b/cache/media/13a3da23a6c5ce29b9abfc3f95e7d9fc49979ddf new file mode 100644 index 000000000..da1167916 Binary files /dev/null and b/cache/media/13a3da23a6c5ce29b9abfc3f95e7d9fc49979ddf differ diff --git a/cache/media/13cf72cb3ab072a45433b07012abedc8df87d29d b/cache/media/13cf72cb3ab072a45433b07012abedc8df87d29d new file mode 100644 index 000000000..b2a30337e Binary files /dev/null and b/cache/media/13cf72cb3ab072a45433b07012abedc8df87d29d differ diff --git a/cache/media/14b03a05a7f5f1c0a97f0da2cc56677452a05ba9 b/cache/media/14b03a05a7f5f1c0a97f0da2cc56677452a05ba9 new file mode 100644 index 000000000..5e6749e88 Binary files /dev/null and b/cache/media/14b03a05a7f5f1c0a97f0da2cc56677452a05ba9 differ diff --git a/cache/media/14e677a080f7a8d830b851aec9a7179c8f714f7b b/cache/media/14e677a080f7a8d830b851aec9a7179c8f714f7b new file mode 100644 index 000000000..00500e9b9 Binary files /dev/null and b/cache/media/14e677a080f7a8d830b851aec9a7179c8f714f7b differ diff --git a/cache/media/1519f4d26d51d9e7df8d710706ac085849cea1cc b/cache/media/1519f4d26d51d9e7df8d710706ac085849cea1cc new file mode 100644 index 000000000..e9023a482 Binary files /dev/null and b/cache/media/1519f4d26d51d9e7df8d710706ac085849cea1cc differ diff --git a/cache/media/157b03a2e7043ad9f6709da34b45e935b8ea7a90 b/cache/media/157b03a2e7043ad9f6709da34b45e935b8ea7a90 new file mode 100644 index 000000000..dae47e342 Binary files /dev/null and b/cache/media/157b03a2e7043ad9f6709da34b45e935b8ea7a90 differ diff --git a/cache/media/159eba4a5fb3547dab5390e363e9328cd8cea3f7 b/cache/media/159eba4a5fb3547dab5390e363e9328cd8cea3f7 new file mode 100644 index 000000000..1bcd8a117 Binary files /dev/null and b/cache/media/159eba4a5fb3547dab5390e363e9328cd8cea3f7 differ diff --git a/cache/media/15c528605169b75f542949ef6f2250444eab11d3 b/cache/media/15c528605169b75f542949ef6f2250444eab11d3 new file mode 100644 index 000000000..6e5cfee5c Binary files /dev/null and b/cache/media/15c528605169b75f542949ef6f2250444eab11d3 differ diff --git a/cache/media/15f74279a0c0c99fe5dcfeb6142ae1574370ebdd b/cache/media/15f74279a0c0c99fe5dcfeb6142ae1574370ebdd new file mode 100644 index 000000000..44c4344b2 Binary files /dev/null and b/cache/media/15f74279a0c0c99fe5dcfeb6142ae1574370ebdd differ diff --git a/cache/media/161c0ba36ed96f1653b08ab5f7e9304e36fad432 b/cache/media/161c0ba36ed96f1653b08ab5f7e9304e36fad432 new file mode 100644 index 000000000..404d6e893 Binary files /dev/null and b/cache/media/161c0ba36ed96f1653b08ab5f7e9304e36fad432 differ diff --git a/cache/media/166b490e1325d706b2207e02f9039f788e11139f b/cache/media/166b490e1325d706b2207e02f9039f788e11139f new file mode 100644 index 000000000..762c2d2eb Binary files /dev/null and b/cache/media/166b490e1325d706b2207e02f9039f788e11139f differ diff --git a/cache/media/1691fa8dfe0eac12a261645372d7f2b645cf3bd3 b/cache/media/1691fa8dfe0eac12a261645372d7f2b645cf3bd3 new file mode 100644 index 000000000..c16ad94ba Binary files /dev/null and b/cache/media/1691fa8dfe0eac12a261645372d7f2b645cf3bd3 differ diff --git a/cache/media/16b0ce388e6c01adb73d0697eae6c93d20ddf104 b/cache/media/16b0ce388e6c01adb73d0697eae6c93d20ddf104 new file mode 100644 index 000000000..4e3bfe207 Binary files /dev/null and b/cache/media/16b0ce388e6c01adb73d0697eae6c93d20ddf104 differ diff --git a/cache/media/16cc107e301b232a8f24004552f646e11ee47510 b/cache/media/16cc107e301b232a8f24004552f646e11ee47510 new file mode 100644 index 000000000..d8d4a5b00 Binary files /dev/null and b/cache/media/16cc107e301b232a8f24004552f646e11ee47510 differ diff --git a/cache/media/17c7d19d7f26e066fdc103d578ca250bb2d9678d b/cache/media/17c7d19d7f26e066fdc103d578ca250bb2d9678d new file mode 100644 index 000000000..cc26ca969 Binary files /dev/null and b/cache/media/17c7d19d7f26e066fdc103d578ca250bb2d9678d differ diff --git a/cache/media/18b47d5e4e05a090628b8179d57cedc74cdbe4c0 b/cache/media/18b47d5e4e05a090628b8179d57cedc74cdbe4c0 new file mode 100644 index 000000000..8baeac32e Binary files /dev/null and b/cache/media/18b47d5e4e05a090628b8179d57cedc74cdbe4c0 differ diff --git a/cache/media/18d98a5cd24c52a771cc4adfe7433f3a4738bd78 b/cache/media/18d98a5cd24c52a771cc4adfe7433f3a4738bd78 new file mode 100644 index 000000000..2a840a41d Binary files /dev/null and b/cache/media/18d98a5cd24c52a771cc4adfe7433f3a4738bd78 differ diff --git a/cache/media/197096914adf424a4ec4b9cdef0ad13484ec02be b/cache/media/197096914adf424a4ec4b9cdef0ad13484ec02be new file mode 100644 index 000000000..85227d8fd Binary files /dev/null and b/cache/media/197096914adf424a4ec4b9cdef0ad13484ec02be differ diff --git a/cache/media/19fcbecda7e4424129e3d5138a730945222213f0 b/cache/media/19fcbecda7e4424129e3d5138a730945222213f0 new file mode 100644 index 000000000..5317518e2 Binary files /dev/null and b/cache/media/19fcbecda7e4424129e3d5138a730945222213f0 differ diff --git a/cache/media/1a3649a31e4eff73957e7d42810fed3fa386ae10 b/cache/media/1a3649a31e4eff73957e7d42810fed3fa386ae10 new file mode 100644 index 000000000..3707e4081 Binary files /dev/null and b/cache/media/1a3649a31e4eff73957e7d42810fed3fa386ae10 differ diff --git a/cache/media/1af0ba8ded454549156d2d123296de6dcf6232bb b/cache/media/1af0ba8ded454549156d2d123296de6dcf6232bb new file mode 100644 index 000000000..daad3be0d Binary files /dev/null and b/cache/media/1af0ba8ded454549156d2d123296de6dcf6232bb differ diff --git a/cache/media/1af8d5a3bdbacd308f67aecc8fcf1f80864eddb1 b/cache/media/1af8d5a3bdbacd308f67aecc8fcf1f80864eddb1 new file mode 100644 index 000000000..e919c6ba6 Binary files /dev/null and b/cache/media/1af8d5a3bdbacd308f67aecc8fcf1f80864eddb1 differ diff --git a/cache/media/1b24ba69db909207d44848090e3480afbf121ed0 b/cache/media/1b24ba69db909207d44848090e3480afbf121ed0 new file mode 100644 index 000000000..1a32f632d Binary files /dev/null and b/cache/media/1b24ba69db909207d44848090e3480afbf121ed0 differ diff --git a/cache/media/1c48f490dfc3c9b74f358d928eec836914ce4ca7 b/cache/media/1c48f490dfc3c9b74f358d928eec836914ce4ca7 new file mode 100644 index 000000000..b6fcc2c54 Binary files /dev/null and b/cache/media/1c48f490dfc3c9b74f358d928eec836914ce4ca7 differ diff --git a/cache/media/1c56d416122b01a06d8dc751032e222ed674ab85 b/cache/media/1c56d416122b01a06d8dc751032e222ed674ab85 new file mode 100644 index 000000000..fc2936506 Binary files /dev/null and b/cache/media/1c56d416122b01a06d8dc751032e222ed674ab85 differ diff --git a/cache/media/1c875a0c5d368afcfc72a1c6a6dfff9253b14542 b/cache/media/1c875a0c5d368afcfc72a1c6a6dfff9253b14542 new file mode 100644 index 000000000..53d6d156c Binary files /dev/null and b/cache/media/1c875a0c5d368afcfc72a1c6a6dfff9253b14542 differ diff --git a/cache/media/1c93b5ab3bc575139a3172424ce87aefed9886ce b/cache/media/1c93b5ab3bc575139a3172424ce87aefed9886ce new file mode 100644 index 000000000..8e1ac10b4 Binary files /dev/null and b/cache/media/1c93b5ab3bc575139a3172424ce87aefed9886ce differ diff --git a/cache/media/1c9d46a50279f21fe31e67ff4579626b90eb308c b/cache/media/1c9d46a50279f21fe31e67ff4579626b90eb308c new file mode 100644 index 000000000..11c740a45 Binary files /dev/null and b/cache/media/1c9d46a50279f21fe31e67ff4579626b90eb308c differ diff --git a/cache/media/1d95858bffff10097e13c40cdd29c5e352219cc8 b/cache/media/1d95858bffff10097e13c40cdd29c5e352219cc8 new file mode 100644 index 000000000..f9c84fdbd Binary files /dev/null and b/cache/media/1d95858bffff10097e13c40cdd29c5e352219cc8 differ diff --git a/cache/media/1e2ce2fa77eb4430765481426abcf207eed40a83 b/cache/media/1e2ce2fa77eb4430765481426abcf207eed40a83 new file mode 100644 index 000000000..74005b3a2 Binary files /dev/null and b/cache/media/1e2ce2fa77eb4430765481426abcf207eed40a83 differ diff --git a/cache/media/1fa60ae1d6591359badca99de7778a3a9e482e45 b/cache/media/1fa60ae1d6591359badca99de7778a3a9e482e45 new file mode 100644 index 000000000..ac41551b0 Binary files /dev/null and b/cache/media/1fa60ae1d6591359badca99de7778a3a9e482e45 differ diff --git a/cache/media/200ba919b9ba32b17eff76deb2ce6aea2c0499e2 b/cache/media/200ba919b9ba32b17eff76deb2ce6aea2c0499e2 new file mode 100644 index 000000000..8d6c40c13 Binary files /dev/null and b/cache/media/200ba919b9ba32b17eff76deb2ce6aea2c0499e2 differ diff --git a/cache/media/2187ae6a884a30830784a1ba4628619a837adceb b/cache/media/2187ae6a884a30830784a1ba4628619a837adceb new file mode 100644 index 000000000..0b4487d8a Binary files /dev/null and b/cache/media/2187ae6a884a30830784a1ba4628619a837adceb differ diff --git a/cache/media/2255b48948eaa0f0a50dab5c5162a6d52f4f5e24 b/cache/media/2255b48948eaa0f0a50dab5c5162a6d52f4f5e24 new file mode 100644 index 000000000..77d475cdf Binary files /dev/null and b/cache/media/2255b48948eaa0f0a50dab5c5162a6d52f4f5e24 differ diff --git a/cache/media/22f05012dca28808f9d24c28c3dfd6755ff3b054 b/cache/media/22f05012dca28808f9d24c28c3dfd6755ff3b054 new file mode 100644 index 000000000..7f2b9f127 Binary files /dev/null and b/cache/media/22f05012dca28808f9d24c28c3dfd6755ff3b054 differ diff --git a/cache/media/234d5b03d497d15a42bb39f4179dc11e02d6d585 b/cache/media/234d5b03d497d15a42bb39f4179dc11e02d6d585 new file mode 100644 index 000000000..4a1700347 Binary files /dev/null and b/cache/media/234d5b03d497d15a42bb39f4179dc11e02d6d585 differ diff --git a/cache/media/236cf4c055fd0936b1a7f7f54e38d2f023f9dab8 b/cache/media/236cf4c055fd0936b1a7f7f54e38d2f023f9dab8 new file mode 100644 index 000000000..39c0f83b6 Binary files /dev/null and b/cache/media/236cf4c055fd0936b1a7f7f54e38d2f023f9dab8 differ diff --git a/cache/media/23e4f0cca040acefd5157e963a018048ba226191 b/cache/media/23e4f0cca040acefd5157e963a018048ba226191 new file mode 100644 index 000000000..3a8f58643 Binary files /dev/null and b/cache/media/23e4f0cca040acefd5157e963a018048ba226191 differ diff --git a/cache/media/24048a578fda9e350814274dd47cfd5904c16a2f b/cache/media/24048a578fda9e350814274dd47cfd5904c16a2f new file mode 100644 index 000000000..00ce4471c Binary files /dev/null and b/cache/media/24048a578fda9e350814274dd47cfd5904c16a2f differ diff --git a/cache/media/245e757ae900473fb0c618532630f8642bad12df b/cache/media/245e757ae900473fb0c618532630f8642bad12df new file mode 100644 index 000000000..e789ad634 Binary files /dev/null and b/cache/media/245e757ae900473fb0c618532630f8642bad12df differ diff --git a/cache/media/24c392faefc5707061aa57b9987feae386228650 b/cache/media/24c392faefc5707061aa57b9987feae386228650 new file mode 100644 index 000000000..c2db5f627 Binary files /dev/null and b/cache/media/24c392faefc5707061aa57b9987feae386228650 differ diff --git a/cache/media/24c7020233d9655b78ba40997ef40567dd261b08 b/cache/media/24c7020233d9655b78ba40997ef40567dd261b08 new file mode 100644 index 000000000..7bbd2d407 Binary files /dev/null and b/cache/media/24c7020233d9655b78ba40997ef40567dd261b08 differ diff --git a/cache/media/2520baec459b1622379f8350e5e6fe44c1c18e66 b/cache/media/2520baec459b1622379f8350e5e6fe44c1c18e66 new file mode 100644 index 000000000..fe39fd784 Binary files /dev/null and b/cache/media/2520baec459b1622379f8350e5e6fe44c1c18e66 differ diff --git a/cache/media/252cca4adf5da2b35b17b0d9459d2edad977eca4 b/cache/media/252cca4adf5da2b35b17b0d9459d2edad977eca4 new file mode 100644 index 000000000..6504d9d80 Binary files /dev/null and b/cache/media/252cca4adf5da2b35b17b0d9459d2edad977eca4 differ diff --git a/cache/media/255f8ce0c21cf36a96d2e0cc03c05862a5b54de5 b/cache/media/255f8ce0c21cf36a96d2e0cc03c05862a5b54de5 new file mode 100644 index 000000000..5fc218078 Binary files /dev/null and b/cache/media/255f8ce0c21cf36a96d2e0cc03c05862a5b54de5 differ diff --git a/cache/media/258f6439b6aed5419a25eef58d1fc6c938687538 b/cache/media/258f6439b6aed5419a25eef58d1fc6c938687538 new file mode 100644 index 000000000..7dc43e309 Binary files /dev/null and b/cache/media/258f6439b6aed5419a25eef58d1fc6c938687538 differ diff --git a/cache/media/25e2be4365835c42ff3dd66857fc49eb2d2d8c8e b/cache/media/25e2be4365835c42ff3dd66857fc49eb2d2d8c8e new file mode 100644 index 000000000..dc7a4317e Binary files /dev/null and b/cache/media/25e2be4365835c42ff3dd66857fc49eb2d2d8c8e differ diff --git a/cache/media/2604941438de584f6137b85dbdfed044e7339bc4 b/cache/media/2604941438de584f6137b85dbdfed044e7339bc4 new file mode 100644 index 000000000..776dc4ee0 Binary files /dev/null and b/cache/media/2604941438de584f6137b85dbdfed044e7339bc4 differ diff --git a/cache/media/26086f26acc3bb0e31dc4bad4b61ac1d36ef9a5e b/cache/media/26086f26acc3bb0e31dc4bad4b61ac1d36ef9a5e new file mode 100644 index 000000000..4473dca28 Binary files /dev/null and b/cache/media/26086f26acc3bb0e31dc4bad4b61ac1d36ef9a5e differ diff --git a/cache/media/262459df8f09e5bd50421e4e891d004cf710e4da b/cache/media/262459df8f09e5bd50421e4e891d004cf710e4da new file mode 100644 index 000000000..aea7be670 Binary files /dev/null and b/cache/media/262459df8f09e5bd50421e4e891d004cf710e4da differ diff --git a/cache/media/267b01de657e0ec6579a229cf80da22682e480e0 b/cache/media/267b01de657e0ec6579a229cf80da22682e480e0 new file mode 100644 index 000000000..b198d18ce Binary files /dev/null and b/cache/media/267b01de657e0ec6579a229cf80da22682e480e0 differ diff --git a/cache/media/26b2afd0d270e2254625642d891abc24b52e3aaa b/cache/media/26b2afd0d270e2254625642d891abc24b52e3aaa new file mode 100644 index 000000000..53cdaf15d Binary files /dev/null and b/cache/media/26b2afd0d270e2254625642d891abc24b52e3aaa differ diff --git a/cache/media/26e56356909da5ce6650102c2f0094963fd59b7f b/cache/media/26e56356909da5ce6650102c2f0094963fd59b7f new file mode 100644 index 000000000..6d6adb378 Binary files /dev/null and b/cache/media/26e56356909da5ce6650102c2f0094963fd59b7f differ diff --git a/cache/media/278f786959e103b539d17a3ae0112316037807dc b/cache/media/278f786959e103b539d17a3ae0112316037807dc new file mode 100644 index 000000000..107a5a1ac Binary files /dev/null and b/cache/media/278f786959e103b539d17a3ae0112316037807dc differ diff --git a/cache/media/28082ae30b05d2a723be752526f42a042f3bd99d b/cache/media/28082ae30b05d2a723be752526f42a042f3bd99d new file mode 100644 index 000000000..278956b0c Binary files /dev/null and b/cache/media/28082ae30b05d2a723be752526f42a042f3bd99d differ diff --git a/cache/media/286404fc11b26be5ab4c38db35229db45ee4b1d1 b/cache/media/286404fc11b26be5ab4c38db35229db45ee4b1d1 new file mode 100644 index 000000000..46b9756de Binary files /dev/null and b/cache/media/286404fc11b26be5ab4c38db35229db45ee4b1d1 differ diff --git a/cache/media/2867fd614d3aea86dcefde90beba51748b3f3024 b/cache/media/2867fd614d3aea86dcefde90beba51748b3f3024 new file mode 100644 index 000000000..23cdbda4c Binary files /dev/null and b/cache/media/2867fd614d3aea86dcefde90beba51748b3f3024 differ diff --git a/cache/media/28cc61f4d3fc4d62c98ca15d11cc058f011cd8f6 b/cache/media/28cc61f4d3fc4d62c98ca15d11cc058f011cd8f6 new file mode 100644 index 000000000..ca7e4aef1 Binary files /dev/null and b/cache/media/28cc61f4d3fc4d62c98ca15d11cc058f011cd8f6 differ diff --git a/cache/media/294d9882ced84e1d8ed8c64d9f9abfa1622c77ab b/cache/media/294d9882ced84e1d8ed8c64d9f9abfa1622c77ab new file mode 100644 index 000000000..befdc1120 Binary files /dev/null and b/cache/media/294d9882ced84e1d8ed8c64d9f9abfa1622c77ab differ diff --git a/cache/media/29c572a8944e537d680344b3b708b1f2639faeb4 b/cache/media/29c572a8944e537d680344b3b708b1f2639faeb4 new file mode 100644 index 000000000..e9c78e00c Binary files /dev/null and b/cache/media/29c572a8944e537d680344b3b708b1f2639faeb4 differ diff --git a/cache/media/2a948d1b81d761702ca2494bd883f4aaa88a44a9 b/cache/media/2a948d1b81d761702ca2494bd883f4aaa88a44a9 new file mode 100644 index 000000000..e0197029d Binary files /dev/null and b/cache/media/2a948d1b81d761702ca2494bd883f4aaa88a44a9 differ diff --git a/cache/media/2b89bcbe02a31909328c5e37413e46f87f98a034 b/cache/media/2b89bcbe02a31909328c5e37413e46f87f98a034 new file mode 100644 index 000000000..0050f70e3 --- /dev/null +++ b/cache/media/2b89bcbe02a31909328c5e37413e46f87f98a034 @@ -0,0 +1,106 @@ +# Blender v2.76 (sub 0) OBJ File: 'gate_closed.blend' +# www.blender.org +mtllib gate_closed.mtl +o Cube_Cube.001 +v -0.625000 -0.500000 0.125000 +v -0.625000 0.500100 0.125000 +v -0.625000 -0.500000 -0.125000 +v -0.625000 0.500100 -0.125000 +v -0.375000 -0.500000 0.125000 +v -0.375000 0.500100 0.125000 +v -0.375000 -0.500000 -0.125000 +v -0.375000 0.500100 -0.125000 +v 0.375000 -0.500000 0.125000 +v 0.375000 0.500100 0.125000 +v 0.375000 -0.500000 -0.125000 +v 0.375000 0.500100 -0.125000 +v 0.625000 -0.500000 0.125000 +v 0.625000 0.500100 0.125000 +v 0.625000 -0.500000 -0.125000 +v 0.625000 0.500100 -0.125000 +v -0.375000 0.187500 0.062500 +v -0.375000 0.312500 0.062500 +v -0.375000 0.187500 -0.062500 +v -0.375000 0.312500 -0.062500 +v 0.375000 0.187500 0.062500 +v 0.375000 0.312500 0.062500 +v 0.375000 0.187500 -0.062500 +v 0.375000 0.312500 -0.062500 +v -0.374831 0.187348 0.062500 +v -0.156342 0.187363 0.062500 +v -0.374831 0.187348 -0.062500 +v -0.156342 0.187363 -0.062500 +v 0.374981 -0.343683 0.062500 +v 0.375065 -0.187304 0.062500 +v 0.374981 -0.343683 -0.062500 +v 0.375065 -0.187304 -0.062500 +vt 0.000000 0.750000 +vt 0.000000 0.500000 +vt 1.000000 0.500000 +vt 1.000000 0.750000 +vt 1.000000 1.000000 +vt -0.000000 1.000000 +vt 1.000000 -0.000000 +vt 1.000000 0.250000 +vt 0.000000 0.250000 +vt -0.000000 0.000000 +vt 0.250000 0.000000 +vt 0.250000 0.250000 +vt 0.250000 0.750000 +vt 0.250000 1.000000 +vt 0.500000 -0.000000 +vt 0.500000 0.250000 +vt 0.500000 0.750000 +vt 0.500000 1.000000 +vt 1.000000 0.625000 +vt 0.000000 0.625000 +vt 1.000000 0.875000 +vt 0.000000 0.875000 +vt -0.000000 0.687500 +vt 0.000000 0.562500 +vt 1.000000 0.562500 +vt 1.000000 0.687500 +vt 0.813740 0.249033 +vt 0.201557 0.249293 +vt 0.120995 0.125498 +vt 0.987404 0.125469 +vt 0.125000 0.375000 +vt 0.812500 0.375000 +vt 0.937500 0.500000 +vt 0.062500 0.500000 +vt 0.000000 0.125000 +vt 1.000000 0.125000 +vt 0.312500 0.437500 +vt 0.312500 0.312500 +vt 1.000000 0.312500 +vt 1.000000 0.437500 +vn -1.000000 0.000000 0.000000 +vn 0.000000 0.000000 -1.000000 +vn 1.000000 0.000000 0.000000 +vn 0.000000 0.000000 1.000000 +vn 0.000000 -1.000000 0.000000 +vn 0.000000 1.000000 0.000000 +vn -0.578000 -0.816100 0.000000 +vn 0.576200 0.817300 0.000000 +usemtl None +s off +f 2/1/1 4/2/1 3/3/1 1/4/1 +f 4/4/2 8/5/2 7/6/2 3/1/2 +f 8/7/3 6/8/3 5/9/3 7/10/3 +f 6/2/4 2/9/4 1/8/4 5/3/4 +f 1/9/5 3/10/5 7/11/5 5/12/5 +f 6/6/6 8/1/6 4/13/6 2/14/6 +f 10/1/1 12/2/1 11/3/1 9/4/1 +f 12/2/2 16/9/2 15/8/2 11/3/2 +f 16/7/3 14/8/3 13/9/3 15/10/3 +f 14/4/4 10/5/4 9/6/4 13/1/4 +f 9/12/5 11/11/5 15/15/5 13/16/5 +f 14/14/6 16/13/6 12/17/6 10/18/6 +f 20/2/2 24/3/2 23/19/2 19/20/2 +f 22/1/4 18/4/4 17/21/4 21/22/4 +f 17/23/5 19/24/5 23/25/5 21/26/5 +f 22/21/6 24/5/6 20/6/6 18/22/6 +f 28/27/2 32/28/2 31/29/2 27/30/2 +f 30/31/4 26/32/4 25/33/4 29/34/4 +f 25/35/7 27/10/7 31/7/7 29/36/7 +f 30/37/8 32/38/8 28/39/8 26/40/8 diff --git a/cache/media/2babaf731b6ed76fb630327e19e9eefcecd15852 b/cache/media/2babaf731b6ed76fb630327e19e9eefcecd15852 new file mode 100644 index 000000000..e7ca67f6b Binary files /dev/null and b/cache/media/2babaf731b6ed76fb630327e19e9eefcecd15852 differ diff --git a/cache/media/2bde6a00d50a37515bcb34bdda030d2029325998 b/cache/media/2bde6a00d50a37515bcb34bdda030d2029325998 new file mode 100644 index 000000000..9f46a42e4 Binary files /dev/null and b/cache/media/2bde6a00d50a37515bcb34bdda030d2029325998 differ diff --git a/cache/media/2cee7e151384e371e94b5ea4dc6ba24f960640f3 b/cache/media/2cee7e151384e371e94b5ea4dc6ba24f960640f3 new file mode 100644 index 000000000..1bc4fb67c Binary files /dev/null and b/cache/media/2cee7e151384e371e94b5ea4dc6ba24f960640f3 differ diff --git a/cache/media/2d0b1e19ba443bd5114590b94a4a0fb66a9998ca b/cache/media/2d0b1e19ba443bd5114590b94a4a0fb66a9998ca new file mode 100644 index 000000000..5082953a6 Binary files /dev/null and b/cache/media/2d0b1e19ba443bd5114590b94a4a0fb66a9998ca differ diff --git a/cache/media/2d4f6b37b47084bd8455ba70ec72fa667ba4f094 b/cache/media/2d4f6b37b47084bd8455ba70ec72fa667ba4f094 new file mode 100644 index 000000000..18a270fb9 Binary files /dev/null and b/cache/media/2d4f6b37b47084bd8455ba70ec72fa667ba4f094 differ diff --git a/cache/media/2d6b0f53b6a329dca510792a097558b3e05cfbcb b/cache/media/2d6b0f53b6a329dca510792a097558b3e05cfbcb new file mode 100644 index 000000000..256414f46 Binary files /dev/null and b/cache/media/2d6b0f53b6a329dca510792a097558b3e05cfbcb differ diff --git a/cache/media/2df6de5596fe387aaeb562f94ca4583649d46c67 b/cache/media/2df6de5596fe387aaeb562f94ca4583649d46c67 new file mode 100644 index 000000000..45882c6ee --- /dev/null +++ b/cache/media/2df6de5596fe387aaeb562f94ca4583649d46c67 @@ -0,0 +1,113 @@ +# Blender v2.72 (sub 0) OBJ File: '' +# www.blender.org +mtllib stairs.mtl +o stairs_top +v -0.500000 0.000000 -0.500000 +v -0.500000 0.000000 0.000000 +v 0.500000 0.000000 0.000000 +v 0.500000 0.000000 -0.500000 +v -0.500000 0.500000 0.000000 +v 0.500000 0.500000 0.000000 +v -0.500000 0.500000 0.500000 +v 0.500000 0.500000 0.500000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 0.500000 +vt 0.000000 0.500000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vn 0.000000 1.000000 0.000000 +g stairs_top +usemtl None +s off +f 4/1/1 1/2/1 2/3/1 3/4/1 +f 7/5/1 8/6/1 6/4/1 5/3/1 +o stairs_bottom +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vn 0.000000 -1.000000 -0.000000 +g stairs_bottom +usemtl None +s off +f 11/7/2 9/8/2 10/9/2 12/10/2 +o stairs_right +v -0.500000 0.000000 -0.500000 +v -0.500000 -0.500000 -0.500000 +v -0.500000 0.000000 0.000000 +v -0.500000 -0.500000 0.500000 +v -0.500000 0.500000 0.000000 +v -0.500000 0.500000 0.500000 +vt 0.000000 0.500000 +vt 0.000000 0.000000 +vt 0.500000 0.500000 +vt 1.000000 1.000000 +vt 0.500000 1.000000 +vt 1.000000 0.000000 +vn -1.000000 0.000000 0.000000 +g stairs_right +usemtl None +s off +f 13/11/3 14/12/3 15/13/3 +f 15/13/3 18/14/3 17/15/3 +f 14/12/3 16/16/3 18/14/3 +o stairs_left +v 0.500000 0.000000 0.000000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 0.000000 -0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 0.500000 0.000000 +v 0.500000 0.500000 0.500000 +vt 0.500000 0.500000 +vt 1.000000 0.000000 +vt 1.000000 0.500000 +vt 0.500000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vn 1.000000 0.000000 0.000000 +g stairs_left +usemtl None +s off +f 19/17/4 20/18/4 21/19/4 +f 19/17/4 23/20/4 24/21/4 +f 20/18/4 24/21/4 22/22/4 +o stairs_back +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 0.500000 0.500000 +v 0.500000 0.500000 0.500000 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vn 0.000000 -0.000000 1.000000 +g stairs_back +usemtl None +s off +f 26/23/5 28/24/5 27/25/5 25/26/5 +o stairs_front +v -0.500000 0.000000 -0.500000 +v -0.500000 -0.500000 -0.500000 +v -0.500000 0.000000 0.000000 +v 0.500000 0.000000 0.000000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 0.000000 -0.500000 +v -0.500000 0.500000 0.000000 +v 0.500000 0.500000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 0.500000 +vt 0.000000 0.500000 +vt 0.000000 0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vn 0.000000 0.000000 -1.000000 +g stairs_front +usemtl None +s off +f 30/27/6 29/28/6 34/29/6 33/30/6 +f 31/28/6 35/31/6 36/32/6 32/29/6 diff --git a/cache/media/2e20da6488dab3e4310f162a02b8a766af9bec90 b/cache/media/2e20da6488dab3e4310f162a02b8a766af9bec90 new file mode 100644 index 000000000..03455c3f4 Binary files /dev/null and b/cache/media/2e20da6488dab3e4310f162a02b8a766af9bec90 differ diff --git a/cache/media/2e578047c58148aa877de5d8372310b2986a6f79 b/cache/media/2e578047c58148aa877de5d8372310b2986a6f79 new file mode 100644 index 000000000..5c5bfaf20 Binary files /dev/null and b/cache/media/2e578047c58148aa877de5d8372310b2986a6f79 differ diff --git a/cache/media/2e7623b4f89bc1179416c6d501ff0a081bc9cef8 b/cache/media/2e7623b4f89bc1179416c6d501ff0a081bc9cef8 new file mode 100644 index 000000000..239d66cea Binary files /dev/null and b/cache/media/2e7623b4f89bc1179416c6d501ff0a081bc9cef8 differ diff --git a/cache/media/2eba5ebe90534e7478020b75c934b61f743956c3 b/cache/media/2eba5ebe90534e7478020b75c934b61f743956c3 new file mode 100644 index 000000000..1af5ccca3 Binary files /dev/null and b/cache/media/2eba5ebe90534e7478020b75c934b61f743956c3 differ diff --git a/cache/media/2ec3d489a62fa11ef496acd27e603e837b9af315 b/cache/media/2ec3d489a62fa11ef496acd27e603e837b9af315 new file mode 100644 index 000000000..2e23b8a2b Binary files /dev/null and b/cache/media/2ec3d489a62fa11ef496acd27e603e837b9af315 differ diff --git a/cache/media/2ee2dc5f49c29da96922865642c9518f1450c46b b/cache/media/2ee2dc5f49c29da96922865642c9518f1450c46b new file mode 100644 index 000000000..0f6ecd2a2 Binary files /dev/null and b/cache/media/2ee2dc5f49c29da96922865642c9518f1450c46b differ diff --git a/cache/media/2ef494dc8ed0bbfc6c0ac695c24d8bc16c6ff1b7 b/cache/media/2ef494dc8ed0bbfc6c0ac695c24d8bc16c6ff1b7 new file mode 100644 index 000000000..fe1cead35 Binary files /dev/null and b/cache/media/2ef494dc8ed0bbfc6c0ac695c24d8bc16c6ff1b7 differ diff --git a/cache/media/2f0d89b21b0b01c836541ea58770444ef0c2eb8d b/cache/media/2f0d89b21b0b01c836541ea58770444ef0c2eb8d new file mode 100644 index 000000000..14bd057ec Binary files /dev/null and b/cache/media/2f0d89b21b0b01c836541ea58770444ef0c2eb8d differ diff --git a/cache/media/2fd2f8c8e5985359fd3591b8fdf83001bf6820cd b/cache/media/2fd2f8c8e5985359fd3591b8fdf83001bf6820cd new file mode 100644 index 000000000..e90039252 --- /dev/null +++ b/cache/media/2fd2f8c8e5985359fd3591b8fdf83001bf6820cd @@ -0,0 +1,7645 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + 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 { + 0.384873, 0.000000, 0.000000, 0.000000, + 0.000000, 0.384873, 0.000000, 0.000000, + 0.000000, 0.000000, 0.384873, 0.000000, + 0.140869, 0.294248, 0.956928, 1.000000;; + } + Frame Armature_telo { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.997725, 0.067414, 0.000000, + 0.000000,-0.067414,-0.997725, 0.000000, + -0.420690, 0.533795,-0.000000, 1.000000;; + } + Frame Armature_popa { + FrameTransformMatrix { + -1.000000, 0.000000,-0.000001, 0.000000, + -0.000000, 0.979027, 0.203730, 0.000000, + 0.000001, 0.203730,-0.979027, 0.000000, + 0.000000, 1.173850, 0.000000, 1.000000;; + } + } //End of Armature_popa + Frame Armature_nogi1 { + FrameTransformMatrix { + -0.000000, 0.997725, 0.067414, 0.000000, + 0.814990,-0.039065, 0.578158, 0.000000, + 0.579476, 0.054942,-0.813135, 0.000000, + 0.000000, 1.173850, 0.000000, 1.000000;; + } + } //End of Armature_nogi1 + Frame Armature_nogi2 { + FrameTransformMatrix { + -0.000000,-0.997725,-0.067414, 0.000000, + -0.835281,-0.037066, 0.548572, 0.000000, + -0.549823, 0.056310,-0.833381, 0.000000, + 0.000000, 1.173850, 0.000000, 1.000000;; + } + } //End of Armature_nogi2 + Frame Armature_golova { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.963513, 0.267663, 0.000000, + 0.000000,-0.267663,-0.963513, 0.000000, + 0.000000,-0.000000, 0.000000, 1.000000;; + } + Frame Armature_us1 { + FrameTransformMatrix { + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000, 0.588365, 0.808596, 0.000000, + 0.000000, 0.808596,-0.588364, 0.000000, + 0.000000, 0.535820, 1.341474, 1.000000;; + } + } //End of Armature_us1 + } //End of Armature_golova + Frame Armature_Bone_006 { + FrameTransformMatrix { + -1.000000,-0.000000,-0.000001, 0.000000, + 0.000000, 0.530521,-0.847671, 0.000000, + 0.000000,-0.847672,-0.530521, 0.000000, + 0.000000,-0.000000, 0.000000, 1.000000;; + } + Frame Armature_Bone_007 { + FrameTransformMatrix { + -0.000000, 0.472169,-0.881508, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.881508, 0.472169, 0.000000, + 0.000000, 1.619178, 0.000000, 1.000000;; + } + Frame Armature_krilo1 { + FrameTransformMatrix { + 0.143811,-0.989605,-0.000000, 0.000000, + 0.989605, 0.143811, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -0.000000, 0.328829,-0.000000, 1.000000;; + } + } //End of Armature_krilo1 + } //End of Armature_Bone_007 + Frame Armature_Bone_008 { + FrameTransformMatrix { + 0.000000,-0.472169, 0.881508, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.881508, 0.472169, 0.000000, + 0.000000, 1.619178, 0.000000, 1.000000;; + } + Frame Armature_krilo2 { + FrameTransformMatrix { + 0.132673, 0.991160,-0.000000, 0.000000, + -0.991160, 0.132673, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.346481,-0.000000, 1.000000;; + } + } //End of Armature_krilo2 + } //End of Armature_Bone_008 + } //End of Armature_Bone_006 + } //End of Armature_telo + } //End of Armature + Frame Cube { + FrameTransformMatrix { + 0.384873, 0.000000, 0.000000, 0.000000, + 0.000000, 0.384873, 0.000000, 0.000000, + 0.000000, 0.000000, 0.384873, 0.000000, + 0.142552,-0.710054, 0.633902, 1.000000;; + } + Mesh { //Mesh Mesh + 752; + -1.207143;-1.565834;-0.160260;, + -1.207143; 0.848453;-0.114428;, + -1.207143; 0.848453; 2.299859;, + -1.207143;-1.565834; 2.061798;, + 0.000000; 1.649486;-0.222824;, + -0.697598; 1.641988;-0.148365;, + -1.207143; 0.848453;-0.114428;, + 0.000000; 0.793238;-0.357718;, + 1.207143; 0.848453;-0.114428;, + 1.207143;-1.565834;-0.160260;, + 1.207143;-1.565834; 2.061798;, + 1.207143; 0.848453; 2.299859;, + 0.000000;-3.357429;-0.154227;, + 0.754746;-2.998208;-0.084791;, + 1.207143;-1.565834;-0.160260;, + 0.000000;-1.811853;-0.407172;, + 1.207143;-1.565834;-0.160260;, + 1.207143; 0.848453;-0.114428;, + 0.000000; 0.793238;-0.357718;, + 0.000000;-1.811853;-0.407172;, + -1.207143;-1.565834; 2.061798;, + -1.207143; 0.848453; 2.299859;, + 0.000000; 0.793238; 2.418884;, + 0.000000;-1.811853; 2.162010;, + 0.000000;-4.017673;-0.152394;, + 0.394190;-3.610095;-0.083093;, + 0.754746;-2.998208;-0.084791;, + 0.000000;-3.357429;-0.154227;, + 0.000000;-3.357429; 1.267141;, + -0.754746;-2.998208; 1.232472;, + -1.207143;-1.565834; 2.061798;, + 0.000000;-1.811853; 2.162010;, + -1.207143;-1.565834;-0.160260;, + -1.207143;-1.565834; 2.061798;, + -0.754746;-2.998208; 1.232472;, + -0.754746;-2.998208;-0.084791;, + 1.207143;-1.565834; 2.061798;, + 1.207143;-1.565834;-0.160260;, + 0.754746;-2.998208;-0.084791;, + 0.754746;-2.998208; 1.232472;, + 0.000000;-4.017673;-0.152394;, + -0.394190;-3.610095;-0.083093;, + -0.394190;-3.610095; 0.502768;, + 0.000000;-4.017673; 0.479768;, + 0.754746;-2.998208; 1.232472;, + 0.754746;-2.998208;-0.084791;, + 0.394190;-3.610095;-0.083093;, + 0.394190;-3.610095; 0.502768;, + 0.000000;-4.017673; 0.479768;, + -0.394190;-3.610095; 0.502768;, + -0.754746;-2.998208; 1.232472;, + 0.000000;-3.357429; 1.267141;, + -0.754746;-2.998208;-0.084791;, + -0.754746;-2.998208; 1.232472;, + -0.394190;-3.610095; 0.502768;, + -0.394190;-3.610095;-0.083093;, + 0.000000; 1.954336; 0.156781;, + -0.889277; 1.924510; 0.203438;, + -0.697598; 1.641988;-0.148365;, + 0.000000; 1.649486;-0.222824;, + 0.000000; 1.649486; 1.282635;, + 0.697598; 1.641988; 1.246832;, + 1.207143; 0.848453; 2.299859;, + 0.000000; 0.793238; 2.418884;, + 0.697598; 1.641988; 1.246832;, + 0.697598; 1.641988;-0.148365;, + 1.207143; 0.848453;-0.114428;, + 1.207143; 0.848453; 2.299859;, + -1.207143; 0.848453; 2.299859;, + -1.207143; 0.848453;-0.114428;, + -0.697598; 1.641988;-0.148365;, + -0.697598; 1.641988; 1.246832;, + 0.000000; 2.397149;-0.077860;, + -1.106733; 2.334890;-0.014018;, + -0.889277; 1.924510; 0.203438;, + 0.000000; 1.954336; 0.156781;, + -0.697598; 1.641988; 1.246832;, + -0.697598; 1.641988;-0.148365;, + -0.889277; 1.924510; 0.203438;, + -0.889277; 1.924510; 1.981993;, + 0.000000; 1.954336; 2.075897;, + 0.889277; 1.924510; 1.981993;, + 0.697598; 1.641988; 1.246832;, + 0.000000; 1.649486; 1.282635;, + 0.889277; 1.924510; 1.981993;, + 0.889277; 1.924510; 0.203438;, + 0.697598; 1.641988;-0.148365;, + 0.697598; 1.641988; 1.246832;, + 0.000000; 2.954030; 0.088741;, + -0.754683; 2.850984; 0.140381;, + -1.106733; 2.334890;-0.014018;, + 0.000000; 2.397149;-0.077860;, + 1.106733; 2.334890; 2.199448;, + 1.106733; 2.334890;-0.014018;, + 0.889277; 1.924510; 0.203438;, + 0.889277; 1.924510; 1.981993;, + -0.889277; 1.924510; 1.981993;, + -0.889277; 1.924510; 0.203438;, + -1.106733; 2.334890;-0.014018;, + -1.106733; 2.334890; 2.199448;, + 0.000000; 2.397149; 2.310538;, + 1.106733; 2.334890; 2.199448;, + 0.889277; 1.924510; 1.981993;, + 0.000000; 1.954336; 2.075897;, + 0.052044; 3.134467; 0.095083;, + -0.512813; 2.991794; 0.145328;, + -0.754683; 2.850984; 0.140381;, + 0.000000; 2.954030; 0.088741;, + -1.106733; 2.334890; 2.199448;, + -1.106733; 2.334890;-0.014018;, + -0.754683; 2.850984; 0.140381;, + -0.754683; 2.850984; 1.847398;, + 0.000000; 2.954030; 1.930665;, + 0.754683; 2.850984; 1.847398;, + 1.106733; 2.334890; 2.199448;, + 0.000000; 2.397149; 2.310538;, + 0.754683; 2.850984; 1.847398;, + 0.754683; 2.850984; 0.140381;, + 1.106733; 2.334890;-0.014018;, + 1.106733; 2.334890; 2.199448;, + 0.037324; 3.437407;-0.268378;, + -1.044630; 3.249253;-0.038202;, + -0.512813; 2.991794; 0.145328;, + 0.052044; 3.134467; 0.095083;, + 0.046281; 3.357266; 1.286510;, + 0.603937; 3.251096; 1.251353;, + 0.754683; 2.850984; 1.847398;, + 0.000000; 2.954030; 1.930665;, + 0.603937; 3.251096; 1.251353;, + 0.609278; 3.044615; 0.147188;, + 0.754683; 2.850984; 0.140381;, + 0.754683; 2.850984; 1.847398;, + -0.754683; 2.850984; 1.847398;, + -0.754683; 2.850984; 0.140381;, + -0.512813; 2.991794; 0.145328;, + -0.518154; 3.198276; 1.249492;, + -0.014320; 5.258876;-0.451437;, + -1.092491; 4.943257;-0.188008;, + -1.044630; 3.249253;-0.038202;, + 0.037324; 3.437407;-0.268378;, + -0.518154; 3.198276; 1.249492;, + -0.512813; 2.991794; 0.145328;, + -1.044630; 3.249253;-0.038202;, + -1.054904; 3.646428; 2.085701;, + 0.026238; 3.865972; 2.183405;, + 1.103537; 3.745837; 2.077552;, + 0.603937; 3.251096; 1.251353;, + 0.046281; 3.357266; 1.286510;, + 1.103537; 3.745837; 2.077552;, + 1.113811; 3.348662;-0.046351;, + 0.609278; 3.044615; 0.147188;, + 0.603937; 3.251096; 1.251353;, + -0.058332; 6.253111;-0.308079;, + -0.589462; 5.886722;-0.215508;, + -1.092491; 4.943257;-0.188008;, + -0.014320; 5.258876;-0.451437;, + -1.054904; 3.646428; 2.085701;, + -1.044630; 3.249253;-0.038202;, + -1.092491; 4.943257;-0.188008;, + -1.102765; 4.669911; 1.894075;, + -0.025405; 4.970342; 1.976635;, + 1.055676; 4.769320; 1.885926;, + 1.103537; 3.745837; 2.077552;, + 0.026238; 3.865972; 2.183405;, + 1.055676; 4.769320; 1.885926;, + 1.065950; 5.030777;-0.235848;, + 1.113811; 3.348662;-0.046351;, + 1.103537; 3.745837; 2.077552;, + -0.058332; 6.253111;-0.308079;, + 0.481344; 5.930141;-0.239242;, + 0.476247; 5.448880; 1.050888;, + -0.063831; 5.730633; 1.073387;, + 0.476247; 5.448880; 1.050888;, + 0.481344; 5.930141;-0.239242;, + 1.065950; 5.030777;-0.235848;, + 1.055676; 4.769320; 1.885926;, + -1.102765; 4.669911; 1.894075;, + -1.092491; 4.943257;-0.188008;, + -0.589462; 5.886722;-0.215508;, + -0.594559; 5.399563; 1.054930;, + -0.063831; 5.730633; 1.073387;, + 0.476247; 5.448880; 1.050888;, + 1.055676; 4.769320; 1.885926;, + -0.025405; 4.970342; 1.976635;, + 1.927217;-0.178291; 1.340505;, + 1.927217;-0.178291; 1.803474;, + 1.818528;-0.039697; 1.803474;, + 1.818528;-0.039697; 1.340505;, + 1.944126; 0.567656; 1.340505;, + 1.117424; 1.717077; 0.118293;, + 1.117424; 1.717077; 0.696181;, + 1.944126; 0.567656; 1.803474;, + 1.117424; 1.717077; 0.118293;, + 0.960650; 0.958966; 0.118293;, + 0.960650; 0.958966; 0.696181;, + 1.117424; 1.717077; 0.696181;, + 0.960650; 0.958966; 0.118293;, + 1.818528;-0.039697; 1.340505;, + 1.818528;-0.039697; 1.803474;, + 0.960650; 0.958966; 0.696181;, + 0.960650; 0.958966; 0.118293;, + 1.117424; 1.717077; 0.118293;, + 1.944126; 0.567656; 1.340505;, + 1.818528;-0.039697; 1.340505;, + 1.818528;-0.039697; 1.803474;, + 1.944126; 0.567656; 1.803474;, + 1.117424; 1.717077; 0.696181;, + 0.960650; 0.958966; 0.696181;, + 2.563935;-2.600637;-1.705319;, + 2.563935;-2.600637;-1.127432;, + 1.927217;-0.178291; 1.803474;, + 1.927217;-0.178291; 1.340505;, + 2.052814; 0.429062; 1.803474;, + 2.052814; 0.429062; 1.340505;, + 1.944126; 0.567656; 1.340505;, + 1.944126; 0.567656; 1.803474;, + 2.052814; 0.429062; 1.340505;, + 1.927217;-0.178291; 1.340505;, + 1.818528;-0.039697; 1.340505;, + 1.944126; 0.567656; 1.340505;, + 1.927217;-0.178291; 1.803474;, + 2.052814; 0.429062; 1.803474;, + 1.944126; 0.567656; 1.803474;, + 1.818528;-0.039697; 1.803474;, + 2.563935;-2.600637;-1.705319;, + 2.720709;-1.842527;-1.705319;, + 2.720709;-1.842527;-1.127432;, + 2.563935;-2.600637;-1.127432;, + 2.563935;-2.600637;-1.127432;, + 2.720709;-1.842527;-1.127432;, + 2.052814; 0.429062; 1.803474;, + 1.927217;-0.178291; 1.803474;, + 2.720709;-1.842527;-1.127432;, + 2.720709;-1.842527;-1.705319;, + 2.052814; 0.429062; 1.340505;, + 2.052814; 0.429062; 1.803474;, + 2.720709;-1.842527;-1.705319;, + 2.563935;-2.600637;-1.705319;, + 1.927217;-0.178291; 1.340505;, + 2.052814; 0.429062; 1.340505;, + 2.087688; 1.787264; 2.217100;, + 2.087688; 1.787264; 2.646394;, + 1.975209; 1.753564; 2.646394;, + 1.975209; 1.753564; 2.217100;, + 1.944670; 2.382095; 2.217100;, + 0.670069; 2.176223; 0.318695;, + 0.670069; 2.176223; 0.747989;, + 1.944670; 2.382095; 2.646394;, + 0.670069; 2.176223; 0.318695;, + 0.700608; 1.547692; 0.318695;, + 0.700608; 1.547692; 0.747989;, + 0.670069; 2.176223; 0.747989;, + 0.700608; 1.547692; 0.318695;, + 1.975209; 1.753564; 2.217100;, + 1.975209; 1.753564; 2.646394;, + 0.700608; 1.547692; 0.747989;, + 0.700608; 1.547692; 0.318695;, + 0.670069; 2.176223; 0.318695;, + 1.944670; 2.382095; 2.217100;, + 1.975209; 1.753564; 2.217100;, + 1.975209; 1.753564; 2.646394;, + 1.944670; 2.382095; 2.646394;, + 0.670069; 2.176223; 0.747989;, + 0.700608; 1.547692; 0.747989;, + 3.505196; 1.864721;-1.578208;, + 3.505196; 1.864721;-1.148914;, + 2.087688; 1.787264; 2.646394;, + 2.087688; 1.787264; 2.217100;, + 2.057148; 2.415795; 2.646394;, + 2.057148; 2.415795; 2.217100;, + 1.944670; 2.382095; 2.217100;, + 1.944670; 2.382095; 2.646394;, + 2.057148; 2.415795; 2.217100;, + 2.087688; 1.787264; 2.217100;, + 1.975209; 1.753564; 2.217100;, + 1.944670; 2.382095; 2.217100;, + 2.087688; 1.787264; 2.646394;, + 2.057148; 2.415795; 2.646394;, + 1.944670; 2.382095; 2.646394;, + 1.975209; 1.753564; 2.646394;, + 3.505196; 1.864721;-1.578208;, + 3.474657; 2.493252;-1.578208;, + 3.474657; 2.493252;-1.148914;, + 3.505196; 1.864721;-1.148914;, + 3.505196; 1.864721;-1.148914;, + 3.474657; 2.493252;-1.148914;, + 2.057148; 2.415795; 2.646394;, + 2.087688; 1.787264; 2.646394;, + 3.474657; 2.493252;-1.148914;, + 3.474657; 2.493252;-1.578208;, + 2.057148; 2.415795; 2.217100;, + 2.057148; 2.415795; 2.646394;, + 3.474657; 2.493252;-1.578208;, + 3.505196; 1.864721;-1.578208;, + 2.087688; 1.787264; 2.217100;, + 2.057148; 2.415795; 2.217100;, + 2.058483; 3.786135; 1.232689;, + 2.058483; 3.786135; 1.661983;, + 1.950418; 3.701648; 1.661983;, + 1.950418; 3.701648; 1.232689;, + 1.873854; 4.305515; 1.232689;, + 0.832739; 3.408118; 0.367431;, + 0.832739; 3.408118; 0.796725;, + 1.873854; 4.305515; 1.661983;, + 0.832739; 3.408118; 0.367431;, + 0.909303; 2.804250; 0.367431;, + 0.909303; 2.804250; 0.796725;, + 0.832739; 3.408118; 0.796725;, + 0.909303; 2.804250; 0.367431;, + 1.950418; 3.701648; 1.232689;, + 1.950418; 3.701648; 1.661983;, + 0.909303; 2.804250; 0.796725;, + 0.909303; 2.804250; 0.367431;, + 0.832739; 3.408118; 0.367431;, + 1.873854; 4.305515; 1.232689;, + 1.950418; 3.701648; 1.232689;, + 1.950418; 3.701648; 1.661983;, + 1.873854; 4.305515; 1.661983;, + 0.832739; 3.408118; 0.796725;, + 0.909303; 2.804250; 0.796725;, + 2.306866; 4.951811;-1.582934;, + 2.306866; 4.951811;-1.153640;, + 2.058483; 3.786135; 1.661983;, + 2.058483; 3.786135; 1.232689;, + 1.981918; 4.390002; 1.661983;, + 1.981918; 4.390002; 1.232689;, + 1.873854; 4.305515; 1.232689;, + 1.873854; 4.305515; 1.661983;, + 1.981918; 4.390002; 1.232689;, + 2.058483; 3.786135; 1.232689;, + 1.950418; 3.701648; 1.232689;, + 1.873854; 4.305515; 1.232689;, + 2.058483; 3.786135; 1.661983;, + 1.981918; 4.390002; 1.661983;, + 1.873854; 4.305515; 1.661983;, + 1.950418; 3.701648; 1.661983;, + 2.306866; 4.951811;-1.582934;, + 2.230301; 5.555677;-1.582934;, + 2.230301; 5.555677;-1.153640;, + 2.306866; 4.951811;-1.153640;, + 2.306866; 4.951811;-1.153640;, + 2.230301; 5.555677;-1.153640;, + 1.981918; 4.390002; 1.661983;, + 2.058483; 3.786135; 1.661983;, + 2.230301; 5.555677;-1.153640;, + 2.230301; 5.555677;-1.582934;, + 1.981918; 4.390002; 1.232689;, + 1.981918; 4.390002; 1.661983;, + 2.230301; 5.555677;-1.582934;, + 2.306866; 4.951811;-1.582934;, + 2.058483; 3.786135; 1.232689;, + 1.981918; 4.390002; 1.232689;, + -2.063160;-0.178291; 1.340505;, + -2.063160;-0.178291; 1.803474;, + -1.954471;-0.039697; 1.803474;, + -1.954471;-0.039697; 1.340505;, + -2.080069; 0.567656; 1.340505;, + -1.253367; 1.717077; 0.118293;, + -1.253367; 1.717077; 0.696181;, + -2.080069; 0.567656; 1.803474;, + -1.253367; 1.717077; 0.118293;, + -1.096593; 0.958966; 0.118293;, + -1.096593; 0.958966; 0.696181;, + -1.253367; 1.717077; 0.696181;, + -1.096593; 0.958966; 0.118293;, + -1.954471;-0.039697; 1.340505;, + -1.954471;-0.039697; 1.803474;, + -1.096593; 0.958966; 0.696181;, + -1.096593; 0.958966; 0.118293;, + -1.253367; 1.717077; 0.118293;, + -2.080069; 0.567656; 1.340505;, + -1.954471;-0.039697; 1.340505;, + -1.954471;-0.039697; 1.803474;, + -2.080069; 0.567656; 1.803474;, + -1.253367; 1.717077; 0.696181;, + -1.096593; 0.958966; 0.696181;, + -2.699878;-2.600637;-1.705319;, + -2.699878;-2.600637;-1.127432;, + -2.063160;-0.178291; 1.803474;, + -2.063160;-0.178291; 1.340505;, + -2.188757; 0.429062; 1.803474;, + -2.188757; 0.429062; 1.340505;, + -2.080069; 0.567656; 1.340505;, + -2.080069; 0.567656; 1.803474;, + -2.188757; 0.429062; 1.340505;, + -2.063160;-0.178291; 1.340505;, + -1.954471;-0.039697; 1.340505;, + -2.080069; 0.567656; 1.340505;, + -2.063160;-0.178291; 1.803474;, + -2.188757; 0.429062; 1.803474;, + -2.080069; 0.567656; 1.803474;, + -1.954471;-0.039697; 1.803474;, + -2.699878;-2.600637;-1.705319;, + -2.856652;-1.842527;-1.705319;, + -2.856652;-1.842527;-1.127432;, + -2.699878;-2.600637;-1.127432;, + -2.699878;-2.600637;-1.127432;, + -2.856652;-1.842527;-1.127432;, + -2.188757; 0.429062; 1.803474;, + -2.063160;-0.178291; 1.803474;, + -2.856652;-1.842527;-1.127432;, + -2.856652;-1.842527;-1.705319;, + -2.188757; 0.429062; 1.340505;, + -2.188757; 0.429062; 1.803474;, + -2.856652;-1.842527;-1.705319;, + -2.699878;-2.600637;-1.705319;, + -2.063160;-0.178291; 1.340505;, + -2.188757; 0.429062; 1.340505;, + -2.223631; 1.787264; 2.217100;, + -2.223631; 1.787264; 2.646394;, + -2.111152; 1.753564; 2.646394;, + -2.111152; 1.753564; 2.217100;, + -2.080613; 2.382095; 2.217100;, + -0.806012; 2.176223; 0.318695;, + -0.806012; 2.176223; 0.747989;, + -2.080613; 2.382095; 2.646394;, + -0.806012; 2.176223; 0.318695;, + -0.836551; 1.547692; 0.318695;, + -0.836551; 1.547692; 0.747989;, + -0.806012; 2.176223; 0.747989;, + -0.836551; 1.547692; 0.318695;, + -2.111152; 1.753564; 2.217100;, + -2.111152; 1.753564; 2.646394;, + -0.836551; 1.547692; 0.747989;, + -0.836551; 1.547692; 0.318695;, + -0.806012; 2.176223; 0.318695;, + -2.080613; 2.382095; 2.217100;, + -2.111152; 1.753564; 2.217100;, + -2.111152; 1.753564; 2.646394;, + -2.080613; 2.382095; 2.646394;, + -0.806012; 2.176223; 0.747989;, + -0.836551; 1.547692; 0.747989;, + -3.641139; 1.864721;-1.578208;, + -3.641139; 1.864721;-1.148914;, + -2.223631; 1.787264; 2.646394;, + -2.223631; 1.787264; 2.217100;, + -2.193091; 2.415795; 2.646394;, + -2.193091; 2.415795; 2.217100;, + -2.080613; 2.382095; 2.217100;, + -2.080613; 2.382095; 2.646394;, + -2.193091; 2.415795; 2.217100;, + -2.223631; 1.787264; 2.217100;, + -2.111152; 1.753564; 2.217100;, + -2.080613; 2.382095; 2.217100;, + -2.223631; 1.787264; 2.646394;, + -2.193091; 2.415795; 2.646394;, + -2.080613; 2.382095; 2.646394;, + -2.111152; 1.753564; 2.646394;, + -3.641139; 1.864721;-1.578208;, + -3.610600; 2.493252;-1.578208;, + -3.610600; 2.493252;-1.148914;, + -3.641139; 1.864721;-1.148914;, + -3.641139; 1.864721;-1.148914;, + -3.610600; 2.493252;-1.148914;, + -2.193091; 2.415795; 2.646394;, + -2.223631; 1.787264; 2.646394;, + -3.610600; 2.493252;-1.148914;, + -3.610600; 2.493252;-1.578208;, + -2.193091; 2.415795; 2.217100;, + -2.193091; 2.415795; 2.646394;, + -3.610600; 2.493252;-1.578208;, + -3.641139; 1.864721;-1.578208;, + -2.223631; 1.787264; 2.217100;, + -2.193091; 2.415795; 2.217100;, + -2.194426; 3.786135; 1.232689;, + -2.194426; 3.786135; 1.661983;, + -2.086361; 3.701648; 1.661983;, + -2.086361; 3.701648; 1.232689;, + -2.009797; 4.305515; 1.232689;, + -0.968682; 3.408118; 0.367431;, + -0.968682; 3.408118; 0.796725;, + -2.009797; 4.305515; 1.661983;, + -0.968682; 3.408118; 0.367431;, + -1.045246; 2.804250; 0.367431;, + -1.045246; 2.804250; 0.796725;, + -0.968682; 3.408118; 0.796725;, + -1.045246; 2.804250; 0.367431;, + -2.086361; 3.701648; 1.232689;, + -2.086361; 3.701648; 1.661983;, + -1.045246; 2.804250; 0.796725;, + -1.045246; 2.804250; 0.367431;, + -0.968682; 3.408118; 0.367431;, + -2.009797; 4.305515; 1.232689;, + -2.086361; 3.701648; 1.232689;, + -2.086361; 3.701648; 1.661983;, + -2.009797; 4.305515; 1.661983;, + -0.968682; 3.408118; 0.796725;, + -1.045246; 2.804250; 0.796725;, + -2.442809; 4.951811;-1.582934;, + -2.442809; 4.951811;-1.153640;, + -2.194426; 3.786135; 1.661983;, + -2.194426; 3.786135; 1.232689;, + -2.117861; 4.390002; 1.661983;, + -2.117861; 4.390002; 1.232689;, + -2.009797; 4.305515; 1.232689;, + -2.009797; 4.305515; 1.661983;, + -2.117861; 4.390002; 1.232689;, + -2.194426; 3.786135; 1.232689;, + -2.086361; 3.701648; 1.232689;, + -2.009797; 4.305515; 1.232689;, + -2.194426; 3.786135; 1.661983;, + -2.117861; 4.390002; 1.661983;, + -2.009797; 4.305515; 1.661983;, + -2.086361; 3.701648; 1.661983;, + -2.442809; 4.951811;-1.582934;, + -2.366244; 5.555677;-1.582934;, + -2.366244; 5.555677;-1.153640;, + -2.442809; 4.951811;-1.153640;, + -2.442809; 4.951811;-1.153640;, + -2.366244; 5.555677;-1.153640;, + -2.117861; 4.390002; 1.661983;, + -2.194426; 3.786135; 1.661983;, + -2.366244; 5.555677;-1.153640;, + -2.366244; 5.555677;-1.582934;, + -2.117861; 4.390002; 1.232689;, + -2.117861; 4.390002; 1.661983;, + -2.366244; 5.555677;-1.582934;, + -2.442809; 4.951811;-1.582934;, + -2.194426; 3.786135; 1.232689;, + -2.117861; 4.390002; 1.232689;, + 0.697598; 1.641988;-0.148365;, + 0.000000; 1.649486;-0.222824;, + 0.000000; 0.793238;-0.357718;, + 1.207143; 0.848453;-0.114428;, + -0.754746;-2.998208;-0.084791;, + 0.000000;-3.357429;-0.154227;, + 0.000000;-1.811853;-0.407172;, + -1.207143;-1.565834;-0.160260;, + 0.000000;-1.811853;-0.407172;, + 0.000000; 0.793238;-0.357718;, + -1.207143; 0.848453;-0.114428;, + -1.207143;-1.565834;-0.160260;, + 0.000000;-1.811853; 2.162010;, + 0.000000; 0.793238; 2.418884;, + 1.207143; 0.848453; 2.299859;, + 1.207143;-1.565834; 2.061798;, + -0.394190;-3.610095;-0.083093;, + 0.000000;-4.017673;-0.152394;, + 0.000000;-3.357429;-0.154227;, + -0.754746;-2.998208;-0.084791;, + 0.754746;-2.998208; 1.232472;, + 0.000000;-3.357429; 1.267141;, + 0.000000;-1.811853; 2.162010;, + 1.207143;-1.565834; 2.061798;, + 0.394190;-3.610095;-0.083093;, + 0.000000;-4.017673;-0.152394;, + 0.000000;-4.017673; 0.479768;, + 0.394190;-3.610095; 0.502768;, + 0.394190;-3.610095; 0.502768;, + 0.000000;-4.017673; 0.479768;, + 0.000000;-3.357429; 1.267141;, + 0.754746;-2.998208; 1.232472;, + 0.889277; 1.924510; 0.203438;, + 0.000000; 1.954336; 0.156781;, + 0.000000; 1.649486;-0.222824;, + 0.697598; 1.641988;-0.148365;, + -0.697598; 1.641988; 1.246832;, + 0.000000; 1.649486; 1.282635;, + 0.000000; 0.793238; 2.418884;, + -1.207143; 0.848453; 2.299859;, + 1.106733; 2.334890;-0.014018;, + 0.000000; 2.397149;-0.077860;, + 0.000000; 1.954336; 0.156781;, + 0.889277; 1.924510; 0.203438;, + -0.889277; 1.924510; 1.981993;, + 0.000000; 1.954336; 2.075897;, + 0.000000; 1.649486; 1.282635;, + -0.697598; 1.641988; 1.246832;, + 0.754683; 2.850984; 0.140381;, + 0.000000; 2.954030; 0.088741;, + 0.000000; 2.397149;-0.077860;, + 1.106733; 2.334890;-0.014018;, + -1.106733; 2.334890; 2.199448;, + 0.000000; 2.397149; 2.310538;, + 0.000000; 1.954336; 2.075897;, + -0.889277; 1.924510; 1.981993;, + 0.609278; 3.044615; 0.147188;, + 0.052044; 3.134467; 0.095083;, + 0.000000; 2.954030; 0.088741;, + 0.754683; 2.850984; 0.140381;, + -0.754683; 2.850984; 1.847398;, + 0.000000; 2.954030; 1.930665;, + 0.000000; 2.397149; 2.310538;, + -1.106733; 2.334890; 2.199448;, + 1.113811; 3.348662;-0.046351;, + 0.037324; 3.437407;-0.268378;, + 0.052044; 3.134467; 0.095083;, + 0.609278; 3.044615; 0.147188;, + -0.518154; 3.198276; 1.249492;, + 0.046281; 3.357266; 1.286510;, + 0.000000; 2.954030; 1.930665;, + -0.754683; 2.850984; 1.847398;, + 1.065950; 5.030777;-0.235848;, + -0.014320; 5.258876;-0.451437;, + 0.037324; 3.437407;-0.268378;, + 1.113811; 3.348662;-0.046351;, + -1.054904; 3.646428; 2.085701;, + 0.026238; 3.865972; 2.183405;, + 0.046281; 3.357266; 1.286510;, + -0.518154; 3.198276; 1.249492;, + 0.481344; 5.930141;-0.239242;, + -0.058332; 6.253111;-0.308079;, + -0.014320; 5.258876;-0.451437;, + 1.065950; 5.030777;-0.235848;, + -1.102765; 4.669911; 1.894075;, + -0.025405; 4.970342; 1.976635;, + 0.026238; 3.865972; 2.183405;, + -1.054904; 3.646428; 2.085701;, + -0.589462; 5.886722;-0.215508;, + -0.058332; 6.253111;-0.308079;, + -0.063831; 5.730633; 1.073387;, + -0.594559; 5.399563; 1.054930;, + -0.594559; 5.399563; 1.054930;, + -0.063831; 5.730633; 1.073387;, + -0.025405; 4.970342; 1.976635;, + -1.102765; 4.669911; 1.894075;, + 1.149048; 5.755170; 2.593041;, + 1.360315; 5.755170; 2.593041;, + 1.360315; 5.755170; 2.763561;, + 1.149048; 5.755170; 2.763561;, + -0.532928; 4.034887; 1.678477;, + -0.744195; 4.034887; 1.678477;, + -0.744195; 4.255737; 2.551880;, + -0.532928; 4.255737; 2.551880;, + 0.548626; 4.255737; 2.551880;, + 0.548626; 4.467005; 2.551880;, + 0.548626; 4.467005; 2.722400;, + 0.548626; 4.255737; 2.722400;, + 0.759894; 4.467005; 2.551880;, + 0.759894; 4.255737; 2.551880;, + 0.759894; 4.255737; 2.722400;, + 0.759894; 4.467005; 2.722400;, + 1.900347; 0.355355; 2.671022;, + -0.099653; 0.355355; 2.671022;, + -0.013057; 2.355355; 2.231760;, + 0.428951; 2.355355; 2.231760;, + -0.116855;-1.491917; 2.671022;, + -2.116855;-1.491917; 2.671022;, + -2.116855; 0.355355; 2.671022;, + -0.116855; 0.355355; 2.671022;, + 0.759894; 4.467005; 2.551880;, + 0.759894; 4.467005; 2.722400;, + 1.360315; 5.755170; 2.763561;, + 1.360315; 5.755170; 2.593041;, + -0.532928; 4.255737; 2.551880;, + -0.744195; 4.255737; 2.551880;, + -0.744195; 4.255737; 2.722400;, + -0.532928; 4.255737; 2.722400;, + -0.648334;-3.216755; 2.671022;, + -1.585377;-3.216755; 2.671022;, + -2.116855;-1.491917; 2.671022;, + -0.116855;-1.491917; 2.671022;, + 0.548626; 4.246155; 1.678477;, + 0.759894; 4.246155; 1.678477;, + 0.759894; 4.467005; 2.551880;, + 0.548626; 4.467005; 2.551880;, + 1.149048; 5.755170; 2.763561;, + 1.360315; 5.755170; 2.763561;, + 0.759894; 4.467005; 2.722400;, + 0.548626; 4.467005; 2.722400;, + -0.532928; 4.467005; 2.551880;, + -0.532928; 4.467005; 2.722400;, + -1.131419; 5.755170; 2.763561;, + -1.131419; 5.755170; 2.593041;, + 0.759894; 4.246155; 1.678477;, + 0.759894; 4.034887; 1.678477;, + 0.759894; 4.255737; 2.551880;, + 0.759894; 4.467005; 2.551880;, + -0.532928; 4.467005; 2.551880;, + -0.532928; 4.255737; 2.551880;, + -0.532928; 4.255737; 2.722400;, + -0.532928; 4.467005; 2.722400;, + 0.548626; 4.467005; 2.551880;, + 0.759894; 4.467005; 2.551880;, + 1.360315; 5.755170; 2.593041;, + 1.149048; 5.755170; 2.593041;, + -0.532928; 4.034887; 1.678477;, + -0.532928; 4.246155; 1.678477;, + -0.744195; 4.246155; 1.678477;, + -0.744195; 4.034887; 1.678477;, + 1.368868;-3.216755; 2.671022;, + 0.431826;-3.216755; 2.671022;, + -0.099653;-1.491917; 2.671022;, + 1.900347;-1.491917; 2.671022;, + -0.744195; 4.034887; 1.678477;, + -0.744195; 4.246155; 1.678477;, + -0.744195; 4.467005; 2.551880;, + -0.744195; 4.255737; 2.551880;, + 0.548626; 4.255737; 2.722400;, + 0.548626; 4.467005; 2.722400;, + 0.759894; 4.467005; 2.722400;, + 0.759894; 4.255737; 2.722400;, + 0.759894; 4.255737; 2.551880;, + 0.548626; 4.255737; 2.551880;, + 0.548626; 4.255737; 2.722400;, + 0.759894; 4.255737; 2.722400;, + -0.744195; 4.467005; 2.551880;, + -0.532928; 4.467005; 2.551880;, + -1.131419; 5.755170; 2.593041;, + -1.342687; 5.755170; 2.593041;, + -0.532928; 4.246155; 1.678477;, + -0.532928; 4.034887; 1.678477;, + -0.532928; 4.255737; 2.551880;, + -0.532928; 4.467005; 2.551880;, + 0.759894; 4.034887; 1.678477;, + 0.759894; 4.246155; 1.678477;, + 0.548626; 4.246155; 1.678477;, + 0.548626; 4.034887; 1.678477;, + 0.759894; 4.034887; 1.678477;, + 0.548626; 4.034887; 1.678477;, + 0.548626; 4.255737; 2.551880;, + 0.759894; 4.255737; 2.551880;, + -0.744195; 4.246155; 1.678477;, + -0.532928; 4.246155; 1.678477;, + -0.532928; 4.467005; 2.551880;, + -0.744195; 4.467005; 2.551880;, + -0.744195; 4.255737; 2.551880;, + -0.744195; 4.467005; 2.551880;, + -0.744195; 4.467005; 2.722400;, + -0.744195; 4.255737; 2.722400;, + 0.548626; 4.467005; 2.722400;, + 0.548626; 4.467005; 2.551880;, + 1.149048; 5.755170; 2.593041;, + 1.149048; 5.755170; 2.763561;, + -1.342687; 5.755170; 2.763561;, + -1.131419; 5.755170; 2.763561;, + -0.532928; 4.467005; 2.722400;, + -0.744195; 4.467005; 2.722400;, + -0.744195; 4.255737; 2.722400;, + -0.744195; 4.467005; 2.722400;, + -0.532928; 4.467005; 2.722400;, + -0.532928; 4.255737; 2.722400;, + 0.548626; 4.034887; 1.678477;, + 0.548626; 4.246155; 1.678477;, + 0.548626; 4.467005; 2.551880;, + 0.548626; 4.255737; 2.551880;, + 1.900347;-1.491917; 2.671022;, + -0.099653;-1.491917; 2.671022;, + -0.099653; 0.355355; 2.671022;, + 1.900347; 0.355355; 2.671022;, + -1.342687; 5.755170; 2.593041;, + -1.131419; 5.755170; 2.593041;, + -1.131419; 5.755170; 2.763561;, + -1.342687; 5.755170; 2.763561;, + -0.744195; 4.467005; 2.722400;, + -0.744195; 4.467005; 2.551880;, + -1.342687; 5.755170; 2.593041;, + -1.342687; 5.755170; 2.763561;, + -0.116855; 0.355355; 2.671022;, + -2.116855; 0.355355; 2.671022;, + -0.592775; 2.355355; 2.231760;, + -0.150767; 2.355355; 2.231760;; + 188; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;, + 4;500;501;502;503;, + 4;504;505;506;507;, + 4;508;509;510;511;, + 4;512;513;514;515;, + 4;516;517;518;519;, + 4;520;521;522;523;, + 4;524;525;526;527;, + 4;528;529;530;531;, + 4;532;533;534;535;, + 4;536;537;538;539;, + 4;540;541;542;543;, + 4;544;545;546;547;, + 4;548;549;550;551;, + 4;552;553;554;555;, + 4;556;557;558;559;, + 4;560;561;562;563;, + 4;564;565;566;567;, + 4;568;569;570;571;, + 4;572;573;574;575;, + 4;576;577;578;579;, + 4;580;581;582;583;, + 4;584;585;586;587;, + 4;588;589;590;591;, + 4;592;593;594;595;, + 4;596;597;598;599;, + 4;600;601;602;603;, + 4;604;605;606;607;, + 4;608;609;610;611;, + 4;612;613;614;615;, + 4;616;617;618;619;, + 4;620;621;622;623;, + 4;624;625;626;627;, + 4;628;629;630;631;, + 4;632;633;634;635;, + 4;636;637;638;639;, + 4;640;641;642;643;, + 4;644;645;646;647;, + 4;648;649;650;651;, + 4;652;653;654;655;, + 4;656;657;658;659;, + 4;660;661;662;663;, + 4;664;665;666;667;, + 4;668;669;670;671;, + 4;672;673;674;675;, + 4;676;677;678;679;, + 4;680;681;682;683;, + 4;684;685;686;687;, + 4;688;689;690;691;, + 4;692;693;694;695;, + 4;696;697;698;699;, + 4;700;701;702;703;, + 4;704;705;706;707;, + 4;708;709;710;711;, + 4;712;713;714;715;, + 4;716;717;718;719;, + 4;720;721;722;723;, + 4;724;725;726;727;, + 4;728;729;730;731;, + 4;732;733;734;735;, + 4;736;737;738;739;, + 4;740;741;742;743;, + 4;744;745;746;747;, + 4;748;749;750;751;; + MeshNormals { //Mesh Normals + 752; + -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.160879; 0.109711;-0.980858;, + -0.160879; 0.109711;-0.980858;, + -0.160879; 0.109711;-0.980858;, + -0.160879; 0.109711;-0.980858;, + 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.198803;-0.137217;-0.970386;, + 0.198803;-0.137217;-0.970386;, + 0.198803;-0.137217;-0.970386;, + 0.198803;-0.137217;-0.970386;, + 0.196717; 0.018609;-0.980284;, + 0.196717; 0.018609;-0.980284;, + 0.196717; 0.018609;-0.980284;, + 0.196717; 0.018609;-0.980284;, + -0.102078;-0.097616; 0.989975;, + -0.102078;-0.097616; 0.989975;, + -0.102078;-0.097616; 0.989975;, + -0.102078;-0.097616; 0.989975;, + 0.149356;-0.045074;-0.987756;, + 0.149356;-0.045074;-0.987756;, + 0.149356;-0.045074;-0.987756;, + 0.149356;-0.045074;-0.987756;, + -0.215544;-0.513602; 0.830515;, + -0.215544;-0.513602; 0.830515;, + -0.215544;-0.513602; 0.830515;, + -0.215544;-0.513602; 0.830515;, + -0.953570;-0.301173; 0.000000;, + -0.953570;-0.301173; 0.000000;, + -0.953570;-0.301173; 0.000000;, + -0.953570;-0.301173; 0.000000;, + 0.953570;-0.301173; 0.000000;, + 0.953570;-0.301173; 0.000000;, + 0.953570;-0.301173; 0.000000;, + 0.953570;-0.301173; 0.000000;, + -0.718815;-0.695202; 0.000000;, + -0.718815;-0.695202; 0.000000;, + -0.718815;-0.695202; 0.000000;, + -0.718815;-0.695202; 0.000000;, + 0.861551;-0.507672; 0.000000;, + 0.861551;-0.507672; 0.000000;, + 0.861551;-0.507672; 0.000000;, + 0.861551;-0.507672; 0.000000;, + -0.487294;-0.722679; 0.490183;, + -0.487294;-0.722679; 0.490183;, + -0.487294;-0.722679; 0.490183;, + -0.487294;-0.722679; 0.490183;, + -0.861551;-0.507672; 0.000000;, + -0.861551;-0.507672; 0.000000;, + -0.861551;-0.507672; 0.000000;, + -0.861551;-0.507672; 0.000000;, + -0.066586; 0.769377;-0.635315;, + -0.066586; 0.769377;-0.635315;, + -0.066586; 0.769377;-0.635315;, + -0.066586; 0.769377;-0.635315;, + 0.028478; 0.801478; 0.597345;, + 0.028478; 0.801478; 0.597345;, + 0.028478; 0.801478; 0.597345;, + 0.028478; 0.801478; 0.597345;, + 0.841460; 0.540319; 0.000000;, + 0.841460; 0.540319; 0.000000;, + 0.841460; 0.540319; 0.000000;, + 0.841460; 0.540319; 0.000000;, + -0.841460; 0.540319; 0.000000;, + -0.841460; 0.540319; 0.000000;, + -0.841460; 0.540319; 0.000000;, + -0.841460; 0.540319; 0.000000;, + -0.026901;-0.473392;-0.880441;, + -0.026901;-0.473392;-0.880441;, + -0.026901;-0.473392;-0.880441;, + -0.026901;-0.473392;-0.880441;, + -0.827520;-0.561437; 0.000000;, + -0.827520;-0.561437; 0.000000;, + -0.827520;-0.561437; 0.000000;, + -0.827520;-0.561437; 0.000000;, + 0.007294;-0.933725; 0.357916;, + 0.007294;-0.933725; 0.357916;, + 0.007294;-0.933725; 0.357916;, + 0.007294;-0.933725; 0.357916;, + 0.827520;-0.561437; 0.000000;, + 0.827520;-0.561437; 0.000000;, + 0.827520;-0.561437; 0.000000;, + 0.827520;-0.561437; 0.000000;, + -0.086369; 0.311450;-0.946329;, + -0.086369; 0.311450;-0.946329;, + -0.086369; 0.311450;-0.946329;, + -0.086369; 0.311450;-0.946329;, + 0.883614;-0.468216; 0.000000;, + 0.883614;-0.468216; 0.000000;, + 0.883614;-0.468216; 0.000000;, + 0.883614;-0.468216; 0.000000;, + -0.883614;-0.468216; 0.000000;, + -0.883614;-0.468216; 0.000000;, + -0.883614;-0.468216; 0.000000;, + -0.883614;-0.468216; 0.000000;, + 0.067629;-0.480548; 0.874357;, + 0.067629;-0.480548; 0.874357;, + 0.067629;-0.480548; 0.874357;, + 0.067629;-0.480548; 0.874357;, + -0.099647; 0.125854;-0.987032;, + -0.099647; 0.125854;-0.987032;, + -0.099647; 0.125854;-0.987032;, + -0.099647; 0.125854;-0.987032;, + -0.826102; 0.563521; 0.000000;, + -0.826102; 0.563521; 0.000000;, + -0.826102; 0.563521; 0.000000;, + -0.826102; 0.563521; 0.000000;, + 0.135484; 0.588278; 0.797228;, + 0.135484; 0.588278; 0.797228;, + 0.135484; 0.588278; 0.797228;, + 0.135484; 0.588278; 0.797228;, + 0.826102; 0.563521; 0.000000;, + 0.826102; 0.563521; 0.000000;, + 0.826102; 0.563521; 0.000000;, + 0.826102; 0.563521; 0.000000;, + 0.015601;-0.690576;-0.723091;, + 0.015601;-0.690576;-0.723091;, + 0.015601;-0.690576;-0.723091;, + 0.015601;-0.690576;-0.723091;, + 0.180001; 0.832443; 0.524059;, + 0.180001; 0.832443; 0.524059;, + 0.180001; 0.832443; 0.524059;, + 0.180001; 0.832443; 0.524059;, + 0.905797; 0.422696;-0.029326;, + 0.905797; 0.422696;-0.029326;, + 0.905797; 0.422696;-0.029326;, + 0.905797; 0.422696;-0.029326;, + -0.743195; 0.667173;-0.050416;, + -0.743195; 0.667173;-0.050416;, + -0.743195; 0.667173;-0.050416;, + -0.743195; 0.667173;-0.050416;, + -0.199925;-0.097968;-0.974901;, + -0.199925;-0.097968;-0.974901;, + -0.199925;-0.097968;-0.974901;, + -0.199925;-0.097968;-0.974901;, + -0.474231;-0.865811; 0.159615;, + -0.474231;-0.865811; 0.159615;, + -0.474231;-0.865811; 0.159615;, + -0.474231;-0.865811; 0.159615;, + -0.073445;-0.852790; 0.517064;, + -0.073445;-0.852790; 0.517064;, + -0.073445;-0.852790; 0.517064;, + -0.073445;-0.852790; 0.517064;, + 0.552994;-0.818501; 0.155737;, + 0.552994;-0.818501; 0.155737;, + 0.552994;-0.818501; 0.155737;, + 0.552994;-0.818501; 0.155737;, + -0.262428; 0.119418;-0.957534;, + -0.262428; 0.119418;-0.957534;, + -0.262428; 0.119418;-0.957534;, + -0.262428; 0.119418;-0.957534;, + -0.999356;-0.035683;-0.003832;, + -0.999356;-0.035683;-0.003832;, + -0.999356;-0.035683;-0.003832;, + -0.999356;-0.035683;-0.003832;, + 0.116790; 0.188045; 0.975192;, + 0.116790; 0.188045; 0.975192;, + 0.116790; 0.188045; 0.975192;, + 0.116790; 0.188045; 0.975192;, + 0.999349; 0.035876; 0.003690;, + 0.999349; 0.035876; 0.003690;, + 0.999349; 0.035876; 0.003690;, + 0.999349; 0.035876; 0.003690;, + 0.453429; 0.833755; 0.315047;, + 0.453429; 0.833755; 0.315047;, + 0.453429; 0.833755; 0.315047;, + 0.453429; 0.833755; 0.315047;, + 0.759366; 0.635055; 0.141663;, + 0.759366; 0.635055; 0.141663;, + 0.759366; 0.635055; 0.141663;, + 0.759366; 0.635055; 0.141663;, + -0.819802; 0.559257; 0.123106;, + -0.819802; 0.559257; 0.123106;, + -0.819802; 0.559257; 0.123106;, + -0.819802; 0.559257; 0.123106;, + 0.272867; 0.786303; 0.554320;, + 0.272867; 0.786303; 0.554320;, + 0.272867; 0.786303; 0.554320;, + 0.272867; 0.786303; 0.554320;, + 0.786887; 0.617097; 0.000000;, + 0.786887; 0.617097; 0.000000;, + 0.786887; 0.617097; 0.000000;, + 0.786887; 0.617097; 0.000000;, + -0.811829;-0.583895; 0.000000;, + -0.811829;-0.583895; 0.000000;, + -0.811829;-0.583895; 0.000000;, + -0.811829;-0.583895; 0.000000;, + 0.979280;-0.202511; 0.000000;, + 0.979280;-0.202511; 0.000000;, + 0.979280;-0.202511; 0.000000;, + 0.979280;-0.202511; 0.000000;, + 0.758551; 0.651614; 0.000000;, + 0.758551; 0.651614; 0.000000;, + 0.758551; 0.651614; 0.000000;, + 0.758551; 0.651614; 0.000000;, + -0.745109; 0.154085; 0.648899;, + -0.745109; 0.154085; 0.648899;, + -0.745109; 0.154085; 0.648899;, + -0.745109; 0.154085; 0.648899;, + 0.713053;-0.147456;-0.685429;, + 0.713053;-0.147456;-0.685429;, + 0.713053;-0.147456;-0.685429;, + 0.713053;-0.147456;-0.685429;, + 0.967147; 0.254217; 0.000000;, + 0.967147; 0.254217; 0.000000;, + 0.967147; 0.254217; 0.000000;, + 0.967147; 0.254217; 0.000000;, + -0.786887;-0.617097; 0.000000;, + -0.786887;-0.617097; 0.000000;, + -0.786887;-0.617097; 0.000000;, + -0.786887;-0.617097; 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.979280; 0.202511; 0.000000;, + -0.979280; 0.202511; 0.000000;, + -0.979280; 0.202511; 0.000000;, + -0.979280; 0.202511; 0.000000;, + -0.915380; 0.189297;-0.355310;, + -0.915380; 0.189297;-0.355310;, + -0.915380; 0.189297;-0.355310;, + -0.915380; 0.189297;-0.355310;, + -0.959391;-0.282081; 0.000000;, + -0.959391;-0.282081; 0.000000;, + -0.959391;-0.282081; 0.000000;, + -0.959391;-0.282081; 0.000000;, + 0.919689;-0.190187; 0.343514;, + 0.919689;-0.190187; 0.343514;, + 0.919689;-0.190187; 0.343514;, + 0.919689;-0.190187; 0.343514;, + -0.287003; 0.957930; 0.000000;, + -0.287003; 0.957930; 0.000000;, + -0.287003; 0.957930; 0.000000;, + -0.287003; 0.957930; 0.000000;, + 0.159452;-0.987206; 0.000000;, + 0.159452;-0.987206; 0.000000;, + 0.159452;-0.987206; 0.000000;, + 0.159452;-0.987206; 0.000000;, + 0.998822; 0.048531; 0.000000;, + 0.998822; 0.048531; 0.000000;, + 0.998822; 0.048531; 0.000000;, + 0.998822; 0.048531; 0.000000;, + -0.159452; 0.987206; 0.000000;, + -0.159452; 0.987206; 0.000000;, + -0.159452; 0.987206; 0.000000;, + -0.159452; 0.987206; 0.000000;, + -0.827535;-0.040209; 0.559973;, + -0.827535;-0.040209; 0.559973;, + -0.827535;-0.040209; 0.559973;, + -0.827535;-0.040209; 0.559973;, + 0.827535; 0.040209;-0.559973;, + 0.827535; 0.040209;-0.559973;, + 0.827535; 0.040209;-0.559973;, + 0.827535; 0.040209;-0.559973;, + -0.054562; 0.998510; 0.000000;, + -0.054562; 0.998510; 0.000000;, + -0.054562; 0.998510; 0.000000;, + -0.054562; 0.998510; 0.000000;, + 0.287004;-0.957929; 0.000000;, + 0.287004;-0.957929; 0.000000;, + 0.287004;-0.957929; 0.000000;, + 0.287004;-0.957929; 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.998822;-0.048531; 0.000000;, + -0.998822;-0.048531; 0.000000;, + -0.998822;-0.048531; 0.000000;, + -0.998822;-0.048531; 0.000000;, + -0.935521;-0.045456;-0.350335;, + -0.935521;-0.045456;-0.350335;, + -0.935521;-0.045456;-0.350335;, + -0.935521;-0.045456;-0.350335;, + 0.054562;-0.998510; 0.000000;, + 0.054562;-0.998510; 0.000000;, + 0.054562;-0.998510; 0.000000;, + 0.054562;-0.998510; 0.000000;, + 0.935521; 0.045456; 0.350335;, + 0.935521; 0.045456; 0.350335;, + 0.935521; 0.045456; 0.350335;, + 0.935521; 0.045456; 0.350335;, + -0.615920; 0.787809; 0.000000;, + -0.615920; 0.787809; 0.000000;, + -0.615920; 0.787809; 0.000000;, + -0.615920; 0.787809; 0.000000;, + 0.652891;-0.757452; 0.000000;, + 0.652891;-0.757452; 0.000000;, + 0.652891;-0.757452; 0.000000;, + 0.652891;-0.757452; 0.000000;, + 0.992058; 0.125784; 0.000000;, + 0.992058; 0.125784; 0.000000;, + 0.992058; 0.125784; 0.000000;, + 0.992058; 0.125784; 0.000000;, + -0.652892; 0.757451; 0.000000;, + -0.652892; 0.757451; 0.000000;, + -0.652892; 0.757451; 0.000000;, + -0.652892; 0.757451; 0.000000;, + -0.597869;-0.075804; 0.798001;, + -0.597869;-0.075804; 0.798001;, + -0.597869;-0.075804; 0.798001;, + -0.597869;-0.075804; 0.798001;, + 0.597869; 0.075804;-0.798001;, + 0.597869; 0.075804;-0.798001;, + 0.597869; 0.075804;-0.798001;, + 0.597869; 0.075804;-0.798001;, + -0.978043; 0.208402; 0.000000;, + -0.978043; 0.208402; 0.000000;, + -0.978043; 0.208402; 0.000000;, + -0.978043; 0.208402; 0.000000;, + 0.615923;-0.787806; 0.000000;, + 0.615923;-0.787806; 0.000000;, + 0.615923;-0.787806; 0.000000;, + 0.615923;-0.787806; 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.992058;-0.125784; 0.000000;, + -0.992058;-0.125784; 0.000000;, + -0.992058;-0.125784; 0.000000;, + -0.992058;-0.125784; 0.000000;, + -0.982531;-0.124576;-0.138250;, + -0.982531;-0.124576;-0.138250;, + -0.982531;-0.124576;-0.138250;, + -0.982531;-0.124576;-0.138250;, + 0.978043;-0.208402; 0.000000;, + 0.978043;-0.208402; 0.000000;, + 0.978043;-0.208402; 0.000000;, + 0.978043;-0.208402; 0.000000;, + 0.982531; 0.124576; 0.138250;, + 0.982531; 0.124576; 0.138250;, + 0.982531; 0.124576; 0.138250;, + 0.982531; 0.124576; 0.138250;, + 0.786888;-0.617096; 0.000000;, + 0.786888;-0.617096; 0.000000;, + 0.786888;-0.617096; 0.000000;, + 0.786888;-0.617096; 0.000000;, + -0.811829; 0.583895; 0.000000;, + -0.811829; 0.583895; 0.000000;, + -0.811829; 0.583895; 0.000000;, + -0.811829; 0.583895; 0.000000;, + 0.979280; 0.202510; 0.000000;, + 0.979280; 0.202510; 0.000000;, + 0.979280; 0.202510; 0.000000;, + 0.979280; 0.202510; 0.000000;, + 0.758551;-0.651614; 0.000000;, + 0.758551;-0.651614; 0.000000;, + 0.758551;-0.651614; 0.000000;, + 0.758551;-0.651614; 0.000000;, + -0.745109;-0.154085;-0.648899;, + -0.745109;-0.154085;-0.648899;, + -0.745109;-0.154085;-0.648899;, + -0.745109;-0.154085;-0.648899;, + 0.713053; 0.147456; 0.685429;, + 0.713053; 0.147456; 0.685429;, + 0.713053; 0.147456; 0.685429;, + 0.713053; 0.147456; 0.685429;, + 0.967147;-0.254217; 0.000000;, + 0.967147;-0.254217; 0.000000;, + 0.967147;-0.254217; 0.000000;, + 0.967147;-0.254217; 0.000000;, + -0.786888; 0.617096; 0.000000;, + -0.786888; 0.617096; 0.000000;, + -0.786888; 0.617096; 0.000000;, + -0.786888; 0.617096; 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.979280;-0.202510; 0.000000;, + -0.979280;-0.202510; 0.000000;, + -0.979280;-0.202510; 0.000000;, + -0.979280;-0.202510; 0.000000;, + -0.915380;-0.189296; 0.355310;, + -0.915380;-0.189296; 0.355310;, + -0.915380;-0.189296; 0.355310;, + -0.915380;-0.189296; 0.355310;, + -0.959391; 0.282081; 0.000000;, + -0.959391; 0.282081; 0.000000;, + -0.959391; 0.282081; 0.000000;, + -0.959391; 0.282081; 0.000000;, + 0.919689; 0.190187;-0.343514;, + 0.919689; 0.190187;-0.343514;, + 0.919689; 0.190187;-0.343514;, + 0.919689; 0.190187;-0.343514;, + -0.287002;-0.957930; 0.000000;, + -0.287002;-0.957930; 0.000000;, + -0.287002;-0.957930; 0.000000;, + -0.287002;-0.957930; 0.000000;, + 0.159452; 0.987206; 0.000000;, + 0.159452; 0.987206; 0.000000;, + 0.159452; 0.987206; 0.000000;, + 0.159452; 0.987206; 0.000000;, + 0.998822;-0.048531; 0.000000;, + 0.998822;-0.048531; 0.000000;, + 0.998822;-0.048531; 0.000000;, + 0.998822;-0.048531; 0.000000;, + -0.159452;-0.987206; 0.000000;, + -0.159452;-0.987206; 0.000000;, + -0.159452;-0.987206; 0.000000;, + -0.159452;-0.987206; 0.000000;, + -0.827535; 0.040209;-0.559973;, + -0.827535; 0.040209;-0.559973;, + -0.827535; 0.040209;-0.559973;, + -0.827535; 0.040209;-0.559973;, + 0.827535;-0.040209; 0.559973;, + 0.827535;-0.040209; 0.559973;, + 0.827535;-0.040209; 0.559973;, + 0.827535;-0.040209; 0.559973;, + -0.054562;-0.998510; 0.000000;, + -0.054562;-0.998510; 0.000000;, + -0.054562;-0.998510; 0.000000;, + -0.054562;-0.998510; 0.000000;, + 0.287004; 0.957929; 0.000000;, + 0.287004; 0.957929; 0.000000;, + 0.287004; 0.957929; 0.000000;, + 0.287004; 0.957929; 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.998822; 0.048531; 0.000000;, + -0.998822; 0.048531; 0.000000;, + -0.998822; 0.048531; 0.000000;, + -0.998822; 0.048531; 0.000000;, + -0.935521; 0.045456; 0.350335;, + -0.935521; 0.045456; 0.350335;, + -0.935521; 0.045456; 0.350335;, + -0.935521; 0.045456; 0.350335;, + 0.054562; 0.998510; 0.000000;, + 0.054562; 0.998510; 0.000000;, + 0.054562; 0.998510; 0.000000;, + 0.054562; 0.998510; 0.000000;, + 0.935521;-0.045456;-0.350335;, + 0.935521;-0.045456;-0.350335;, + 0.935521;-0.045456;-0.350335;, + 0.935521;-0.045456;-0.350335;, + -0.615920;-0.787809; 0.000000;, + -0.615920;-0.787809; 0.000000;, + -0.615920;-0.787809; 0.000000;, + -0.615920;-0.787809; 0.000000;, + 0.652891; 0.757452; 0.000000;, + 0.652891; 0.757452; 0.000000;, + 0.652891; 0.757452; 0.000000;, + 0.652891; 0.757452; 0.000000;, + 0.992058;-0.125784; 0.000000;, + 0.992058;-0.125784; 0.000000;, + 0.992058;-0.125784; 0.000000;, + 0.992058;-0.125784; 0.000000;, + -0.652892;-0.757451; 0.000000;, + -0.652892;-0.757451; 0.000000;, + -0.652892;-0.757451; 0.000000;, + -0.652892;-0.757451; 0.000000;, + -0.597869; 0.075804;-0.798001;, + -0.597869; 0.075804;-0.798001;, + -0.597869; 0.075804;-0.798001;, + -0.597869; 0.075804;-0.798001;, + 0.597869;-0.075804; 0.798001;, + 0.597869;-0.075804; 0.798001;, + 0.597869;-0.075804; 0.798001;, + 0.597869;-0.075804; 0.798001;, + -0.978043;-0.208402; 0.000000;, + -0.978043;-0.208402; 0.000000;, + -0.978043;-0.208402; 0.000000;, + -0.978043;-0.208402; 0.000000;, + 0.615923; 0.787806; 0.000000;, + 0.615923; 0.787806; 0.000000;, + 0.615923; 0.787806; 0.000000;, + 0.615923; 0.787806; 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.992058; 0.125784; 0.000000;, + -0.992058; 0.125784; 0.000000;, + -0.992058; 0.125784; 0.000000;, + -0.992058; 0.125784; 0.000000;, + -0.982531; 0.124576; 0.138250;, + -0.982531; 0.124576; 0.138250;, + -0.982531; 0.124576; 0.138250;, + -0.982531; 0.124576; 0.138250;, + 0.978043; 0.208402; 0.000000;, + 0.978043; 0.208402; 0.000000;, + 0.978043; 0.208402; 0.000000;, + 0.978043; 0.208402; 0.000000;, + 0.982531;-0.124576;-0.138250;, + 0.982531;-0.124576;-0.138250;, + 0.982531;-0.124576;-0.138250;, + 0.982531;-0.124576;-0.138250;, + 0.160879; 0.109711;-0.980858;, + 0.160879; 0.109711;-0.980858;, + 0.160879; 0.109711;-0.980858;, + 0.160879; 0.109711;-0.980858;, + -0.198803;-0.137217;-0.970386;, + -0.198803;-0.137217;-0.970386;, + -0.198803;-0.137217;-0.970386;, + -0.198803;-0.137217;-0.970386;, + -0.196717; 0.018609;-0.980284;, + -0.196717; 0.018609;-0.980284;, + -0.196717; 0.018609;-0.980284;, + -0.196717; 0.018609;-0.980284;, + 0.102078;-0.097616; 0.989975;, + 0.102078;-0.097616; 0.989975;, + 0.102078;-0.097616; 0.989975;, + 0.102078;-0.097616; 0.989975;, + -0.149356;-0.045074;-0.987756;, + -0.149356;-0.045074;-0.987756;, + -0.149356;-0.045074;-0.987756;, + -0.149356;-0.045074;-0.987756;, + 0.215544;-0.513602; 0.830515;, + 0.215544;-0.513602; 0.830515;, + 0.215544;-0.513602; 0.830515;, + 0.215544;-0.513602; 0.830515;, + 0.718815;-0.695202; 0.000000;, + 0.718815;-0.695202; 0.000000;, + 0.718815;-0.695202; 0.000000;, + 0.718815;-0.695202; 0.000000;, + 0.487294;-0.722679; 0.490183;, + 0.487294;-0.722679; 0.490183;, + 0.487294;-0.722679; 0.490183;, + 0.487294;-0.722679; 0.490183;, + 0.066586; 0.769377;-0.635315;, + 0.066586; 0.769377;-0.635315;, + 0.066586; 0.769377;-0.635315;, + 0.066586; 0.769377;-0.635315;, + -0.028478; 0.801478; 0.597345;, + -0.028478; 0.801478; 0.597345;, + -0.028478; 0.801478; 0.597345;, + -0.028478; 0.801478; 0.597345;, + 0.026901;-0.473392;-0.880441;, + 0.026901;-0.473392;-0.880441;, + 0.026901;-0.473392;-0.880441;, + 0.026901;-0.473392;-0.880441;, + -0.007294;-0.933725; 0.357916;, + -0.007294;-0.933725; 0.357916;, + -0.007294;-0.933725; 0.357916;, + -0.007294;-0.933725; 0.357916;, + 0.086369; 0.311450;-0.946329;, + 0.086369; 0.311450;-0.946329;, + 0.086369; 0.311450;-0.946329;, + 0.086369; 0.311450;-0.946329;, + -0.067629;-0.480548; 0.874357;, + -0.067629;-0.480548; 0.874357;, + -0.067629;-0.480548; 0.874357;, + -0.067629;-0.480548; 0.874357;, + 0.086985; 0.056673;-0.994596;, + 0.086985; 0.056673;-0.994596;, + 0.086985; 0.056673;-0.994596;, + 0.086985; 0.056673;-0.994596;, + -0.135484; 0.588278; 0.797228;, + -0.135484; 0.588278; 0.797228;, + -0.135484; 0.588278; 0.797228;, + -0.135484; 0.588278; 0.797228;, + 0.044517;-0.694711;-0.717910;, + 0.044517;-0.694711;-0.717910;, + 0.044517;-0.694711;-0.717910;, + 0.044517;-0.694711;-0.717910;, + -0.213024; 0.856950; 0.469316;, + -0.213024; 0.856950; 0.469316;, + -0.213024; 0.856950; 0.469316;, + -0.213024; 0.856950; 0.469316;, + 0.183924;-0.098769;-0.977966;, + 0.183924;-0.098769;-0.977966;, + 0.183924;-0.098769;-0.977966;, + 0.183924;-0.098769;-0.977966;, + 0.151963;-0.843802; 0.514690;, + 0.151963;-0.843802; 0.514690;, + 0.151963;-0.843802; 0.514690;, + 0.151963;-0.843802; 0.514690;, + 0.218400; 0.143845;-0.965199;, + 0.218400; 0.143845;-0.965199;, + 0.218400; 0.143845;-0.965199;, + 0.218400; 0.143845;-0.965199;, + -0.124175; 0.176993; 0.976347;, + -0.124175; 0.176993; 0.976347;, + -0.124175; 0.176993; 0.976347;, + -0.124175; 0.176993; 0.976347;, + -0.507936; 0.805697; 0.304717;, + -0.507936; 0.805697; 0.304717;, + -0.507936; 0.805697; 0.304717;, + -0.507936; 0.805697; 0.304717;, + -0.333223; 0.759077; 0.559254;, + -0.333223; 0.759077; 0.559254;, + -0.333223; 0.759077; 0.559254;, + -0.333223; 0.759077; 0.559254;, + 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.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + -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;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 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.906378;-0.422468; 0.000000;, + 0.906378;-0.422468; 0.000000;, + 0.906378;-0.422468; 0.000000;, + 0.906378;-0.422468; 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; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.906898; 0.421351; 0.000000;, + 0.906898; 0.421351; 0.000000;, + 0.906898; 0.421351; 0.000000;, + 0.906898; 0.421351; 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;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + -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;, + -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;, + 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.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 0.000000; 0.031937;-0.999490;, + 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; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000;-0.969486; 0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + 0.000000; 0.969486;-0.245146;, + -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.906378; 0.422468; 0.000000;, + -0.906378; 0.422468; 0.000000;, + -0.906378; 0.422468; 0.000000;, + -0.906378; 0.422468; 0.000000;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + 0.000000;-0.031937; 0.999490;, + -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; 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.906898;-0.421351; 0.000000;, + -0.906898;-0.421351; 0.000000;, + -0.906898;-0.421351; 0.000000;, + -0.906898;-0.421351; 0.000000;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;, + 0.000000; 0.214518; 0.976720;; + 188; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;, + 4;500;501;502;503;, + 4;504;505;506;507;, + 4;508;509;510;511;, + 4;512;513;514;515;, + 4;516;517;518;519;, + 4;520;521;522;523;, + 4;524;525;526;527;, + 4;528;529;530;531;, + 4;532;533;534;535;, + 4;536;537;538;539;, + 4;540;541;542;543;, + 4;544;545;546;547;, + 4;548;549;550;551;, + 4;552;553;554;555;, + 4;556;557;558;559;, + 4;560;561;562;563;, + 4;564;565;566;567;, + 4;568;569;570;571;, + 4;572;573;574;575;, + 4;576;577;578;579;, + 4;580;581;582;583;, + 4;584;585;586;587;, + 4;588;589;590;591;, + 4;592;593;594;595;, + 4;596;597;598;599;, + 4;600;601;602;603;, + 4;604;605;606;607;, + 4;608;609;610;611;, + 4;612;613;614;615;, + 4;616;617;618;619;, + 4;620;621;622;623;, + 4;624;625;626;627;, + 4;628;629;630;631;, + 4;632;633;634;635;, + 4;636;637;638;639;, + 4;640;641;642;643;, + 4;644;645;646;647;, + 4;648;649;650;651;, + 4;652;653;654;655;, + 4;656;657;658;659;, + 4;660;661;662;663;, + 4;664;665;666;667;, + 4;668;669;670;671;, + 4;672;673;674;675;, + 4;676;677;678;679;, + 4;680;681;682;683;, + 4;684;685;686;687;, + 4;688;689;690;691;, + 4;692;693;694;695;, + 4;696;697;698;699;, + 4;700;701;702;703;, + 4;704;705;706;707;, + 4;708;709;710;711;, + 4;712;713;714;715;, + 4;716;717;718;719;, + 4;720;721;722;723;, + 4;724;725;726;727;, + 4;728;729;730;731;, + 4;732;733;734;735;, + 4;736;737;738;739;, + 4;740;741;742;743;, + 4;744;745;746;747;, + 4;748;749;750;751;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 188; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 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 Material_001 { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 752; + 0.178234; 0.624787;, + 0.137634; 0.780449;, + 0.278497; 0.761273;, + 0.279269; 0.675143;, + 0.037208; 0.867209;, + 0.112992; 0.859487;, + 0.137634; 0.780449;, + 0.027110; 0.773639;, + 0.136141; 0.780448;, + 0.176742; 0.624786;, + 0.277777; 0.675143;, + 0.277004; 0.761272;, + 0.254870; 0.478392;, + 0.236267; 0.548779;, + 0.176742; 0.624786;, + 0.112729; 0.540103;, + 0.176742; 0.624786;, + 0.136141; 0.780448;, + 0.025617; 0.773636;, + 0.112729; 0.540103;, + 0.279269; 0.675143;, + 0.278497; 0.761273;, + 0.323330; 0.764832;, + 0.323330; 0.665705;, + 0.323331; 0.491088;, + 0.277953; 0.517036;, + 0.236267; 0.548779;, + 0.254870; 0.478392;, + 0.323330; 0.590540;, + 0.289459; 0.604571;, + 0.279269; 0.675143;, + 0.323330; 0.665705;, + 0.178234; 0.624787;, + 0.279269; 0.675143;, + 0.289459; 0.604571;, + 0.237759; 0.548780;, + 0.277777; 0.675143;, + 0.176742; 0.624786;, + 0.236267; 0.548779;, + 0.287967; 0.604571;, + 0.323331; 0.491088;, + 0.279444; 0.517037;, + 0.297460; 0.553140;, + 0.323331; 0.539628;, + 0.287967; 0.604571;, + 0.236267; 0.548779;, + 0.277953; 0.517036;, + 0.295968; 0.553140;, + 0.323331; 0.539628;, + 0.297460; 0.553140;, + 0.289459; 0.604571;, + 0.323330; 0.590540;, + 0.237759; 0.548780;, + 0.289459; 0.604571;, + 0.297460; 0.553140;, + 0.279444; 0.517037;, + 0.042969; 0.976392;, + 0.069912; 0.975431;, + 0.074844; 0.999643;, + 0.028313; 0.997604;, + 0.323329; 0.866146;, + 0.256600; 0.861325;, + 0.277004; 0.761272;, + 0.323330; 0.764832;, + 0.256600; 0.861325;, + 0.111499; 0.859485;, + 0.136141; 0.780448;, + 0.277004; 0.761272;, + 0.278497; 0.761273;, + 0.137634; 0.780449;, + 0.112992; 0.859487;, + 0.258094; 0.861325;, + 0.050074; 0.966766;, + 0.063339; 0.966130;, + 0.069912; 0.975431;, + 0.042969; 0.976392;, + 0.074844; 0.957233;, + 0.074844; 0.999643;, + 0.069912; 0.975431;, + 0.066750; 0.953156;, + 0.063236; 0.948147;, + 0.057631; 0.947033;, + 0.050634; 0.938780;, + 0.070361; 0.938775;, + 0.057631; 0.947033;, + 0.032177; 0.948906;, + 0.003557; 0.951590;, + 0.050634; 0.938780;, + 0.054534; 0.960473;, + 0.059371; 0.962337;, + 0.063339; 0.966130;, + 0.050074; 0.966766;, + 0.057518; 0.949477;, + 0.046936; 0.954091;, + 0.032177; 0.948906;, + 0.057631; 0.947033;, + 0.066750; 0.953156;, + 0.069912; 0.975431;, + 0.063339; 0.966130;, + 0.063929; 0.954071;, + 0.061464; 0.950742;, + 0.057518; 0.949477;, + 0.057631; 0.947033;, + 0.063236; 0.948147;, + 0.055038; 0.959289;, + 0.057975; 0.961075;, + 0.059371; 0.962337;, + 0.054534; 0.960473;, + 0.063929; 0.954071;, + 0.063339; 0.966130;, + 0.059371; 0.962337;, + 0.061737; 0.954781;, + 0.059773; 0.953174;, + 0.057560; 0.951878;, + 0.057518; 0.949477;, + 0.061464; 0.950742;, + 0.057560; 0.951878;, + 0.051430; 0.956487;, + 0.046936; 0.954091;, + 0.057518; 0.949477;, + 0.184220; 0.118411;, + 0.330675; 0.100335;, + 0.302179; 0.039460;, + 0.200963; 0.038195;, + 0.058231; 0.955124;, + 0.056821; 0.954084;, + 0.057560; 0.951878;, + 0.059773; 0.953174;, + 0.056821; 0.954084;, + 0.053046; 0.957052;, + 0.051430; 0.956487;, + 0.057560; 0.951878;, + 0.061737; 0.954781;, + 0.059371; 0.962337;, + 0.057975; 0.961075;, + 0.059797; 0.956192;, + 0.334487; 0.386951;, + 0.383126; 0.240007;, + 0.330675; 0.100335;, + 0.184220; 0.118411;, + 0.446491; 0.018699;, + 0.302179; 0.039460;, + 0.330675; 0.100335;, + 0.476633; 0.108770;, + 0.519659; 0.104516;, + 0.476892; 0.108573;, + 0.443842; 0.017362;, + 0.517802; 0.014943;, + 0.476892; 0.108573;, + 0.329854; 0.100368;, + 0.299809; 0.040785;, + 0.443842; 0.017362;, + 0.520619; 0.391138;, + 0.451350; 0.320787;, + 0.383126; 0.240007;, + 0.334487; 0.386951;, + 0.476633; 0.108770;, + 0.330675; 0.100335;, + 0.383126; 0.240007;, + 0.477074; 0.148561;, + 0.520629; 0.158106;, + 0.477073; 0.148486;, + 0.476892; 0.108573;, + 0.519659; 0.104516;, + 0.477073; 0.148486;, + 0.383165; 0.240469;, + 0.329854; 0.100368;, + 0.476892; 0.108573;, + 0.520619; 0.391138;, + 0.451420; 0.319780;, + 0.485437; 0.209764;, + 0.521872; 0.222745;, + 0.485437; 0.209764;, + 0.451420; 0.319780;, + 0.383165; 0.240469;, + 0.477073; 0.148486;, + 0.477074; 0.148561;, + 0.383126; 0.240007;, + 0.451350; 0.320787;, + 0.485984; 0.210903;, + 0.521872; 0.222745;, + 0.485437; 0.209764;, + 0.477073; 0.148486;, + 0.520629; 0.158106;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.111499; 0.859485;, + 0.035714; 0.867207;, + 0.025617; 0.773636;, + 0.136141; 0.780448;, + 0.237759; 0.548780;, + 0.256361; 0.478392;, + 0.114220; 0.540105;, + 0.178234; 0.624787;, + 0.114220; 0.540105;, + 0.027110; 0.773639;, + 0.137634; 0.780449;, + 0.178234; 0.624787;, + 0.323330; 0.665705;, + 0.323330; 0.764832;, + 0.277004; 0.761272;, + 0.277777; 0.675143;, + 0.279444; 0.517037;, + 0.323331; 0.491088;, + 0.256361; 0.478392;, + 0.237759; 0.548780;, + 0.287967; 0.604571;, + 0.323330; 0.590540;, + 0.323330; 0.665705;, + 0.277777; 0.675143;, + 0.277953; 0.517036;, + 0.323331; 0.491088;, + 0.323331; 0.539628;, + 0.295968; 0.553140;, + 0.295968; 0.553140;, + 0.323331; 0.539628;, + 0.323330; 0.590540;, + 0.287967; 0.604571;, + 0.032177; 0.948906;, + 0.042969; 0.976392;, + 0.028313; 0.997604;, + 0.003557; 0.951590;, + 0.258094; 0.861325;, + 0.323329; 0.866146;, + 0.323330; 0.764832;, + 0.278497; 0.761273;, + 0.046936; 0.954091;, + 0.050074; 0.966766;, + 0.042969; 0.976392;, + 0.032177; 0.948906;, + 0.066750; 0.953156;, + 0.063236; 0.948147;, + 0.070361; 0.938775;, + 0.074844; 0.957233;, + 0.051430; 0.956487;, + 0.054534; 0.960473;, + 0.050074; 0.966766;, + 0.046936; 0.954091;, + 0.063929; 0.954071;, + 0.061464; 0.950742;, + 0.063236; 0.948147;, + 0.066750; 0.953156;, + 0.053046; 0.957052;, + 0.055038; 0.959289;, + 0.054534; 0.960473;, + 0.051430; 0.956487;, + 0.061737; 0.954781;, + 0.059773; 0.953174;, + 0.061464; 0.950742;, + 0.063929; 0.954071;, + 0.329854; 0.100368;, + 0.184050; 0.120233;, + 0.201413; 0.039911;, + 0.299809; 0.040785;, + 0.059797; 0.956192;, + 0.058231; 0.955124;, + 0.059773; 0.953174;, + 0.061737; 0.954781;, + 0.383165; 0.240469;, + 0.334369; 0.387551;, + 0.184050; 0.120233;, + 0.329854; 0.100368;, + 0.476633; 0.108770;, + 0.519659; 0.104516;, + 0.517802; 0.014943;, + 0.446491; 0.018699;, + 0.451420; 0.319780;, + 0.520619; 0.391138;, + 0.334369; 0.387551;, + 0.383165; 0.240469;, + 0.477074; 0.148561;, + 0.520629; 0.158106;, + 0.519659; 0.104516;, + 0.476633; 0.108770;, + 0.451350; 0.320787;, + 0.520619; 0.391138;, + 0.521872; 0.222745;, + 0.485984; 0.210903;, + 0.485984; 0.210903;, + 0.521872; 0.222745;, + 0.520629; 0.158106;, + 0.477074; 0.148561;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.816854; 0.810423;, + 0.658584; 0.810421;, + 0.771993; 0.971876;, + 0.807286; 0.971876;, + 0.816852; 0.662921;, + 0.658586; 0.662919;, + 0.658584; 0.810421;, + 0.816854; 0.810423;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.775847; 0.525195;, + 0.701026; 0.525194;, + 0.658586; 0.662919;, + 0.816852; 0.662921;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.775847; 0.525195;, + 0.701026; 0.525194;, + 0.658586; 0.662919;, + 0.816852; 0.662921;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.816852; 0.662921;, + 0.658586; 0.662919;, + 0.658584; 0.810421;, + 0.816854; 0.810423;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.003551; 0.928349;, + 0.074851; 0.928349;, + 0.074851; 0.999649;, + 0.003551; 0.999649;, + 0.816854; 0.810423;, + 0.658584; 0.810421;, + 0.771993; 0.971876;, + 0.807286; 0.971876;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 2; + 6; + 8; + } + SkinWeights { + "Armature_us1"; + 112; + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 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, + 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, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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, 0.833611, 0.552352, 0.000000, + -0.000000, 0.552351,-0.833611, 0.000000, + -0.004373,-4.477100,-0.655155, 1.000000;; + } //End of Armature_us1 Skin Weights + SkinWeights { + "Armature_nogi1"; + 168; + 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, + 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, + 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; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.814990, 0.579476, 0.000000, + -1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-0.579475, 0.814990, 0.000000, + 1.972052, 0.535777,-0.745986, 1.000000;; + } //End of Armature_nogi1 Skin Weights + SkinWeights { + "Armature_nogi2"; + 168; + 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; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.835281,-0.549824, 0.000000, + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.549824, 0.835281, 0.000000, + -1.972052, 0.501328,-0.769559, 1.000000;; + } //End of Armature_nogi2 Skin Weights + SkinWeights { + "Armature_krilo1"; + 12; + 632, + 633, + 634, + 635, + 680, + 681, + 682, + 683, + 736, + 737, + 738, + 739; + 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.989605, 0.143812,-0.000000, 0.000000, + -0.143812,-0.989605,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + 0.663170, 2.307318,-2.266624, 1.000000;; + } //End of Armature_krilo1 Skin Weights + SkinWeights { + "Armature_telo"; + 120; + 4, + 5, + 56, + 57, + 58, + 59, + 60, + 61, + 64, + 65, + 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, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 140, + 141, + 146, + 147, + 150, + 151, + 520, + 521, + 552, + 553, + 554, + 555, + 556, + 557, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 586, + 587, + 588, + 589, + 590, + 591, + 598, + 599; + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.500000, + 0.500000, + 1.000000, + 1.000000, + 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.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.997725,-0.067414, 0.000000, + 0.000000, 0.067414,-0.997725, 0.000000, + 0.004372, 3.079499, 1.049295, 1.000000;; + } //End of Armature_telo Skin Weights + SkinWeights { + "Armature_krilo2"; + 12; + 636, + 637, + 638, + 639, + 648, + 649, + 650, + 651, + 748, + 749, + 750, + 751; + 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.991160,-0.132673, 0.000000, 0.000000, + 0.132673,-0.991160,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.663343, 2.311128,-2.266624, 1.000000;; + } //End of Armature_krilo2 Skin Weights + SkinWeights { + "Armature_golova"; + 92; + 104, + 105, + 120, + 121, + 122, + 123, + 124, + 125, + 128, + 129, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 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, + 576, + 577, + 584, + 585, + 586, + 587, + 588, + 589, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615; + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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, 0.943276, 0.332009, 0.000000, + -0.000000,-0.332009, 0.943276, 0.000000, + 0.004372,-2.686279,-1.835278, 1.000000;; + } //End of Armature_golova Skin Weights + SkinWeights { + "Armature_popa"; + 116; + 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, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 76, + 77, + 82, + 83, + 86, + 87, + 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, + 554, + 555, + 556, + 557, + 558, + 559, + 566, + 567; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.500000, + 0.500000, + 0.500000, + 0.500000, + 1.000000, + 1.000000, + 0.500000, + 0.500000; + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.990534,-0.137266, 0.000000, + 0.000000,-0.137266, 0.990534, 0.000000, + -0.004373, 2.079456,-0.639050, 1.000000;; + } //End of Armature_popa Skin Weights + } //End of Mesh Mesh + } //End of Cube +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 72; + 0;3; 0.140869, 0.294248, 0.956928;;, + 1;3; 0.140869, 0.294248, 0.956928;;, + 2;3; 0.140869, 0.294248, 0.956928;;, + 3;3; 0.140869, 0.294248, 0.956928;;, + 4;3; 0.140869, 0.294248, 0.956928;;, + 5;3; 0.140869, 0.294248, 0.956928;;, + 6;3; 0.140869, 0.294248, 0.956928;;, + 7;3; 0.140869, 0.294248, 0.956928;;, + 8;3; 0.140869, 0.294248, 0.956928;;, + 9;3; 0.140869, 0.294248, 0.956928;;, + 10;3; 0.140869, 0.294248, 0.956928;;, + 11;3; 0.140869, 0.294248, 0.956928;;, + 12;3; 0.140869, 0.294248, 0.956928;;, + 13;3; 0.140869, 0.294248, 0.956928;;, + 14;3; 0.140869, 0.294248, 0.956928;;, + 15;3; 0.140869, 0.294248, 0.956928;;, + 16;3; 0.140869, 0.294248, 0.956928;;, + 17;3; 0.140869, 0.294248, 0.956928;;, + 18;3; 0.140869, 0.294248, 0.956928;;, + 19;3; 0.140869, 0.294248, 0.956928;;, + 20;3; 0.140869, 0.294248, 0.956928;;, + 21;3; 0.140869, 0.294248, 0.956928;;, + 22;3; 0.140869, 0.294248, 0.956928;;, + 23;3; 0.140869, 0.294248, 0.956928;;, + 24;3; 0.140869, 0.294248, 0.956928;;, + 25;3; 0.140869, 0.294248, 0.956928;;, + 26;3; 0.140869, 0.294248, 0.956928;;, + 27;3; 0.140869, 0.294248, 0.956928;;, + 28;3; 0.140869, 0.294248, 0.956928;;, + 29;3; 0.140869, 0.294248, 0.956928;;, + 30;3; 0.140869, 0.294248, 0.956928;;, + 31;3; 0.140869, 0.294248, 0.956928;;, + 32;3; 0.140869, 0.294248, 0.956928;;, + 33;3; 0.140869, 0.294248, 0.956928;;, + 34;3; 0.140869, 0.294248, 0.956928;;, + 35;3; 0.140869, 0.294248, 0.956928;;, + 36;3; 0.140869, 0.294248, 0.956928;;, + 37;3; 0.140869, 0.294248, 0.956928;;, + 38;3; 0.140869, 0.294248, 0.956928;;, + 39;3; 0.140869, 0.294248, 0.956928;;, + 40;3; 0.140869, 0.294248, 0.956928;;, + 41;3; 0.140869, 0.294248, 0.956928;;, + 42;3; 0.140869, 0.294248, 0.956928;;, + 43;3; 0.140869, 0.294248, 0.956928;;, + 44;3; 0.140869, 0.294248, 0.956928;;, + 45;3; 0.140869, 0.294248, 0.956928;;, + 46;3; 0.140869, 0.294248, 0.956928;;, + 47;3; 0.140869, 0.294248, 0.956928;;, + 48;3; 0.140869, 0.294248, 0.956928;;, + 49;3; 0.140869, 0.294248, 0.956928;;, + 50;3; 0.140869, 0.294248, 0.956928;;, + 51;3; 0.140869, 0.294248, 0.956928;;, + 52;3; 0.140869, 0.294248, 0.956928;;, + 53;3; 0.140869, 0.294248, 0.956928;;, + 54;3; 0.140869, 0.294248, 0.956928;;, + 55;3; 0.140869, 0.294248, 0.956928;;, + 56;3; 0.140869, 0.294248, 0.956928;;, + 57;3; 0.140869, 0.294248, 0.956928;;, + 58;3; 0.140869, 0.294248, 0.956928;;, + 59;3; 0.140869, 0.294248, 0.956928;;, + 60;3; 0.140869, 0.294248, 0.956928;;, + 61;3; 0.140869, 0.294248, 0.956928;;, + 62;3; 0.140869, 0.294248, 0.956928;;, + 63;3; 0.140869, 0.294248, 0.956928;;, + 64;3; 0.140869, 0.294248, 0.956928;;, + 65;3; 0.140869, 0.294248, 0.956928;;, + 66;3; 0.140869, 0.294248, 0.956928;;, + 67;3; 0.140869, 0.294248, 0.956928;;, + 68;3; 0.140869, 0.294248, 0.956928;;, + 69;3; 0.140869, 0.294248, 0.956928;;, + 70;3; 0.140869, 0.294248, 0.956928;;, + 71;3; 0.140869, 0.294248, 0.956928;;; + } + AnimationKey { //Rotation + 0; + 72; + 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;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 0.384873, 0.384873, 0.384873;;, + 1;3; 0.384873, 0.384873, 0.384873;;, + 2;3; 0.384873, 0.384873, 0.384873;;, + 3;3; 0.384873, 0.384873, 0.384873;;, + 4;3; 0.384873, 0.384873, 0.384873;;, + 5;3; 0.384873, 0.384873, 0.384873;;, + 6;3; 0.384873, 0.384873, 0.384873;;, + 7;3; 0.384873, 0.384873, 0.384873;;, + 8;3; 0.384873, 0.384873, 0.384873;;, + 9;3; 0.384873, 0.384873, 0.384873;;, + 10;3; 0.384873, 0.384873, 0.384873;;, + 11;3; 0.384873, 0.384873, 0.384873;;, + 12;3; 0.384873, 0.384873, 0.384873;;, + 13;3; 0.384873, 0.384873, 0.384873;;, + 14;3; 0.384873, 0.384873, 0.384873;;, + 15;3; 0.384873, 0.384873, 0.384873;;, + 16;3; 0.384873, 0.384873, 0.384873;;, + 17;3; 0.384873, 0.384873, 0.384873;;, + 18;3; 0.384873, 0.384873, 0.384873;;, + 19;3; 0.384873, 0.384873, 0.384873;;, + 20;3; 0.384873, 0.384873, 0.384873;;, + 21;3; 0.384873, 0.384873, 0.384873;;, + 22;3; 0.384873, 0.384873, 0.384873;;, + 23;3; 0.384873, 0.384873, 0.384873;;, + 24;3; 0.384873, 0.384873, 0.384873;;, + 25;3; 0.384873, 0.384873, 0.384873;;, + 26;3; 0.384873, 0.384873, 0.384873;;, + 27;3; 0.384873, 0.384873, 0.384873;;, + 28;3; 0.384873, 0.384873, 0.384873;;, + 29;3; 0.384873, 0.384873, 0.384873;;, + 30;3; 0.384873, 0.384873, 0.384873;;, + 31;3; 0.384873, 0.384873, 0.384873;;, + 32;3; 0.384873, 0.384873, 0.384873;;, + 33;3; 0.384873, 0.384873, 0.384873;;, + 34;3; 0.384873, 0.384873, 0.384873;;, + 35;3; 0.384873, 0.384873, 0.384873;;, + 36;3; 0.384873, 0.384873, 0.384873;;, + 37;3; 0.384873, 0.384873, 0.384873;;, + 38;3; 0.384873, 0.384873, 0.384873;;, + 39;3; 0.384873, 0.384873, 0.384873;;, + 40;3; 0.384873, 0.384873, 0.384873;;, + 41;3; 0.384873, 0.384873, 0.384873;;, + 42;3; 0.384873, 0.384873, 0.384873;;, + 43;3; 0.384873, 0.384873, 0.384873;;, + 44;3; 0.384873, 0.384873, 0.384873;;, + 45;3; 0.384873, 0.384873, 0.384873;;, + 46;3; 0.384873, 0.384873, 0.384873;;, + 47;3; 0.384873, 0.384873, 0.384873;;, + 48;3; 0.384873, 0.384873, 0.384873;;, + 49;3; 0.384873, 0.384873, 0.384873;;, + 50;3; 0.384873, 0.384873, 0.384873;;, + 51;3; 0.384873, 0.384873, 0.384873;;, + 52;3; 0.384873, 0.384873, 0.384873;;, + 53;3; 0.384873, 0.384873, 0.384873;;, + 54;3; 0.384873, 0.384873, 0.384873;;, + 55;3; 0.384873, 0.384873, 0.384873;;, + 56;3; 0.384873, 0.384873, 0.384873;;, + 57;3; 0.384873, 0.384873, 0.384873;;, + 58;3; 0.384873, 0.384873, 0.384873;;, + 59;3; 0.384873, 0.384873, 0.384873;;, + 60;3; 0.384873, 0.384873, 0.384873;;, + 61;3; 0.384873, 0.384873, 0.384873;;, + 62;3; 0.384873, 0.384873, 0.384873;;, + 63;3; 0.384873, 0.384873, 0.384873;;, + 64;3; 0.384873, 0.384873, 0.384873;;, + 65;3; 0.384873, 0.384873, 0.384873;;, + 66;3; 0.384873, 0.384873, 0.384873;;, + 67;3; 0.384873, 0.384873, 0.384873;;, + 68;3; 0.384873, 0.384873, 0.384873;;, + 69;3; 0.384873, 0.384873, 0.384873;;, + 70;3; 0.384873, 0.384873, 0.384873;;, + 71;3; 0.384873, 0.384873, 0.384873;;; + } + } + Animation { + {Armature_telo} + AnimationKey { //Position + 2; + 72; + 0;3; -0.420690, 0.533795,-0.000000;;, + 1;3; -0.420690, 0.533795,-0.000000;;, + 2;3; -0.420690, 0.533795,-0.000000;;, + 3;3; -0.420690, 0.533795,-0.000000;;, + 4;3; -0.420690, 0.533795,-0.000000;;, + 5;3; -0.420690, 0.533795,-0.000000;;, + 6;3; -0.420690, 0.533795,-0.000000;;, + 7;3; -0.420690, 0.533795,-0.000000;;, + 8;3; -0.420690, 0.533795,-0.000000;;, + 9;3; -0.420690, 0.533795,-0.000000;;, + 10;3; -0.420690, 0.533795,-0.000000;;, + 11;3; -0.420690, 0.533795,-0.000000;;, + 12;3; -0.420690, 0.533795,-0.000000;;, + 13;3; -0.420690, 0.533795,-0.000000;;, + 14;3; -0.420690, 0.533795,-0.000000;;, + 15;3; -0.420690, 0.533795,-0.000000;;, + 16;3; -0.420690, 0.533795,-0.000000;;, + 17;3; -0.420690, 0.533795,-0.000000;;, + 18;3; -0.420690, 0.533795,-0.000000;;, + 19;3; -0.420690, 0.533795,-0.000000;;, + 20;3; -0.420690, 0.533795,-0.000000;;, + 21;3; -0.420690, 0.533795,-0.000000;;, + 22;3; -0.420690, 0.533795,-0.000000;;, + 23;3; -0.420690, 0.533795,-0.000000;;, + 24;3; -0.420690, 0.533795,-0.000000;;, + 25;3; -0.420690, 0.533795,-0.000000;;, + 26;3; -0.420690, 0.533795,-0.000000;;, + 27;3; -0.420690, 0.533795,-0.000000;;, + 28;3; -0.420690, 0.533795,-0.000000;;, + 29;3; -0.420690, 0.533795,-0.000000;;, + 30;3; -0.420690, 0.533795,-0.000000;;, + 31;3; -0.420690, 0.533795,-0.000000;;, + 32;3; -0.420690, 0.533795,-0.000000;;, + 33;3; -0.420690, 0.533795,-0.000000;;, + 34;3; -0.420690, 0.533795,-0.000000;;, + 35;3; -0.420690, 0.533795,-0.000000;;, + 36;3; -0.420691, 0.697844, 5.096399;;, + 37;3; -0.420691, 0.649030,11.835538;;, + 38;3; -0.420690, 0.467079,18.898138;;, + 39;3; -0.420690, 0.386893,25.967310;;, + 40;3; -0.420690, 0.533795,32.266632;;, + 41;3; -0.420690, 0.533472,33.885704;;, + 42;3; -0.420690, 0.488681,34.629696;;, + 43;3; -0.420690, 0.442798,35.112400;;, + 44;3; -0.420690, 0.404856,35.451447;;, + 45;3; -0.420689, 0.377828,35.695206;;, + 46;3; -0.420689, 0.361520,35.869213;;, + 47;3; -0.420689, 0.353766,35.988956;;, + 48;3; -0.420689, 0.351512,36.064732;;, + 49;3; -0.420689, 0.351747,36.104042;;, + 50;3; -0.420689, 0.352129,36.114277;;, + 51;3; -0.420689, 0.308901,34.759087;;, + 52;3; -0.420689, 0.263859,31.941816;;, + 53;3; -0.420689, 0.264396,28.434992;;, + 54;3; -0.420689, 0.317380,24.548536;;, + 55;3; -0.420690, 0.409746,20.457424;;, + 56;3; -0.420690, 0.515895,16.287056;;, + 57;3; -0.420691, 0.605579,12.149173;;, + 58;3; -0.420691, 0.652924, 8.167800;;, + 59;3; -0.420691, 0.644488, 4.516260;;, + 60;3; -0.420691, 0.587241, 1.509617;;, + 61;3; -0.420690, 0.533795,-0.000000;;, + 62;3; -0.420690, 0.533795,-0.000000;;, + 63;3; -0.420690, 0.533795,-0.000000;;, + 64;3; -0.420690, 0.533795,-0.000000;;, + 65;3; -0.420690, 0.533795,-0.000000;;, + 66;3; -0.420690, 0.533795,-0.000000;;, + 67;3; -0.420690, 0.533795,-0.000000;;, + 68;3; -0.420690, 0.533795,-0.000000;;, + 69;3; -0.420690, 0.533795,-0.000000;;, + 70;3; -0.420690, 0.533795,-0.000000;;, + 71;3; -0.420690, 0.533795,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 1;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 2;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 3;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 4;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 5;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 6;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 7;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 8;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 9;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 10;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 11;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 12;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 13;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 14;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 15;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 16;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 17;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 18;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 19;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 20;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 21;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 22;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 23;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 24;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 25;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 26;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 27;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 28;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 29;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 30;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 31;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 32;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 33;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 34;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 35;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 36;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 37;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 38;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 39;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 40;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 41;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 42;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 43;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 44;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 45;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 46;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 47;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 48;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 49;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 50;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 51;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 52;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 53;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 54;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 55;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 56;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 57;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 58;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 59;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 60;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 61;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 62;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 63;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 64;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 65;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 66;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 67;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 68;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 69;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 70;4; -0.033726, 0.999431, 0.000000, 0.000000;;, + 71;4; -0.033726, 0.999431, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Armature_popa} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.173850, 0.000000;;, + 1;3; 0.000000, 1.173850, 0.000000;;, + 2;3; 0.000000, 1.173850, 0.000000;;, + 3;3; 0.000000, 1.173850, 0.000000;;, + 4;3; 0.000000, 1.173850, 0.000000;;, + 5;3; 0.000000, 1.173850, 0.000000;;, + 6;3; 0.000000, 1.173850, 0.000000;;, + 7;3; 0.000000, 1.173850, 0.000000;;, + 8;3; 0.000000, 1.173850, 0.000000;;, + 9;3; 0.000000, 1.173850, 0.000000;;, + 10;3; 0.000000, 1.173850, 0.000000;;, + 11;3; 0.000000, 1.173850, 0.000000;;, + 12;3; 0.000000, 1.173850, 0.000000;;, + 13;3; 0.000000, 1.173850, 0.000000;;, + 14;3; 0.000000, 1.173850, 0.000000;;, + 15;3; 0.000000, 1.173850, 0.000000;;, + 16;3; 0.000000, 1.173850, 0.000000;;, + 17;3; 0.000000, 1.173850, 0.000000;;, + 18;3; 0.000000, 1.173850, 0.000000;;, + 19;3; 0.000000, 1.173850, 0.000000;;, + 20;3; 0.000000, 1.173850, 0.000000;;, + 21;3; 0.000000, 1.173850, 0.000000;;, + 22;3; 0.000000, 1.173850, 0.000000;;, + 23;3; 0.000000, 1.173850, 0.000000;;, + 24;3; 0.000000, 1.173850, 0.000000;;, + 25;3; 0.000000, 1.173850, 0.000000;;, + 26;3; 0.000000, 1.173850, 0.000000;;, + 27;3; 0.000000, 1.173850, 0.000000;;, + 28;3; 0.000000, 1.173850, 0.000000;;, + 29;3; 0.000000, 1.173850, 0.000000;;, + 30;3; 0.000000, 1.173850, 0.000000;;, + 31;3; 0.000000, 1.173850, 0.000000;;, + 32;3; 0.000000, 1.173850, 0.000000;;, + 33;3; 0.000000, 1.173850, 0.000000;;, + 34;3; 0.000000, 1.173850, 0.000000;;, + 35;3; 0.000000, 1.173850, 0.000000;;, + 36;3; 0.000000, 1.173850,-0.000001;;, + 37;3; -0.000000, 1.173850,-0.000000;;, + 38;3; -0.000000, 1.173850, 0.000001;;, + 39;3; -0.000000, 1.173849, 0.000000;;, + 40;3; -0.000000, 1.173850,-0.000001;;, + 41;3; 0.000000, 1.173850,-0.000000;;, + 42;3; 0.000000, 1.173850,-0.000003;;, + 43;3; 0.000000, 1.173850,-0.000000;;, + 44;3; 0.000000, 1.173850,-0.000002;;, + 45;3; 0.000000, 1.173850,-0.000001;;, + 46;3; -0.000000, 1.173850,-0.000002;;, + 47;3; 0.000000, 1.173850,-0.000004;;, + 48;3; 0.000000, 1.173850,-0.000004;;, + 49;3; 0.000000, 1.173850,-0.000002;;, + 50;3; 0.000000, 1.173850,-0.000001;;, + 51;3; 0.000000, 1.173850,-0.000002;;, + 52;3; 0.000000, 1.173850,-0.000001;;, + 53;3; -0.000000, 1.173850, 0.000000;;, + 54;3; -0.000000, 1.173850,-0.000000;;, + 55;3; 0.000000, 1.173850,-0.000000;;, + 56;3; -0.000000, 1.173850,-0.000000;;, + 57;3; -0.000000, 1.173850, 0.000000;;, + 58;3; 0.000000, 1.173850, 0.000000;;, + 59;3; 0.000000, 1.173850,-0.000000;;, + 60;3; 0.000000, 1.173850,-0.000000;;, + 61;3; 0.000000, 1.173850, 0.000000;;, + 62;3; 0.000000, 1.173850, 0.000000;;, + 63;3; 0.000000, 1.173850, 0.000000;;, + 64;3; 0.000000, 1.173850, 0.000000;;, + 65;3; 0.000000, 1.173850, 0.000000;;, + 66;3; 0.000000, 1.173850, 0.000000;;, + 67;3; 0.000000, 1.173850, 0.000000;;, + 68;3; 0.000000, 1.173850, 0.000000;;, + 69;3; 0.000000, 1.173850, 0.000000;;, + 70;3; 0.000000, 1.173850, 0.000000;;, + 71;3; 0.000000, 1.173850, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 1;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 2;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 3;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 4;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 5;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 6;4; -0.000000,-0.000000, 0.993602, 0.111707;;, + 7;4; -0.000000,-0.000000, 0.991162, 0.131616;;, + 8;4; -0.000000,-0.000000, 0.990021, 0.140919;;, + 9;4; -0.000000,-0.000000, 0.990066, 0.140550;;, + 10;4; -0.000000,-0.000000, 0.990199, 0.139469;;, + 11;4; -0.000000,-0.000000, 0.990412, 0.137731;;, + 12;4; -0.000000,-0.000000, 0.990697, 0.135410;;, + 13;4; -0.000000,-0.000000, 0.991041, 0.132600;;, + 14;4; -0.000000,-0.000000, 0.991432, 0.129413;;, + 15;4; -0.000000,-0.000000, 0.991854, 0.125971;;, + 16;4; -0.000000,-0.000000, 0.992291, 0.122404;;, + 17;4; -0.000000,-0.000000, 0.992728, 0.118842;;, + 18;4; -0.000000,-0.000000, 0.993149, 0.115410;;, + 19;4; -0.000000,-0.000000, 0.993540, 0.112219;;, + 20;4; -0.000000,-0.000000, 0.993889, 0.109367;;, + 21;4; -0.000000,-0.000000, 0.994188, 0.106935;;, + 22;4; -0.000000,-0.000000, 0.994427, 0.104984;;, + 23;4; -0.000000,-0.000000, 0.994601, 0.103560;;, + 24;4; -0.000000,-0.000000, 0.994707, 0.102694;;, + 25;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 26;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 27;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 28;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 29;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 30;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 31;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 32;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 33;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 34;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 35;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 36;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 37;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 38;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 39;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 40;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 41;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 42;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 43;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 44;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 45;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 46;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 47;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 48;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 49;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 50;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 51;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 52;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 53;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 54;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 55;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 56;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 57;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 58;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 59;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 60;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 61;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 62;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 63;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 64;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 65;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 66;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 67;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 68;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 69;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 70;4; -0.000000,-0.000000, 0.994743, 0.102403;;, + 71;4; -0.000000,-0.000000, 0.994743, 0.102403;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Armature_nogi1} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.173850, 0.000000;;, + 1;3; 0.000000, 1.173850, 0.000000;;, + 2;3; 0.000000, 1.173850, 0.000000;;, + 3;3; 0.000000, 1.173850, 0.000000;;, + 4;3; 0.000000, 1.173850, 0.000000;;, + 5;3; 0.000000, 1.173850, 0.000000;;, + 6;3; 0.000000, 1.173850, 0.000000;;, + 7;3; 0.000000, 1.173850, 0.000000;;, + 8;3; 0.000000, 1.173850, 0.000000;;, + 9;3; 0.000000, 1.173850, 0.000000;;, + 10;3; 0.000000, 1.173850, 0.000000;;, + 11;3; 0.000000, 1.173850, 0.000000;;, + 12;3; 0.000000, 1.173850, 0.000000;;, + 13;3; 0.000000, 1.173850, 0.000000;;, + 14;3; 0.000000, 1.173850, 0.000000;;, + 15;3; 0.000000, 1.173850, 0.000000;;, + 16;3; 0.000000, 1.173850, 0.000000;;, + 17;3; 0.000000, 1.173850, 0.000000;;, + 18;3; 0.000000, 1.173850, 0.000000;;, + 19;3; 0.000000, 1.173850, 0.000000;;, + 20;3; 0.000000, 1.173850, 0.000000;;, + 21;3; 0.000000, 1.173850, 0.000000;;, + 22;3; 0.000000, 1.173850, 0.000000;;, + 23;3; 0.000000, 1.173850, 0.000000;;, + 24;3; 0.000000, 1.173850, 0.000000;;, + 25;3; 0.000000, 1.173850, 0.000000;;, + 26;3; 0.000000, 1.173850, 0.000000;;, + 27;3; 0.000000, 1.173850, 0.000000;;, + 28;3; 0.000000, 1.173850, 0.000000;;, + 29;3; 0.000000, 1.173850, 0.000000;;, + 30;3; 0.000000, 1.173850, 0.000000;;, + 31;3; 0.000000, 1.173850, 0.000000;;, + 32;3; 0.000000, 1.173850, 0.000000;;, + 33;3; 0.000000, 1.173850, 0.000000;;, + 34;3; 0.000000, 1.173850, 0.000000;;, + 35;3; 0.000000, 1.173850, 0.000000;;, + 36;3; 0.000000, 1.173850,-0.000001;;, + 37;3; -0.000000, 1.173850,-0.000000;;, + 38;3; -0.000000, 1.173850, 0.000001;;, + 39;3; -0.000000, 1.173849, 0.000000;;, + 40;3; -0.000000, 1.173850,-0.000001;;, + 41;3; 0.000000, 1.173850,-0.000000;;, + 42;3; 0.000000, 1.173850,-0.000003;;, + 43;3; 0.000000, 1.173850,-0.000000;;, + 44;3; 0.000000, 1.173850,-0.000002;;, + 45;3; 0.000000, 1.173850,-0.000001;;, + 46;3; -0.000000, 1.173850,-0.000002;;, + 47;3; 0.000000, 1.173850,-0.000004;;, + 48;3; 0.000000, 1.173850,-0.000004;;, + 49;3; 0.000000, 1.173850,-0.000002;;, + 50;3; 0.000000, 1.173850,-0.000001;;, + 51;3; 0.000000, 1.173850,-0.000002;;, + 52;3; 0.000000, 1.173850,-0.000001;;, + 53;3; -0.000000, 1.173850, 0.000000;;, + 54;3; -0.000000, 1.173850,-0.000000;;, + 55;3; 0.000000, 1.173850,-0.000000;;, + 56;3; -0.000000, 1.173850,-0.000000;;, + 57;3; -0.000000, 1.173850, 0.000000;;, + 58;3; 0.000000, 1.173850, 0.000000;;, + 59;3; 0.000000, 1.173850,-0.000000;;, + 60;3; 0.000000, 1.173850,-0.000000;;, + 61;3; 0.000000, 1.173850, 0.000000;;, + 62;3; 0.000000, 1.173850, 0.000000;;, + 63;3; 0.000000, 1.173850, 0.000000;;, + 64;3; 0.000000, 1.173850, 0.000000;;, + 65;3; 0.000000, 1.173850, 0.000000;;, + 66;3; 0.000000, 1.173850, 0.000000;;, + 67;3; 0.000000, 1.173850, 0.000000;;, + 68;3; 0.000000, 1.173850, 0.000000;;, + 69;3; 0.000000, 1.173850, 0.000000;;, + 70;3; 0.000000, 1.173850, 0.000000;;, + 71;3; 0.000000, 1.173850, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 1;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 2;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 3;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 4;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 5;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 6;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 7;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 8;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 9;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 10;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 11;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 12;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 13;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 14;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 15;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 16;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 17;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 18;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 19;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 20;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 21;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 22;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 23;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 24;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 25;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 26;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 27;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 28;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 29;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 30;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 31;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 32;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 33;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 34;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 35;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 36;4; -0.209329, 0.672734, 0.657092, 0.254205;;, + 37;4; -0.257488, 0.650930, 0.632091, 0.300784;;, + 38;4; -0.319305, 0.622939, 0.599996, 0.360574;;, + 39;4; -0.367454, 0.601138, 0.574998, 0.407143;;, + 40;4; -0.384553, 0.593396, 0.566121, 0.423682;;, + 41;4; -0.383592, 0.593831, 0.566621, 0.422752;;, + 42;4; -0.380686, 0.595147, 0.568129, 0.419942;;, + 43;4; -0.375825, 0.597347, 0.570652, 0.415240;;, + 44;4; -0.369035, 0.600421, 0.574177, 0.408673;;, + 45;4; -0.360387, 0.604336, 0.578666, 0.400309;;, + 46;4; -0.350008, 0.609036, 0.584055, 0.390269;;, + 47;4; -0.338084, 0.614434, 0.590245, 0.378737;;, + 48;4; -0.324869, 0.620417, 0.597105, 0.365956;;, + 49;4; -0.310679, 0.626842, 0.604472, 0.352231;;, + 50;4; -0.295880, 0.633543, 0.612155, 0.337917;;, + 51;4; -0.280875, 0.640337, 0.619945, 0.323404;;, + 52;4; -0.266077, 0.647038, 0.627628, 0.309092;;, + 53;4; -0.251889, 0.653462, 0.634994, 0.295369;;, + 54;4; -0.238677, 0.659444, 0.641854, 0.282590;;, + 55;4; -0.226756, 0.664842, 0.648043, 0.271061;;, + 56;4; -0.216380, 0.669540, 0.653430, 0.261024;;, + 57;4; -0.207735, 0.673455, 0.657918, 0.252663;;, + 58;4; -0.200948, 0.676528, 0.661442, 0.246099;;, + 59;4; -0.196089, 0.678728, 0.663964, 0.241399;;, + 60;4; -0.193185, 0.680043, 0.665472, 0.238590;;, + 61;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 62;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 63;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 64;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 65;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 66;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 67;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 68;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 69;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 70;4; -0.192224, 0.680478, 0.665971, 0.237660;;, + 71;4; -0.192224, 0.680478, 0.665971, 0.237660;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Armature_nogi2} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.173850, 0.000000;;, + 1;3; 0.000000, 1.173850, 0.000000;;, + 2;3; 0.000000, 1.173850, 0.000000;;, + 3;3; 0.000000, 1.173850, 0.000000;;, + 4;3; 0.000000, 1.173850, 0.000000;;, + 5;3; 0.000000, 1.173850, 0.000000;;, + 6;3; 0.000000, 1.173850, 0.000000;;, + 7;3; 0.000000, 1.173850, 0.000000;;, + 8;3; 0.000000, 1.173850, 0.000000;;, + 9;3; 0.000000, 1.173850, 0.000000;;, + 10;3; 0.000000, 1.173850, 0.000000;;, + 11;3; 0.000000, 1.173850, 0.000000;;, + 12;3; 0.000000, 1.173850, 0.000000;;, + 13;3; 0.000000, 1.173850, 0.000000;;, + 14;3; 0.000000, 1.173850, 0.000000;;, + 15;3; 0.000000, 1.173850, 0.000000;;, + 16;3; 0.000000, 1.173850, 0.000000;;, + 17;3; 0.000000, 1.173850, 0.000000;;, + 18;3; 0.000000, 1.173850, 0.000000;;, + 19;3; 0.000000, 1.173850, 0.000000;;, + 20;3; 0.000000, 1.173850, 0.000000;;, + 21;3; 0.000000, 1.173850, 0.000000;;, + 22;3; 0.000000, 1.173850, 0.000000;;, + 23;3; 0.000000, 1.173850, 0.000000;;, + 24;3; 0.000000, 1.173850, 0.000000;;, + 25;3; 0.000000, 1.173850, 0.000000;;, + 26;3; 0.000000, 1.173850, 0.000000;;, + 27;3; 0.000000, 1.173850, 0.000000;;, + 28;3; 0.000000, 1.173850, 0.000000;;, + 29;3; 0.000000, 1.173850, 0.000000;;, + 30;3; 0.000000, 1.173850, 0.000000;;, + 31;3; 0.000000, 1.173850, 0.000000;;, + 32;3; 0.000000, 1.173850, 0.000000;;, + 33;3; 0.000000, 1.173850, 0.000000;;, + 34;3; 0.000000, 1.173850, 0.000000;;, + 35;3; 0.000000, 1.173850, 0.000000;;, + 36;3; 0.000000, 1.173850,-0.000001;;, + 37;3; -0.000000, 1.173850,-0.000000;;, + 38;3; -0.000000, 1.173850, 0.000001;;, + 39;3; -0.000000, 1.173849, 0.000000;;, + 40;3; -0.000000, 1.173850,-0.000001;;, + 41;3; 0.000000, 1.173850,-0.000000;;, + 42;3; 0.000000, 1.173850,-0.000003;;, + 43;3; 0.000000, 1.173850,-0.000000;;, + 44;3; 0.000000, 1.173850,-0.000002;;, + 45;3; 0.000000, 1.173850,-0.000001;;, + 46;3; -0.000000, 1.173850,-0.000002;;, + 47;3; 0.000000, 1.173850,-0.000004;;, + 48;3; 0.000000, 1.173850,-0.000004;;, + 49;3; 0.000000, 1.173850,-0.000002;;, + 50;3; 0.000000, 1.173850,-0.000001;;, + 51;3; 0.000000, 1.173850,-0.000002;;, + 52;3; 0.000000, 1.173850,-0.000001;;, + 53;3; -0.000000, 1.173850, 0.000000;;, + 54;3; -0.000000, 1.173850,-0.000000;;, + 55;3; 0.000000, 1.173850,-0.000000;;, + 56;3; -0.000000, 1.173850,-0.000000;;, + 57;3; -0.000000, 1.173850, 0.000000;;, + 58;3; 0.000000, 1.173850, 0.000000;;, + 59;3; 0.000000, 1.173850,-0.000000;;, + 60;3; 0.000000, 1.173850,-0.000000;;, + 61;3; 0.000000, 1.173850, 0.000000;;, + 62;3; 0.000000, 1.173850, 0.000000;;, + 63;3; 0.000000, 1.173850, 0.000000;;, + 64;3; 0.000000, 1.173850, 0.000000;;, + 65;3; 0.000000, 1.173850, 0.000000;;, + 66;3; 0.000000, 1.173850, 0.000000;;, + 67;3; 0.000000, 1.173850, 0.000000;;, + 68;3; 0.000000, 1.173850, 0.000000;;, + 69;3; 0.000000, 1.173850, 0.000000;;, + 70;3; 0.000000, 1.173850, 0.000000;;, + 71;3; 0.000000, 1.173850, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 1;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 2;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 3;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 4;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 5;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 6;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 7;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 8;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 9;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 10;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 11;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 12;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 13;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 14;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 15;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 16;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 17;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 18;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 19;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 20;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 21;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 22;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 23;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 24;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 25;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 26;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 27;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 28;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 29;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 30;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 31;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 32;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 33;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 34;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 35;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 36;4; -0.199513, 0.674883,-0.659898,-0.244556;;, + 37;4; -0.254533, 0.649715,-0.631078,-0.297754;;, + 38;4; -0.325150, 0.617407,-0.594083,-0.366032;;, + 39;4; -0.380155, 0.592243,-0.565268,-0.419216;;, + 40;4; -0.399692, 0.583307,-0.555035,-0.438106;;, + 41;4; -0.398593, 0.583809,-0.555610,-0.437043;;, + 42;4; -0.395273, 0.585328,-0.557349,-0.433833;;, + 43;4; -0.389719, 0.587868,-0.560258,-0.428463;;, + 44;4; -0.381961, 0.591416,-0.564321,-0.420962;;, + 45;4; -0.372081, 0.595935,-0.569496,-0.411409;;, + 46;4; -0.360222, 0.601359,-0.575707,-0.399943;;, + 47;4; -0.346599, 0.607591,-0.582843,-0.386771;;, + 48;4; -0.331502, 0.614497,-0.590751,-0.372174;;, + 49;4; -0.315291, 0.621913,-0.599243,-0.356499;;, + 50;4; -0.298384, 0.629647,-0.608100,-0.340153;;, + 51;4; -0.281242, 0.637489,-0.617080,-0.323578;;, + 52;4; -0.264337, 0.645223,-0.625935,-0.307233;;, + 53;4; -0.248129, 0.652639,-0.634427,-0.291562;;, + 54;4; -0.233036, 0.659544,-0.642333,-0.276968;;, + 55;4; -0.219418, 0.665774,-0.649467,-0.263802;;, + 56;4; -0.207564, 0.671197,-0.655677,-0.252340;;, + 57;4; -0.197688, 0.675715,-0.660851,-0.242791;;, + 58;4; -0.189935, 0.679262,-0.664912,-0.235294;;, + 59;4; -0.184384, 0.681801,-0.667820,-0.229928;;, + 60;4; -0.181066, 0.683319,-0.669558,-0.226719;;, + 61;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 62;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 63;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 64;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 65;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 66;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 67;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 68;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 69;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 70;4; -0.179968, 0.683821,-0.670133,-0.225657;;, + 71;4; -0.179968, 0.683821,-0.670133,-0.225657;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 1.000000, 0.999999, 1.000000;;, + 1;3; 1.000000, 0.999999, 1.000000;;, + 2;3; 1.000000, 0.999999, 1.000000;;, + 3;3; 1.000000, 0.999999, 1.000000;;, + 4;3; 1.000000, 0.999999, 1.000000;;, + 5;3; 1.000000, 0.999999, 1.000000;;, + 6;3; 1.000000, 0.999999, 1.000000;;, + 7;3; 1.000000, 0.999999, 1.000000;;, + 8;3; 1.000000, 0.999999, 1.000000;;, + 9;3; 1.000000, 0.999999, 1.000000;;, + 10;3; 1.000000, 0.999999, 1.000000;;, + 11;3; 1.000000, 0.999999, 1.000000;;, + 12;3; 1.000000, 0.999999, 1.000000;;, + 13;3; 1.000000, 0.999999, 1.000000;;, + 14;3; 1.000000, 0.999999, 1.000000;;, + 15;3; 1.000000, 0.999999, 1.000000;;, + 16;3; 1.000000, 0.999999, 1.000000;;, + 17;3; 1.000000, 0.999999, 1.000000;;, + 18;3; 1.000000, 0.999999, 1.000000;;, + 19;3; 1.000000, 0.999999, 1.000000;;, + 20;3; 1.000000, 0.999999, 1.000000;;, + 21;3; 1.000000, 0.999999, 1.000000;;, + 22;3; 1.000000, 0.999999, 1.000000;;, + 23;3; 1.000000, 0.999999, 1.000000;;, + 24;3; 1.000000, 0.999999, 1.000000;;, + 25;3; 1.000000, 0.999999, 1.000000;;, + 26;3; 1.000000, 0.999999, 1.000000;;, + 27;3; 1.000000, 0.999999, 1.000000;;, + 28;3; 1.000000, 0.999999, 1.000000;;, + 29;3; 1.000000, 0.999999, 1.000000;;, + 30;3; 1.000000, 0.999999, 1.000000;;, + 31;3; 1.000000, 0.999999, 1.000000;;, + 32;3; 1.000000, 0.999999, 1.000000;;, + 33;3; 1.000000, 0.999999, 1.000000;;, + 34;3; 1.000000, 0.999999, 1.000000;;, + 35;3; 1.000000, 0.999999, 1.000000;;, + 36;3; 1.000000, 0.999999, 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, 0.999999, 1.000000;;, + 62;3; 1.000000, 0.999999, 1.000000;;, + 63;3; 1.000000, 0.999999, 1.000000;;, + 64;3; 1.000000, 0.999999, 1.000000;;, + 65;3; 1.000000, 0.999999, 1.000000;;, + 66;3; 1.000000, 0.999999, 1.000000;;, + 67;3; 1.000000, 0.999999, 1.000000;;, + 68;3; 1.000000, 0.999999, 1.000000;;, + 69;3; 1.000000, 0.999999, 1.000000;;, + 70;3; 1.000000, 0.999999, 1.000000;;, + 71;3; 1.000000, 0.999999, 1.000000;;; + } + } + Animation { + {Armature_golova} + AnimationKey { //Position + 2; + 72; + 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.000001;;, + 39;3; -0.000000,-0.000000, 0.000000;;, + 40;3; -0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000,-0.000000, 0.000001;;, + 42;3; 0.000000, 0.000000,-0.000001;;, + 43;3; 0.000000, 0.000000, 0.000001;;, + 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.000002;;, + 48;3; 0.000000, 0.000000,-0.000002;;, + 49;3; 0.000000, 0.000000,-0.000001;;, + 50;3; 0.000000,-0.000000, 0.000000;;, + 51;3; 0.000000,-0.000000,-0.000000;;, + 52;3; 0.000000, 0.000000,-0.000001;;, + 53;3; -0.000000, 0.000000,-0.000000;;, + 54;3; -0.000000,-0.000000,-0.000000;;, + 55;3; 0.000000, 0.000000,-0.000001;;, + 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;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 1;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 2;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 3;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 4;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 5;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 6;4; -0.156764, 0.986995,-0.000000, 0.000000;;, + 7;4; -0.211132, 0.976666,-0.000000, 0.000000;;, + 8;4; -0.257363, 0.966315,-0.000000, 0.000000;;, + 9;4; -0.290954, 0.955942,-0.012361,-0.002399;;, + 10;4; -0.323006, 0.943617,-0.044691,-0.008676;;, + 11;4; -0.344393, 0.934121,-0.077021,-0.014953;;, + 12;4; -0.351061, 0.930891,-0.089381,-0.017353;;, + 13;4; -0.336011, 0.934372,-0.087769,-0.017559;;, + 14;4; -0.292954, 0.944458,-0.082761,-0.018124;;, + 15;4; -0.235871, 0.958164,-0.075080,-0.018807;;, + 16;4; -0.187914, 0.970308,-0.066661,-0.019256;;, + 17;4; -0.164533, 0.977290,-0.059244,-0.019266;;, + 18;4; -0.155673, 0.981054,-0.051727,-0.018413;;, + 19;4; -0.148265, 0.984288,-0.042554,-0.016314;;, + 20;4; -0.142573, 0.986870,-0.032274,-0.013151;;, + 21;4; -0.138695, 0.988731,-0.021882,-0.009371;;, + 22;4; -0.136455, 0.989904,-0.012631,-0.005629;;, + 23;4; -0.135426, 0.990525,-0.005602,-0.002576;;, + 24;4; -0.135106, 0.990781,-0.001368,-0.000645;;, + 25;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 26;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 27;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 28;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 29;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 30;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 31;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 32;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 33;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 34;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 35;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 36;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 37;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 38;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 39;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 40;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 41;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 42;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 43;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 44;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 45;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 46;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 47;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 48;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 49;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 50;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 51;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 52;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 53;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 54;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 55;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 56;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 57;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 58;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 59;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 60;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 61;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 62;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 63;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 64;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 65;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 66;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 67;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 68;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 69;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 70;4; -0.135069, 0.990836,-0.000000, 0.000000;;, + 71;4; -0.135069, 0.990836,-0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Armature_us1} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 0.535820, 1.341474;;, + 1;3; 0.000000, 0.535820, 1.341474;;, + 2;3; 0.000000, 0.535820, 1.341474;;, + 3;3; 0.000000, 0.535820, 1.341474;;, + 4;3; 0.000000, 0.535820, 1.341474;;, + 5;3; 0.000000, 0.535820, 1.341474;;, + 6;3; 0.000000, 0.535820, 1.341474;;, + 7;3; 0.000000, 0.535820, 1.341474;;, + 8;3; 0.000000, 0.535820, 1.341474;;, + 9;3; 0.000000, 0.535820, 1.341474;;, + 10;3; 0.000000, 0.535820, 1.341474;;, + 11;3; -0.000000, 0.535820, 1.341474;;, + 12;3; -0.000000, 0.535820, 1.341474;;, + 13;3; 0.000000, 0.535820, 1.341474;;, + 14;3; 0.000000, 0.535820, 1.341474;;, + 15;3; 0.000000, 0.535820, 1.341474;;, + 16;3; -0.000000, 0.535820, 1.341474;;, + 17;3; -0.000000, 0.535820, 1.341474;;, + 18;3; -0.000000, 0.535820, 1.341474;;, + 19;3; -0.000000, 0.535820, 1.341474;;, + 20;3; 0.000000, 0.535820, 1.341474;;, + 21;3; 0.000000, 0.535820, 1.341474;;, + 22;3; -0.000000, 0.535820, 1.341474;;, + 23;3; 0.000000, 0.535820, 1.341474;;, + 24;3; 0.000000, 0.535820, 1.341474;;, + 25;3; 0.000000, 0.535820, 1.341474;;, + 26;3; 0.000000, 0.535820, 1.341474;;, + 27;3; 0.000000, 0.535820, 1.341474;;, + 28;3; 0.000000, 0.535820, 1.341474;;, + 29;3; 0.000000, 0.535820, 1.341474;;, + 30;3; 0.000000, 0.535820, 1.341474;;, + 31;3; 0.000000, 0.535820, 1.341474;;, + 32;3; 0.000000, 0.535820, 1.341474;;, + 33;3; 0.000000, 0.535820, 1.341474;;, + 34;3; 0.000000, 0.535820, 1.341474;;, + 35;3; 0.000000, 0.535820, 1.341474;;, + 36;3; -0.000000, 0.535820, 1.341474;;, + 37;3; -0.000000, 0.535820, 1.341473;;, + 38;3; -0.000000, 0.535820, 1.341475;;, + 39;3; -0.000000, 0.535820, 1.341475;;, + 40;3; -0.000000, 0.535821, 1.341473;;, + 41;3; -0.000000, 0.535821, 1.341474;;, + 42;3; -0.000000, 0.535820, 1.341473;;, + 43;3; -0.000000, 0.535821, 1.341472;;, + 44;3; -0.000000, 0.535820, 1.341473;;, + 45;3; -0.000000, 0.535821, 1.341473;;, + 46;3; -0.000000, 0.535821, 1.341474;;, + 47;3; -0.000000, 0.535820, 1.341472;;, + 48;3; -0.000000, 0.535820, 1.341472;;, + 49;3; -0.000000, 0.535820, 1.341472;;, + 50;3; -0.000000, 0.535820, 1.341472;;, + 51;3; -0.000000, 0.535821, 1.341473;;, + 52;3; -0.000000, 0.535820, 1.341474;;, + 53;3; -0.000000, 0.535820, 1.341474;;, + 54;3; -0.000000, 0.535820, 1.341475;;, + 55;3; -0.000000, 0.535820, 1.341474;;, + 56;3; -0.000000, 0.535820, 1.341475;;, + 57;3; -0.000000, 0.535820, 1.341474;;, + 58;3; -0.000000, 0.535820, 1.341474;;, + 59;3; -0.000000, 0.535820, 1.341474;;, + 60;3; 0.000000, 0.535820, 1.341474;;, + 61;3; 0.000000, 0.535820, 1.341474;;, + 62;3; 0.000000, 0.535820, 1.341474;;, + 63;3; 0.000000, 0.535820, 1.341474;;, + 64;3; 0.000000, 0.535820, 1.341474;;, + 65;3; 0.000000, 0.535820, 1.341474;;, + 66;3; 0.000000, 0.535820, 1.341474;;, + 67;3; 0.000000, 0.535820, 1.341474;;, + 68;3; 0.000000, 0.535820, 1.341474;;, + 69;3; 0.000000, 0.535820, 1.341474;;, + 70;3; 0.000000, 0.535820, 1.341474;;, + 71;3; 0.000000, 0.535820, 1.341474;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 1;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 2;4; -0.004254, 0.032017, 0.888040, 0.452075;;, + 3;4; -0.015397, 0.115672, 0.879684, 0.447816;;, + 4;4; -0.026547, 0.199275, 0.870869, 0.443327;;, + 5;4; -0.030808, 0.231245, 0.866580, 0.441154;;, + 6;4; -0.030330, 0.229140, 0.864693, 0.441564;;, + 7;4; -0.028882, 0.222777, 0.861790, 0.444197;;, + 8;4; -0.026462, 0.212139, 0.857875, 0.449068;;, + 9;4; -0.023085, 0.197295, 0.852973, 0.456142;;, + 10;4; -0.018793, 0.178430, 0.847136, 0.465330;;, + 11;4; -0.013659, 0.155865, 0.840454, 0.476468;;, + 12;4; -0.007789, 0.130071, 0.833050, 0.489318;;, + 13;4; -0.001329, 0.101679, 0.825089, 0.503555;;, + 14;4; 0.005548, 0.071460, 0.816766, 0.518785;;, + 15;4; 0.012639, 0.040298, 0.808305, 0.534551;;, + 16;4; 0.019731, 0.009137, 0.799940, 0.550365;;, + 17;4; 0.026608,-0.021080, 0.791905, 0.565738;;, + 18;4; 0.033069,-0.049470, 0.784413, 0.580212;;, + 19;4; 0.038939,-0.075261, 0.777652, 0.593383;;, + 20;4; 0.044074,-0.097823, 0.771769, 0.604922;;, + 21;4; 0.048367,-0.116685, 0.766874, 0.614580;;, + 22;4; 0.051745,-0.131527, 0.763037, 0.622187;;, + 23;4; 0.054165,-0.142163, 0.760298, 0.627643;;, + 24;4; 0.055613,-0.148524, 0.758664, 0.630909;;, + 25;4; 0.056092,-0.150629, 0.758125, 0.631991;;, + 26;4; 0.051106,-0.137240, 0.769952, 0.616138;;, + 27;4; 0.037063,-0.099527, 0.803261, 0.571495;;, + 28;4; 0.019031,-0.051105, 0.846028, 0.514176;;, + 29;4; 0.004986,-0.013390, 0.879340, 0.469527;;, + 30;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 31;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 32;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 33;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 34;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 35;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 36;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 37;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 38;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 39;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 40;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 41;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 42;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 43;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 44;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 45;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 46;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 47;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 48;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 49;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 50;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 51;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 52;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 53;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 54;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 55;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 56;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 57;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 58;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 59;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 60;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 61;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 62;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 63;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 64;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 65;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 66;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 67;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 68;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 69;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 70;4; -0.000000, 0.000000, 0.891169, 0.453672;;, + 71;4; -0.000000, 0.000000, 0.891169, 0.453672;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { //Position + 2; + 72; + 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.000001;;, + 39;3; -0.000000,-0.000000, 0.000000;;, + 40;3; -0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000,-0.000000, 0.000001;;, + 42;3; 0.000000, 0.000000,-0.000001;;, + 43;3; 0.000000, 0.000000, 0.000001;;, + 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.000002;;, + 48;3; 0.000000, 0.000000,-0.000002;;, + 49;3; 0.000000, 0.000000,-0.000001;;, + 50;3; 0.000000,-0.000000, 0.000000;;, + 51;3; 0.000000,-0.000000,-0.000000;;, + 52;3; 0.000000, 0.000000,-0.000001;;, + 53;3; -0.000000, 0.000000,-0.000000;;, + 54;3; -0.000000,-0.000000,-0.000000;;, + 55;3; 0.000000, 0.000000,-0.000001;;, + 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;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 1;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 2;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 3;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 4;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 5;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 6;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 7;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 8;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 9;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 10;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 11;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 12;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 13;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 14;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 15;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 16;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 17;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 18;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 19;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 20;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 21;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 22;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 23;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 24;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 25;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 26;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 27;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 28;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 29;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 30;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 31;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 32;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 33;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 34;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 35;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 36;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 37;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 38;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 39;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 40;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 41;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 42;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 43;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 44;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 45;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 46;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 47;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 48;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 49;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 50;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 51;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 52;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 53;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 54;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 55;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 56;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 57;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 58;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 59;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 60;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 61;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 62;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 63;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 64;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 65;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 66;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 67;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 68;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 69;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 70;4; -0.000000, 0.000000, 0.874792,-0.484499;;, + 71;4; -0.000000, 0.000000, 0.874792,-0.484499;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.619178, 0.000000;;, + 1;3; 0.000000, 1.619178, 0.000000;;, + 2;3; 0.000000, 1.619178, 0.000000;;, + 3;3; 0.000000, 1.619178, 0.000000;;, + 4;3; 0.000000, 1.619178, 0.000000;;, + 5;3; 0.000000, 1.619178, 0.000000;;, + 6;3; 0.000000, 1.619178, 0.000000;;, + 7;3; 0.000000, 1.619178, 0.000000;;, + 8;3; 0.000000, 1.619178, 0.000000;;, + 9;3; 0.000000, 1.619178, 0.000000;;, + 10;3; 0.000000, 1.619178, 0.000000;;, + 11;3; 0.000000, 1.619178, 0.000000;;, + 12;3; 0.000000, 1.619178, 0.000000;;, + 13;3; 0.000000, 1.619178, 0.000000;;, + 14;3; 0.000000, 1.619178, 0.000000;;, + 15;3; 0.000000, 1.619178, 0.000000;;, + 16;3; 0.000000, 1.619178, 0.000000;;, + 17;3; 0.000000, 1.619178, 0.000000;;, + 18;3; 0.000000, 1.619178, 0.000000;;, + 19;3; 0.000000, 1.619178, 0.000000;;, + 20;3; 0.000000, 1.619178, 0.000000;;, + 21;3; 0.000000, 1.619178, 0.000000;;, + 22;3; 0.000000, 1.619178, 0.000000;;, + 23;3; 0.000000, 1.619178, 0.000000;;, + 24;3; 0.000000, 1.619178, 0.000000;;, + 25;3; 0.000000, 1.619178, 0.000000;;, + 26;3; 0.000000, 1.619178, 0.000000;;, + 27;3; 0.000000, 1.619178, 0.000000;;, + 28;3; 0.000000, 1.619178, 0.000000;;, + 29;3; 0.000000, 1.619178, 0.000000;;, + 30;3; 0.000000, 1.619178, 0.000000;;, + 31;3; 0.000000, 1.619178, 0.000000;;, + 32;3; 0.000000, 1.619178, 0.000000;;, + 33;3; 0.000000, 1.619178, 0.000000;;, + 34;3; 0.000000, 1.619178, 0.000000;;, + 35;3; 0.000000, 1.619178, 0.000000;;, + 36;3; 0.000000, 1.619177,-0.000000;;, + 37;3; 0.000000, 1.619178,-0.000000;;, + 38;3; 0.000000, 1.619178, 0.000001;;, + 39;3; 0.000000, 1.619178, 0.000001;;, + 40;3; 0.000000, 1.619179, 0.000001;;, + 41;3; 0.000000, 1.619177,-0.000001;;, + 42;3; 0.000000, 1.619176,-0.000001;;, + 43;3; 0.000000, 1.619178, 0.000000;;, + 44;3; 0.000000, 1.619178,-0.000001;;, + 45;3; -0.000000, 1.619177, 0.000000;;, + 46;3; 0.000000, 1.619177, 0.000001;;, + 47;3; 0.000000, 1.619178, 0.000001;;, + 48;3; 0.000000, 1.619177, 0.000000;;, + 49;3; 0.000000, 1.619177,-0.000000;;, + 50;3; -0.000000, 1.619178, 0.000001;;, + 51;3; 0.000000, 1.619178,-0.000000;;, + 52;3; 0.000000, 1.619176,-0.000000;;, + 53;3; 0.000000, 1.619177, 0.000001;;, + 54;3; 0.000000, 1.619178, 0.000000;;, + 55;3; 0.000000, 1.619178, 0.000001;;, + 56;3; 0.000000, 1.619179, 0.000000;;, + 57;3; 0.000000, 1.619178,-0.000000;;, + 58;3; 0.000000, 1.619178,-0.000000;;, + 59;3; 0.000000, 1.619178, 0.000000;;, + 60;3; 0.000000, 1.619178, 0.000000;;, + 61;3; 0.000000, 1.619178, 0.000000;;, + 62;3; 0.000000, 1.619178, 0.000000;;, + 63;3; 0.000000, 1.619178, 0.000000;;, + 64;3; 0.000000, 1.619178, 0.000000;;, + 65;3; 0.000000, 1.619178, 0.000000;;, + 66;3; 0.000000, 1.619178, 0.000000;;, + 67;3; 0.000000, 1.619178, 0.000000;;, + 68;3; 0.000000, 1.619178, 0.000000;;, + 69;3; 0.000000, 1.619178, 0.000000;;, + 70;3; 0.000000, 1.619178, 0.000000;;, + 71;3; 0.000000, 1.619178, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 1;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 2;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 3;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 4;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 5;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 6;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 7;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 8;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 9;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 10;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 11;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 12;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 13;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 14;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 15;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 16;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 17;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 18;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 19;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 20;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 21;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 22;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 23;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 24;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 25;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 26;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 27;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 28;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 29;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 30;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 31;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 32;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 33;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 34;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 35;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 36;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 37;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 38;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 39;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 40;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 41;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 42;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 43;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 44;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 45;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 46;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 47;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 48;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 49;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 50;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 51;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 52;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 53;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 54;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 55;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 56;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 57;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 58;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 59;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 60;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 61;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 62;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 63;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 64;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 65;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 66;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 67;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 68;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 69;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 70;4; -0.606665,-0.363260, 0.363260, 0.606665;;, + 71;4; -0.606665,-0.363260, 0.363260, 0.606665;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Armature_krilo1} + AnimationKey { //Position + 2; + 72; + 0;3; -0.000000, 0.328829,-0.000000;;, + 1;3; -0.000000, 0.328829,-0.000000;;, + 2;3; -0.000000, 0.328829,-0.000000;;, + 3;3; -0.000000, 0.328829,-0.000000;;, + 4;3; -0.000000, 0.328829,-0.000000;;, + 5;3; -0.000000, 0.328829,-0.000000;;, + 6;3; -0.000000, 0.328829,-0.000000;;, + 7;3; -0.000000, 0.328829,-0.000000;;, + 8;3; -0.000000, 0.328829,-0.000000;;, + 9;3; -0.000000, 0.328829,-0.000000;;, + 10;3; -0.000000, 0.328829,-0.000000;;, + 11;3; -0.000000, 0.328829,-0.000000;;, + 12;3; -0.000000, 0.328829,-0.000000;;, + 13;3; -0.000000, 0.328829,-0.000000;;, + 14;3; -0.000000, 0.328829,-0.000000;;, + 15;3; -0.000000, 0.328829,-0.000000;;, + 16;3; -0.000000, 0.328829,-0.000000;;, + 17;3; -0.000000, 0.328829,-0.000000;;, + 18;3; -0.000000, 0.328829,-0.000000;;, + 19;3; -0.000000, 0.328829,-0.000000;;, + 20;3; -0.000000, 0.328829,-0.000000;;, + 21;3; -0.000000, 0.328829,-0.000000;;, + 22;3; -0.000000, 0.328829,-0.000000;;, + 23;3; -0.000000, 0.328829,-0.000000;;, + 24;3; -0.000000, 0.328829,-0.000000;;, + 25;3; -0.000000, 0.328829,-0.000000;;, + 26;3; -0.000000, 0.328829,-0.000000;;, + 27;3; -0.000000, 0.328829,-0.000000;;, + 28;3; -0.000000, 0.328829,-0.000000;;, + 29;3; -0.000000, 0.328829,-0.000000;;, + 30;3; -0.000000, 0.328829,-0.000000;;, + 31;3; -0.000000, 0.328829,-0.000000;;, + 32;3; -0.000000, 0.328829,-0.000000;;, + 33;3; -0.000000, 0.328829,-0.000000;;, + 34;3; -0.000000, 0.328829,-0.000000;;, + 35;3; -0.000000, 0.328829,-0.000000;;, + 36;3; 0.000000, 0.328829, 0.000000;;, + 37;3; 0.000000, 0.328829, 0.000000;;, + 38;3; 0.000000, 0.328829, 0.000001;;, + 39;3; 0.000000, 0.328829, 0.000001;;, + 40;3; 0.000000, 0.328829, 0.000000;;, + 41;3; 0.000000, 0.328829, 0.000001;;, + 42;3; 0.000000, 0.328829, 0.000001;;, + 43;3; 0.000000, 0.328829, 0.000001;;, + 44;3; 0.000000, 0.328829, 0.000001;;, + 45;3; 0.000000, 0.328829, 0.000001;;, + 46;3; 0.000000, 0.328829, 0.000001;;, + 47;3; 0.000000, 0.328829, 0.000001;;, + 48;3; 0.000000, 0.328829, 0.000001;;, + 49;3; 0.000000, 0.328829, 0.000001;;, + 50;3; 0.000000, 0.328829, 0.000001;;, + 51;3; 0.000000, 0.328829, 0.000001;;, + 52;3; 0.000000, 0.328829,-0.000003;;, + 53;3; 0.000000, 0.328829,-0.000000;;, + 54;3; 0.000000, 0.328829, 0.000001;;, + 55;3; 0.000000, 0.328829, 0.000001;;, + 56;3; 0.000000, 0.328829, 0.000000;;, + 57;3; -0.000000, 0.328829, 0.000000;;, + 58;3; 0.000000, 0.328829, 0.000000;;, + 59;3; 0.000000, 0.328829, 0.000000;;, + 60;3; -0.000000, 0.328829, 0.000000;;, + 61;3; -0.000000, 0.328829,-0.000000;;, + 62;3; -0.000000, 0.328829,-0.000000;;, + 63;3; -0.000000, 0.328829,-0.000000;;, + 64;3; -0.000000, 0.328829,-0.000000;;, + 65;3; -0.000000, 0.328829,-0.000000;;, + 66;3; -0.000000, 0.328829,-0.000000;;, + 67;3; -0.000000, 0.328829,-0.000000;;, + 68;3; -0.000000, 0.328829,-0.000000;;, + 69;3; -0.000000, 0.328829,-0.000000;;, + 70;3; -0.000000, 0.328829,-0.000000;;, + 71;3; -0.000000, 0.328829,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 1;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 2;4; -0.759791, 0.000000, 0.000000,-0.650020;;, + 3;4; -0.769068, 0.000000, 0.000000,-0.638852;;, + 4;4; -0.778344, 0.000000, 0.000000,-0.627685;;, + 5;4; -0.781891, 0.000000, 0.000000,-0.623416;;, + 6;4; -0.781749, 0.000000, 0.000000,-0.623586;;, + 7;4; -0.781322, 0.000000, 0.000000,-0.624100;;, + 8;4; -0.780608, 0.000000, 0.000000,-0.624960;;, + 9;4; -0.779611, 0.000000, 0.000000,-0.626160;;, + 10;4; -0.778344, 0.000000, 0.000000,-0.627685;;, + 11;4; -0.776829, 0.000000, 0.000000,-0.629509;;, + 12;4; -0.775097, 0.000000, 0.000000,-0.631594;;, + 13;4; -0.773190, 0.000000, 0.000000,-0.633890;;, + 14;4; -0.771160, 0.000000, 0.000000,-0.636333;;, + 15;4; -0.769068, 0.000000, 0.000000,-0.638852;;, + 16;4; -0.766975, 0.000000, 0.000000,-0.641372;;, + 17;4; -0.764945, 0.000000, 0.000000,-0.643815;;, + 18;4; -0.763038, 0.000000, 0.000000,-0.646110;;, + 19;4; -0.761306, 0.000000, 0.000000,-0.648196;;, + 20;4; -0.759791, 0.000000, 0.000000,-0.650020;;, + 21;4; -0.758524, 0.000000, 0.000000,-0.651545;;, + 22;4; -0.757527, 0.000000, 0.000000,-0.652745;;, + 23;4; -0.756813, 0.000000, 0.000000,-0.653605;;, + 24;4; -0.756386, 0.000000, 0.000000,-0.654119;;, + 25;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 26;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 27;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 28;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 29;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 30;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 31;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 32;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 33;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 34;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 35;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 36;4; -0.774609,-0.027614,-0.000881,-0.599671;;, + 37;4; -0.825683,-0.105349,-0.003363,-0.445659;;, + 38;4; -0.889878,-0.205182,-0.006550,-0.246972;;, + 39;4; -0.937492,-0.283030,-0.009028,-0.089985;;, + 40;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 41;4; -0.943262,-0.151135,-0.004838,-0.027171;;, + 42;4; -0.938209, 0.189674, 0.006037,-0.028546;;, + 43;4; -0.936624, 0.348885, 0.011122,-0.029859;;, + 44;4; -0.939848, 0.189782, 0.006032,-0.029962;;, + 45;4; -0.946747,-0.150903,-0.004849,-0.030182;;, + 46;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 47;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 48;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 49;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 50;4; -0.946747,-0.150903,-0.004849,-0.030182;;, + 51;4; -0.939848, 0.189782, 0.006032,-0.029962;;, + 52;4; -0.936624, 0.348885, 0.011122,-0.029859;;, + 53;4; -0.938209, 0.189690, 0.006037,-0.028546;;, + 54;4; -0.943263,-0.151101,-0.004839,-0.027171;;, + 55;4; -0.949971,-0.310709,-0.009905,-0.030285;;, + 56;4; -0.943101,-0.291464,-0.009296,-0.073312;;, + 57;4; -0.910087,-0.235530,-0.007519,-0.187106;;, + 58;4; -0.858994,-0.155234,-0.004958,-0.347366;;, + 59;4; -0.806373,-0.075003,-0.002395,-0.506312;;, + 60;4; -0.769161,-0.019189,-0.000612,-0.616487;;, + 61;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 62;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 63;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 64;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 65;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 66;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 67;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 68;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 69;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 70;4; -0.756244, 0.000000, 0.000000,-0.654289;;, + 71;4; -0.756244, 0.000000, 0.000000,-0.654289;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Armature_Bone_008} + AnimationKey { //Position + 2; + 72; + 0;3; 0.000000, 1.619178, 0.000000;;, + 1;3; 0.000000, 1.619178, 0.000000;;, + 2;3; 0.000000, 1.619178, 0.000000;;, + 3;3; 0.000000, 1.619178, 0.000000;;, + 4;3; 0.000000, 1.619178, 0.000000;;, + 5;3; 0.000000, 1.619178, 0.000000;;, + 6;3; 0.000000, 1.619178, 0.000000;;, + 7;3; 0.000000, 1.619178, 0.000000;;, + 8;3; 0.000000, 1.619178, 0.000000;;, + 9;3; 0.000000, 1.619178, 0.000000;;, + 10;3; 0.000000, 1.619178, 0.000000;;, + 11;3; 0.000000, 1.619178, 0.000000;;, + 12;3; 0.000000, 1.619178, 0.000000;;, + 13;3; 0.000000, 1.619178, 0.000000;;, + 14;3; 0.000000, 1.619178, 0.000000;;, + 15;3; 0.000000, 1.619178, 0.000000;;, + 16;3; 0.000000, 1.619178, 0.000000;;, + 17;3; 0.000000, 1.619178, 0.000000;;, + 18;3; 0.000000, 1.619178, 0.000000;;, + 19;3; 0.000000, 1.619178, 0.000000;;, + 20;3; 0.000000, 1.619178, 0.000000;;, + 21;3; 0.000000, 1.619178, 0.000000;;, + 22;3; 0.000000, 1.619178, 0.000000;;, + 23;3; 0.000000, 1.619178, 0.000000;;, + 24;3; 0.000000, 1.619178, 0.000000;;, + 25;3; 0.000000, 1.619178, 0.000000;;, + 26;3; 0.000000, 1.619178, 0.000000;;, + 27;3; 0.000000, 1.619178, 0.000000;;, + 28;3; 0.000000, 1.619178, 0.000000;;, + 29;3; 0.000000, 1.619178, 0.000000;;, + 30;3; 0.000000, 1.619178, 0.000000;;, + 31;3; 0.000000, 1.619178, 0.000000;;, + 32;3; 0.000000, 1.619178, 0.000000;;, + 33;3; 0.000000, 1.619178, 0.000000;;, + 34;3; 0.000000, 1.619178, 0.000000;;, + 35;3; 0.000000, 1.619178, 0.000000;;, + 36;3; 0.000000, 1.619177,-0.000000;;, + 37;3; 0.000000, 1.619178,-0.000000;;, + 38;3; 0.000000, 1.619178, 0.000001;;, + 39;3; 0.000000, 1.619178, 0.000001;;, + 40;3; 0.000000, 1.619179, 0.000001;;, + 41;3; 0.000000, 1.619177,-0.000001;;, + 42;3; 0.000000, 1.619176,-0.000001;;, + 43;3; 0.000000, 1.619178, 0.000000;;, + 44;3; 0.000000, 1.619178,-0.000001;;, + 45;3; -0.000000, 1.619177, 0.000000;;, + 46;3; 0.000000, 1.619177, 0.000001;;, + 47;3; 0.000000, 1.619178, 0.000001;;, + 48;3; 0.000000, 1.619177, 0.000000;;, + 49;3; 0.000000, 1.619177,-0.000000;;, + 50;3; -0.000000, 1.619178, 0.000001;;, + 51;3; 0.000000, 1.619178,-0.000000;;, + 52;3; 0.000000, 1.619176,-0.000000;;, + 53;3; 0.000000, 1.619177, 0.000001;;, + 54;3; 0.000000, 1.619178, 0.000000;;, + 55;3; 0.000000, 1.619178, 0.000001;;, + 56;3; 0.000000, 1.619179, 0.000000;;, + 57;3; 0.000000, 1.619178,-0.000000;;, + 58;3; 0.000000, 1.619178,-0.000000;;, + 59;3; 0.000000, 1.619178, 0.000000;;, + 60;3; 0.000000, 1.619178, 0.000000;;, + 61;3; 0.000000, 1.619178, 0.000000;;, + 62;3; 0.000000, 1.619178, 0.000000;;, + 63;3; 0.000000, 1.619178, 0.000000;;, + 64;3; 0.000000, 1.619178, 0.000000;;, + 65;3; 0.000000, 1.619178, 0.000000;;, + 66;3; 0.000000, 1.619178, 0.000000;;, + 67;3; 0.000000, 1.619178, 0.000000;;, + 68;3; 0.000000, 1.619178, 0.000000;;, + 69;3; 0.000000, 1.619178, 0.000000;;, + 70;3; 0.000000, 1.619178, 0.000000;;, + 71;3; 0.000000, 1.619178, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 1;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 2;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 3;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 4;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 5;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 6;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 7;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 8;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 9;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 10;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 11;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 12;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 13;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 14;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 15;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 16;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 17;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 18;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 19;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 20;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 21;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 22;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 23;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 24;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 25;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 26;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 27;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 28;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 29;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 30;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 31;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 32;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 33;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 34;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 35;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 36;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 37;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 38;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 39;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 40;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 41;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 42;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 43;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 44;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 45;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 46;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 47;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 48;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 49;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 50;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 51;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 52;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 53;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 54;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 55;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 56;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 57;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 58;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 59;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 60;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 61;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 62;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 63;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 64;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 65;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 66;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 67;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 68;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 69;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 70;4; -0.606665,-0.363260,-0.363260,-0.606665;;, + 71;4; -0.606665,-0.363260,-0.363260,-0.606665;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Armature_krilo2} + AnimationKey { //Position + 2; + 72; + 0;3; -0.000000, 0.346481,-0.000000;;, + 1;3; -0.000000, 0.346481,-0.000000;;, + 2;3; -0.000000, 0.346481,-0.000000;;, + 3;3; -0.000000, 0.346481,-0.000000;;, + 4;3; -0.000000, 0.346481,-0.000000;;, + 5;3; -0.000000, 0.346481,-0.000000;;, + 6;3; -0.000000, 0.346481,-0.000000;;, + 7;3; -0.000000, 0.346481,-0.000000;;, + 8;3; -0.000000, 0.346481,-0.000000;;, + 9;3; -0.000000, 0.346481,-0.000000;;, + 10;3; -0.000000, 0.346481,-0.000000;;, + 11;3; -0.000000, 0.346481,-0.000000;;, + 12;3; -0.000000, 0.346481,-0.000000;;, + 13;3; -0.000000, 0.346481,-0.000000;;, + 14;3; -0.000000, 0.346481,-0.000000;;, + 15;3; -0.000000, 0.346481,-0.000000;;, + 16;3; -0.000000, 0.346481,-0.000000;;, + 17;3; -0.000000, 0.346481,-0.000000;;, + 18;3; -0.000000, 0.346481,-0.000000;;, + 19;3; -0.000000, 0.346481,-0.000000;;, + 20;3; -0.000000, 0.346481,-0.000000;;, + 21;3; -0.000000, 0.346481,-0.000000;;, + 22;3; -0.000000, 0.346481,-0.000000;;, + 23;3; -0.000000, 0.346481,-0.000000;;, + 24;3; -0.000000, 0.346481,-0.000000;;, + 25;3; -0.000000, 0.346481,-0.000000;;, + 26;3; -0.000000, 0.346481,-0.000000;;, + 27;3; -0.000000, 0.346481,-0.000000;;, + 28;3; -0.000000, 0.346481,-0.000000;;, + 29;3; -0.000000, 0.346481,-0.000000;;, + 30;3; -0.000000, 0.346481,-0.000000;;, + 31;3; -0.000000, 0.346481,-0.000000;;, + 32;3; -0.000000, 0.346481,-0.000000;;, + 33;3; -0.000000, 0.346481,-0.000000;;, + 34;3; -0.000000, 0.346481,-0.000000;;, + 35;3; -0.000000, 0.346481,-0.000000;;, + 36;3; -0.000000, 0.346481, 0.000000;;, + 37;3; -0.000000, 0.346481, 0.000000;;, + 38;3; -0.000000, 0.346481, 0.000001;;, + 39;3; -0.000000, 0.346481, 0.000001;;, + 40;3; -0.000000, 0.346481, 0.000000;;, + 41;3; -0.000000, 0.346481, 0.000001;;, + 42;3; -0.000000, 0.346481, 0.000001;;, + 43;3; -0.000000, 0.346482, 0.000001;;, + 44;3; -0.000000, 0.346481, 0.000001;;, + 45;3; -0.000000, 0.346481, 0.000001;;, + 46;3; -0.000000, 0.346481, 0.000001;;, + 47;3; -0.000000, 0.346481, 0.000001;;, + 48;3; -0.000000, 0.346481, 0.000001;;, + 49;3; -0.000000, 0.346481, 0.000001;;, + 50;3; -0.000000, 0.346481, 0.000001;;, + 51;3; -0.000000, 0.346481, 0.000001;;, + 52;3; 0.000000, 0.346481, 0.000000;;, + 53;3; 0.000000, 0.346481,-0.000001;;, + 54;3; -0.000000, 0.346481, 0.000000;;, + 55;3; 0.000000, 0.346481, 0.000001;;, + 56;3; -0.000000, 0.346481, 0.000000;;, + 57;3; -0.000000, 0.346481, 0.000000;;, + 58;3; -0.000000, 0.346481, 0.000000;;, + 59;3; -0.000000, 0.346481,-0.000000;;, + 60;3; -0.000000, 0.346481,-0.000000;;, + 61;3; -0.000000, 0.346481,-0.000000;;, + 62;3; -0.000000, 0.346481,-0.000000;;, + 63;3; -0.000000, 0.346481,-0.000000;;, + 64;3; -0.000000, 0.346481,-0.000000;;, + 65;3; -0.000000, 0.346481,-0.000000;;, + 66;3; -0.000000, 0.346481,-0.000000;;, + 67;3; -0.000000, 0.346481,-0.000000;;, + 68;3; -0.000000, 0.346481,-0.000000;;, + 69;3; -0.000000, 0.346481,-0.000000;;, + 70;3; -0.000000, 0.346481,-0.000000;;, + 71;3; -0.000000, 0.346481,-0.000000;;; + } + AnimationKey { //Rotation + 0; + 72; + 0;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 1;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 2;4; -0.754673,-0.000000, 0.000000, 0.656051;;, + 3;4; -0.760217,-0.000000, 0.000000, 0.649562;;, + 4;4; -0.765761,-0.000000, 0.000000, 0.643074;;, + 5;4; -0.767881,-0.000000, 0.000000, 0.640593;;, + 6;4; -0.767796,-0.000000, 0.000000, 0.640692;;, + 7;4; -0.767541,-0.000000, 0.000000, 0.640991;;, + 8;4; -0.767114,-0.000000, 0.000000, 0.641490;;, + 9;4; -0.766518,-0.000000, 0.000000, 0.642187;;, + 10;4; -0.765761,-0.000000, 0.000000, 0.643074;;, + 11;4; -0.764856,-0.000000, 0.000000, 0.644133;;, + 12;4; -0.763820,-0.000000, 0.000000, 0.645345;;, + 13;4; -0.762681,-0.000000, 0.000000, 0.646679;;, + 14;4; -0.761468,-0.000000, 0.000000, 0.648098;;, + 15;4; -0.760217,-0.000000, 0.000000, 0.649562;;, + 16;4; -0.758966,-0.000000, 0.000000, 0.651026;;, + 17;4; -0.757753,-0.000000, 0.000000, 0.652445;;, + 18;4; -0.756614,-0.000000, 0.000000, 0.653779;;, + 19;4; -0.755579,-0.000000, 0.000000, 0.654991;;, + 20;4; -0.754673,-0.000000, 0.000000, 0.656051;;, + 21;4; -0.753916,-0.000000, 0.000000, 0.656937;;, + 22;4; -0.753320,-0.000000, 0.000000, 0.657634;;, + 23;4; -0.752893,-0.000000, 0.000000, 0.658134;;, + 24;4; -0.752638,-0.000000, 0.000000, 0.658432;;, + 25;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 26;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 27;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 28;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 29;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 30;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 31;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 32;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 33;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 34;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 35;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 36;4; -0.773327,-0.026242,-0.001055, 0.603456;;, + 37;4; -0.830468,-0.100111,-0.004015, 0.447558;;, + 38;4; -0.900551,-0.194986,-0.007822, 0.244811;;, + 39;4; -0.949085,-0.268986,-0.010813, 0.081432;;, + 40;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 41;4; -0.938372,-0.129848,-0.005166, 0.005908;;, + 42;4; -0.925397, 0.223399, 0.009020, 0.009664;;, + 43;4; -0.921261, 0.388410, 0.015633, 0.013104;;, + 44;4; -0.929467, 0.223514, 0.009047, 0.013220;;, + 45;4; -0.947027,-0.129602,-0.005107, 0.013470;;, + 46;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 47;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 48;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 49;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 50;4; -0.947027,-0.129602,-0.005107, 0.013470;;, + 51;4; -0.929467, 0.223514, 0.009047, 0.013220;;, + 52;4; -0.921261, 0.388410, 0.015633, 0.013104;;, + 53;4; -0.925398, 0.223415, 0.009024, 0.009663;;, + 54;4; -0.938375,-0.129812,-0.005158, 0.005907;;, + 55;4; -0.955233,-0.295302,-0.011886, 0.013587;;, + 56;4; -0.955424,-0.277004,-0.011138, 0.064620;;, + 57;4; -0.923527,-0.223831,-0.008981, 0.184574;;, + 58;4; -0.868522,-0.147516,-0.005911, 0.348824;;, + 59;4; -0.809718,-0.071274,-0.002857, 0.509770;;, + 60;4; -0.767385,-0.018236,-0.000733, 0.620627;;, + 61;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 62;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 63;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 64;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 65;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 66;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 67;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 68;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 69;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 70;4; -0.752553,-0.000000, 0.000000, 0.658531;;, + 71;4; -0.752553,-0.000000, 0.000000, 0.658531;;; + } + AnimationKey { //Scale + 1; + 72; + 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;;; + } + } + Animation { + {Cube} + AnimationKey { //Position + 2; + 72; + 0;3; 0.142552,-0.710054, 0.633902;;, + 1;3; 0.142552,-0.710054, 0.633902;;, + 2;3; 0.142552,-0.710054, 0.633902;;, + 3;3; 0.142552,-0.710054, 0.633902;;, + 4;3; 0.142552,-0.710054, 0.633902;;, + 5;3; 0.142552,-0.710054, 0.633902;;, + 6;3; 0.142552,-0.710054, 0.633902;;, + 7;3; 0.142552,-0.710054, 0.633902;;, + 8;3; 0.142552,-0.710054, 0.633902;;, + 9;3; 0.142552,-0.710054, 0.633902;;, + 10;3; 0.142552,-0.710054, 0.633902;;, + 11;3; 0.142552,-0.710054, 0.633902;;, + 12;3; 0.142552,-0.710054, 0.633902;;, + 13;3; 0.142552,-0.710054, 0.633902;;, + 14;3; 0.142552,-0.710054, 0.633902;;, + 15;3; 0.142552,-0.710054, 0.633902;;, + 16;3; 0.142552,-0.710054, 0.633902;;, + 17;3; 0.142552,-0.710054, 0.633902;;, + 18;3; 0.142552,-0.710054, 0.633902;;, + 19;3; 0.142552,-0.710054, 0.633902;;, + 20;3; 0.142552,-0.710054, 0.633902;;, + 21;3; 0.142552,-0.710054, 0.633902;;, + 22;3; 0.142552,-0.710054, 0.633902;;, + 23;3; 0.142552,-0.710054, 0.633902;;, + 24;3; 0.142552,-0.710054, 0.633902;;, + 25;3; 0.142552,-0.710054, 0.633902;;, + 26;3; 0.142552,-0.710054, 0.633902;;, + 27;3; 0.142552,-0.710054, 0.633902;;, + 28;3; 0.142552,-0.710054, 0.633902;;, + 29;3; 0.142552,-0.710054, 0.633902;;, + 30;3; 0.142552,-0.710054, 0.633902;;, + 31;3; 0.142552,-0.710054, 0.633902;;, + 32;3; 0.142552,-0.710054, 0.633902;;, + 33;3; 0.142552,-0.710054, 0.633902;;, + 34;3; 0.142552,-0.710054, 0.633902;;, + 35;3; 0.142552,-0.710054, 0.633902;;, + 36;3; 0.142552,-0.710054, 0.633902;;, + 37;3; 0.142552,-0.710054, 0.633902;;, + 38;3; 0.142552,-0.710054, 0.633902;;, + 39;3; 0.142552,-0.710054, 0.633902;;, + 40;3; 0.142552,-0.710054, 0.633902;;, + 41;3; 0.142552,-0.710054, 0.633902;;, + 42;3; 0.142552,-0.710054, 0.633902;;, + 43;3; 0.142552,-0.710054, 0.633902;;, + 44;3; 0.142552,-0.710054, 0.633902;;, + 45;3; 0.142552,-0.710054, 0.633902;;, + 46;3; 0.142552,-0.710054, 0.633902;;, + 47;3; 0.142552,-0.710054, 0.633902;;, + 48;3; 0.142552,-0.710054, 0.633902;;, + 49;3; 0.142552,-0.710054, 0.633902;;, + 50;3; 0.142552,-0.710054, 0.633902;;, + 51;3; 0.142552,-0.710054, 0.633902;;, + 52;3; 0.142552,-0.710054, 0.633902;;, + 53;3; 0.142552,-0.710054, 0.633902;;, + 54;3; 0.142552,-0.710054, 0.633902;;, + 55;3; 0.142552,-0.710054, 0.633902;;, + 56;3; 0.142552,-0.710054, 0.633902;;, + 57;3; 0.142552,-0.710054, 0.633902;;, + 58;3; 0.142552,-0.710054, 0.633902;;, + 59;3; 0.142552,-0.710054, 0.633902;;, + 60;3; 0.142552,-0.710054, 0.633902;;, + 61;3; 0.142552,-0.710054, 0.633902;;, + 62;3; 0.142552,-0.710054, 0.633902;;, + 63;3; 0.142552,-0.710054, 0.633902;;, + 64;3; 0.142552,-0.710054, 0.633902;;, + 65;3; 0.142552,-0.710054, 0.633902;;, + 66;3; 0.142552,-0.710054, 0.633902;;, + 67;3; 0.142552,-0.710054, 0.633902;;, + 68;3; 0.142552,-0.710054, 0.633902;;, + 69;3; 0.142552,-0.710054, 0.633902;;, + 70;3; 0.142552,-0.710054, 0.633902;;, + 71;3; 0.142552,-0.710054, 0.633902;;; + } + AnimationKey { //Rotation + 0; + 72; + 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;;; + } + AnimationKey { //Scale + 1; + 72; + 0;3; 0.384873, 0.384873, 0.384873;;, + 1;3; 0.384873, 0.384873, 0.384873;;, + 2;3; 0.384873, 0.384873, 0.384873;;, + 3;3; 0.384873, 0.384873, 0.384873;;, + 4;3; 0.384873, 0.384873, 0.384873;;, + 5;3; 0.384873, 0.384873, 0.384873;;, + 6;3; 0.384873, 0.384873, 0.384873;;, + 7;3; 0.384873, 0.384873, 0.384873;;, + 8;3; 0.384873, 0.384873, 0.384873;;, + 9;3; 0.384873, 0.384873, 0.384873;;, + 10;3; 0.384873, 0.384873, 0.384873;;, + 11;3; 0.384873, 0.384873, 0.384873;;, + 12;3; 0.384873, 0.384873, 0.384873;;, + 13;3; 0.384873, 0.384873, 0.384873;;, + 14;3; 0.384873, 0.384873, 0.384873;;, + 15;3; 0.384873, 0.384873, 0.384873;;, + 16;3; 0.384873, 0.384873, 0.384873;;, + 17;3; 0.384873, 0.384873, 0.384873;;, + 18;3; 0.384873, 0.384873, 0.384873;;, + 19;3; 0.384873, 0.384873, 0.384873;;, + 20;3; 0.384873, 0.384873, 0.384873;;, + 21;3; 0.384873, 0.384873, 0.384873;;, + 22;3; 0.384873, 0.384873, 0.384873;;, + 23;3; 0.384873, 0.384873, 0.384873;;, + 24;3; 0.384873, 0.384873, 0.384873;;, + 25;3; 0.384873, 0.384873, 0.384873;;, + 26;3; 0.384873, 0.384873, 0.384873;;, + 27;3; 0.384873, 0.384873, 0.384873;;, + 28;3; 0.384873, 0.384873, 0.384873;;, + 29;3; 0.384873, 0.384873, 0.384873;;, + 30;3; 0.384873, 0.384873, 0.384873;;, + 31;3; 0.384873, 0.384873, 0.384873;;, + 32;3; 0.384873, 0.384873, 0.384873;;, + 33;3; 0.384873, 0.384873, 0.384873;;, + 34;3; 0.384873, 0.384873, 0.384873;;, + 35;3; 0.384873, 0.384873, 0.384873;;, + 36;3; 0.384873, 0.384873, 0.384873;;, + 37;3; 0.384873, 0.384873, 0.384873;;, + 38;3; 0.384873, 0.384873, 0.384873;;, + 39;3; 0.384873, 0.384873, 0.384873;;, + 40;3; 0.384873, 0.384873, 0.384873;;, + 41;3; 0.384873, 0.384873, 0.384873;;, + 42;3; 0.384873, 0.384873, 0.384873;;, + 43;3; 0.384873, 0.384873, 0.384873;;, + 44;3; 0.384873, 0.384873, 0.384873;;, + 45;3; 0.384873, 0.384873, 0.384873;;, + 46;3; 0.384873, 0.384873, 0.384873;;, + 47;3; 0.384873, 0.384873, 0.384873;;, + 48;3; 0.384873, 0.384873, 0.384873;;, + 49;3; 0.384873, 0.384873, 0.384873;;, + 50;3; 0.384873, 0.384873, 0.384873;;, + 51;3; 0.384873, 0.384873, 0.384873;;, + 52;3; 0.384873, 0.384873, 0.384873;;, + 53;3; 0.384873, 0.384873, 0.384873;;, + 54;3; 0.384873, 0.384873, 0.384873;;, + 55;3; 0.384873, 0.384873, 0.384873;;, + 56;3; 0.384873, 0.384873, 0.384873;;, + 57;3; 0.384873, 0.384873, 0.384873;;, + 58;3; 0.384873, 0.384873, 0.384873;;, + 59;3; 0.384873, 0.384873, 0.384873;;, + 60;3; 0.384873, 0.384873, 0.384873;;, + 61;3; 0.384873, 0.384873, 0.384873;;, + 62;3; 0.384873, 0.384873, 0.384873;;, + 63;3; 0.384873, 0.384873, 0.384873;;, + 64;3; 0.384873, 0.384873, 0.384873;;, + 65;3; 0.384873, 0.384873, 0.384873;;, + 66;3; 0.384873, 0.384873, 0.384873;;, + 67;3; 0.384873, 0.384873, 0.384873;;, + 68;3; 0.384873, 0.384873, 0.384873;;, + 69;3; 0.384873, 0.384873, 0.384873;;, + 70;3; 0.384873, 0.384873, 0.384873;;, + 71;3; 0.384873, 0.384873, 0.384873;;; + } + } +} //End of AnimationSet diff --git a/cache/media/2ff3043ab103b21f97b9e4c4f9c01b0782814ecc b/cache/media/2ff3043ab103b21f97b9e4c4f9c01b0782814ecc new file mode 100644 index 000000000..554471a8e Binary files /dev/null and b/cache/media/2ff3043ab103b21f97b9e4c4f9c01b0782814ecc differ diff --git a/cache/media/30b54568360b89931fd9be9629f319643b7163e8 b/cache/media/30b54568360b89931fd9be9629f319643b7163e8 new file mode 100644 index 000000000..2dc0e3dc6 Binary files /dev/null and b/cache/media/30b54568360b89931fd9be9629f319643b7163e8 differ diff --git a/cache/media/3114673cde3bca7acdd06e6ca58d9e51e5b86f16 b/cache/media/3114673cde3bca7acdd06e6ca58d9e51e5b86f16 new file mode 100644 index 000000000..64376b909 Binary files /dev/null and b/cache/media/3114673cde3bca7acdd06e6ca58d9e51e5b86f16 differ diff --git a/cache/media/312344de2bca8cb543729420340164ae5a1d9d0e b/cache/media/312344de2bca8cb543729420340164ae5a1d9d0e new file mode 100644 index 000000000..7a126e325 Binary files /dev/null and b/cache/media/312344de2bca8cb543729420340164ae5a1d9d0e differ diff --git a/cache/media/314d55315ad51572e4ec662c2a3bfe171667d797 b/cache/media/314d55315ad51572e4ec662c2a3bfe171667d797 new file mode 100644 index 000000000..3987a4a83 Binary files /dev/null and b/cache/media/314d55315ad51572e4ec662c2a3bfe171667d797 differ diff --git a/cache/media/3189613631c4a5a5cb2cb8ebbcbed3e6bf0ad54a b/cache/media/3189613631c4a5a5cb2cb8ebbcbed3e6bf0ad54a new file mode 100644 index 000000000..2cf5ef0bd Binary files /dev/null and b/cache/media/3189613631c4a5a5cb2cb8ebbcbed3e6bf0ad54a differ diff --git a/cache/media/32194d453a26c9e57dff055b1dee1716f09f70b6 b/cache/media/32194d453a26c9e57dff055b1dee1716f09f70b6 new file mode 100644 index 000000000..64f34c003 Binary files /dev/null and b/cache/media/32194d453a26c9e57dff055b1dee1716f09f70b6 differ diff --git a/cache/media/322a0699bcc5590ad5573f152bbbbbfc2b03642e b/cache/media/322a0699bcc5590ad5573f152bbbbbfc2b03642e new file mode 100644 index 000000000..a901f7bdc Binary files /dev/null and b/cache/media/322a0699bcc5590ad5573f152bbbbbfc2b03642e differ diff --git a/cache/media/3288a586a19187667468787ab856e1d24895bd2d b/cache/media/3288a586a19187667468787ab856e1d24895bd2d new file mode 100644 index 000000000..00813a23a Binary files /dev/null and b/cache/media/3288a586a19187667468787ab856e1d24895bd2d differ diff --git a/cache/media/32e6d3f31139a11dab1ded0724c4d9ad8f8f82ba b/cache/media/32e6d3f31139a11dab1ded0724c4d9ad8f8f82ba new file mode 100644 index 000000000..237d739c4 Binary files /dev/null and b/cache/media/32e6d3f31139a11dab1ded0724c4d9ad8f8f82ba differ diff --git a/cache/media/32fdf8e5c761891b1cedff66535bbe5036183172 b/cache/media/32fdf8e5c761891b1cedff66535bbe5036183172 new file mode 100644 index 000000000..4d52d4ca3 Binary files /dev/null and b/cache/media/32fdf8e5c761891b1cedff66535bbe5036183172 differ diff --git a/cache/media/33161f1ea3be70fa963bd013361376cda6c9ef7e b/cache/media/33161f1ea3be70fa963bd013361376cda6c9ef7e new file mode 100644 index 000000000..05e1e505d Binary files /dev/null and b/cache/media/33161f1ea3be70fa963bd013361376cda6c9ef7e differ diff --git a/cache/media/33b44f730488f0bb8c9990bf08d87c3bd9bd4bee b/cache/media/33b44f730488f0bb8c9990bf08d87c3bd9bd4bee new file mode 100644 index 000000000..df61ca624 Binary files /dev/null and b/cache/media/33b44f730488f0bb8c9990bf08d87c3bd9bd4bee differ diff --git a/cache/media/33d93867bb7746f20dc85542d8b3eaa5d2156216 b/cache/media/33d93867bb7746f20dc85542d8b3eaa5d2156216 new file mode 100644 index 000000000..124469ce4 Binary files /dev/null and b/cache/media/33d93867bb7746f20dc85542d8b3eaa5d2156216 differ diff --git a/cache/media/3492916a83c070cbfaeee11ae38eea617a85904b b/cache/media/3492916a83c070cbfaeee11ae38eea617a85904b new file mode 100644 index 000000000..1fad99475 Binary files /dev/null and b/cache/media/3492916a83c070cbfaeee11ae38eea617a85904b differ diff --git a/cache/media/35b869a4707d75c5e4938c0946c3f65deb79e291 b/cache/media/35b869a4707d75c5e4938c0946c3f65deb79e291 new file mode 100644 index 000000000..d0500934a Binary files /dev/null and b/cache/media/35b869a4707d75c5e4938c0946c3f65deb79e291 differ diff --git a/cache/media/35fb8df38f2bf33c720125863020cd735551fe0c b/cache/media/35fb8df38f2bf33c720125863020cd735551fe0c new file mode 100644 index 000000000..b054d4f08 Binary files /dev/null and b/cache/media/35fb8df38f2bf33c720125863020cd735551fe0c differ diff --git a/cache/media/36d62a3922f21fcb4ff536a11a2a5c44ee9529dd b/cache/media/36d62a3922f21fcb4ff536a11a2a5c44ee9529dd new file mode 100644 index 000000000..889ed61d4 Binary files /dev/null and b/cache/media/36d62a3922f21fcb4ff536a11a2a5c44ee9529dd differ diff --git a/cache/media/36e9b2e3ca44e044553569413851eb160669540e b/cache/media/36e9b2e3ca44e044553569413851eb160669540e new file mode 100644 index 000000000..6c894ce1c Binary files /dev/null and b/cache/media/36e9b2e3ca44e044553569413851eb160669540e differ diff --git a/cache/media/3702c09613c665d890fe3da697cc2bbd8927fa4e b/cache/media/3702c09613c665d890fe3da697cc2bbd8927fa4e new file mode 100644 index 000000000..75e6ca4e0 Binary files /dev/null and b/cache/media/3702c09613c665d890fe3da697cc2bbd8927fa4e differ diff --git a/cache/media/374b2eee33ef9f8adc5a34578ba9744d7a5891e4 b/cache/media/374b2eee33ef9f8adc5a34578ba9744d7a5891e4 new file mode 100644 index 000000000..9fb6391f0 Binary files /dev/null and b/cache/media/374b2eee33ef9f8adc5a34578ba9744d7a5891e4 differ diff --git a/cache/media/377f7dc30fb07d6425cb45fb64b258cb3df94684 b/cache/media/377f7dc30fb07d6425cb45fb64b258cb3df94684 new file mode 100644 index 000000000..abdd0ca69 Binary files /dev/null and b/cache/media/377f7dc30fb07d6425cb45fb64b258cb3df94684 differ diff --git a/cache/media/3809d2bb1bb63c3fa5d58b38beea09aa5e2e53f2 b/cache/media/3809d2bb1bb63c3fa5d58b38beea09aa5e2e53f2 new file mode 100644 index 000000000..a8bbec98d Binary files /dev/null and b/cache/media/3809d2bb1bb63c3fa5d58b38beea09aa5e2e53f2 differ diff --git a/cache/media/38f4338ff18281cc21e848df8103023292bc1209 b/cache/media/38f4338ff18281cc21e848df8103023292bc1209 new file mode 100644 index 000000000..4984954cd Binary files /dev/null and b/cache/media/38f4338ff18281cc21e848df8103023292bc1209 differ diff --git a/cache/media/396c52bdcf494bb184f88f1746b0f8a391c30ce2 b/cache/media/396c52bdcf494bb184f88f1746b0f8a391c30ce2 new file mode 100644 index 000000000..d9156ee3a Binary files /dev/null and b/cache/media/396c52bdcf494bb184f88f1746b0f8a391c30ce2 differ diff --git a/cache/media/398a4183ffa1bb95944d3eea8494571a2dfc0a56 b/cache/media/398a4183ffa1bb95944d3eea8494571a2dfc0a56 new file mode 100644 index 000000000..e6fb9d8c9 Binary files /dev/null and b/cache/media/398a4183ffa1bb95944d3eea8494571a2dfc0a56 differ diff --git a/cache/media/398ac6b67d98c4224279605950d5b73356c58149 b/cache/media/398ac6b67d98c4224279605950d5b73356c58149 new file mode 100644 index 000000000..dcef2b5bf Binary files /dev/null and b/cache/media/398ac6b67d98c4224279605950d5b73356c58149 differ diff --git a/cache/media/39cfa73d3d17902f36316ba651e4ad74bd654fdb b/cache/media/39cfa73d3d17902f36316ba651e4ad74bd654fdb new file mode 100644 index 000000000..d0fe24dec Binary files /dev/null and b/cache/media/39cfa73d3d17902f36316ba651e4ad74bd654fdb differ diff --git a/cache/media/39f4859d229502eba203335781bdb59b5cfdc8cf b/cache/media/39f4859d229502eba203335781bdb59b5cfdc8cf new file mode 100644 index 000000000..3fd64f02e Binary files /dev/null and b/cache/media/39f4859d229502eba203335781bdb59b5cfdc8cf differ diff --git a/cache/media/3a7c13b652e0a9be3f9b6a9846b6a93d321e6a5a b/cache/media/3a7c13b652e0a9be3f9b6a9846b6a93d321e6a5a new file mode 100644 index 000000000..08449073e Binary files /dev/null and b/cache/media/3a7c13b652e0a9be3f9b6a9846b6a93d321e6a5a differ diff --git a/cache/media/3afbbc985eb6e276377ff2a5a614fb05b073875e b/cache/media/3afbbc985eb6e276377ff2a5a614fb05b073875e new file mode 100644 index 000000000..1a2486358 Binary files /dev/null and b/cache/media/3afbbc985eb6e276377ff2a5a614fb05b073875e differ diff --git a/cache/media/3afdf079a152d6841a813474c8b4d467cb4630a6 b/cache/media/3afdf079a152d6841a813474c8b4d467cb4630a6 new file mode 100644 index 000000000..170d50be8 Binary files /dev/null and b/cache/media/3afdf079a152d6841a813474c8b4d467cb4630a6 differ diff --git a/cache/media/3b107f6763ffecb9a894c1906167ae5efe3abd52 b/cache/media/3b107f6763ffecb9a894c1906167ae5efe3abd52 new file mode 100644 index 000000000..15af2b699 Binary files /dev/null and b/cache/media/3b107f6763ffecb9a894c1906167ae5efe3abd52 differ diff --git a/cache/media/3b72fb91a85883a1bc3745e04ca1af4ea03ade2d b/cache/media/3b72fb91a85883a1bc3745e04ca1af4ea03ade2d new file mode 100644 index 000000000..7fb624dc6 Binary files /dev/null and b/cache/media/3b72fb91a85883a1bc3745e04ca1af4ea03ade2d differ diff --git a/cache/media/3b8b0ed3ba66dc9d99861eaf4b5ae1ff25382480 b/cache/media/3b8b0ed3ba66dc9d99861eaf4b5ae1ff25382480 new file mode 100644 index 000000000..e70666d70 Binary files /dev/null and b/cache/media/3b8b0ed3ba66dc9d99861eaf4b5ae1ff25382480 differ diff --git a/cache/media/3b908b1f189b384ed4dc8c28bf4a1f874af53298 b/cache/media/3b908b1f189b384ed4dc8c28bf4a1f874af53298 new file mode 100644 index 000000000..451a15dae Binary files /dev/null and b/cache/media/3b908b1f189b384ed4dc8c28bf4a1f874af53298 differ diff --git a/cache/media/3b97a12992b1aa2d92c64d33177d35d18faea8bf b/cache/media/3b97a12992b1aa2d92c64d33177d35d18faea8bf new file mode 100644 index 000000000..c89795779 Binary files /dev/null and b/cache/media/3b97a12992b1aa2d92c64d33177d35d18faea8bf differ diff --git a/cache/media/3ba287399d7fd79a09cea09ba1b18e70f9108549 b/cache/media/3ba287399d7fd79a09cea09ba1b18e70f9108549 new file mode 100644 index 000000000..eeb732873 Binary files /dev/null and b/cache/media/3ba287399d7fd79a09cea09ba1b18e70f9108549 differ diff --git a/cache/media/3c33b30196553194e6fc05ec3fefd2a6c3011515 b/cache/media/3c33b30196553194e6fc05ec3fefd2a6c3011515 new file mode 100644 index 000000000..01e0caf64 Binary files /dev/null and b/cache/media/3c33b30196553194e6fc05ec3fefd2a6c3011515 differ diff --git a/cache/media/3c45bff26a9f9f0acbad2742587af2719ee8d748 b/cache/media/3c45bff26a9f9f0acbad2742587af2719ee8d748 new file mode 100644 index 000000000..1055b6c22 Binary files /dev/null and b/cache/media/3c45bff26a9f9f0acbad2742587af2719ee8d748 differ diff --git a/cache/media/3cc60537e71e5d6ccf9cd81470272674babb0929 b/cache/media/3cc60537e71e5d6ccf9cd81470272674babb0929 new file mode 100644 index 000000000..4ccd8a0f3 Binary files /dev/null and b/cache/media/3cc60537e71e5d6ccf9cd81470272674babb0929 differ diff --git a/cache/media/3dca807a1fa9756ac9a4117b2ae992e93b3adde4 b/cache/media/3dca807a1fa9756ac9a4117b2ae992e93b3adde4 new file mode 100644 index 000000000..9dcbb97b0 Binary files /dev/null and b/cache/media/3dca807a1fa9756ac9a4117b2ae992e93b3adde4 differ diff --git a/cache/media/3de1919ca7833f2350a3886b299ab902ae437678 b/cache/media/3de1919ca7833f2350a3886b299ab902ae437678 new file mode 100644 index 000000000..d9b49f911 Binary files /dev/null and b/cache/media/3de1919ca7833f2350a3886b299ab902ae437678 differ diff --git a/cache/media/3e5deca11520ece76dbd4ba2d7165f5e5184c91c b/cache/media/3e5deca11520ece76dbd4ba2d7165f5e5184c91c new file mode 100644 index 000000000..3205e5d63 Binary files /dev/null and b/cache/media/3e5deca11520ece76dbd4ba2d7165f5e5184c91c differ diff --git a/cache/media/3e90e846b8f82d1daff2d6619f3d34e374415eed b/cache/media/3e90e846b8f82d1daff2d6619f3d34e374415eed new file mode 100644 index 000000000..6844ceb86 Binary files /dev/null and b/cache/media/3e90e846b8f82d1daff2d6619f3d34e374415eed differ diff --git a/cache/media/3eb9b9fd97589e6730d82f42d9db0944dec9b126 b/cache/media/3eb9b9fd97589e6730d82f42d9db0944dec9b126 new file mode 100644 index 000000000..2b275cff3 Binary files /dev/null and b/cache/media/3eb9b9fd97589e6730d82f42d9db0944dec9b126 differ diff --git a/cache/media/3eda8894bb4ad27d021a8e69a049dc23541f89df b/cache/media/3eda8894bb4ad27d021a8e69a049dc23541f89df new file mode 100644 index 000000000..ff38bf7c4 Binary files /dev/null and b/cache/media/3eda8894bb4ad27d021a8e69a049dc23541f89df differ diff --git a/cache/media/3f396ef07e677ec3a65173e2bce87d72a3780e61 b/cache/media/3f396ef07e677ec3a65173e2bce87d72a3780e61 new file mode 100644 index 000000000..2747ab81c Binary files /dev/null and b/cache/media/3f396ef07e677ec3a65173e2bce87d72a3780e61 differ diff --git a/cache/media/3ff09e0524c025271321df5f11f826e92ce0be1f b/cache/media/3ff09e0524c025271321df5f11f826e92ce0be1f new file mode 100644 index 000000000..57c1d7c12 Binary files /dev/null and b/cache/media/3ff09e0524c025271321df5f11f826e92ce0be1f differ diff --git a/cache/media/3ff9809c3e9c6c60a419b7a2420f62efdfef2b43 b/cache/media/3ff9809c3e9c6c60a419b7a2420f62efdfef2b43 new file mode 100644 index 000000000..4aac1e7fa Binary files /dev/null and b/cache/media/3ff9809c3e9c6c60a419b7a2420f62efdfef2b43 differ diff --git a/cache/media/40030571a833a63257467dc442fcd5f00f0b9584 b/cache/media/40030571a833a63257467dc442fcd5f00f0b9584 new file mode 100644 index 000000000..be8eadd9d Binary files /dev/null and b/cache/media/40030571a833a63257467dc442fcd5f00f0b9584 differ diff --git a/cache/media/407336145b5b2e60263fabb4c142400b608ab0db b/cache/media/407336145b5b2e60263fabb4c142400b608ab0db new file mode 100644 index 000000000..29f389722 Binary files /dev/null and b/cache/media/407336145b5b2e60263fabb4c142400b608ab0db differ diff --git a/cache/media/40cb28c7422654b64af78ee33208e8810bb7ab8a b/cache/media/40cb28c7422654b64af78ee33208e8810bb7ab8a new file mode 100644 index 000000000..e4c50a74e Binary files /dev/null and b/cache/media/40cb28c7422654b64af78ee33208e8810bb7ab8a differ diff --git a/cache/media/40f8664ef37137a3ba14883c4f9f3b3179536756 b/cache/media/40f8664ef37137a3ba14883c4f9f3b3179536756 new file mode 100644 index 000000000..c011db889 Binary files /dev/null and b/cache/media/40f8664ef37137a3ba14883c4f9f3b3179536756 differ diff --git a/cache/media/41184309e3cd09968faecf6cc49670b12c81e6f6 b/cache/media/41184309e3cd09968faecf6cc49670b12c81e6f6 new file mode 100644 index 000000000..0445e8825 Binary files /dev/null and b/cache/media/41184309e3cd09968faecf6cc49670b12c81e6f6 differ diff --git a/cache/media/418a5ee3b7e584a301133f70f07d25617d919406 b/cache/media/418a5ee3b7e584a301133f70f07d25617d919406 new file mode 100644 index 000000000..76e5a40ab Binary files /dev/null and b/cache/media/418a5ee3b7e584a301133f70f07d25617d919406 differ diff --git a/cache/media/418d56a1328286109f3f8b3c1d769d0cf4c5a366 b/cache/media/418d56a1328286109f3f8b3c1d769d0cf4c5a366 new file mode 100644 index 000000000..c167fff58 Binary files /dev/null and b/cache/media/418d56a1328286109f3f8b3c1d769d0cf4c5a366 differ diff --git a/cache/media/41dbec7fce20238e4fc5d8c3dfc355ef3bb1653e b/cache/media/41dbec7fce20238e4fc5d8c3dfc355ef3bb1653e new file mode 100644 index 000000000..191287a33 Binary files /dev/null and b/cache/media/41dbec7fce20238e4fc5d8c3dfc355ef3bb1653e differ diff --git a/cache/media/425fd87ed549207decfe389d2ebe3800aa417add b/cache/media/425fd87ed549207decfe389d2ebe3800aa417add new file mode 100644 index 000000000..83d65c4b0 Binary files /dev/null and b/cache/media/425fd87ed549207decfe389d2ebe3800aa417add differ diff --git a/cache/media/42d5ca77ef109f253e1b85139c13d45a493bf61c b/cache/media/42d5ca77ef109f253e1b85139c13d45a493bf61c new file mode 100644 index 000000000..f309b7a60 Binary files /dev/null and b/cache/media/42d5ca77ef109f253e1b85139c13d45a493bf61c differ diff --git a/cache/media/42dbe8354a7ad537e7feafcc3fc99cb16ed08339 b/cache/media/42dbe8354a7ad537e7feafcc3fc99cb16ed08339 new file mode 100644 index 000000000..bcad9c05e Binary files /dev/null and b/cache/media/42dbe8354a7ad537e7feafcc3fc99cb16ed08339 differ diff --git a/cache/media/4312a545cdf6715ebdc1adfbd9802db0f06ac706 b/cache/media/4312a545cdf6715ebdc1adfbd9802db0f06ac706 new file mode 100644 index 000000000..a988c4740 Binary files /dev/null and b/cache/media/4312a545cdf6715ebdc1adfbd9802db0f06ac706 differ diff --git a/cache/media/43a559f9e94e8a77378fc880603dcfcd617e0216 b/cache/media/43a559f9e94e8a77378fc880603dcfcd617e0216 new file mode 100644 index 000000000..742483389 Binary files /dev/null and b/cache/media/43a559f9e94e8a77378fc880603dcfcd617e0216 differ diff --git a/cache/media/43aa41c783fd9646a3c7a206bda8acadb45cbf4c b/cache/media/43aa41c783fd9646a3c7a206bda8acadb45cbf4c new file mode 100644 index 000000000..20c33edb2 Binary files /dev/null and b/cache/media/43aa41c783fd9646a3c7a206bda8acadb45cbf4c differ diff --git a/cache/media/43edc0102057bf01b3f65365f7e1ebafbb49abad b/cache/media/43edc0102057bf01b3f65365f7e1ebafbb49abad new file mode 100644 index 000000000..9c0a0e248 Binary files /dev/null and b/cache/media/43edc0102057bf01b3f65365f7e1ebafbb49abad differ diff --git a/cache/media/440dd5b08608c863994442f34ada0d3a797b999a b/cache/media/440dd5b08608c863994442f34ada0d3a797b999a new file mode 100644 index 000000000..a835fe002 Binary files /dev/null and b/cache/media/440dd5b08608c863994442f34ada0d3a797b999a differ diff --git a/cache/media/4466088299a8e67bbe0ef74d9fafb2ac681231bf b/cache/media/4466088299a8e67bbe0ef74d9fafb2ac681231bf new file mode 100644 index 000000000..fe47999bb Binary files /dev/null and b/cache/media/4466088299a8e67bbe0ef74d9fafb2ac681231bf differ diff --git a/cache/media/44793f4949c64e501effdf00bd06ba37b153e421 b/cache/media/44793f4949c64e501effdf00bd06ba37b153e421 new file mode 100644 index 000000000..7c5a8b82f Binary files /dev/null and b/cache/media/44793f4949c64e501effdf00bd06ba37b153e421 differ diff --git a/cache/media/447e155d767137ac5f5310ac5c6b00c2ef2e27f1 b/cache/media/447e155d767137ac5f5310ac5c6b00c2ef2e27f1 new file mode 100644 index 000000000..2fe5bf2b0 Binary files /dev/null and b/cache/media/447e155d767137ac5f5310ac5c6b00c2ef2e27f1 differ diff --git a/cache/media/4575c5c173603ecc298f205811377fe44257ad6f b/cache/media/4575c5c173603ecc298f205811377fe44257ad6f new file mode 100644 index 000000000..c3dec22a5 Binary files /dev/null and b/cache/media/4575c5c173603ecc298f205811377fe44257ad6f differ diff --git a/cache/media/45947910bd728dec347e0eb0031a7dc30f9e7579 b/cache/media/45947910bd728dec347e0eb0031a7dc30f9e7579 new file mode 100644 index 000000000..27f4d9604 Binary files /dev/null and b/cache/media/45947910bd728dec347e0eb0031a7dc30f9e7579 differ diff --git a/cache/media/45982191341b95ffdb2acf8a4e58b850688cdc0d b/cache/media/45982191341b95ffdb2acf8a4e58b850688cdc0d new file mode 100644 index 000000000..429ad7db7 Binary files /dev/null and b/cache/media/45982191341b95ffdb2acf8a4e58b850688cdc0d differ diff --git a/cache/media/45e88d4809928a23796399959f27e0ee88628536 b/cache/media/45e88d4809928a23796399959f27e0ee88628536 new file mode 100644 index 000000000..d08cc6935 Binary files /dev/null and b/cache/media/45e88d4809928a23796399959f27e0ee88628536 differ diff --git a/cache/media/462c43659f35fdf9b91fd487ccba1082633f62e3 b/cache/media/462c43659f35fdf9b91fd487ccba1082633f62e3 new file mode 100644 index 000000000..430c3e383 Binary files /dev/null and b/cache/media/462c43659f35fdf9b91fd487ccba1082633f62e3 differ diff --git a/cache/media/462f8090e153c7dcc139dfe163b4032359f7c006 b/cache/media/462f8090e153c7dcc139dfe163b4032359f7c006 new file mode 100644 index 000000000..679004927 Binary files /dev/null and b/cache/media/462f8090e153c7dcc139dfe163b4032359f7c006 differ diff --git a/cache/media/476d7d4497c2d5f7f42a3aceefa6511f934e5f26 b/cache/media/476d7d4497c2d5f7f42a3aceefa6511f934e5f26 new file mode 100644 index 000000000..cdab89851 Binary files /dev/null and b/cache/media/476d7d4497c2d5f7f42a3aceefa6511f934e5f26 differ diff --git a/cache/media/4771e4d40c9e552c755e725b29f3af3e1a0b21ae b/cache/media/4771e4d40c9e552c755e725b29f3af3e1a0b21ae new file mode 100644 index 000000000..c925aceb8 Binary files /dev/null and b/cache/media/4771e4d40c9e552c755e725b29f3af3e1a0b21ae differ diff --git a/cache/media/4799d2d4d580dee92eecf64e04be917d5f87885d b/cache/media/4799d2d4d580dee92eecf64e04be917d5f87885d new file mode 100644 index 000000000..26fed02e4 Binary files /dev/null and b/cache/media/4799d2d4d580dee92eecf64e04be917d5f87885d differ diff --git a/cache/media/47b6a72acea31843888d890b0a9f3924eb7a68b5 b/cache/media/47b6a72acea31843888d890b0a9f3924eb7a68b5 new file mode 100644 index 000000000..654515f37 Binary files /dev/null and b/cache/media/47b6a72acea31843888d890b0a9f3924eb7a68b5 differ diff --git a/cache/media/47c870806ae3dabee62b86e26f161c8abd165e09 b/cache/media/47c870806ae3dabee62b86e26f161c8abd165e09 new file mode 100644 index 000000000..93c075a2d Binary files /dev/null and b/cache/media/47c870806ae3dabee62b86e26f161c8abd165e09 differ diff --git a/cache/media/47ddfc182c9415a25d3b70cdb316fa0e13a6f72d b/cache/media/47ddfc182c9415a25d3b70cdb316fa0e13a6f72d new file mode 100644 index 000000000..94d5ace11 Binary files /dev/null and b/cache/media/47ddfc182c9415a25d3b70cdb316fa0e13a6f72d differ diff --git a/cache/media/47e8c84e013fbf923798f9bc7e88168985115de7 b/cache/media/47e8c84e013fbf923798f9bc7e88168985115de7 new file mode 100644 index 000000000..17a708d17 Binary files /dev/null and b/cache/media/47e8c84e013fbf923798f9bc7e88168985115de7 differ diff --git a/cache/media/47edb0acdd99f9125ef9fa82b78e0c735bc6095b b/cache/media/47edb0acdd99f9125ef9fa82b78e0c735bc6095b new file mode 100644 index 000000000..9f51a8ae2 Binary files /dev/null and b/cache/media/47edb0acdd99f9125ef9fa82b78e0c735bc6095b differ diff --git a/cache/media/480805d21343827da65b6f9383d8acc7e76d85f3 b/cache/media/480805d21343827da65b6f9383d8acc7e76d85f3 new file mode 100644 index 000000000..178b5077a Binary files /dev/null and b/cache/media/480805d21343827da65b6f9383d8acc7e76d85f3 differ diff --git a/cache/media/481b052164b7c2a0b2b6caf1c1e23163f5855136 b/cache/media/481b052164b7c2a0b2b6caf1c1e23163f5855136 new file mode 100644 index 000000000..c01fb4f33 Binary files /dev/null and b/cache/media/481b052164b7c2a0b2b6caf1c1e23163f5855136 differ diff --git a/cache/media/482b3ac09d30ee0de9cfcff0fda1a2ee02f7ab58 b/cache/media/482b3ac09d30ee0de9cfcff0fda1a2ee02f7ab58 new file mode 100644 index 000000000..5af836bc8 Binary files /dev/null and b/cache/media/482b3ac09d30ee0de9cfcff0fda1a2ee02f7ab58 differ diff --git a/cache/media/48723b1510bdbea0bc2aef2a262e7af6b1a4ecad b/cache/media/48723b1510bdbea0bc2aef2a262e7af6b1a4ecad new file mode 100644 index 000000000..f4bd4fb34 Binary files /dev/null and b/cache/media/48723b1510bdbea0bc2aef2a262e7af6b1a4ecad differ diff --git a/cache/media/48c0964362647b6fc85a9ff8505bbff338b67643 b/cache/media/48c0964362647b6fc85a9ff8505bbff338b67643 new file mode 100644 index 000000000..ae5ab7d4e Binary files /dev/null and b/cache/media/48c0964362647b6fc85a9ff8505bbff338b67643 differ diff --git a/cache/media/48cc131a66e00bf6bd0a7e4449ed60fc71ce6d36 b/cache/media/48cc131a66e00bf6bd0a7e4449ed60fc71ce6d36 new file mode 100644 index 000000000..cfe58a1bf Binary files /dev/null and b/cache/media/48cc131a66e00bf6bd0a7e4449ed60fc71ce6d36 differ diff --git a/cache/media/48e9765166ff4beb612398f22dd8d05528131b5e b/cache/media/48e9765166ff4beb612398f22dd8d05528131b5e new file mode 100644 index 000000000..ae8366107 Binary files /dev/null and b/cache/media/48e9765166ff4beb612398f22dd8d05528131b5e differ diff --git a/cache/media/49abf4eae48a703089133d7a9cc03098455a6d06 b/cache/media/49abf4eae48a703089133d7a9cc03098455a6d06 new file mode 100644 index 000000000..eee800bdb Binary files /dev/null and b/cache/media/49abf4eae48a703089133d7a9cc03098455a6d06 differ diff --git a/cache/media/49bb27fce2eb3154ec648dbe1ddce5f07d19e3ab b/cache/media/49bb27fce2eb3154ec648dbe1ddce5f07d19e3ab new file mode 100644 index 000000000..63888f399 Binary files /dev/null and b/cache/media/49bb27fce2eb3154ec648dbe1ddce5f07d19e3ab differ diff --git a/cache/media/49cbc0a53e27b994ee89189681965267f47e706e b/cache/media/49cbc0a53e27b994ee89189681965267f47e706e new file mode 100644 index 000000000..c5607b87d --- /dev/null +++ b/cache/media/49cbc0a53e27b994ee89189681965267f47e706e @@ -0,0 +1,40 @@ +# Blender v2.76 (sub 0) OBJ File: 'door_b.blend' +# www.blender.org +mtllib door_b.mtl +o Cube_Cube.001 +v -0.499000 -0.499000 -0.499000 +v -0.499000 1.499000 -0.499000 +v -0.499000 -0.499000 -0.375000 +v -0.499000 1.499000 -0.375000 +v 0.499000 -0.499000 -0.499000 +v 0.499000 1.499000 -0.499000 +v 0.499000 -0.499000 -0.375000 +v 0.499000 1.499000 -0.375000 +vt 0.842105 1.000000 +vt 0.842105 0.000000 +vt 0.894737 0.000000 +vt 0.894737 1.000000 +vt 0.421053 1.000000 +vt 0.421053 0.000000 +vt 0.947368 0.000000 +vt 0.947368 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 0.500000 +vt 0.947368 0.500000 +vt 1.000000 1.000000 +vn -1.000000 0.000000 0.000000 +vn 0.000000 0.000000 1.000000 +vn 1.000000 0.000000 0.000000 +vn 0.000000 0.000000 -1.000000 +vn 0.000000 -1.000000 0.000000 +vn 0.000000 1.000000 0.000000 +usemtl None +s off +f 2/1/1 1/2/1 3/3/1 4/4/1 +f 4/5/2 3/6/2 7/2/2 8/1/2 +f 8/4/3 7/3/3 5/7/3 6/8/3 +f 6/9/4 5/10/4 1/6/4 2/5/4 +f 1/11/5 5/12/5 7/13/5 3/7/5 +f 6/8/6 2/13/6 4/12/6 8/14/6 diff --git a/cache/media/4adefc58fed089d040d943dfba7bcfc26579aa41 b/cache/media/4adefc58fed089d040d943dfba7bcfc26579aa41 new file mode 100644 index 000000000..101fefaa8 Binary files /dev/null and b/cache/media/4adefc58fed089d040d943dfba7bcfc26579aa41 differ diff --git a/cache/media/4bffa9737334c56c25b207c627165b9e12771404 b/cache/media/4bffa9737334c56c25b207c627165b9e12771404 new file mode 100644 index 000000000..eaa86c427 Binary files /dev/null and b/cache/media/4bffa9737334c56c25b207c627165b9e12771404 differ diff --git a/cache/media/4c6e32b726080f3088f567e649916541e71b136a b/cache/media/4c6e32b726080f3088f567e649916541e71b136a new file mode 100644 index 000000000..3a8b5ad95 Binary files /dev/null and b/cache/media/4c6e32b726080f3088f567e649916541e71b136a differ diff --git a/cache/media/4c91b02b993a9228aeeaa139447303d812b61ef9 b/cache/media/4c91b02b993a9228aeeaa139447303d812b61ef9 new file mode 100644 index 000000000..cf4235b7b Binary files /dev/null and b/cache/media/4c91b02b993a9228aeeaa139447303d812b61ef9 differ diff --git a/cache/media/4caf1c7be7764454e4ef1362c17994fe9a039830 b/cache/media/4caf1c7be7764454e4ef1362c17994fe9a039830 new file mode 100644 index 000000000..0bdb8f7c0 Binary files /dev/null and b/cache/media/4caf1c7be7764454e4ef1362c17994fe9a039830 differ diff --git a/cache/media/4cd37741775fd4fd36e68669972a75ed57586f69 b/cache/media/4cd37741775fd4fd36e68669972a75ed57586f69 new file mode 100644 index 000000000..cdf33ef38 Binary files /dev/null and b/cache/media/4cd37741775fd4fd36e68669972a75ed57586f69 differ diff --git a/cache/media/4d5e6808b9077403c48e6f5047ddff69e2df9352 b/cache/media/4d5e6808b9077403c48e6f5047ddff69e2df9352 new file mode 100644 index 000000000..0ec5d6c67 Binary files /dev/null and b/cache/media/4d5e6808b9077403c48e6f5047ddff69e2df9352 differ diff --git a/cache/media/4dd2bdfc35936dacd3e8f81330abf0b301f83319 b/cache/media/4dd2bdfc35936dacd3e8f81330abf0b301f83319 new file mode 100644 index 000000000..1266e6e1c Binary files /dev/null and b/cache/media/4dd2bdfc35936dacd3e8f81330abf0b301f83319 differ diff --git a/cache/media/4e3e37ef69deb9ba9c2f39c474b407ed0adad8f5 b/cache/media/4e3e37ef69deb9ba9c2f39c474b407ed0adad8f5 new file mode 100644 index 000000000..5ed8388bb Binary files /dev/null and b/cache/media/4e3e37ef69deb9ba9c2f39c474b407ed0adad8f5 differ diff --git a/cache/media/4f4ddc5f46e9146c78e545bb9c3d62a4467e5b7a b/cache/media/4f4ddc5f46e9146c78e545bb9c3d62a4467e5b7a new file mode 100644 index 000000000..a8d615137 Binary files /dev/null and b/cache/media/4f4ddc5f46e9146c78e545bb9c3d62a4467e5b7a differ diff --git a/cache/media/4fb6fb36666285700366538ed24164e01a4411c2 b/cache/media/4fb6fb36666285700366538ed24164e01a4411c2 new file mode 100644 index 000000000..4d1a0ccb6 Binary files /dev/null and b/cache/media/4fb6fb36666285700366538ed24164e01a4411c2 differ diff --git a/cache/media/502e081ce25e66492be4f576e18148922ec64164 b/cache/media/502e081ce25e66492be4f576e18148922ec64164 new file mode 100644 index 000000000..533b8734f Binary files /dev/null and b/cache/media/502e081ce25e66492be4f576e18148922ec64164 differ diff --git a/cache/media/50633e26f8100764ed5334e068eac5ccea0a2ef9 b/cache/media/50633e26f8100764ed5334e068eac5ccea0a2ef9 new file mode 100644 index 000000000..db5945856 Binary files /dev/null and b/cache/media/50633e26f8100764ed5334e068eac5ccea0a2ef9 differ diff --git a/cache/media/50784a06884ec92473d785f7e957e63a2eff1109 b/cache/media/50784a06884ec92473d785f7e957e63a2eff1109 new file mode 100644 index 000000000..d3798404b Binary files /dev/null and b/cache/media/50784a06884ec92473d785f7e957e63a2eff1109 differ diff --git a/cache/media/50dcc56a5abb2fa25464cbed19761952ae890fe1 b/cache/media/50dcc56a5abb2fa25464cbed19761952ae890fe1 new file mode 100644 index 000000000..e9dc68378 Binary files /dev/null and b/cache/media/50dcc56a5abb2fa25464cbed19761952ae890fe1 differ diff --git a/cache/media/5107bf5f0e634ecc057aa99f9cdd1a580b4d3538 b/cache/media/5107bf5f0e634ecc057aa99f9cdd1a580b4d3538 new file mode 100644 index 000000000..6fa06286c Binary files /dev/null and b/cache/media/5107bf5f0e634ecc057aa99f9cdd1a580b4d3538 differ diff --git a/cache/media/5127695f76f40aa1c9ed72adb2a8d1c1e651c74d b/cache/media/5127695f76f40aa1c9ed72adb2a8d1c1e651c74d new file mode 100644 index 000000000..2bbeab8cd Binary files /dev/null and b/cache/media/5127695f76f40aa1c9ed72adb2a8d1c1e651c74d differ diff --git a/cache/media/51361b4543fab71b86dce51fba5b93376822ee5c b/cache/media/51361b4543fab71b86dce51fba5b93376822ee5c new file mode 100644 index 000000000..4e846dfa0 Binary files /dev/null and b/cache/media/51361b4543fab71b86dce51fba5b93376822ee5c differ diff --git a/cache/media/51e0ba5cd0eaedd4a4628d7090051d4245722773 b/cache/media/51e0ba5cd0eaedd4a4628d7090051d4245722773 new file mode 100644 index 000000000..eca051c50 Binary files /dev/null and b/cache/media/51e0ba5cd0eaedd4a4628d7090051d4245722773 differ diff --git a/cache/media/51fcb7c6a2a1668082932a4928ae8ac1d5639532 b/cache/media/51fcb7c6a2a1668082932a4928ae8ac1d5639532 new file mode 100644 index 000000000..e492a32ee Binary files /dev/null and b/cache/media/51fcb7c6a2a1668082932a4928ae8ac1d5639532 differ diff --git a/cache/media/521c972e29c67dc5cbde4dedcc4bb9b5252608f0 b/cache/media/521c972e29c67dc5cbde4dedcc4bb9b5252608f0 new file mode 100644 index 000000000..af56d6cd4 Binary files /dev/null and b/cache/media/521c972e29c67dc5cbde4dedcc4bb9b5252608f0 differ diff --git a/cache/media/524355a805b9616d66703d522680c91d45e81ff7 b/cache/media/524355a805b9616d66703d522680c91d45e81ff7 new file mode 100644 index 000000000..6752256bd Binary files /dev/null and b/cache/media/524355a805b9616d66703d522680c91d45e81ff7 differ diff --git a/cache/media/5246b2b8ad05861dad1c43c4da12b4afec682a3e b/cache/media/5246b2b8ad05861dad1c43c4da12b4afec682a3e new file mode 100644 index 000000000..0378d078b Binary files /dev/null and b/cache/media/5246b2b8ad05861dad1c43c4da12b4afec682a3e differ diff --git a/cache/media/529972d69360a91d0c84fa9fea34a48c1e4896a9 b/cache/media/529972d69360a91d0c84fa9fea34a48c1e4896a9 new file mode 100644 index 000000000..bc0180651 Binary files /dev/null and b/cache/media/529972d69360a91d0c84fa9fea34a48c1e4896a9 differ diff --git a/cache/media/52fb95bd73277df05c663b9c3e9fb811d20817b5 b/cache/media/52fb95bd73277df05c663b9c3e9fb811d20817b5 new file mode 100644 index 000000000..4d17ceb85 Binary files /dev/null and b/cache/media/52fb95bd73277df05c663b9c3e9fb811d20817b5 differ diff --git a/cache/media/5412a8579ff6954559290e9326e1d1c73b5e2efe b/cache/media/5412a8579ff6954559290e9326e1d1c73b5e2efe new file mode 100644 index 000000000..228c08e1a Binary files /dev/null and b/cache/media/5412a8579ff6954559290e9326e1d1c73b5e2efe differ diff --git a/cache/media/54182980b41a55a36900475bdd836085f035b064 b/cache/media/54182980b41a55a36900475bdd836085f035b064 new file mode 100644 index 000000000..3ccb0f72d Binary files /dev/null and b/cache/media/54182980b41a55a36900475bdd836085f035b064 differ diff --git a/cache/media/54293dd870816f713a972045b9030f83907260ff b/cache/media/54293dd870816f713a972045b9030f83907260ff new file mode 100644 index 000000000..dbed6ad0c Binary files /dev/null and b/cache/media/54293dd870816f713a972045b9030f83907260ff differ diff --git a/cache/media/543d4b3344ace5012c87303895e05f4fa9b28f55 b/cache/media/543d4b3344ace5012c87303895e05f4fa9b28f55 new file mode 100644 index 000000000..929838351 Binary files /dev/null and b/cache/media/543d4b3344ace5012c87303895e05f4fa9b28f55 differ diff --git a/cache/media/546cf668f6e56f3b84d6857f1fdbf1848003bc38 b/cache/media/546cf668f6e56f3b84d6857f1fdbf1848003bc38 new file mode 100644 index 000000000..4eda0603f Binary files /dev/null and b/cache/media/546cf668f6e56f3b84d6857f1fdbf1848003bc38 differ diff --git a/cache/media/54d36b230d4340d1986e6d98fd3a81500b54f3fb b/cache/media/54d36b230d4340d1986e6d98fd3a81500b54f3fb new file mode 100644 index 000000000..871d04cc0 Binary files /dev/null and b/cache/media/54d36b230d4340d1986e6d98fd3a81500b54f3fb differ diff --git a/cache/media/55085959931f72f6662290664e6fd00bae681a47 b/cache/media/55085959931f72f6662290664e6fd00bae681a47 new file mode 100644 index 000000000..1528cad45 Binary files /dev/null and b/cache/media/55085959931f72f6662290664e6fd00bae681a47 differ diff --git a/cache/media/55e64717ba27a4c8f5a31694f9c3e0d4d30ff786 b/cache/media/55e64717ba27a4c8f5a31694f9c3e0d4d30ff786 new file mode 100644 index 000000000..e36aa49ce Binary files /dev/null and b/cache/media/55e64717ba27a4c8f5a31694f9c3e0d4d30ff786 differ diff --git a/cache/media/56948aa8e4fc2df8c2ce0c7622e160dd34fcc0e2 b/cache/media/56948aa8e4fc2df8c2ce0c7622e160dd34fcc0e2 new file mode 100644 index 000000000..1ed8158e1 Binary files /dev/null and b/cache/media/56948aa8e4fc2df8c2ce0c7622e160dd34fcc0e2 differ diff --git a/cache/media/56e20702d287fd2fae1e461d6a170916b90e29cb b/cache/media/56e20702d287fd2fae1e461d6a170916b90e29cb new file mode 100644 index 000000000..0dea4ec54 Binary files /dev/null and b/cache/media/56e20702d287fd2fae1e461d6a170916b90e29cb differ diff --git a/cache/media/56ee36492ca16d638a1c38741f551ba0166824aa b/cache/media/56ee36492ca16d638a1c38741f551ba0166824aa new file mode 100644 index 000000000..4c636f20a Binary files /dev/null and b/cache/media/56ee36492ca16d638a1c38741f551ba0166824aa differ diff --git a/cache/media/5705c639100d3b3f3be3853e123626d704c3284c b/cache/media/5705c639100d3b3f3be3853e123626d704c3284c new file mode 100644 index 000000000..3bca7e11c Binary files /dev/null and b/cache/media/5705c639100d3b3f3be3853e123626d704c3284c differ diff --git a/cache/media/5814e919c27be4406bf5af76194cfbfd7679f03f b/cache/media/5814e919c27be4406bf5af76194cfbfd7679f03f new file mode 100644 index 000000000..6d61c4342 Binary files /dev/null and b/cache/media/5814e919c27be4406bf5af76194cfbfd7679f03f differ diff --git a/cache/media/584551bdb8c27f0a982fb59176244793d7fc3436 b/cache/media/584551bdb8c27f0a982fb59176244793d7fc3436 new file mode 100644 index 000000000..1748bc56a Binary files /dev/null and b/cache/media/584551bdb8c27f0a982fb59176244793d7fc3436 differ diff --git a/cache/media/589d2e9ced3775912ceff6609644cfbcfc2f90a9 b/cache/media/589d2e9ced3775912ceff6609644cfbcfc2f90a9 new file mode 100644 index 000000000..562354e98 Binary files /dev/null and b/cache/media/589d2e9ced3775912ceff6609644cfbcfc2f90a9 differ diff --git a/cache/media/58afc8e8302fb8f5e02c29885541b0766e2f3f30 b/cache/media/58afc8e8302fb8f5e02c29885541b0766e2f3f30 new file mode 100644 index 000000000..8ab0e3c8b Binary files /dev/null and b/cache/media/58afc8e8302fb8f5e02c29885541b0766e2f3f30 differ diff --git a/cache/media/58c8cc8dd511f4cf423043ae5dce15ff5b1696ad b/cache/media/58c8cc8dd511f4cf423043ae5dce15ff5b1696ad new file mode 100644 index 000000000..bfec8b1f0 Binary files /dev/null and b/cache/media/58c8cc8dd511f4cf423043ae5dce15ff5b1696ad differ diff --git a/cache/media/591ac91d28656c68d1cbe8d81bc494db1b8febe8 b/cache/media/591ac91d28656c68d1cbe8d81bc494db1b8febe8 new file mode 100644 index 000000000..61198647a Binary files /dev/null and b/cache/media/591ac91d28656c68d1cbe8d81bc494db1b8febe8 differ diff --git a/cache/media/59258309caaeff27970b6d1fa8b4a20e0ccec073 b/cache/media/59258309caaeff27970b6d1fa8b4a20e0ccec073 new file mode 100644 index 000000000..9a4c4f111 Binary files /dev/null and b/cache/media/59258309caaeff27970b6d1fa8b4a20e0ccec073 differ diff --git a/cache/media/594e4e9b775ddc39d1c3fc1ab4ef9c7279ab3499 b/cache/media/594e4e9b775ddc39d1c3fc1ab4ef9c7279ab3499 new file mode 100644 index 000000000..060737baa Binary files /dev/null and b/cache/media/594e4e9b775ddc39d1c3fc1ab4ef9c7279ab3499 differ diff --git a/cache/media/599d0334fbdd51e8c7e15aaf6c468803585ee6ee b/cache/media/599d0334fbdd51e8c7e15aaf6c468803585ee6ee new file mode 100644 index 000000000..36ebb1929 Binary files /dev/null and b/cache/media/599d0334fbdd51e8c7e15aaf6c468803585ee6ee differ diff --git a/cache/media/59f050fa0d2405c35b41e71fbf700fecb5c7ffea b/cache/media/59f050fa0d2405c35b41e71fbf700fecb5c7ffea new file mode 100644 index 000000000..1ae7c91fd Binary files /dev/null and b/cache/media/59f050fa0d2405c35b41e71fbf700fecb5c7ffea differ diff --git a/cache/media/5a7a4fe7180479aa44eae1c315556f15684b3c68 b/cache/media/5a7a4fe7180479aa44eae1c315556f15684b3c68 new file mode 100644 index 000000000..9f97facad Binary files /dev/null and b/cache/media/5a7a4fe7180479aa44eae1c315556f15684b3c68 differ diff --git a/cache/media/5a8fc02123025e53e1a7441f1e72db89048ab5f0 b/cache/media/5a8fc02123025e53e1a7441f1e72db89048ab5f0 new file mode 100644 index 000000000..72c721afb Binary files /dev/null and b/cache/media/5a8fc02123025e53e1a7441f1e72db89048ab5f0 differ diff --git a/cache/media/5af9f2f359903d59e12d6315cb617ff30346cfd6 b/cache/media/5af9f2f359903d59e12d6315cb617ff30346cfd6 new file mode 100644 index 000000000..600cbb445 Binary files /dev/null and b/cache/media/5af9f2f359903d59e12d6315cb617ff30346cfd6 differ diff --git a/cache/media/5be75682bcda79c5da1a6ecfd72cfb36e76a16d5 b/cache/media/5be75682bcda79c5da1a6ecfd72cfb36e76a16d5 new file mode 100644 index 000000000..b446e4e2d Binary files /dev/null and b/cache/media/5be75682bcda79c5da1a6ecfd72cfb36e76a16d5 differ diff --git a/cache/media/5c03277c7316e2764227ce3e922da3cc925da66b b/cache/media/5c03277c7316e2764227ce3e922da3cc925da66b new file mode 100644 index 000000000..c4c518ebb Binary files /dev/null and b/cache/media/5c03277c7316e2764227ce3e922da3cc925da66b differ diff --git a/cache/media/5c59734ef18bc4fff37b71e2fd675c579becaeac b/cache/media/5c59734ef18bc4fff37b71e2fd675c579becaeac new file mode 100644 index 000000000..31b807cb6 Binary files /dev/null and b/cache/media/5c59734ef18bc4fff37b71e2fd675c579becaeac differ diff --git a/cache/media/5c7239be74c6e8e725a19fd1c7f144ec9ccf720e b/cache/media/5c7239be74c6e8e725a19fd1c7f144ec9ccf720e new file mode 100644 index 000000000..b1a97836e Binary files /dev/null and b/cache/media/5c7239be74c6e8e725a19fd1c7f144ec9ccf720e differ diff --git a/cache/media/5d01ac382b6040fc80f6c5c2a4cac66c754b2c3f b/cache/media/5d01ac382b6040fc80f6c5c2a4cac66c754b2c3f new file mode 100644 index 000000000..a646ba20c Binary files /dev/null and b/cache/media/5d01ac382b6040fc80f6c5c2a4cac66c754b2c3f differ diff --git a/cache/media/5d5ed5349393467050a694bdd2a556c9f9960dc3 b/cache/media/5d5ed5349393467050a694bdd2a556c9f9960dc3 new file mode 100644 index 000000000..7e4feaf17 Binary files /dev/null and b/cache/media/5d5ed5349393467050a694bdd2a556c9f9960dc3 differ diff --git a/cache/media/5dcca6b47bd969d01dfa74cc1b9b441da9f88dab b/cache/media/5dcca6b47bd969d01dfa74cc1b9b441da9f88dab new file mode 100644 index 000000000..d38dbb7b6 Binary files /dev/null and b/cache/media/5dcca6b47bd969d01dfa74cc1b9b441da9f88dab differ diff --git a/cache/media/5e0aa19c23acc722a4965b18b9ffb73e395e72db b/cache/media/5e0aa19c23acc722a4965b18b9ffb73e395e72db new file mode 100644 index 000000000..39436cd0f Binary files /dev/null and b/cache/media/5e0aa19c23acc722a4965b18b9ffb73e395e72db differ diff --git a/cache/media/5e8cf233a12364d2b1bd60145881a4395d58a6f5 b/cache/media/5e8cf233a12364d2b1bd60145881a4395d58a6f5 new file mode 100644 index 000000000..8679aa5bc Binary files /dev/null and b/cache/media/5e8cf233a12364d2b1bd60145881a4395d58a6f5 differ diff --git a/cache/media/5f174648ecc697b224212d638e495518d84c6aa9 b/cache/media/5f174648ecc697b224212d638e495518d84c6aa9 new file mode 100644 index 000000000..ee433de3e Binary files /dev/null and b/cache/media/5f174648ecc697b224212d638e495518d84c6aa9 differ diff --git a/cache/media/5f1e318c224c3ccaa46270c1fc57b179b5e27a87 b/cache/media/5f1e318c224c3ccaa46270c1fc57b179b5e27a87 new file mode 100644 index 000000000..f78e1a9ac Binary files /dev/null and b/cache/media/5f1e318c224c3ccaa46270c1fc57b179b5e27a87 differ diff --git a/cache/media/5f64c8661fe6108d04e5da868590b1f5b15b81ba b/cache/media/5f64c8661fe6108d04e5da868590b1f5b15b81ba new file mode 100644 index 000000000..c22010750 Binary files /dev/null and b/cache/media/5f64c8661fe6108d04e5da868590b1f5b15b81ba differ diff --git a/cache/media/5f77a0b09b9871c42fd0ce46eab48f06cd776460 b/cache/media/5f77a0b09b9871c42fd0ce46eab48f06cd776460 new file mode 100644 index 000000000..77ee17e36 Binary files /dev/null and b/cache/media/5f77a0b09b9871c42fd0ce46eab48f06cd776460 differ diff --git a/cache/media/60499a73064e8504ebd2603600d9e01d7edfee2c b/cache/media/60499a73064e8504ebd2603600d9e01d7edfee2c new file mode 100644 index 000000000..bc4bdd6b5 Binary files /dev/null and b/cache/media/60499a73064e8504ebd2603600d9e01d7edfee2c differ diff --git a/cache/media/60837f814d31828e459f493ede6173134049928d b/cache/media/60837f814d31828e459f493ede6173134049928d new file mode 100644 index 000000000..7b18203eb Binary files /dev/null and b/cache/media/60837f814d31828e459f493ede6173134049928d differ diff --git a/cache/media/608f3221c1eae17da032787afd957d4303cfa713 b/cache/media/608f3221c1eae17da032787afd957d4303cfa713 new file mode 100644 index 000000000..a9031fba9 Binary files /dev/null and b/cache/media/608f3221c1eae17da032787afd957d4303cfa713 differ diff --git a/cache/media/60b51c8f5d8f2676197b74c72bc01d2e434ad1c5 b/cache/media/60b51c8f5d8f2676197b74c72bc01d2e434ad1c5 new file mode 100644 index 000000000..c9dd6a330 Binary files /dev/null and b/cache/media/60b51c8f5d8f2676197b74c72bc01d2e434ad1c5 differ diff --git a/cache/media/60f338649c991f6b16ce8e49870c84bb39865f33 b/cache/media/60f338649c991f6b16ce8e49870c84bb39865f33 new file mode 100644 index 000000000..630a33966 Binary files /dev/null and b/cache/media/60f338649c991f6b16ce8e49870c84bb39865f33 differ diff --git a/cache/media/61090cfe9052bed54562670e80dee4b4258945e9 b/cache/media/61090cfe9052bed54562670e80dee4b4258945e9 new file mode 100644 index 000000000..c8d30c567 Binary files /dev/null and b/cache/media/61090cfe9052bed54562670e80dee4b4258945e9 differ diff --git a/cache/media/615a292abcf2882f097c626c87104cfab4edfd69 b/cache/media/615a292abcf2882f097c626c87104cfab4edfd69 new file mode 100644 index 000000000..84a197d2b Binary files /dev/null and b/cache/media/615a292abcf2882f097c626c87104cfab4edfd69 differ diff --git a/cache/media/6204c143e02190aa514e7c5d0a4ccccaac7bb681 b/cache/media/6204c143e02190aa514e7c5d0a4ccccaac7bb681 new file mode 100644 index 000000000..a68f5d50a Binary files /dev/null and b/cache/media/6204c143e02190aa514e7c5d0a4ccccaac7bb681 differ diff --git a/cache/media/622e036d2ba1574f71d0e465518a3b758644a89a b/cache/media/622e036d2ba1574f71d0e465518a3b758644a89a new file mode 100644 index 000000000..f1a5cb594 Binary files /dev/null and b/cache/media/622e036d2ba1574f71d0e465518a3b758644a89a differ diff --git a/cache/media/627271599731d28b2ce6a974fde4ed9b4b44f4c6 b/cache/media/627271599731d28b2ce6a974fde4ed9b4b44f4c6 new file mode 100644 index 000000000..b9217995b Binary files /dev/null and b/cache/media/627271599731d28b2ce6a974fde4ed9b4b44f4c6 differ diff --git a/cache/media/62860edbba2a2759a3848ff6ced6e4019f440503 b/cache/media/62860edbba2a2759a3848ff6ced6e4019f440503 new file mode 100644 index 000000000..f8d9136a0 Binary files /dev/null and b/cache/media/62860edbba2a2759a3848ff6ced6e4019f440503 differ diff --git a/cache/media/62e26cfeae92517064f70d7cbd70bb765848a810 b/cache/media/62e26cfeae92517064f70d7cbd70bb765848a810 new file mode 100644 index 000000000..c1d0220d4 Binary files /dev/null and b/cache/media/62e26cfeae92517064f70d7cbd70bb765848a810 differ diff --git a/cache/media/62e8834cf053e979ae9786da25db5160e9445992 b/cache/media/62e8834cf053e979ae9786da25db5160e9445992 new file mode 100644 index 000000000..1b2e25be5 Binary files /dev/null and b/cache/media/62e8834cf053e979ae9786da25db5160e9445992 differ diff --git a/cache/media/636256c9c04eddc6d0e23971231af46a00d7ab20 b/cache/media/636256c9c04eddc6d0e23971231af46a00d7ab20 new file mode 100644 index 000000000..0d99ee1c1 Binary files /dev/null and b/cache/media/636256c9c04eddc6d0e23971231af46a00d7ab20 differ diff --git a/cache/media/63672b2a660aa0f40e72b8e870b1002a67cfbacc b/cache/media/63672b2a660aa0f40e72b8e870b1002a67cfbacc new file mode 100644 index 000000000..ba33d0731 Binary files /dev/null and b/cache/media/63672b2a660aa0f40e72b8e870b1002a67cfbacc differ diff --git a/cache/media/63d705b1d62cf5d2f8aed9034467a9940d84ca6f b/cache/media/63d705b1d62cf5d2f8aed9034467a9940d84ca6f new file mode 100644 index 000000000..7bd140125 Binary files /dev/null and b/cache/media/63d705b1d62cf5d2f8aed9034467a9940d84ca6f differ diff --git a/cache/media/6442074f6b1368232773a51bdb6623c47e9fc7d6 b/cache/media/6442074f6b1368232773a51bdb6623c47e9fc7d6 new file mode 100644 index 000000000..68f1fd8c7 Binary files /dev/null and b/cache/media/6442074f6b1368232773a51bdb6623c47e9fc7d6 differ diff --git a/cache/media/648c55dd592abc99da3ee9d633367f008e15b674 b/cache/media/648c55dd592abc99da3ee9d633367f008e15b674 new file mode 100644 index 000000000..7af900381 Binary files /dev/null and b/cache/media/648c55dd592abc99da3ee9d633367f008e15b674 differ diff --git a/cache/media/659ff2f4cd4d269b9df958631509e76139547a69 b/cache/media/659ff2f4cd4d269b9df958631509e76139547a69 new file mode 100644 index 000000000..4664be551 Binary files /dev/null and b/cache/media/659ff2f4cd4d269b9df958631509e76139547a69 differ diff --git a/cache/media/65a0ddb19a73e43b93bab6f5079c1546e44f07e1 b/cache/media/65a0ddb19a73e43b93bab6f5079c1546e44f07e1 new file mode 100644 index 000000000..c78ba50b2 Binary files /dev/null and b/cache/media/65a0ddb19a73e43b93bab6f5079c1546e44f07e1 differ diff --git a/cache/media/65a12a86aa6350ab40205aad6fc769d06179b51f b/cache/media/65a12a86aa6350ab40205aad6fc769d06179b51f new file mode 100644 index 000000000..1a56cc737 Binary files /dev/null and b/cache/media/65a12a86aa6350ab40205aad6fc769d06179b51f differ diff --git a/cache/media/660781095dab3ecef4d8b06645d197ed2ae9321b b/cache/media/660781095dab3ecef4d8b06645d197ed2ae9321b new file mode 100644 index 000000000..1026d4372 Binary files /dev/null and b/cache/media/660781095dab3ecef4d8b06645d197ed2ae9321b differ diff --git a/cache/media/6649ed62eb5356b388af902b28599e9830d21bf8 b/cache/media/6649ed62eb5356b388af902b28599e9830d21bf8 new file mode 100644 index 000000000..c37cb75e9 Binary files /dev/null and b/cache/media/6649ed62eb5356b388af902b28599e9830d21bf8 differ diff --git a/cache/media/6664eb43a2ea79a056affd64e402aa86f8ac7d93 b/cache/media/6664eb43a2ea79a056affd64e402aa86f8ac7d93 new file mode 100644 index 000000000..1e0ad3b3e Binary files /dev/null and b/cache/media/6664eb43a2ea79a056affd64e402aa86f8ac7d93 differ diff --git a/cache/media/667d79855d1e939b38b494f8f71e237a1fe260ab b/cache/media/667d79855d1e939b38b494f8f71e237a1fe260ab new file mode 100644 index 000000000..2c83e23cc Binary files /dev/null and b/cache/media/667d79855d1e939b38b494f8f71e237a1fe260ab differ diff --git a/cache/media/66afc8c7e79885b0d397b1fc69ad0a491a02b09c b/cache/media/66afc8c7e79885b0d397b1fc69ad0a491a02b09c new file mode 100644 index 000000000..2fb622e05 Binary files /dev/null and b/cache/media/66afc8c7e79885b0d397b1fc69ad0a491a02b09c differ diff --git a/cache/media/671ad237e168f810a04d33f7ad009bcc72a23d60 b/cache/media/671ad237e168f810a04d33f7ad009bcc72a23d60 new file mode 100644 index 000000000..bd9cb8692 Binary files /dev/null and b/cache/media/671ad237e168f810a04d33f7ad009bcc72a23d60 differ diff --git a/cache/media/6789e71e0037f63568f99500ee5e3ac720394b0b b/cache/media/6789e71e0037f63568f99500ee5e3ac720394b0b new file mode 100644 index 000000000..0aed58332 Binary files /dev/null and b/cache/media/6789e71e0037f63568f99500ee5e3ac720394b0b differ diff --git a/cache/media/679037a8bcb51b04e67dfb3c2ba10323054ffa41 b/cache/media/679037a8bcb51b04e67dfb3c2ba10323054ffa41 new file mode 100644 index 000000000..df7c3a61f Binary files /dev/null and b/cache/media/679037a8bcb51b04e67dfb3c2ba10323054ffa41 differ diff --git a/cache/media/6791a1a7d324b744a939d5652f3b1e3904ae3384 b/cache/media/6791a1a7d324b744a939d5652f3b1e3904ae3384 new file mode 100644 index 000000000..998c592e1 Binary files /dev/null and b/cache/media/6791a1a7d324b744a939d5652f3b1e3904ae3384 differ diff --git a/cache/media/679f153d9952f52a4ed0c3b4e5d4fe1aefc16958 b/cache/media/679f153d9952f52a4ed0c3b4e5d4fe1aefc16958 new file mode 100644 index 000000000..8573eec97 Binary files /dev/null and b/cache/media/679f153d9952f52a4ed0c3b4e5d4fe1aefc16958 differ diff --git a/cache/media/67b8fa9d5820760e4928cc921d32fe476c33abc6 b/cache/media/67b8fa9d5820760e4928cc921d32fe476c33abc6 new file mode 100644 index 000000000..559d008f5 Binary files /dev/null and b/cache/media/67b8fa9d5820760e4928cc921d32fe476c33abc6 differ diff --git a/cache/media/67c1a415f14d6812fd5e0ef571e7f80a74827e96 b/cache/media/67c1a415f14d6812fd5e0ef571e7f80a74827e96 new file mode 100644 index 000000000..fd25b5ba6 Binary files /dev/null and b/cache/media/67c1a415f14d6812fd5e0ef571e7f80a74827e96 differ diff --git a/cache/media/67f9958236851be3eb54228058583ea50deb7527 b/cache/media/67f9958236851be3eb54228058583ea50deb7527 new file mode 100644 index 000000000..afd004e1b Binary files /dev/null and b/cache/media/67f9958236851be3eb54228058583ea50deb7527 differ diff --git a/cache/media/683c92fee8301678b4961fe9939f7f58640ec383 b/cache/media/683c92fee8301678b4961fe9939f7f58640ec383 new file mode 100644 index 000000000..2649670f6 Binary files /dev/null and b/cache/media/683c92fee8301678b4961fe9939f7f58640ec383 differ diff --git a/cache/media/68a85e244f2f467a6e15f92976ecb27ee364b8f1 b/cache/media/68a85e244f2f467a6e15f92976ecb27ee364b8f1 new file mode 100644 index 000000000..25abb7146 Binary files /dev/null and b/cache/media/68a85e244f2f467a6e15f92976ecb27ee364b8f1 differ diff --git a/cache/media/68c97c38fae245d5513b0ad6071c8b0487cb1a64 b/cache/media/68c97c38fae245d5513b0ad6071c8b0487cb1a64 new file mode 100644 index 000000000..fcca03804 Binary files /dev/null and b/cache/media/68c97c38fae245d5513b0ad6071c8b0487cb1a64 differ diff --git a/cache/media/697166c5b99878676b10d998a2e3c40c5a2adde0 b/cache/media/697166c5b99878676b10d998a2e3c40c5a2adde0 new file mode 100644 index 000000000..a8670df40 Binary files /dev/null and b/cache/media/697166c5b99878676b10d998a2e3c40c5a2adde0 differ diff --git a/cache/media/69a3463d6c334ff7bb4f5ba36b369c355606db70 b/cache/media/69a3463d6c334ff7bb4f5ba36b369c355606db70 new file mode 100644 index 000000000..052f04ee4 Binary files /dev/null and b/cache/media/69a3463d6c334ff7bb4f5ba36b369c355606db70 differ diff --git a/cache/media/6a13e11d501540fef66760216bfc65b789d52ead b/cache/media/6a13e11d501540fef66760216bfc65b789d52ead new file mode 100644 index 000000000..145d6c30d Binary files /dev/null and b/cache/media/6a13e11d501540fef66760216bfc65b789d52ead differ diff --git a/cache/media/6a4b43c5e37796cbaf95c24c7de8d8d52239eeba b/cache/media/6a4b43c5e37796cbaf95c24c7de8d8d52239eeba new file mode 100644 index 000000000..bfbd4ec39 Binary files /dev/null and b/cache/media/6a4b43c5e37796cbaf95c24c7de8d8d52239eeba differ diff --git a/cache/media/6a4c4f3562276652106151c6d5aa43e36fe4b77c b/cache/media/6a4c4f3562276652106151c6d5aa43e36fe4b77c new file mode 100644 index 000000000..e3b841d2a Binary files /dev/null and b/cache/media/6a4c4f3562276652106151c6d5aa43e36fe4b77c differ diff --git a/cache/media/6c1203582a7aadbd6c1cc5cf17156e6b2d358e74 b/cache/media/6c1203582a7aadbd6c1cc5cf17156e6b2d358e74 new file mode 100644 index 000000000..a4cf649f1 Binary files /dev/null and b/cache/media/6c1203582a7aadbd6c1cc5cf17156e6b2d358e74 differ diff --git a/cache/media/6c8b42f0e8e16e3698645d1ac51411b90930b323 b/cache/media/6c8b42f0e8e16e3698645d1ac51411b90930b323 new file mode 100644 index 000000000..c9a58531d Binary files /dev/null and b/cache/media/6c8b42f0e8e16e3698645d1ac51411b90930b323 differ diff --git a/cache/media/6cbd12234af835ba2c01b1ce24eb99e40e6c88e8 b/cache/media/6cbd12234af835ba2c01b1ce24eb99e40e6c88e8 new file mode 100644 index 000000000..126204a31 Binary files /dev/null and b/cache/media/6cbd12234af835ba2c01b1ce24eb99e40e6c88e8 differ diff --git a/cache/media/6cbf5ede3d8ba4459f9cb87ef50e0e7076bb87af b/cache/media/6cbf5ede3d8ba4459f9cb87ef50e0e7076bb87af new file mode 100644 index 000000000..a331f6a88 Binary files /dev/null and b/cache/media/6cbf5ede3d8ba4459f9cb87ef50e0e7076bb87af differ diff --git a/cache/media/6cf2414369251c162014b416645e27861956f944 b/cache/media/6cf2414369251c162014b416645e27861956f944 new file mode 100644 index 000000000..933b9cad5 Binary files /dev/null and b/cache/media/6cf2414369251c162014b416645e27861956f944 differ diff --git a/cache/media/6d23053d1a24450a1bbde8561a4d231520ea843d b/cache/media/6d23053d1a24450a1bbde8561a4d231520ea843d new file mode 100644 index 000000000..c848bfcda Binary files /dev/null and b/cache/media/6d23053d1a24450a1bbde8561a4d231520ea843d differ diff --git a/cache/media/6dc2d7e4e97c9c8afc761bc9c0e65ed9277b86f0 b/cache/media/6dc2d7e4e97c9c8afc761bc9c0e65ed9277b86f0 new file mode 100644 index 000000000..baf092d37 Binary files /dev/null and b/cache/media/6dc2d7e4e97c9c8afc761bc9c0e65ed9277b86f0 differ diff --git a/cache/media/6de457d9ecde2f1d44a5cfbc794143d45f092950 b/cache/media/6de457d9ecde2f1d44a5cfbc794143d45f092950 new file mode 100644 index 000000000..d2e7ac8c0 Binary files /dev/null and b/cache/media/6de457d9ecde2f1d44a5cfbc794143d45f092950 differ diff --git a/cache/media/6e77bfe7de43755113b6ad65bba10dfe0818ed03 b/cache/media/6e77bfe7de43755113b6ad65bba10dfe0818ed03 new file mode 100644 index 000000000..763f5e140 Binary files /dev/null and b/cache/media/6e77bfe7de43755113b6ad65bba10dfe0818ed03 differ diff --git a/cache/media/6e9fdd1be0d43cf1daba75cdf32dbc167f52c01e b/cache/media/6e9fdd1be0d43cf1daba75cdf32dbc167f52c01e new file mode 100644 index 000000000..9b78be630 Binary files /dev/null and b/cache/media/6e9fdd1be0d43cf1daba75cdf32dbc167f52c01e differ diff --git a/cache/media/6eaf11b7d4e8c4bbe75dfededf9936b34740d44d b/cache/media/6eaf11b7d4e8c4bbe75dfededf9936b34740d44d new file mode 100644 index 000000000..66ec3574a Binary files /dev/null and b/cache/media/6eaf11b7d4e8c4bbe75dfededf9936b34740d44d differ diff --git a/cache/media/6ee278f19f9d2a35ffa9baf4189e28f28bceec86 b/cache/media/6ee278f19f9d2a35ffa9baf4189e28f28bceec86 new file mode 100644 index 000000000..ffff3eece Binary files /dev/null and b/cache/media/6ee278f19f9d2a35ffa9baf4189e28f28bceec86 differ diff --git a/cache/media/6f53924276fabee61aedcb39af59c55bbb9d1c56 b/cache/media/6f53924276fabee61aedcb39af59c55bbb9d1c56 new file mode 100644 index 000000000..7066f7dd9 Binary files /dev/null and b/cache/media/6f53924276fabee61aedcb39af59c55bbb9d1c56 differ diff --git a/cache/media/6fa101aad8b0828ece520af63ea5b3d2f7e0a32a b/cache/media/6fa101aad8b0828ece520af63ea5b3d2f7e0a32a new file mode 100644 index 000000000..8f23924ed Binary files /dev/null and b/cache/media/6fa101aad8b0828ece520af63ea5b3d2f7e0a32a differ diff --git a/cache/media/6fa4f3f4a415a7442690c2b344f183efa9295667 b/cache/media/6fa4f3f4a415a7442690c2b344f183efa9295667 new file mode 100644 index 000000000..0bbd13606 Binary files /dev/null and b/cache/media/6fa4f3f4a415a7442690c2b344f183efa9295667 differ diff --git a/cache/media/6fbbcb82d7abcec8b25482b4b989242e870a10c5 b/cache/media/6fbbcb82d7abcec8b25482b4b989242e870a10c5 new file mode 100644 index 000000000..6da801931 Binary files /dev/null and b/cache/media/6fbbcb82d7abcec8b25482b4b989242e870a10c5 differ diff --git a/cache/media/6feb35731144478a450776a442bf0048bd334dc0 b/cache/media/6feb35731144478a450776a442bf0048bd334dc0 new file mode 100644 index 000000000..4b47e2346 Binary files /dev/null and b/cache/media/6feb35731144478a450776a442bf0048bd334dc0 differ diff --git a/cache/media/70c9db67f0994dd94b8ef682b7ad08b3c000a0d2 b/cache/media/70c9db67f0994dd94b8ef682b7ad08b3c000a0d2 new file mode 100644 index 000000000..ba66e0155 Binary files /dev/null and b/cache/media/70c9db67f0994dd94b8ef682b7ad08b3c000a0d2 differ diff --git a/cache/media/70ddbf2f7cd38dedb7727594c906e83a7cc66f3d b/cache/media/70ddbf2f7cd38dedb7727594c906e83a7cc66f3d new file mode 100644 index 000000000..035a8da4d Binary files /dev/null and b/cache/media/70ddbf2f7cd38dedb7727594c906e83a7cc66f3d differ diff --git a/cache/media/71c5bad5717f5d9ecdb5b87166545e59b550f624 b/cache/media/71c5bad5717f5d9ecdb5b87166545e59b550f624 new file mode 100644 index 000000000..10e297b44 Binary files /dev/null and b/cache/media/71c5bad5717f5d9ecdb5b87166545e59b550f624 differ diff --git a/cache/media/720116b66b9784f40e2fcc7ec88c4761ce71e195 b/cache/media/720116b66b9784f40e2fcc7ec88c4761ce71e195 new file mode 100644 index 000000000..d3a62ab15 Binary files /dev/null and b/cache/media/720116b66b9784f40e2fcc7ec88c4761ce71e195 differ diff --git a/cache/media/720ace63d0d3823a6203f0c7a2588c3d5ba6e369 b/cache/media/720ace63d0d3823a6203f0c7a2588c3d5ba6e369 new file mode 100644 index 000000000..718184cc5 Binary files /dev/null and b/cache/media/720ace63d0d3823a6203f0c7a2588c3d5ba6e369 differ diff --git a/cache/media/722120fdc3b052732b069bc65667afd2f6fe0e09 b/cache/media/722120fdc3b052732b069bc65667afd2f6fe0e09 new file mode 100644 index 000000000..471fcd3ab Binary files /dev/null and b/cache/media/722120fdc3b052732b069bc65667afd2f6fe0e09 differ diff --git a/cache/media/72507495b7aa98ed589b2848f89959810f86486a b/cache/media/72507495b7aa98ed589b2848f89959810f86486a new file mode 100644 index 000000000..ae4847cb6 Binary files /dev/null and b/cache/media/72507495b7aa98ed589b2848f89959810f86486a differ diff --git a/cache/media/72a80d7d0b2426b8080cb9e7e9f3a3dd97fa8433 b/cache/media/72a80d7d0b2426b8080cb9e7e9f3a3dd97fa8433 new file mode 100644 index 000000000..74609d99d Binary files /dev/null and b/cache/media/72a80d7d0b2426b8080cb9e7e9f3a3dd97fa8433 differ diff --git a/cache/media/72de5a34807274d580b7d57cfc631f93b447cf2a b/cache/media/72de5a34807274d580b7d57cfc631f93b447cf2a new file mode 100644 index 000000000..a85e80908 Binary files /dev/null and b/cache/media/72de5a34807274d580b7d57cfc631f93b447cf2a differ diff --git a/cache/media/73d2db70c1f35fe7df06e4fc070741ca774cdcec b/cache/media/73d2db70c1f35fe7df06e4fc070741ca774cdcec new file mode 100644 index 000000000..4b2d1af6c Binary files /dev/null and b/cache/media/73d2db70c1f35fe7df06e4fc070741ca774cdcec differ diff --git a/cache/media/73ff6570e7c044d909eb2bdafcc464e3be21b7af b/cache/media/73ff6570e7c044d909eb2bdafcc464e3be21b7af new file mode 100644 index 000000000..02a67b862 Binary files /dev/null and b/cache/media/73ff6570e7c044d909eb2bdafcc464e3be21b7af differ diff --git a/cache/media/742581327ee8898cfd28a64e9788ab7989859bc9 b/cache/media/742581327ee8898cfd28a64e9788ab7989859bc9 new file mode 100644 index 000000000..3e4173bf2 Binary files /dev/null and b/cache/media/742581327ee8898cfd28a64e9788ab7989859bc9 differ diff --git a/cache/media/746674eaaa0235cc389a40e17982aaa723c3d88d b/cache/media/746674eaaa0235cc389a40e17982aaa723c3d88d new file mode 100644 index 000000000..77cfbdaa6 Binary files /dev/null and b/cache/media/746674eaaa0235cc389a40e17982aaa723c3d88d differ diff --git a/cache/media/748a06f80ce9c79bcfb169e3b34c7603b53d341a b/cache/media/748a06f80ce9c79bcfb169e3b34c7603b53d341a new file mode 100644 index 000000000..39dd7f4cd Binary files /dev/null and b/cache/media/748a06f80ce9c79bcfb169e3b34c7603b53d341a differ diff --git a/cache/media/74c0ef9d96e2424cd447f10f4e9563f4456da3e0 b/cache/media/74c0ef9d96e2424cd447f10f4e9563f4456da3e0 new file mode 100644 index 000000000..f9d082e31 Binary files /dev/null and b/cache/media/74c0ef9d96e2424cd447f10f4e9563f4456da3e0 differ diff --git a/cache/media/7577decfa99643f44872945749d2d3cf9cad073c b/cache/media/7577decfa99643f44872945749d2d3cf9cad073c new file mode 100644 index 000000000..1d3b3de2c Binary files /dev/null and b/cache/media/7577decfa99643f44872945749d2d3cf9cad073c differ diff --git a/cache/media/75c4d52ae57dae29f8d767fb4ae027440c07da38 b/cache/media/75c4d52ae57dae29f8d767fb4ae027440c07da38 new file mode 100644 index 000000000..4d7beb806 Binary files /dev/null and b/cache/media/75c4d52ae57dae29f8d767fb4ae027440c07da38 differ diff --git a/cache/media/75d9049fdead279daf3753f82b1563ff01354eca b/cache/media/75d9049fdead279daf3753f82b1563ff01354eca new file mode 100644 index 000000000..6f870e80c Binary files /dev/null and b/cache/media/75d9049fdead279daf3753f82b1563ff01354eca differ diff --git a/cache/media/75f152a936878c3e8a9efe00cab5e1dbb37522de b/cache/media/75f152a936878c3e8a9efe00cab5e1dbb37522de new file mode 100644 index 000000000..ec11c1c80 Binary files /dev/null and b/cache/media/75f152a936878c3e8a9efe00cab5e1dbb37522de differ diff --git a/cache/media/75f69dd85e16c68f81cbe5ffcc36d623970b90a5 b/cache/media/75f69dd85e16c68f81cbe5ffcc36d623970b90a5 new file mode 100644 index 000000000..3b55c5f66 Binary files /dev/null and b/cache/media/75f69dd85e16c68f81cbe5ffcc36d623970b90a5 differ diff --git a/cache/media/76055eff1d5d025d48c3f1054d9ed3e19ab2bc56 b/cache/media/76055eff1d5d025d48c3f1054d9ed3e19ab2bc56 new file mode 100644 index 000000000..8598cf94c Binary files /dev/null and b/cache/media/76055eff1d5d025d48c3f1054d9ed3e19ab2bc56 differ diff --git a/cache/media/762165a31b3930e0361dd7227d8b86800635b4e0 b/cache/media/762165a31b3930e0361dd7227d8b86800635b4e0 new file mode 100644 index 000000000..e4673a95c Binary files /dev/null and b/cache/media/762165a31b3930e0361dd7227d8b86800635b4e0 differ diff --git a/cache/media/7646a0967979e05fd1aad761d0bc333a6460aa82 b/cache/media/7646a0967979e05fd1aad761d0bc333a6460aa82 new file mode 100644 index 000000000..b665eb82c Binary files /dev/null and b/cache/media/7646a0967979e05fd1aad761d0bc333a6460aa82 differ diff --git a/cache/media/76dc9e1dfef2d6368acfa821b7d16d0f6a6c8678 b/cache/media/76dc9e1dfef2d6368acfa821b7d16d0f6a6c8678 new file mode 100644 index 000000000..466d40a2d Binary files /dev/null and b/cache/media/76dc9e1dfef2d6368acfa821b7d16d0f6a6c8678 differ diff --git a/cache/media/771d86446c7fa19db3ec0946a626e61b3bd645e1 b/cache/media/771d86446c7fa19db3ec0946a626e61b3bd645e1 new file mode 100644 index 000000000..e1c6f76ff Binary files /dev/null and b/cache/media/771d86446c7fa19db3ec0946a626e61b3bd645e1 differ diff --git a/cache/media/775dff138db29b16b2ea4883b7ca8768416ef0db b/cache/media/775dff138db29b16b2ea4883b7ca8768416ef0db new file mode 100644 index 000000000..c2478fefd Binary files /dev/null and b/cache/media/775dff138db29b16b2ea4883b7ca8768416ef0db differ diff --git a/cache/media/77657aebfac6e20846f4f9029615a09177a90ce8 b/cache/media/77657aebfac6e20846f4f9029615a09177a90ce8 new file mode 100644 index 000000000..74d84c869 Binary files /dev/null and b/cache/media/77657aebfac6e20846f4f9029615a09177a90ce8 differ diff --git a/cache/media/7788665f2aea80a528cca228c68460ef076c705c b/cache/media/7788665f2aea80a528cca228c68460ef076c705c new file mode 100644 index 000000000..b574108c8 Binary files /dev/null and b/cache/media/7788665f2aea80a528cca228c68460ef076c705c differ diff --git a/cache/media/77a9edd21aaf78dd5c3914db709536312caa8d8e b/cache/media/77a9edd21aaf78dd5c3914db709536312caa8d8e new file mode 100644 index 000000000..25a78b648 Binary files /dev/null and b/cache/media/77a9edd21aaf78dd5c3914db709536312caa8d8e differ diff --git a/cache/media/7850c8012ccdfd17aeb50599c3145cd59d999b43 b/cache/media/7850c8012ccdfd17aeb50599c3145cd59d999b43 new file mode 100644 index 000000000..42d9f2773 Binary files /dev/null and b/cache/media/7850c8012ccdfd17aeb50599c3145cd59d999b43 differ diff --git a/cache/media/78768b3687d3590a935d8dd0289f9046daea6094 b/cache/media/78768b3687d3590a935d8dd0289f9046daea6094 new file mode 100644 index 000000000..a92d3b9fa Binary files /dev/null and b/cache/media/78768b3687d3590a935d8dd0289f9046daea6094 differ diff --git a/cache/media/78ce3871817bebb42fa5bf360412e0cd18c381c3 b/cache/media/78ce3871817bebb42fa5bf360412e0cd18c381c3 new file mode 100644 index 000000000..876bf7ca9 Binary files /dev/null and b/cache/media/78ce3871817bebb42fa5bf360412e0cd18c381c3 differ diff --git a/cache/media/78ed4cf938161f0e41c426641cd8f373d4941ef4 b/cache/media/78ed4cf938161f0e41c426641cd8f373d4941ef4 new file mode 100644 index 000000000..73f46c786 Binary files /dev/null and b/cache/media/78ed4cf938161f0e41c426641cd8f373d4941ef4 differ diff --git a/cache/media/795a1b0dd9177944a1f07dcafe74426c87f4b8f8 b/cache/media/795a1b0dd9177944a1f07dcafe74426c87f4b8f8 new file mode 100644 index 000000000..fe75775ef Binary files /dev/null and b/cache/media/795a1b0dd9177944a1f07dcafe74426c87f4b8f8 differ diff --git a/cache/media/79e3496b579c093148838cc24e98d9eb4bf26844 b/cache/media/79e3496b579c093148838cc24e98d9eb4bf26844 new file mode 100644 index 000000000..046d8cda0 Binary files /dev/null and b/cache/media/79e3496b579c093148838cc24e98d9eb4bf26844 differ diff --git a/cache/media/7a080214406671e34ae3cb4b28cec1074e1cdf48 b/cache/media/7a080214406671e34ae3cb4b28cec1074e1cdf48 new file mode 100644 index 000000000..17b0c4933 Binary files /dev/null and b/cache/media/7a080214406671e34ae3cb4b28cec1074e1cdf48 differ diff --git a/cache/media/7a094182c13380e618fc843fcc74c3f8f3d558ea b/cache/media/7a094182c13380e618fc843fcc74c3f8f3d558ea new file mode 100644 index 000000000..4534fbaf5 Binary files /dev/null and b/cache/media/7a094182c13380e618fc843fcc74c3f8f3d558ea differ diff --git a/cache/media/7b22e69fc3addce24f5a5e89b011453afb9494d7 b/cache/media/7b22e69fc3addce24f5a5e89b011453afb9494d7 new file mode 100644 index 000000000..ad51c03a8 Binary files /dev/null and b/cache/media/7b22e69fc3addce24f5a5e89b011453afb9494d7 differ diff --git a/cache/media/7b517fe44e671f84ffd2e069c3c0ddbee243e512 b/cache/media/7b517fe44e671f84ffd2e069c3c0ddbee243e512 new file mode 100644 index 000000000..8c1798e40 Binary files /dev/null and b/cache/media/7b517fe44e671f84ffd2e069c3c0ddbee243e512 differ diff --git a/cache/media/7b9c4723ebad582c922ea43f208ddbcca75101aa b/cache/media/7b9c4723ebad582c922ea43f208ddbcca75101aa new file mode 100644 index 000000000..7e7f9ff16 Binary files /dev/null and b/cache/media/7b9c4723ebad582c922ea43f208ddbcca75101aa differ diff --git a/cache/media/7c8ceeb69c6d2405dcfd8b5e1ff2077d3402d89a b/cache/media/7c8ceeb69c6d2405dcfd8b5e1ff2077d3402d89a new file mode 100644 index 000000000..33ffcd474 Binary files /dev/null and b/cache/media/7c8ceeb69c6d2405dcfd8b5e1ff2077d3402d89a differ diff --git a/cache/media/7c9ab58a3ae9b77e2646f2097705f514e303132e b/cache/media/7c9ab58a3ae9b77e2646f2097705f514e303132e new file mode 100644 index 000000000..d123aff3e Binary files /dev/null and b/cache/media/7c9ab58a3ae9b77e2646f2097705f514e303132e differ diff --git a/cache/media/7cafc28f07e86405c6ae7c110189a4a84698e231 b/cache/media/7cafc28f07e86405c6ae7c110189a4a84698e231 new file mode 100644 index 000000000..c84df62c1 Binary files /dev/null and b/cache/media/7cafc28f07e86405c6ae7c110189a4a84698e231 differ diff --git a/cache/media/7dc3d161ff4ab2ab98be9b4040ad72dfdcd2392c b/cache/media/7dc3d161ff4ab2ab98be9b4040ad72dfdcd2392c new file mode 100644 index 000000000..dbf043f61 Binary files /dev/null and b/cache/media/7dc3d161ff4ab2ab98be9b4040ad72dfdcd2392c differ diff --git a/cache/media/7e36bf8dc1b2854c1f89969b8c2d62b9f8cea349 b/cache/media/7e36bf8dc1b2854c1f89969b8c2d62b9f8cea349 new file mode 100644 index 000000000..94c2a47ad Binary files /dev/null and b/cache/media/7e36bf8dc1b2854c1f89969b8c2d62b9f8cea349 differ diff --git a/cache/media/7e8b849d309a28bca8bc74878282c909b9c3f0a0 b/cache/media/7e8b849d309a28bca8bc74878282c909b9c3f0a0 new file mode 100644 index 000000000..1707c2e23 Binary files /dev/null and b/cache/media/7e8b849d309a28bca8bc74878282c909b9c3f0a0 differ diff --git a/cache/media/7f42815fc5149352cb26c65d208b71b5b211070e b/cache/media/7f42815fc5149352cb26c65d208b71b5b211070e new file mode 100644 index 000000000..eb8a8e6c4 Binary files /dev/null and b/cache/media/7f42815fc5149352cb26c65d208b71b5b211070e differ diff --git a/cache/media/7fda3878318a941079464bb6ecb118fd7b5e05bb b/cache/media/7fda3878318a941079464bb6ecb118fd7b5e05bb new file mode 100644 index 000000000..da2f3e0c0 Binary files /dev/null and b/cache/media/7fda3878318a941079464bb6ecb118fd7b5e05bb differ diff --git a/cache/media/803bb89028a07749fb0f49cefaf0f518484ca43f b/cache/media/803bb89028a07749fb0f49cefaf0f518484ca43f new file mode 100644 index 000000000..3c09ef0c6 Binary files /dev/null and b/cache/media/803bb89028a07749fb0f49cefaf0f518484ca43f differ diff --git a/cache/media/80613c8ab67deeca5b1ed8909f9f754ad02de509 b/cache/media/80613c8ab67deeca5b1ed8909f9f754ad02de509 new file mode 100644 index 000000000..0c26eb347 Binary files /dev/null and b/cache/media/80613c8ab67deeca5b1ed8909f9f754ad02de509 differ diff --git a/cache/media/8165aee88f7c2c15c7b012710aef8e6eb3e9ac52 b/cache/media/8165aee88f7c2c15c7b012710aef8e6eb3e9ac52 new file mode 100644 index 000000000..ea7a1d7c5 Binary files /dev/null and b/cache/media/8165aee88f7c2c15c7b012710aef8e6eb3e9ac52 differ diff --git a/cache/media/816e06fd05ca2d1c5d23313f0c2a6fb597af95eb b/cache/media/816e06fd05ca2d1c5d23313f0c2a6fb597af95eb new file mode 100644 index 000000000..c259726d6 Binary files /dev/null and b/cache/media/816e06fd05ca2d1c5d23313f0c2a6fb597af95eb differ diff --git a/cache/media/81aa5b149f45132db9231478aa84e048bc02deec b/cache/media/81aa5b149f45132db9231478aa84e048bc02deec new file mode 100644 index 000000000..c30131d8f Binary files /dev/null and b/cache/media/81aa5b149f45132db9231478aa84e048bc02deec differ diff --git a/cache/media/81e9772f64be9f1358d3f6cd7fada50377bbd28f b/cache/media/81e9772f64be9f1358d3f6cd7fada50377bbd28f new file mode 100644 index 000000000..d315849e0 Binary files /dev/null and b/cache/media/81e9772f64be9f1358d3f6cd7fada50377bbd28f differ diff --git a/cache/media/820903fbc8038d6527bb4d14ce539a9743e4e7c3 b/cache/media/820903fbc8038d6527bb4d14ce539a9743e4e7c3 new file mode 100644 index 000000000..e3510c52a Binary files /dev/null and b/cache/media/820903fbc8038d6527bb4d14ce539a9743e4e7c3 differ diff --git a/cache/media/8244eccc96eaf8e8fa99413a3d94baff7878e8f7 b/cache/media/8244eccc96eaf8e8fa99413a3d94baff7878e8f7 new file mode 100644 index 000000000..070b69e48 Binary files /dev/null and b/cache/media/8244eccc96eaf8e8fa99413a3d94baff7878e8f7 differ diff --git a/cache/media/8249a4097c8259c542c58cd6b1847a4511e5fd12 b/cache/media/8249a4097c8259c542c58cd6b1847a4511e5fd12 new file mode 100644 index 000000000..efc61a0d1 Binary files /dev/null and b/cache/media/8249a4097c8259c542c58cd6b1847a4511e5fd12 differ diff --git a/cache/media/827a151f1c42ce2b4c7023a48b1e87f0ffb776fb b/cache/media/827a151f1c42ce2b4c7023a48b1e87f0ffb776fb new file mode 100644 index 000000000..1bc02fb51 Binary files /dev/null and b/cache/media/827a151f1c42ce2b4c7023a48b1e87f0ffb776fb differ diff --git a/cache/media/831c919055043036137949eba59c29a1e2181b39 b/cache/media/831c919055043036137949eba59c29a1e2181b39 new file mode 100644 index 000000000..facc83e18 Binary files /dev/null and b/cache/media/831c919055043036137949eba59c29a1e2181b39 differ diff --git a/cache/media/838b09cc844e42bcd48a3ae78251a5d2a26f9c69 b/cache/media/838b09cc844e42bcd48a3ae78251a5d2a26f9c69 new file mode 100644 index 000000000..916c84eef Binary files /dev/null and b/cache/media/838b09cc844e42bcd48a3ae78251a5d2a26f9c69 differ diff --git a/cache/media/83fb36d6adf403f62aa4b676371b653d9c031527 b/cache/media/83fb36d6adf403f62aa4b676371b653d9c031527 new file mode 100644 index 000000000..e65d766ee Binary files /dev/null and b/cache/media/83fb36d6adf403f62aa4b676371b653d9c031527 differ diff --git a/cache/media/84535e39317d008444c655e0566053144714e950 b/cache/media/84535e39317d008444c655e0566053144714e950 new file mode 100644 index 000000000..ecdba9a39 Binary files /dev/null and b/cache/media/84535e39317d008444c655e0566053144714e950 differ diff --git a/cache/media/84896f314241df6e099c4c4c9619ef6943ed4a01 b/cache/media/84896f314241df6e099c4c4c9619ef6943ed4a01 new file mode 100644 index 000000000..1a493acbd Binary files /dev/null and b/cache/media/84896f314241df6e099c4c4c9619ef6943ed4a01 differ diff --git a/cache/media/851b6ab69a1fda34638ff8694bef6650781e91f5 b/cache/media/851b6ab69a1fda34638ff8694bef6650781e91f5 new file mode 100644 index 000000000..8995834f7 Binary files /dev/null and b/cache/media/851b6ab69a1fda34638ff8694bef6650781e91f5 differ diff --git a/cache/media/861b7cd54754d78236b61f23bf22a0bb252e1cc4 b/cache/media/861b7cd54754d78236b61f23bf22a0bb252e1cc4 new file mode 100644 index 000000000..cdca575bf Binary files /dev/null and b/cache/media/861b7cd54754d78236b61f23bf22a0bb252e1cc4 differ diff --git a/cache/media/862d928da4ff6a340bb2efe2a3d2e292ad2e5085 b/cache/media/862d928da4ff6a340bb2efe2a3d2e292ad2e5085 new file mode 100644 index 000000000..cd625f46c Binary files /dev/null and b/cache/media/862d928da4ff6a340bb2efe2a3d2e292ad2e5085 differ diff --git a/cache/media/86e124cf622f35dffe6163f52e6060149db16445 b/cache/media/86e124cf622f35dffe6163f52e6060149db16445 new file mode 100644 index 000000000..17e2eb8ca Binary files /dev/null and b/cache/media/86e124cf622f35dffe6163f52e6060149db16445 differ diff --git a/cache/media/87039859f9b95ee36f372d8169bcd26804116629 b/cache/media/87039859f9b95ee36f372d8169bcd26804116629 new file mode 100644 index 000000000..67dd9330c Binary files /dev/null and b/cache/media/87039859f9b95ee36f372d8169bcd26804116629 differ diff --git a/cache/media/871278bc54cbf29e0cb7de5ac98646579674b19f b/cache/media/871278bc54cbf29e0cb7de5ac98646579674b19f new file mode 100644 index 000000000..e32a0bf2b Binary files /dev/null and b/cache/media/871278bc54cbf29e0cb7de5ac98646579674b19f differ diff --git a/cache/media/872d8c3d7d4bc813622a0d3c47aef1ceb158dfaf b/cache/media/872d8c3d7d4bc813622a0d3c47aef1ceb158dfaf new file mode 100644 index 000000000..a05e4c5dd Binary files /dev/null and b/cache/media/872d8c3d7d4bc813622a0d3c47aef1ceb158dfaf differ diff --git a/cache/media/87c1cfe648b152af2eb9031c7e6aa691da6a820e b/cache/media/87c1cfe648b152af2eb9031c7e6aa691da6a820e new file mode 100644 index 000000000..3fb727f40 --- /dev/null +++ b/cache/media/87c1cfe648b152af2eb9031c7e6aa691da6a820e @@ -0,0 +1,112 @@ +# Blender v2.76 (sub 0) OBJ File: 'gate_open.blend' +# www.blender.org +mtllib gate_open.mtl +o Cube_Cube.001 +v -0.625000 -0.500000 0.125000 +v -0.625000 0.500100 0.125000 +v -0.625000 -0.500000 -0.125000 +v -0.625000 0.500100 -0.125000 +v -0.375000 -0.500000 0.125000 +v -0.375000 0.500100 0.125000 +v -0.375000 -0.500000 -0.125000 +v -0.375000 0.500100 -0.125000 +v 0.375000 -0.500000 0.125000 +v 0.375000 0.500100 0.125000 +v 0.375000 -0.500000 -0.125000 +v 0.375000 0.500100 -0.125000 +v 0.625000 -0.500000 0.125000 +v 0.625000 0.500100 0.125000 +v 0.625000 -0.500000 -0.125000 +v 0.625000 0.500100 -0.125000 +v 0.434859 0.187500 -0.872359 +v 0.434859 0.312500 -0.872359 +v 0.559859 0.187500 -0.872359 +v 0.559859 0.312500 -0.872359 +v 0.434859 0.187500 -0.122359 +v 0.434859 0.312500 -0.122359 +v 0.559859 0.187500 -0.122359 +v 0.559859 0.312500 -0.122359 +v 0.434859 0.187348 -0.872190 +v 0.434859 0.187363 -0.653701 +v 0.559859 0.187348 -0.872190 +v 0.559859 0.187363 -0.653701 +v 0.434859 -0.343683 -0.122379 +v 0.434859 -0.187304 -0.122294 +v 0.559859 -0.343683 -0.122379 +v 0.559859 -0.187304 -0.122294 +v 0.499560 -0.442900 0.005495 +vt 0.000000 0.750000 +vt 0.000000 0.500000 +vt 1.000000 0.500000 +vt 1.000000 0.750000 +vt 1.000000 1.000000 +vt -0.000000 1.000000 +vt 1.000000 -0.000000 +vt 1.000000 0.250000 +vt 0.000000 0.250000 +vt -0.000000 0.000000 +vt 0.250000 0.000000 +vt 0.250000 0.250000 +vt 0.250000 0.750000 +vt 0.250000 1.000000 +vt 0.500000 -0.000000 +vt 0.500000 0.250000 +vt 0.500000 0.750000 +vt 0.500000 1.000000 +vt 1.000000 0.625000 +vt 0.000000 0.625000 +vt 1.000000 0.875000 +vt 0.000000 0.875000 +vt -0.000000 0.687500 +vt 0.000000 0.562500 +vt 1.000000 0.562500 +vt 1.000000 0.687500 +vt 0.813740 0.249033 +vt 0.201557 0.249293 +vt 0.120995 0.125498 +vt 0.987404 0.125469 +vt 0.125000 0.375000 +vt 0.812500 0.375000 +vt 0.937500 0.500000 +vt 0.062500 0.500000 +vt 0.000000 0.125000 +vt 1.000000 0.125000 +vt 0.312500 0.437500 +vt 0.312500 0.312500 +vt 1.000000 0.312500 +vt 1.000000 0.437500 +vt 0.312500 0.625000 +vt 0.312500 0.500000 +vt 0.187500 0.500000 +vt 0.187500 0.625000 +vn -1.000000 0.000000 0.000000 +vn 0.000000 0.000000 -1.000000 +vn 1.000000 0.000000 0.000000 +vn 0.000000 0.000000 1.000000 +vn 0.000000 -1.000000 0.000000 +vn 0.000000 1.000000 0.000000 +vn 0.000000 -0.816100 -0.578000 +vn 0.000000 0.817300 0.576200 +usemtl None +s off +f 2/1/1 4/2/1 3/3/1 1/4/1 +f 4/4/2 8/5/2 7/6/2 3/1/2 +f 8/7/3 6/8/3 5/9/3 7/10/3 +f 6/2/4 2/9/4 1/8/4 5/3/4 +f 1/9/5 3/10/5 7/11/5 5/12/5 +f 6/6/6 8/1/6 4/13/6 2/14/6 +f 10/1/1 12/2/1 11/3/1 9/4/1 +f 12/2/2 16/9/2 15/8/2 11/3/2 +f 16/7/3 14/8/3 13/9/3 15/10/3 +f 14/4/4 10/5/4 9/6/4 13/1/4 +f 9/12/5 11/11/5 15/15/5 13/16/5 +f 14/14/6 16/13/6 12/17/6 10/18/6 +f 20/2/3 24/3/3 23/19/3 19/20/3 +f 22/1/1 18/4/1 17/21/1 21/22/1 +f 17/23/5 19/24/5 23/25/5 21/26/5 +f 22/21/6 24/5/6 20/6/6 18/22/6 +f 28/27/3 32/28/3 31/29/3 27/30/3 +f 30/31/1 26/32/1 25/33/1 29/34/1 +f 25/35/7 27/10/7 31/7/7 29/36/7 +f 30/37/8 32/38/8 28/39/8 26/40/8 +f 17/41/2 18/42/2 20/43/2 19/44/2 diff --git a/cache/media/87d5d3526154754dfcee4cc9333b601f4874964b b/cache/media/87d5d3526154754dfcee4cc9333b601f4874964b new file mode 100644 index 000000000..1cdd9fdba Binary files /dev/null and b/cache/media/87d5d3526154754dfcee4cc9333b601f4874964b differ diff --git a/cache/media/8828ac00a43f12040f0dc165186e02f00a7770e4 b/cache/media/8828ac00a43f12040f0dc165186e02f00a7770e4 new file mode 100644 index 000000000..840d1b163 Binary files /dev/null and b/cache/media/8828ac00a43f12040f0dc165186e02f00a7770e4 differ diff --git a/cache/media/8911042a1a9f46c5f3f6dad5495db06acffb93f1 b/cache/media/8911042a1a9f46c5f3f6dad5495db06acffb93f1 new file mode 100644 index 000000000..d61ab25d3 Binary files /dev/null and b/cache/media/8911042a1a9f46c5f3f6dad5495db06acffb93f1 differ diff --git a/cache/media/8958ab1509ea95e2021601161fdbc5039f25970d b/cache/media/8958ab1509ea95e2021601161fdbc5039f25970d new file mode 100644 index 000000000..57f35f30a Binary files /dev/null and b/cache/media/8958ab1509ea95e2021601161fdbc5039f25970d differ diff --git a/cache/media/89869888f7edac68a35a92722dc77006470c4cf2 b/cache/media/89869888f7edac68a35a92722dc77006470c4cf2 new file mode 100644 index 000000000..33408cfe5 Binary files /dev/null and b/cache/media/89869888f7edac68a35a92722dc77006470c4cf2 differ diff --git a/cache/media/899f45d02a019c787af4de7d7dcc8c6508aea3a7 b/cache/media/899f45d02a019c787af4de7d7dcc8c6508aea3a7 new file mode 100644 index 000000000..ce87f6a1f Binary files /dev/null and b/cache/media/899f45d02a019c787af4de7d7dcc8c6508aea3a7 differ diff --git a/cache/media/89cbe37ad13c05b0cb3573853e899dae0a47421b b/cache/media/89cbe37ad13c05b0cb3573853e899dae0a47421b new file mode 100644 index 000000000..11711bd23 Binary files /dev/null and b/cache/media/89cbe37ad13c05b0cb3573853e899dae0a47421b differ diff --git a/cache/media/89f1b3d574ab28f2f44228d3d720f0d31e743103 b/cache/media/89f1b3d574ab28f2f44228d3d720f0d31e743103 new file mode 100644 index 000000000..ea14a372a Binary files /dev/null and b/cache/media/89f1b3d574ab28f2f44228d3d720f0d31e743103 differ diff --git a/cache/media/89f42415fefdfaa70c993b69e0073e80d5de3867 b/cache/media/89f42415fefdfaa70c993b69e0073e80d5de3867 new file mode 100644 index 000000000..15092c108 Binary files /dev/null and b/cache/media/89f42415fefdfaa70c993b69e0073e80d5de3867 differ diff --git a/cache/media/8a64a5a0ff5887a00e2ff04361aac83743f639fd b/cache/media/8a64a5a0ff5887a00e2ff04361aac83743f639fd new file mode 100644 index 000000000..a287152cf Binary files /dev/null and b/cache/media/8a64a5a0ff5887a00e2ff04361aac83743f639fd differ diff --git a/cache/media/8ab93d2af7868ee11c3fdc3867787bb73100e9c0 b/cache/media/8ab93d2af7868ee11c3fdc3867787bb73100e9c0 new file mode 100644 index 000000000..8656a7ceb Binary files /dev/null and b/cache/media/8ab93d2af7868ee11c3fdc3867787bb73100e9c0 differ diff --git a/cache/media/8b0a70630a3ca924a4a5bd723945037dab1d3b9c b/cache/media/8b0a70630a3ca924a4a5bd723945037dab1d3b9c new file mode 100644 index 000000000..2a2439fb9 Binary files /dev/null and b/cache/media/8b0a70630a3ca924a4a5bd723945037dab1d3b9c differ diff --git a/cache/media/8b31c79979a43b4603292720ffe27ed1fc8e3e66 b/cache/media/8b31c79979a43b4603292720ffe27ed1fc8e3e66 new file mode 100644 index 000000000..3e385ae8b Binary files /dev/null and b/cache/media/8b31c79979a43b4603292720ffe27ed1fc8e3e66 differ diff --git a/cache/media/8b6c36f0be3de32fe7aafe073873d9e23765d107 b/cache/media/8b6c36f0be3de32fe7aafe073873d9e23765d107 new file mode 100644 index 000000000..c3c2c4a1c Binary files /dev/null and b/cache/media/8b6c36f0be3de32fe7aafe073873d9e23765d107 differ diff --git a/cache/media/8c0890f24a238d5ebdcf1eb4db2c1b8615b4f57e b/cache/media/8c0890f24a238d5ebdcf1eb4db2c1b8615b4f57e new file mode 100644 index 000000000..cc360545b Binary files /dev/null and b/cache/media/8c0890f24a238d5ebdcf1eb4db2c1b8615b4f57e differ diff --git a/cache/media/8d06df93d647343d959c60ee0b53002aeffd02b6 b/cache/media/8d06df93d647343d959c60ee0b53002aeffd02b6 new file mode 100644 index 000000000..626e1b306 Binary files /dev/null and b/cache/media/8d06df93d647343d959c60ee0b53002aeffd02b6 differ diff --git a/cache/media/8d61747cefed26de873b80cbf76d1d07f9d608a5 b/cache/media/8d61747cefed26de873b80cbf76d1d07f9d608a5 new file mode 100644 index 000000000..a8dac747d Binary files /dev/null and b/cache/media/8d61747cefed26de873b80cbf76d1d07f9d608a5 differ diff --git a/cache/media/8e1ff0ac1a7bd05dc84b5689052441126a301359 b/cache/media/8e1ff0ac1a7bd05dc84b5689052441126a301359 new file mode 100644 index 000000000..f162e5176 Binary files /dev/null and b/cache/media/8e1ff0ac1a7bd05dc84b5689052441126a301359 differ diff --git a/cache/media/8e2920d6e14817c7d53ba730b6d98569f2bc2c0c b/cache/media/8e2920d6e14817c7d53ba730b6d98569f2bc2c0c new file mode 100644 index 000000000..42506ddff Binary files /dev/null and b/cache/media/8e2920d6e14817c7d53ba730b6d98569f2bc2c0c differ diff --git a/cache/media/8e2cb73885c01acc86f019ef332afc96686aea0e b/cache/media/8e2cb73885c01acc86f019ef332afc96686aea0e new file mode 100644 index 000000000..016cb3523 Binary files /dev/null and b/cache/media/8e2cb73885c01acc86f019ef332afc96686aea0e differ diff --git a/cache/media/8e8e600cca847b4a5d61d4987dcc2ce4dbd33843 b/cache/media/8e8e600cca847b4a5d61d4987dcc2ce4dbd33843 new file mode 100644 index 000000000..6e70f4a21 Binary files /dev/null and b/cache/media/8e8e600cca847b4a5d61d4987dcc2ce4dbd33843 differ diff --git a/cache/media/8ee2a7a03b463c08650433f927ad7f32455ca828 b/cache/media/8ee2a7a03b463c08650433f927ad7f32455ca828 new file mode 100644 index 000000000..7c6c48887 Binary files /dev/null and b/cache/media/8ee2a7a03b463c08650433f927ad7f32455ca828 differ diff --git a/cache/media/8ef96e5b8482f8ef069180d6a90ed6171438e016 b/cache/media/8ef96e5b8482f8ef069180d6a90ed6171438e016 new file mode 100644 index 000000000..f8ee8e822 Binary files /dev/null and b/cache/media/8ef96e5b8482f8ef069180d6a90ed6171438e016 differ diff --git a/cache/media/8f52c11d760a22b99c1a4b34fa053741f7364935 b/cache/media/8f52c11d760a22b99c1a4b34fa053741f7364935 new file mode 100644 index 000000000..aa9d57cf1 Binary files /dev/null and b/cache/media/8f52c11d760a22b99c1a4b34fa053741f7364935 differ diff --git a/cache/media/8f990e53a0beda220fc1612540995e19275ebcb7 b/cache/media/8f990e53a0beda220fc1612540995e19275ebcb7 new file mode 100644 index 000000000..b227a2549 Binary files /dev/null and b/cache/media/8f990e53a0beda220fc1612540995e19275ebcb7 differ diff --git a/cache/media/908958a2637864cc6c9ca0c01a83e7df15643c9f b/cache/media/908958a2637864cc6c9ca0c01a83e7df15643c9f new file mode 100644 index 000000000..8d17917b8 Binary files /dev/null and b/cache/media/908958a2637864cc6c9ca0c01a83e7df15643c9f differ diff --git a/cache/media/90d1b803e650a66eda68b7e5d9d1c1143fb95d87 b/cache/media/90d1b803e650a66eda68b7e5d9d1c1143fb95d87 new file mode 100644 index 000000000..d207dff9e Binary files /dev/null and b/cache/media/90d1b803e650a66eda68b7e5d9d1c1143fb95d87 differ diff --git a/cache/media/90f5fa2fac7a4397978b319ada08674996cdfe48 b/cache/media/90f5fa2fac7a4397978b319ada08674996cdfe48 new file mode 100644 index 000000000..fc0d4905f Binary files /dev/null and b/cache/media/90f5fa2fac7a4397978b319ada08674996cdfe48 differ diff --git a/cache/media/919d7bcc66fd94eb7b84436db6b5263df72803de b/cache/media/919d7bcc66fd94eb7b84436db6b5263df72803de new file mode 100644 index 000000000..33a273a2d Binary files /dev/null and b/cache/media/919d7bcc66fd94eb7b84436db6b5263df72803de differ diff --git a/cache/media/91ec19c7b6ef0de1304e76ae25869d37c40a23f9 b/cache/media/91ec19c7b6ef0de1304e76ae25869d37c40a23f9 new file mode 100644 index 000000000..c04975d42 Binary files /dev/null and b/cache/media/91ec19c7b6ef0de1304e76ae25869d37c40a23f9 differ diff --git a/cache/media/92b45e859173945e61855056070a5bf1b54e3699 b/cache/media/92b45e859173945e61855056070a5bf1b54e3699 new file mode 100644 index 000000000..b1085af25 Binary files /dev/null and b/cache/media/92b45e859173945e61855056070a5bf1b54e3699 differ diff --git a/cache/media/92b7e54044bdd2fa3e7c60deb80be4979872c918 b/cache/media/92b7e54044bdd2fa3e7c60deb80be4979872c918 new file mode 100644 index 000000000..ecf4bf2d9 Binary files /dev/null and b/cache/media/92b7e54044bdd2fa3e7c60deb80be4979872c918 differ diff --git a/cache/media/92c122a1d81d04cbd27dab11d1b50b4aef36111c b/cache/media/92c122a1d81d04cbd27dab11d1b50b4aef36111c new file mode 100644 index 000000000..6afa61f89 Binary files /dev/null and b/cache/media/92c122a1d81d04cbd27dab11d1b50b4aef36111c differ diff --git a/cache/media/92ef55cb73c39011e708bf3e71080b3f39a58302 b/cache/media/92ef55cb73c39011e708bf3e71080b3f39a58302 new file mode 100644 index 000000000..0ffa8fc2c Binary files /dev/null and b/cache/media/92ef55cb73c39011e708bf3e71080b3f39a58302 differ diff --git a/cache/media/93e918f93a8ff548530f30a3f2cc6d093353f9ec b/cache/media/93e918f93a8ff548530f30a3f2cc6d093353f9ec new file mode 100644 index 000000000..8349033d6 Binary files /dev/null and b/cache/media/93e918f93a8ff548530f30a3f2cc6d093353f9ec differ diff --git a/cache/media/93ea75043ef78cc1eec6cbdaa1cd2e57007f169d b/cache/media/93ea75043ef78cc1eec6cbdaa1cd2e57007f169d new file mode 100644 index 000000000..6678b1634 Binary files /dev/null and b/cache/media/93ea75043ef78cc1eec6cbdaa1cd2e57007f169d differ diff --git a/cache/media/946f47d92128a74f8771ea50c5711cf97861497c b/cache/media/946f47d92128a74f8771ea50c5711cf97861497c new file mode 100644 index 000000000..66993a1e8 Binary files /dev/null and b/cache/media/946f47d92128a74f8771ea50c5711cf97861497c differ diff --git a/cache/media/94c9291a29a14a6a7817b10ba2e90bc9c42a57b2 b/cache/media/94c9291a29a14a6a7817b10ba2e90bc9c42a57b2 new file mode 100644 index 000000000..db61a94c7 Binary files /dev/null and b/cache/media/94c9291a29a14a6a7817b10ba2e90bc9c42a57b2 differ diff --git a/cache/media/94e49b7c0bca3b14c715506235428da864afe212 b/cache/media/94e49b7c0bca3b14c715506235428da864afe212 new file mode 100644 index 000000000..b15df062b Binary files /dev/null and b/cache/media/94e49b7c0bca3b14c715506235428da864afe212 differ diff --git a/cache/media/950018995f5204cb07740e60795a2eac5b8f6b89 b/cache/media/950018995f5204cb07740e60795a2eac5b8f6b89 new file mode 100644 index 000000000..0a0ca6292 Binary files /dev/null and b/cache/media/950018995f5204cb07740e60795a2eac5b8f6b89 differ diff --git a/cache/media/95062859c81b24786a119170db448318dc457ba0 b/cache/media/95062859c81b24786a119170db448318dc457ba0 new file mode 100644 index 000000000..28a500bf5 Binary files /dev/null and b/cache/media/95062859c81b24786a119170db448318dc457ba0 differ diff --git a/cache/media/950a3c4f997cd70577b73f63271b31d8e4a7655f b/cache/media/950a3c4f997cd70577b73f63271b31d8e4a7655f new file mode 100644 index 000000000..15c61f408 Binary files /dev/null and b/cache/media/950a3c4f997cd70577b73f63271b31d8e4a7655f differ diff --git a/cache/media/95406603fac12a105a740db630c6b0fe81f4c7b8 b/cache/media/95406603fac12a105a740db630c6b0fe81f4c7b8 new file mode 100644 index 000000000..5030e0607 Binary files /dev/null and b/cache/media/95406603fac12a105a740db630c6b0fe81f4c7b8 differ diff --git a/cache/media/9541f86330899b7d56620d54f2f91a908a5456a0 b/cache/media/9541f86330899b7d56620d54f2f91a908a5456a0 new file mode 100644 index 000000000..dfa7c189d Binary files /dev/null and b/cache/media/9541f86330899b7d56620d54f2f91a908a5456a0 differ diff --git a/cache/media/9592e2cc7315982979fdb267c8bd28729feb57ed b/cache/media/9592e2cc7315982979fdb267c8bd28729feb57ed new file mode 100644 index 000000000..6cccdf6e4 Binary files /dev/null and b/cache/media/9592e2cc7315982979fdb267c8bd28729feb57ed differ diff --git a/cache/media/9594be5262cfc50abe4d78ed5c32f86ff012cf8e b/cache/media/9594be5262cfc50abe4d78ed5c32f86ff012cf8e new file mode 100644 index 000000000..1cc6dfde6 Binary files /dev/null and b/cache/media/9594be5262cfc50abe4d78ed5c32f86ff012cf8e differ diff --git a/cache/media/95a63aeec023d0dec3f53b668d49f6076bc22a0b b/cache/media/95a63aeec023d0dec3f53b668d49f6076bc22a0b new file mode 100644 index 000000000..c543466c4 Binary files /dev/null and b/cache/media/95a63aeec023d0dec3f53b668d49f6076bc22a0b differ diff --git a/cache/media/95c34c4a8f9c3a04ba140696eb6b74e4f3d9ed0c b/cache/media/95c34c4a8f9c3a04ba140696eb6b74e4f3d9ed0c new file mode 100644 index 000000000..d6c57c7a0 Binary files /dev/null and b/cache/media/95c34c4a8f9c3a04ba140696eb6b74e4f3d9ed0c differ diff --git a/cache/media/95e055bda4b29be892b24e31fe240b2b929ff755 b/cache/media/95e055bda4b29be892b24e31fe240b2b929ff755 new file mode 100644 index 000000000..91b1631c2 Binary files /dev/null and b/cache/media/95e055bda4b29be892b24e31fe240b2b929ff755 differ diff --git a/cache/media/95f54f5e0d170f1e72a773611b1a905566220f26 b/cache/media/95f54f5e0d170f1e72a773611b1a905566220f26 new file mode 100644 index 000000000..d32665a2d Binary files /dev/null and b/cache/media/95f54f5e0d170f1e72a773611b1a905566220f26 differ diff --git a/cache/media/960c443ed12022963e502c9fbda854eb531a5fd3 b/cache/media/960c443ed12022963e502c9fbda854eb531a5fd3 new file mode 100644 index 000000000..5eab543a4 Binary files /dev/null and b/cache/media/960c443ed12022963e502c9fbda854eb531a5fd3 differ diff --git a/cache/media/96a4f3dce6a8e52edd66dfc1efe5ade64c471d4a b/cache/media/96a4f3dce6a8e52edd66dfc1efe5ade64c471d4a new file mode 100644 index 000000000..8d3c396e7 Binary files /dev/null and b/cache/media/96a4f3dce6a8e52edd66dfc1efe5ade64c471d4a differ diff --git a/cache/media/9733396fc51098cb6dc5fe16c557aec55f999060 b/cache/media/9733396fc51098cb6dc5fe16c557aec55f999060 new file mode 100644 index 000000000..7cb9c89a6 Binary files /dev/null and b/cache/media/9733396fc51098cb6dc5fe16c557aec55f999060 differ diff --git a/cache/media/975a746b9c1fee6a7f1c12312f9881e266bf8821 b/cache/media/975a746b9c1fee6a7f1c12312f9881e266bf8821 new file mode 100644 index 000000000..5ca40ac14 Binary files /dev/null and b/cache/media/975a746b9c1fee6a7f1c12312f9881e266bf8821 differ diff --git a/cache/media/980268a33fc886b36f6615eb85e75d1d4db5dfe3 b/cache/media/980268a33fc886b36f6615eb85e75d1d4db5dfe3 new file mode 100644 index 000000000..44a65a43d Binary files /dev/null and b/cache/media/980268a33fc886b36f6615eb85e75d1d4db5dfe3 differ diff --git a/cache/media/98994bda2808eaf69359c3b49bb79ba4bc87cc68 b/cache/media/98994bda2808eaf69359c3b49bb79ba4bc87cc68 new file mode 100644 index 000000000..ad133bc12 Binary files /dev/null and b/cache/media/98994bda2808eaf69359c3b49bb79ba4bc87cc68 differ diff --git a/cache/media/98a6111791918ed735aa9e2fbfe5774264dabb81 b/cache/media/98a6111791918ed735aa9e2fbfe5774264dabb81 new file mode 100644 index 000000000..371b8c7ee Binary files /dev/null and b/cache/media/98a6111791918ed735aa9e2fbfe5774264dabb81 differ diff --git a/cache/media/99461119b1256d5c63517182fdb91aea6d0c1a96 b/cache/media/99461119b1256d5c63517182fdb91aea6d0c1a96 new file mode 100644 index 000000000..32bf6f62c Binary files /dev/null and b/cache/media/99461119b1256d5c63517182fdb91aea6d0c1a96 differ diff --git a/cache/media/99c214f16f7b0b86dc47600daf6b749558bf1e6c b/cache/media/99c214f16f7b0b86dc47600daf6b749558bf1e6c new file mode 100644 index 000000000..ab1912105 Binary files /dev/null and b/cache/media/99c214f16f7b0b86dc47600daf6b749558bf1e6c differ diff --git a/cache/media/9a9688378ab79223162964f598e77de26cb98e97 b/cache/media/9a9688378ab79223162964f598e77de26cb98e97 new file mode 100644 index 000000000..f1d71f169 Binary files /dev/null and b/cache/media/9a9688378ab79223162964f598e77de26cb98e97 differ diff --git a/cache/media/9aac68e0abe39dd3e2f5c48404435051a25766de b/cache/media/9aac68e0abe39dd3e2f5c48404435051a25766de new file mode 100644 index 000000000..ada72ceae Binary files /dev/null and b/cache/media/9aac68e0abe39dd3e2f5c48404435051a25766de differ diff --git a/cache/media/9b20c46b75bf84e8cbd36b1e6edfbd6655bfac2f b/cache/media/9b20c46b75bf84e8cbd36b1e6edfbd6655bfac2f new file mode 100644 index 000000000..ee99178a6 Binary files /dev/null and b/cache/media/9b20c46b75bf84e8cbd36b1e6edfbd6655bfac2f differ diff --git a/cache/media/9c3fce96f8fa4f4a0b27974ccb8c601f4a000d95 b/cache/media/9c3fce96f8fa4f4a0b27974ccb8c601f4a000d95 new file mode 100644 index 000000000..e3370f438 Binary files /dev/null and b/cache/media/9c3fce96f8fa4f4a0b27974ccb8c601f4a000d95 differ diff --git a/cache/media/9caedf72511fc55ab66ebc54c09a94197daf5ea8 b/cache/media/9caedf72511fc55ab66ebc54c09a94197daf5ea8 new file mode 100644 index 000000000..45306e377 Binary files /dev/null and b/cache/media/9caedf72511fc55ab66ebc54c09a94197daf5ea8 differ diff --git a/cache/media/9ced266e6bc7991ba5a0f46deb9bbe537c6b1759 b/cache/media/9ced266e6bc7991ba5a0f46deb9bbe537c6b1759 new file mode 100644 index 000000000..597313506 Binary files /dev/null and b/cache/media/9ced266e6bc7991ba5a0f46deb9bbe537c6b1759 differ diff --git a/cache/media/9d14d948961f4805b55774db73a24241e0246fb6 b/cache/media/9d14d948961f4805b55774db73a24241e0246fb6 new file mode 100644 index 000000000..54f62cd6d Binary files /dev/null and b/cache/media/9d14d948961f4805b55774db73a24241e0246fb6 differ diff --git a/cache/media/9d2769534376427c6294748a2d13eaec69863766 b/cache/media/9d2769534376427c6294748a2d13eaec69863766 new file mode 100644 index 000000000..a1d33d7db Binary files /dev/null and b/cache/media/9d2769534376427c6294748a2d13eaec69863766 differ diff --git a/cache/media/9d8de555685b2ab602727375790263f51cddcfbc b/cache/media/9d8de555685b2ab602727375790263f51cddcfbc new file mode 100644 index 000000000..645a30044 Binary files /dev/null and b/cache/media/9d8de555685b2ab602727375790263f51cddcfbc differ diff --git a/cache/media/9e0d02354a2f0bebe0d1391ba23296da12009c91 b/cache/media/9e0d02354a2f0bebe0d1391ba23296da12009c91 new file mode 100644 index 000000000..88de1d7f2 Binary files /dev/null and b/cache/media/9e0d02354a2f0bebe0d1391ba23296da12009c91 differ diff --git a/cache/media/9e22b5aeec31de99410b682cc161a6096a1cd00a b/cache/media/9e22b5aeec31de99410b682cc161a6096a1cd00a new file mode 100644 index 000000000..a414ea046 Binary files /dev/null and b/cache/media/9e22b5aeec31de99410b682cc161a6096a1cd00a differ diff --git a/cache/media/9e90f57e8429f68757b85b4a2a145164339b3d9f b/cache/media/9e90f57e8429f68757b85b4a2a145164339b3d9f new file mode 100644 index 000000000..ad8c91b2f Binary files /dev/null and b/cache/media/9e90f57e8429f68757b85b4a2a145164339b3d9f differ diff --git a/cache/media/9f58e71b4c24998867933a071858b04e9d3fe7b7 b/cache/media/9f58e71b4c24998867933a071858b04e9d3fe7b7 new file mode 100644 index 000000000..c6ae42a78 Binary files /dev/null and b/cache/media/9f58e71b4c24998867933a071858b04e9d3fe7b7 differ diff --git a/cache/media/9f9fa450067ef3270a002ca2fcd4ed4ff1defba3 b/cache/media/9f9fa450067ef3270a002ca2fcd4ed4ff1defba3 new file mode 100644 index 000000000..3152c337c Binary files /dev/null and b/cache/media/9f9fa450067ef3270a002ca2fcd4ed4ff1defba3 differ diff --git a/cache/media/a028cf18efe05b23a41f891ccabdadcf05a0bf59 b/cache/media/a028cf18efe05b23a41f891ccabdadcf05a0bf59 new file mode 100644 index 000000000..cf5d83f10 Binary files /dev/null and b/cache/media/a028cf18efe05b23a41f891ccabdadcf05a0bf59 differ diff --git a/cache/media/a02bfe668203e9bc2884cdae0d1248db93cee3f5 b/cache/media/a02bfe668203e9bc2884cdae0d1248db93cee3f5 new file mode 100644 index 000000000..d41d6c186 Binary files /dev/null and b/cache/media/a02bfe668203e9bc2884cdae0d1248db93cee3f5 differ diff --git a/cache/media/a0944eb0221a41444335c267d9dbd21f134cae95 b/cache/media/a0944eb0221a41444335c267d9dbd21f134cae95 new file mode 100644 index 000000000..a25a4c34c Binary files /dev/null and b/cache/media/a0944eb0221a41444335c267d9dbd21f134cae95 differ diff --git a/cache/media/a0bf2183dc77f56f370370fc6b464a271b0e1ff0 b/cache/media/a0bf2183dc77f56f370370fc6b464a271b0e1ff0 new file mode 100644 index 000000000..5462100b0 Binary files /dev/null and b/cache/media/a0bf2183dc77f56f370370fc6b464a271b0e1ff0 differ diff --git a/cache/media/a0c31cbcf47ad36fa611d1681521bcd6f86029af b/cache/media/a0c31cbcf47ad36fa611d1681521bcd6f86029af new file mode 100644 index 000000000..8ae43b5a1 Binary files /dev/null and b/cache/media/a0c31cbcf47ad36fa611d1681521bcd6f86029af differ diff --git a/cache/media/a1233b6c9d5f6b8b1b8167f2fb5e03eaea6d7d1d b/cache/media/a1233b6c9d5f6b8b1b8167f2fb5e03eaea6d7d1d new file mode 100644 index 000000000..2a28d25a5 Binary files /dev/null and b/cache/media/a1233b6c9d5f6b8b1b8167f2fb5e03eaea6d7d1d differ diff --git a/cache/media/a1351f8af07c72c2ad09f7a07e267f46f52e6487 b/cache/media/a1351f8af07c72c2ad09f7a07e267f46f52e6487 new file mode 100644 index 000000000..421b3e3a7 Binary files /dev/null and b/cache/media/a1351f8af07c72c2ad09f7a07e267f46f52e6487 differ diff --git a/cache/media/a1a6b70bcd6522bd12b61ce063d66ea3e6be457a b/cache/media/a1a6b70bcd6522bd12b61ce063d66ea3e6be457a new file mode 100644 index 000000000..5cf68a3ba Binary files /dev/null and b/cache/media/a1a6b70bcd6522bd12b61ce063d66ea3e6be457a differ diff --git a/cache/media/a2471cbed9351d166310e60d82ba573fc3b8a307 b/cache/media/a2471cbed9351d166310e60d82ba573fc3b8a307 new file mode 100644 index 000000000..7d22404e2 Binary files /dev/null and b/cache/media/a2471cbed9351d166310e60d82ba573fc3b8a307 differ diff --git a/cache/media/a2a44530f8a23076dda01fd34293b0b27dce4948 b/cache/media/a2a44530f8a23076dda01fd34293b0b27dce4948 new file mode 100644 index 000000000..4c63fdd16 Binary files /dev/null and b/cache/media/a2a44530f8a23076dda01fd34293b0b27dce4948 differ diff --git a/cache/media/a336f940972a98857bbaff70f4da3053bf449f07 b/cache/media/a336f940972a98857bbaff70f4da3053bf449f07 new file mode 100644 index 000000000..2aba2c652 Binary files /dev/null and b/cache/media/a336f940972a98857bbaff70f4da3053bf449f07 differ diff --git a/cache/media/a35f6b55dc448b99069a487ff81eb6d1cd414066 b/cache/media/a35f6b55dc448b99069a487ff81eb6d1cd414066 new file mode 100644 index 000000000..55b076c35 Binary files /dev/null and b/cache/media/a35f6b55dc448b99069a487ff81eb6d1cd414066 differ diff --git a/cache/media/a3c7921a8af73ea6df8b98540fa355860bd253a9 b/cache/media/a3c7921a8af73ea6df8b98540fa355860bd253a9 new file mode 100644 index 000000000..a0b2a1f9f Binary files /dev/null and b/cache/media/a3c7921a8af73ea6df8b98540fa355860bd253a9 differ diff --git a/cache/media/a3ce1a621b7bff62d905e273be08d8741a594982 b/cache/media/a3ce1a621b7bff62d905e273be08d8741a594982 new file mode 100644 index 000000000..e0b3608db Binary files /dev/null and b/cache/media/a3ce1a621b7bff62d905e273be08d8741a594982 differ diff --git a/cache/media/a428153a7c351edc6ca6abde5d2d693536ce139e b/cache/media/a428153a7c351edc6ca6abde5d2d693536ce139e new file mode 100644 index 000000000..2de3966d9 Binary files /dev/null and b/cache/media/a428153a7c351edc6ca6abde5d2d693536ce139e differ diff --git a/cache/media/a4494686612d198714f51e16165624766b023bf8 b/cache/media/a4494686612d198714f51e16165624766b023bf8 new file mode 100644 index 000000000..07170a03d Binary files /dev/null and b/cache/media/a4494686612d198714f51e16165624766b023bf8 differ diff --git a/cache/media/a46269a33d3ef83317cca016bdf122b124d78def b/cache/media/a46269a33d3ef83317cca016bdf122b124d78def new file mode 100644 index 000000000..762b713a5 Binary files /dev/null and b/cache/media/a46269a33d3ef83317cca016bdf122b124d78def differ diff --git a/cache/media/a4bebcb2f74a8a5f7b4e62bb0a83ac04a1ae7f08 b/cache/media/a4bebcb2f74a8a5f7b4e62bb0a83ac04a1ae7f08 new file mode 100644 index 000000000..ae6a6bfc4 Binary files /dev/null and b/cache/media/a4bebcb2f74a8a5f7b4e62bb0a83ac04a1ae7f08 differ diff --git a/cache/media/a4c07698e51d3e825a435662941d16d42983349e b/cache/media/a4c07698e51d3e825a435662941d16d42983349e new file mode 100644 index 000000000..4f9e8a746 Binary files /dev/null and b/cache/media/a4c07698e51d3e825a435662941d16d42983349e differ diff --git a/cache/media/a503bc2921dd3184a4905953660a58a5671ee923 b/cache/media/a503bc2921dd3184a4905953660a58a5671ee923 new file mode 100644 index 000000000..2b5e12cdb Binary files /dev/null and b/cache/media/a503bc2921dd3184a4905953660a58a5671ee923 differ diff --git a/cache/media/a591b54061e41435e405964b02ec16cb0f96c988 b/cache/media/a591b54061e41435e405964b02ec16cb0f96c988 new file mode 100644 index 000000000..65e404502 Binary files /dev/null and b/cache/media/a591b54061e41435e405964b02ec16cb0f96c988 differ diff --git a/cache/media/a5f59b3e8676a615de78ac58fb6354d3c93896e7 b/cache/media/a5f59b3e8676a615de78ac58fb6354d3c93896e7 new file mode 100644 index 000000000..90d887a42 Binary files /dev/null and b/cache/media/a5f59b3e8676a615de78ac58fb6354d3c93896e7 differ diff --git a/cache/media/a5f994b7ee75f50e52e38a4bec25435de2248fe1 b/cache/media/a5f994b7ee75f50e52e38a4bec25435de2248fe1 new file mode 100644 index 000000000..aa16f2ecb Binary files /dev/null and b/cache/media/a5f994b7ee75f50e52e38a4bec25435de2248fe1 differ diff --git a/cache/media/a683f8c78c68dbfd236a58c22673e54191de2316 b/cache/media/a683f8c78c68dbfd236a58c22673e54191de2316 new file mode 100644 index 000000000..65b68c7e6 Binary files /dev/null and b/cache/media/a683f8c78c68dbfd236a58c22673e54191de2316 differ diff --git a/cache/media/a6a661c9396828d619cbb1dc763d980e181d9f24 b/cache/media/a6a661c9396828d619cbb1dc763d980e181d9f24 new file mode 100644 index 000000000..3260b915f Binary files /dev/null and b/cache/media/a6a661c9396828d619cbb1dc763d980e181d9f24 differ diff --git a/cache/media/a6a83e9639230b009612eb13d5598af73e5e222b b/cache/media/a6a83e9639230b009612eb13d5598af73e5e222b new file mode 100644 index 000000000..870b4bb27 Binary files /dev/null and b/cache/media/a6a83e9639230b009612eb13d5598af73e5e222b differ diff --git a/cache/media/a714f32787f435ec361b4bad96830b3914efb49a b/cache/media/a714f32787f435ec361b4bad96830b3914efb49a new file mode 100644 index 000000000..d1377c6b5 Binary files /dev/null and b/cache/media/a714f32787f435ec361b4bad96830b3914efb49a differ diff --git a/cache/media/a71802a8e9af3a2b8e6378de26d837cc3213b5b2 b/cache/media/a71802a8e9af3a2b8e6378de26d837cc3213b5b2 new file mode 100644 index 000000000..7fd683880 Binary files /dev/null and b/cache/media/a71802a8e9af3a2b8e6378de26d837cc3213b5b2 differ diff --git a/cache/media/a785cb41bcb51ba8655bed8540c81bdae6b1c101 b/cache/media/a785cb41bcb51ba8655bed8540c81bdae6b1c101 new file mode 100644 index 000000000..dccd380b2 Binary files /dev/null and b/cache/media/a785cb41bcb51ba8655bed8540c81bdae6b1c101 differ diff --git a/cache/media/a799e996003aee1c73159539c1c222b47dfd76f5 b/cache/media/a799e996003aee1c73159539c1c222b47dfd76f5 new file mode 100644 index 000000000..e4938f992 Binary files /dev/null and b/cache/media/a799e996003aee1c73159539c1c222b47dfd76f5 differ diff --git a/cache/media/a7b0c0c9ebb6a7d9bc47b38c3de9592178c88a5b b/cache/media/a7b0c0c9ebb6a7d9bc47b38c3de9592178c88a5b new file mode 100644 index 000000000..ad144a50d Binary files /dev/null and b/cache/media/a7b0c0c9ebb6a7d9bc47b38c3de9592178c88a5b differ diff --git a/cache/media/a7e5b7dac12034d1a1f78deea5bd036298ac1b40 b/cache/media/a7e5b7dac12034d1a1f78deea5bd036298ac1b40 new file mode 100644 index 000000000..33f922186 Binary files /dev/null and b/cache/media/a7e5b7dac12034d1a1f78deea5bd036298ac1b40 differ diff --git a/cache/media/a8f8216b4b59a5043a888b2dd64e76e621b19349 b/cache/media/a8f8216b4b59a5043a888b2dd64e76e621b19349 new file mode 100644 index 000000000..ccaca249e Binary files /dev/null and b/cache/media/a8f8216b4b59a5043a888b2dd64e76e621b19349 differ diff --git a/cache/media/a92ba2b8f6abc41aa8d679ad808a81d0aafa04b2 b/cache/media/a92ba2b8f6abc41aa8d679ad808a81d0aafa04b2 new file mode 100644 index 000000000..199f20674 Binary files /dev/null and b/cache/media/a92ba2b8f6abc41aa8d679ad808a81d0aafa04b2 differ diff --git a/cache/media/a9a8dbd418510053c06328a8ae9af87a6dd48c19 b/cache/media/a9a8dbd418510053c06328a8ae9af87a6dd48c19 new file mode 100644 index 000000000..5b3f7031a Binary files /dev/null and b/cache/media/a9a8dbd418510053c06328a8ae9af87a6dd48c19 differ diff --git a/cache/media/aa281f530fabeeb622911dd051e3cd30be1f63eb b/cache/media/aa281f530fabeeb622911dd051e3cd30be1f63eb new file mode 100644 index 000000000..7549bfd2c Binary files /dev/null and b/cache/media/aa281f530fabeeb622911dd051e3cd30be1f63eb differ diff --git a/cache/media/aa7b65fa58b5534427f99022e322e57da739548e b/cache/media/aa7b65fa58b5534427f99022e322e57da739548e new file mode 100644 index 000000000..d498674eb Binary files /dev/null and b/cache/media/aa7b65fa58b5534427f99022e322e57da739548e differ diff --git a/cache/media/aa875ecf372ecdc47f3ed08f31c0b8f2fe4ea604 b/cache/media/aa875ecf372ecdc47f3ed08f31c0b8f2fe4ea604 new file mode 100644 index 000000000..99248e176 Binary files /dev/null and b/cache/media/aa875ecf372ecdc47f3ed08f31c0b8f2fe4ea604 differ diff --git a/cache/media/aab4db46459cd126ad8e80eccec4583b789de1a1 b/cache/media/aab4db46459cd126ad8e80eccec4583b789de1a1 new file mode 100644 index 000000000..169823d41 Binary files /dev/null and b/cache/media/aab4db46459cd126ad8e80eccec4583b789de1a1 differ diff --git a/cache/media/aae2cb3604a0512840411f73ec525af44a696758 b/cache/media/aae2cb3604a0512840411f73ec525af44a696758 new file mode 100644 index 000000000..7ffdb639c Binary files /dev/null and b/cache/media/aae2cb3604a0512840411f73ec525af44a696758 differ diff --git a/cache/media/abb3276c2716ce48901c37423148696744a4d92f b/cache/media/abb3276c2716ce48901c37423148696744a4d92f new file mode 100644 index 000000000..f998b5bb9 Binary files /dev/null and b/cache/media/abb3276c2716ce48901c37423148696744a4d92f differ diff --git a/cache/media/ac8000862f8e418b59c87a7924cc709872421cab b/cache/media/ac8000862f8e418b59c87a7924cc709872421cab new file mode 100644 index 000000000..587923c86 Binary files /dev/null and b/cache/media/ac8000862f8e418b59c87a7924cc709872421cab differ diff --git a/cache/media/accf8bb6dc529e273e55c151dc2803ec6a3e91c3 b/cache/media/accf8bb6dc529e273e55c151dc2803ec6a3e91c3 new file mode 100644 index 000000000..f597299bd Binary files /dev/null and b/cache/media/accf8bb6dc529e273e55c151dc2803ec6a3e91c3 differ diff --git a/cache/media/acda3d431ceb614f06e7a175a36515f788ae326c b/cache/media/acda3d431ceb614f06e7a175a36515f788ae326c new file mode 100644 index 000000000..ee053bd46 Binary files /dev/null and b/cache/media/acda3d431ceb614f06e7a175a36515f788ae326c differ diff --git a/cache/media/ad0921404887a72f07ac7bfacb8237d17fec7341 b/cache/media/ad0921404887a72f07ac7bfacb8237d17fec7341 new file mode 100644 index 000000000..b1ccc5fab Binary files /dev/null and b/cache/media/ad0921404887a72f07ac7bfacb8237d17fec7341 differ diff --git a/cache/media/ad30bc58828709a30e5c0e0a294777929eeda3ea b/cache/media/ad30bc58828709a30e5c0e0a294777929eeda3ea new file mode 100644 index 000000000..65abfc243 Binary files /dev/null and b/cache/media/ad30bc58828709a30e5c0e0a294777929eeda3ea differ diff --git a/cache/media/ad9a5421a5fdb4c6f3dbab2770a8039a60606f8d b/cache/media/ad9a5421a5fdb4c6f3dbab2770a8039a60606f8d new file mode 100644 index 000000000..61fa1af12 Binary files /dev/null and b/cache/media/ad9a5421a5fdb4c6f3dbab2770a8039a60606f8d differ diff --git a/cache/media/ade0f3e74d3cd40d75f2da2f3792e83aaf2c1b29 b/cache/media/ade0f3e74d3cd40d75f2da2f3792e83aaf2c1b29 new file mode 100644 index 000000000..f40b5f04f Binary files /dev/null and b/cache/media/ade0f3e74d3cd40d75f2da2f3792e83aaf2c1b29 differ diff --git a/cache/media/ae1915ba9390a4e389146283021e87105e91bbdf b/cache/media/ae1915ba9390a4e389146283021e87105e91bbdf new file mode 100644 index 000000000..e877c808a Binary files /dev/null and b/cache/media/ae1915ba9390a4e389146283021e87105e91bbdf differ diff --git a/cache/media/ae411fdf6aef57023d5197e29804f074e5ef3324 b/cache/media/ae411fdf6aef57023d5197e29804f074e5ef3324 new file mode 100644 index 000000000..bda35f3ae Binary files /dev/null and b/cache/media/ae411fdf6aef57023d5197e29804f074e5ef3324 differ diff --git a/cache/media/ae5e0d401baea5859e411fd0d9511446cb3feaf5 b/cache/media/ae5e0d401baea5859e411fd0d9511446cb3feaf5 new file mode 100644 index 000000000..baddb4c54 Binary files /dev/null and b/cache/media/ae5e0d401baea5859e411fd0d9511446cb3feaf5 differ diff --git a/cache/media/ae6416a5c885a6361ae89eec798c9275c8f1352f b/cache/media/ae6416a5c885a6361ae89eec798c9275c8f1352f new file mode 100644 index 000000000..165853b9e --- /dev/null +++ b/cache/media/ae6416a5c885a6361ae89eec798c9275c8f1352f @@ -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/cache/media/aeb807e1df24dfe4af74c4dfbf86370ad875827a b/cache/media/aeb807e1df24dfe4af74c4dfbf86370ad875827a new file mode 100644 index 000000000..b2a56d558 Binary files /dev/null and b/cache/media/aeb807e1df24dfe4af74c4dfbf86370ad875827a differ diff --git a/cache/media/aefa4b0d034b32b1bdfe30b23c18d22687552e07 b/cache/media/aefa4b0d034b32b1bdfe30b23c18d22687552e07 new file mode 100644 index 000000000..d3034732e Binary files /dev/null and b/cache/media/aefa4b0d034b32b1bdfe30b23c18d22687552e07 differ diff --git a/cache/media/af38a620174fa04c2f4bf5e38b2ee20aece9ba37 b/cache/media/af38a620174fa04c2f4bf5e38b2ee20aece9ba37 new file mode 100644 index 000000000..5aa0aaa64 Binary files /dev/null and b/cache/media/af38a620174fa04c2f4bf5e38b2ee20aece9ba37 differ diff --git a/cache/media/afcf95147bd7c0c917c2c392015b9465dedaf44b b/cache/media/afcf95147bd7c0c917c2c392015b9465dedaf44b new file mode 100644 index 000000000..cb8b4eacf Binary files /dev/null and b/cache/media/afcf95147bd7c0c917c2c392015b9465dedaf44b differ diff --git a/cache/media/b00e8a1a2c040186faa196fe8f83c1c1fccc1008 b/cache/media/b00e8a1a2c040186faa196fe8f83c1c1fccc1008 new file mode 100644 index 000000000..daa5653f2 Binary files /dev/null and b/cache/media/b00e8a1a2c040186faa196fe8f83c1c1fccc1008 differ diff --git a/cache/media/b01fd5d78062b59c2f1ea4b593221aef0512723e b/cache/media/b01fd5d78062b59c2f1ea4b593221aef0512723e new file mode 100644 index 000000000..d16fdc975 Binary files /dev/null and b/cache/media/b01fd5d78062b59c2f1ea4b593221aef0512723e differ diff --git a/cache/media/b05fe6447193468e6395864fcdce194f836ec0eb b/cache/media/b05fe6447193468e6395864fcdce194f836ec0eb new file mode 100644 index 000000000..5e9ef0542 Binary files /dev/null and b/cache/media/b05fe6447193468e6395864fcdce194f836ec0eb differ diff --git a/cache/media/b0d3607e55c4be3209a24c0a22ed0c09456a28c2 b/cache/media/b0d3607e55c4be3209a24c0a22ed0c09456a28c2 new file mode 100644 index 000000000..1da0702d8 Binary files /dev/null and b/cache/media/b0d3607e55c4be3209a24c0a22ed0c09456a28c2 differ diff --git a/cache/media/b137fbea946e36e31d1190990deb8ae838972a06 b/cache/media/b137fbea946e36e31d1190990deb8ae838972a06 new file mode 100644 index 000000000..05021781e Binary files /dev/null and b/cache/media/b137fbea946e36e31d1190990deb8ae838972a06 differ diff --git a/cache/media/b1573caa7d1a006aec6038ee5a6eacea512428b5 b/cache/media/b1573caa7d1a006aec6038ee5a6eacea512428b5 new file mode 100644 index 000000000..f0b61f827 --- /dev/null +++ b/cache/media/b1573caa7d1a006aec6038ee5a6eacea512428b5 @@ -0,0 +1,7420 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + 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 { + 3.749036, 0.000000, 0.000000, 0.000000, + 0.000000, 3.749036, 0.000000, 0.000000, + 0.000000, 0.000000, 3.749036, 0.000000, + -19.739037, 0.216398, 0.218101, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.996529, 0.083252, 0.000000, + 0.000000,-0.083252, 0.996529, 0.000000, + 5.378092,-1.647068, 2.876912, 1.000000;; + } + Frame Armature_noga3 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.824256,-0.011078,-1.204985, 1.000000;; + } + } //End of Armature_noga3 + Frame Armature_noga1 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.784448, 3.021216,-1.494725, 1.000000;; + } + } //End of Armature_noga1 + Frame Armature_noga4 { + FrameTransformMatrix { + 0.000000,-0.996528, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996528, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.923299,-0.011159,-1.205961, 1.000000;; + } + } //End of Armature_noga4 + Frame Armature_noga2 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.921735, 3.022715,-1.476782, 1.000000;; + } + } //End of Armature_noga2 + Frame Armature_hvost { + FrameTransformMatrix { + 0.699967,-0.700526, 0.138963, 0.000000, + -0.057085,-0.248836,-0.966862, 0.000000, + 0.711890, 0.668838,-0.214166, 0.000000, + 0.105165,-0.291279, 0.358470, 1.000000;; + } + } //End of Armature_hvost + Frame Armature_sheya { + FrameTransformMatrix { + 0.997121, 0.067775,-0.033999, 0.000000, + -0.071692, 0.988697,-0.131678, 0.000000, + 0.024691, 0.133736, 0.990709, 0.000000, + 0.000000, 3.238709,-0.013816, 1.000000;; + } + Frame Armature_head { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.074075, 0.974794,-0.210453, 0.000000, + 0.016195, 0.209829, 0.977604, 0.000000, + 0.067776, 0.891274, 0.002915, 1.000000;; + } + } //End of Armature_head + Frame Armature_zubi { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.074236, 0.976877,-0.200501, 0.000000, + 0.015440, 0.199905, 0.979693, 0.000000, + 0.194650, 1.828288,-0.748248, 1.000000;; + } + } //End of Armature_zubi + } //End of Armature_sheya + } //End of Armature_Body + } //End of Armature + Frame Cube { + FrameTransformMatrix { + 3.749036, 0.000000, 0.000000, 0.000000, + 0.000000, 3.749036, 0.000000, 0.000000, + 0.000000, 0.000000, 3.749036, 0.000000, + 0.274003,-0.357581,11.859126, 1.000000;; + } + Mesh { //Mesh Mesh + 464; + -1.182819; 0.256475;-1.515163;, + -1.191885; 2.052689;-1.468648;, + -1.191885; 2.052689; 0.297009;, + -1.182819; 0.256475; 0.202888;, + -1.191885; 2.052689;-1.468648;, + 1.158376; 2.052689;-1.459295;, + 1.158376; 2.052689; 0.297009;, + -1.191885; 2.052689; 0.297009;, + 1.182819; 0.256475;-1.515163;, + 1.209352;-1.823040;-1.465410;, + 1.209352;-1.823040; 0.173570;, + 1.182819; 0.256475; 0.202888;, + 1.209352;-1.823040;-1.465410;, + -1.190063;-1.800769;-1.465410;, + -1.190063;-1.800769; 0.173570;, + 1.209352;-1.823040; 0.173570;, + 1.182819; 0.256475;-1.515163;, + 1.158376; 2.052689;-1.459295;, + -1.191885; 2.052689;-1.468648;, + -1.182819; 0.256475;-1.515163;, + -1.182819; 0.256475; 0.202888;, + -1.191885; 2.052689; 0.297009;, + 1.158376; 2.052689; 0.297009;, + 1.182819; 0.256475; 0.202888;, + -1.190063;-1.800769;-1.465410;, + -1.182819; 0.256475;-1.515163;, + -1.182819; 0.256475; 0.202888;, + -1.190063;-1.800769; 0.173570;, + 1.158376; 2.052689;-1.459295;, + 1.182819; 0.256475;-1.515163;, + 1.182819; 0.256475; 0.202888;, + 1.158376; 2.052689; 0.297009;, + 1.209352;-1.823040;-1.465410;, + 1.182819; 0.256475;-1.515163;, + -1.182819; 0.256475;-1.515163;, + -1.190063;-1.800769;-1.465410;, + -1.190063;-1.800769; 0.173570;, + -1.182819; 0.256475; 0.202888;, + 1.182819; 0.256475; 0.202888;, + 1.209352;-1.823040; 0.173570;, + -0.433904; 1.621176;-0.737264;, + -0.433904; 3.384479;-0.669402;, + -0.433904; 3.329543; 0.247469;, + -0.433904; 1.566239; 0.179607;, + -0.433904; 3.384479;-0.669402;, + 0.440838; 3.384479;-0.669402;, + 0.440838; 3.329543; 0.247469;, + -0.433904; 3.329543; 0.247469;, + 0.440838; 3.384479;-0.669402;, + 0.440838; 1.621176;-0.737264;, + 0.440838; 1.566239; 0.179607;, + 0.440838; 3.329543; 0.247469;, + 0.440838; 1.621176;-0.737264;, + -0.433904; 1.621176;-0.737264;, + -0.433904; 1.566239; 0.179607;, + 0.440838; 1.566239; 0.179607;, + 0.440838; 1.621176;-0.737264;, + 0.440838; 3.384479;-0.669402;, + -0.433904; 3.384479;-0.669402;, + -0.433904; 1.621176;-0.737264;, + -0.433904; 1.566239; 0.179607;, + -0.433904; 3.329543; 0.247469;, + 0.440838; 3.329543; 0.247469;, + 0.440838; 1.566239; 0.179607;, + -0.570123; 2.826026;-0.609147;, + -0.570123; 3.422311;-0.723481;, + -0.570123; 3.619422; 0.304511;, + -0.570123; 3.023137; 0.418845;, + 0.472727; 3.658540;-0.785318;, + -0.491013; 3.658540;-0.785318;, + -0.570123; 3.422311;-0.723481;, + 0.541260; 3.422311;-0.723481;, + 0.541260; 3.422311;-0.723481;, + 0.541260; 2.826026;-0.609147;, + 0.541260; 3.023137; 0.418845;, + 0.541260; 3.619422; 0.304511;, + 0.541260; 2.826026;-0.609147;, + -0.570123; 2.826026;-0.609147;, + -0.570123; 3.023137; 0.418845;, + 0.541260; 3.023137; 0.418845;, + 0.541260; 2.826026;-0.609147;, + 0.541260; 3.422311;-0.723481;, + -0.570123; 3.422311;-0.723481;, + -0.570123; 2.826026;-0.609147;, + -0.570123; 3.023137; 0.418845;, + -0.570123; 3.619422; 0.304511;, + 0.541260; 3.619422; 0.304511;, + 0.541260; 3.023137; 0.418845;, + 0.381228; 4.436496;-1.012536;, + -0.399515; 4.436496;-1.012536;, + -0.491013; 3.658540;-0.785318;, + 0.472727; 3.658540;-0.785318;, + -0.491013; 4.056458;-0.059518;, + 0.472727; 4.056458;-0.059518;, + 0.541260; 3.619422; 0.304511;, + -0.570123; 3.619422; 0.304511;, + 0.472727; 4.056458;-0.059518;, + 0.472727; 3.658540;-0.785318;, + 0.541260; 3.422311;-0.723481;, + 0.541260; 3.619422; 0.304511;, + -0.570123; 3.619422; 0.304511;, + -0.570123; 3.422311;-0.723481;, + -0.491013; 3.658540;-0.785318;, + -0.491013; 4.056458;-0.059518;, + -0.399515; 4.436496;-1.012536;, + 0.381228; 4.436496;-1.012536;, + 0.381228; 4.664130;-0.420370;, + -0.399515; 4.664130;-0.420370;, + -0.491013; 4.056458;-0.059518;, + -0.491013; 3.658540;-0.785318;, + -0.399515; 4.436496;-1.012536;, + -0.399515; 4.664130;-0.420370;, + -0.399515; 4.664130;-0.420370;, + 0.381228; 4.664130;-0.420370;, + 0.472727; 4.056458;-0.059518;, + -0.491013; 4.056458;-0.059518;, + 0.381228; 4.664130;-0.420370;, + 0.381228; 4.436496;-1.012536;, + 0.472727; 3.658540;-0.785318;, + 0.472727; 4.056458;-0.059518;, + 0.405161; 2.892449; 0.389317;, + 0.356167; 3.163855; 0.374390;, + 0.933491; 3.279887; 0.529882;, + 0.982485; 3.008481; 0.544809;, + 0.356167; 3.163855; 0.374390;, + 0.528218; 3.212470; 0.074339;, + 1.027210; 3.314350; 0.229683;, + 0.933491; 3.279887; 0.529882;, + 0.528218; 3.212470; 0.074339;, + 0.577212; 2.941064; 0.089265;, + 1.076203; 3.042944; 0.244609;, + 1.027210; 3.314350; 0.229683;, + 0.577212; 2.941064; 0.089265;, + 0.405161; 2.892449; 0.389317;, + 0.982485; 3.008481; 0.544809;, + 1.076203; 3.042944; 0.244609;, + 0.577212; 2.941064; 0.089265;, + 0.528218; 3.212470; 0.074339;, + 0.356167; 3.163855; 0.374390;, + 0.405161; 2.892449; 0.389317;, + 0.982485; 3.008481; 0.544809;, + 0.933491; 3.279887; 0.529882;, + 1.027210; 3.314350; 0.229683;, + 1.076203; 3.042944; 0.244609;, + -0.609625; 2.928426; 0.070173;, + -0.558808; 3.199832; 0.058956;, + -1.078051; 3.301528; 0.167247;, + -1.128868; 3.030122; 0.178463;, + -0.558808; 3.199832; 0.058956;, + -0.468088; 3.195864; 0.373960;, + -1.030881; 3.306796; 0.508425;, + -1.078051; 3.301528; 0.167247;, + -0.468088; 3.195864; 0.373960;, + -0.518905; 2.924458; 0.385176;, + -1.081698; 3.035390; 0.519641;, + -1.030881; 3.306796; 0.508425;, + -0.518905; 2.924458; 0.385176;, + -0.609625; 2.928426; 0.070173;, + -1.128868; 3.030122; 0.178463;, + -1.081698; 3.035390; 0.519641;, + -0.518905; 2.924458; 0.385176;, + -0.468088; 3.195864; 0.373960;, + -0.558808; 3.199832; 0.058956;, + -0.609625; 2.928426; 0.070173;, + -1.128868; 3.030122; 0.178463;, + -1.078051; 3.301528; 0.167247;, + -1.030881; 3.306796; 0.508425;, + -1.081698; 3.035390; 0.519641;, + 0.068099;-2.068482;-0.815726;, + 0.017526;-1.862952;-0.832142;, + 0.082807;-1.887635;-0.385204;, + 0.105635;-1.969985;-0.374655;, + 0.017526;-1.862952;-0.832142;, + 0.207545;-1.815554;-0.824100;, + 0.159407;-1.881011;-0.377324;, + 0.082807;-1.887635;-0.385204;, + 0.207545;-1.815554;-0.824100;, + 0.258117;-2.021084;-0.807684;, + 0.176925;-1.952203;-0.371637;, + 0.159407;-1.881011;-0.377324;, + 0.258117;-2.021084;-0.807684;, + 0.068099;-2.068482;-0.815726;, + 0.105635;-1.969985;-0.374655;, + 0.176925;-1.952203;-0.371637;, + 0.258117;-2.021084;-0.807684;, + 0.207545;-1.815554;-0.824100;, + 0.017526;-1.862952;-0.832142;, + 0.068099;-2.068482;-0.815726;, + 0.032801;-1.863856; 0.148379;, + 0.018910;-1.807401; 0.143870;, + 0.102635;-1.786517; 0.147413;, + 0.116527;-1.842972; 0.151922;, + 0.099551;-1.963196;-0.270905;, + 0.082033;-1.892004;-0.276591;, + 0.018910;-1.807401; 0.143870;, + 0.032801;-1.863856; 0.148379;, + 0.082033;-1.892004;-0.276591;, + 0.153323;-1.874221;-0.273574;, + 0.102635;-1.786517; 0.147413;, + 0.018910;-1.807401; 0.143870;, + 0.153323;-1.874221;-0.273574;, + 0.170840;-1.945413;-0.267887;, + 0.116527;-1.842972; 0.151922;, + 0.102635;-1.786517; 0.147413;, + 0.170840;-1.945413;-0.267887;, + 0.099551;-1.963196;-0.270905;, + 0.032801;-1.863856; 0.148379;, + 0.116527;-1.842972; 0.151922;, + 0.159407;-1.881011;-0.377324;, + 0.176925;-1.952203;-0.371637;, + 0.170840;-1.945413;-0.267887;, + 0.153323;-1.874221;-0.273574;, + 0.176925;-1.952203;-0.371637;, + 0.105635;-1.969985;-0.374655;, + 0.099551;-1.963196;-0.270905;, + 0.170840;-1.945413;-0.267887;, + -1.051378; 1.496758;-3.168478;, + -1.051378; 1.849385;-3.168478;, + -1.123806; 1.982406;-1.484576;, + -1.123806; 1.363736;-1.484576;, + 0.999745; 1.496758;-3.168478;, + 0.999745; 1.849385;-3.168478;, + 0.664487; 1.849385;-3.168478;, + 0.664487; 1.496758;-3.168478;, + 0.082807;-1.887635;-0.385204;, + 0.159407;-1.881011;-0.377324;, + 0.153323;-1.874221;-0.273574;, + 0.082033;-1.892004;-0.276591;, + 0.664487; 1.496758;-3.168478;, + 0.664487; 1.849385;-3.168478;, + 0.583813; 1.982406;-1.484576;, + 0.583813; 1.363736;-1.484576;, + 0.105635;-1.969985;-0.374655;, + 0.082807;-1.887635;-0.385204;, + 0.082033;-1.892004;-0.276591;, + 0.099551;-1.963196;-0.270905;, + 0.583813; 1.363736;-1.484576;, + 0.583813; 1.982406;-1.484576;, + 1.080419; 1.982406;-1.484576;, + 1.080419; 1.363736;-1.484576;, + 0.664487; 1.849385;-3.168478;, + 0.999745; 1.849385;-3.168478;, + 1.080419; 1.982406;-1.484576;, + 0.583813; 1.982406;-1.484576;, + -0.750392; 1.496758;-3.168478;, + -0.750392; 1.849385;-3.168478;, + -1.051378; 1.849385;-3.168478;, + -1.051378; 1.496758;-3.168478;, + 0.999745; 1.496758;-3.168478;, + 0.664487; 1.496758;-3.168478;, + 0.583813; 1.363736;-1.484576;, + 1.080419; 1.363736;-1.484576;, + 0.999745; 1.849385;-3.168478;, + 0.999745; 1.496758;-3.168478;, + 1.080419; 1.363736;-1.484576;, + 1.080419; 1.982406;-1.484576;, + -1.123806; 1.363736;-1.484576;, + -1.123806; 1.982406;-1.484576;, + -0.677966; 1.982406;-1.484576;, + -0.677966; 1.363736;-1.484576;, + -1.051378; 1.849385;-3.168478;, + -0.750392; 1.849385;-3.168478;, + -0.677966; 1.982406;-1.484576;, + -1.123806; 1.982406;-1.484576;, + -0.750392; 1.496758;-3.168478;, + -1.051378; 1.496758;-3.168478;, + -1.123806; 1.363736;-1.484576;, + -0.677966; 1.363736;-1.484576;, + -0.750392; 1.849385;-3.168478;, + -0.750392; 1.496758;-3.168478;, + -0.677966; 1.363736;-1.484576;, + -0.677966; 1.982406;-1.484576;, + -1.051378;-1.614760;-3.168478;, + -1.051378;-1.262132;-3.168478;, + -1.123806;-1.129111;-1.484576;, + -1.123806;-1.747781;-1.484576;, + -0.750392;-1.614760;-3.168478;, + -0.750392;-1.262132;-3.168478;, + -1.051378;-1.262132;-3.168478;, + -1.051378;-1.614760;-3.168478;, + -1.123806;-1.747781;-1.484576;, + -1.123806;-1.129111;-1.484576;, + -0.677966;-1.129111;-1.484576;, + -0.677966;-1.747781;-1.484576;, + -1.051378;-1.262132;-3.168478;, + -0.750392;-1.262132;-3.168478;, + -0.677966;-1.129111;-1.484576;, + -1.123806;-1.129111;-1.484576;, + -0.750392;-1.614760;-3.168478;, + -1.051378;-1.614760;-3.168478;, + -1.123806;-1.747781;-1.484576;, + -0.677966;-1.747781;-1.484576;, + -0.750392;-1.262132;-3.168478;, + -0.750392;-1.614760;-3.168478;, + -0.677966;-1.747781;-1.484576;, + -0.677966;-1.129111;-1.484576;, + 0.702960;-1.578270;-3.168478;, + 0.702960;-1.225643;-3.168478;, + 0.622286;-1.092621;-1.484576;, + 0.622286;-1.711292;-1.484576;, + 1.038219;-1.578270;-3.168478;, + 1.038219;-1.225643;-3.168478;, + 0.702960;-1.225643;-3.168478;, + 0.702960;-1.578270;-3.168478;, + 0.622286;-1.711292;-1.484576;, + 0.622286;-1.092621;-1.484576;, + 1.118893;-1.092621;-1.484576;, + 1.118893;-1.711292;-1.484576;, + 0.702960;-1.225643;-3.168478;, + 1.038219;-1.225643;-3.168478;, + 1.118893;-1.092621;-1.484576;, + 0.622286;-1.092621;-1.484576;, + 1.038219;-1.578270;-3.168478;, + 0.702960;-1.578270;-3.168478;, + 0.622286;-1.711292;-1.484576;, + 1.118893;-1.711292;-1.484576;, + 1.038219;-1.225643;-3.168478;, + 1.038219;-1.578270;-3.168478;, + 1.118893;-1.711292;-1.484576;, + 1.118893;-1.092621;-1.484576;, + -0.375302; 3.723651;-0.919717;, + -0.375302; 4.404733;-1.101104;, + -0.375302; 4.406694;-1.025498;, + -0.375302; 3.723651;-0.866785;, + -0.375302; 4.404733;-1.101104;, + 0.411050; 4.404733;-1.111786;, + 0.411050; 4.404733;-1.026451;, + -0.375302; 4.406694;-1.025498;, + 0.411050; 4.404733;-1.111786;, + 0.411050; 3.723651;-0.930399;, + 0.411050; 3.723651;-0.860715;, + 0.411050; 4.404733;-1.026451;, + 0.411050; 3.723651;-0.930399;, + -0.375302; 3.723651;-0.919717;, + -0.375302; 3.723651;-0.866785;, + 0.411050; 3.723651;-0.860715;, + 0.411050; 3.723651;-0.930399;, + 0.411050; 4.404733;-1.111786;, + -0.375302; 4.404733;-1.101104;, + -0.375302; 3.723651;-0.919717;, + -0.375302; 3.723651;-0.866785;, + -0.375302; 4.406694;-1.025498;, + 0.411050; 4.404733;-1.026451;, + 0.411050; 3.723651;-0.860715;, + -0.491839; 3.204797; 0.832126;, + -0.420050; 3.204797; 0.832126;, + -0.276340; 3.271977; 0.372442;, + -0.459907; 3.271977; 0.372442;, + -0.085533; 3.271977; 0.150769;, + 0.090794; 3.271977; 0.150769;, + 0.090794; 3.271977; 0.372442;, + -0.085533; 3.271977; 0.372442;, + 0.465169; 3.051323; 0.150769;, + 0.465169; 3.271977; 0.150769;, + 0.465169; 3.271977; 0.372442;, + 0.465169; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.150769;, + 0.090794; 3.271977; 0.150769;, + -0.085533; 3.271977; 0.150769;, + -0.085533; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.372442;, + -0.085533; 3.271977; 0.372442;, + 0.090794; 3.271977; 0.372442;, + 0.090794; 3.051323; 0.372442;, + -0.420050; 3.204797; 0.832126;, + -0.491839; 3.204797; 0.832126;, + -0.491839; 3.118504; 0.832126;, + -0.420050; 3.118504; 0.832126;, + -0.085533; 3.051323; 0.372442;, + 0.281602; 3.051323; 0.372442;, + 0.281602; 3.271977; 0.372442;, + -0.085533; 3.271977; 0.372442;, + -0.085533; 3.271977; 0.372442;, + 0.281602; 3.271977; 0.372442;, + 0.281602; 3.271977; 0.150769;, + -0.085533; 3.271977; 0.150769;, + -0.085533; 3.271977; 0.150769;, + 0.281602; 3.271977; 0.150769;, + 0.281602; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.150769;, + -0.085533; 3.051323; 0.150769;, + 0.281602; 3.051323; 0.150769;, + 0.281602; 3.051323; 0.372442;, + -0.085533; 3.051323; 0.372442;, + 0.408578; 3.118362; 0.832126;, + 0.480603; 3.118362; 0.832126;, + 0.480603; 3.204938; 0.832126;, + 0.408578; 3.204938; 0.832126;, + 0.090794; 3.271977; 0.372442;, + -0.276340; 3.271977; 0.372442;, + -0.276340; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.372442;, + 0.090794; 3.051323; 0.372442;, + -0.276340; 3.051323; 0.372442;, + -0.276340; 3.051323; 0.150769;, + 0.090794; 3.051323; 0.150769;, + 0.090794; 3.051323; 0.150769;, + -0.276340; 3.051323; 0.150769;, + -0.276340; 3.271977; 0.150769;, + 0.090794; 3.271977; 0.150769;, + 0.090794; 3.271977; 0.150769;, + -0.276340; 3.271977; 0.150769;, + -0.276340; 3.271977; 0.372442;, + 0.090794; 3.271977; 0.372442;, + 0.281602; 3.271977; 0.372442;, + 0.465169; 3.271977; 0.372442;, + 0.465169; 3.271977; 0.150769;, + 0.281602; 3.271977; 0.150769;, + 0.281602; 3.271977; 0.150769;, + 0.465169; 3.271977; 0.150769;, + 0.465169; 3.051323; 0.150769;, + 0.281602; 3.051323; 0.150769;, + 0.281602; 3.051323; 0.150769;, + 0.465169; 3.051323; 0.150769;, + 0.465169; 3.051323; 0.372442;, + 0.281602; 3.051323; 0.372442;, + -0.459907; 3.271977; 0.150769;, + -0.459907; 3.051323; 0.150769;, + -0.459907; 3.051323; 0.372442;, + -0.459907; 3.271977; 0.372442;, + 0.408578; 3.118362; 0.832126;, + 0.408578; 3.204938; 0.832126;, + 0.281602; 3.271977; 0.372442;, + 0.281602; 3.051323; 0.372442;, + -0.276340; 3.051323; 0.372442;, + -0.459907; 3.051323; 0.372442;, + -0.459907; 3.051323; 0.150769;, + -0.276340; 3.051323; 0.150769;, + -0.276340; 3.051323; 0.150769;, + -0.459907; 3.051323; 0.150769;, + -0.459907; 3.271977; 0.150769;, + -0.276340; 3.271977; 0.150769;, + -0.276340; 3.271977; 0.150769;, + -0.459907; 3.271977; 0.150769;, + -0.459907; 3.271977; 0.372442;, + -0.276340; 3.271977; 0.372442;, + -0.459907; 3.271977; 0.372442;, + -0.459907; 3.051323; 0.372442;, + -0.491839; 3.118504; 0.832126;, + -0.491839; 3.204797; 0.832126;, + 0.480603; 3.118362; 0.832126;, + 0.408578; 3.118362; 0.832126;, + 0.281602; 3.051323; 0.372442;, + 0.465169; 3.051323; 0.372442;, + 0.465169; 3.051323; 0.372442;, + 0.465169; 3.271977; 0.372442;, + 0.480603; 3.204938; 0.832126;, + 0.480603; 3.118362; 0.832126;, + -0.420050; 3.118504; 0.832126;, + -0.491839; 3.118504; 0.832126;, + -0.459907; 3.051323; 0.372442;, + -0.276340; 3.051323; 0.372442;, + -0.420050; 3.204797; 0.832126;, + -0.420050; 3.118504; 0.832126;, + -0.276340; 3.051323; 0.372442;, + -0.276340; 3.271977; 0.372442;, + 0.408578; 3.204938; 0.832126;, + 0.480603; 3.204938; 0.832126;, + 0.465169; 3.271977; 0.372442;, + 0.281602; 3.271977; 0.372442;; + 116; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;; + MeshNormals { //Mesh Normals + 464; + -0.999987;-0.005047; 0.000000;, + -0.999987;-0.005047; 0.000000;, + -0.999987;-0.005047; 0.000000;, + -0.999987;-0.005047; 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.999919; 0.012758; 0.000000;, + 0.999919; 0.012758; 0.000000;, + 0.999919; 0.012758; 0.000000;, + 0.999919; 0.012758; 0.000000;, + -0.009281;-0.999957; 0.000000;, + -0.009281;-0.999957; 0.000000;, + -0.009281;-0.999957; 0.000000;, + -0.009281;-0.999957; 0.000000;, + 0.001982; 0.028507;-0.999592;, + 0.001982; 0.028507;-0.999592;, + 0.001982; 0.028507;-0.999592;, + 0.001982; 0.028507;-0.999592;, + -0.000000;-0.052328; 0.998630;, + -0.000000;-0.052328; 0.998630;, + -0.000000;-0.052328; 0.998630;, + -0.000000;-0.052328; 0.998630;, + -0.999994; 0.003521;-0.000000;, + -0.999994; 0.003521;-0.000000;, + -0.999994; 0.003521;-0.000000;, + -0.999994; 0.003521;-0.000000;, + 0.999907; 0.013606; 0.000000;, + 0.999907; 0.013606; 0.000000;, + 0.999907; 0.013606; 0.000000;, + 0.999907; 0.013606; 0.000000;, + -0.000112;-0.024047;-0.999711;, + -0.000112;-0.024047;-0.999711;, + -0.000112;-0.024047;-0.999711;, + -0.000112;-0.024047;-0.999711;, + -0.000066;-0.014174; 0.999900;, + -0.000066;-0.014174; 0.999900;, + -0.000066;-0.014174; 0.999900;, + -0.000066;-0.014174; 0.999900;, + -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.998210; 0.059810;, + 0.000000; 0.998210; 0.059810;, + 0.000000; 0.998210; 0.059810;, + 0.000000; 0.998210; 0.059810;, + 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.998210;-0.059810;, + 0.000000;-0.998210;-0.059810;, + 0.000000;-0.998210;-0.059810;, + 0.000000;-0.998210;-0.059810;, + 0.000000; 0.038457;-0.999260;, + 0.000000; 0.038457;-0.999260;, + 0.000000; 0.038457;-0.999260;, + 0.000000; 0.038457;-0.999260;, + 0.000000;-0.038457; 0.999260;, + 0.000000;-0.038457; 0.999260;, + 0.000000;-0.038457; 0.999260;, + 0.000000;-0.038457; 0.999260;, + -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.253236;-0.967405;, + 0.000000;-0.253236;-0.967405;, + 0.000000;-0.253236;-0.967405;, + 0.000000;-0.253236;-0.967405;, + 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.982109; 0.188312;, + 0.000000;-0.982109; 0.188312;, + 0.000000;-0.982109; 0.188312;, + 0.000000;-0.982109; 0.188312;, + 0.000000;-0.188312;-0.982109;, + 0.000000;-0.188312;-0.982109;, + 0.000000;-0.188312;-0.982109;, + 0.000000;-0.188312;-0.982109;, + 0.000000; 0.188312; 0.982109;, + 0.000000; 0.188312; 0.982109;, + 0.000000; 0.188312; 0.982109;, + 0.000000; 0.188312; 0.982109;, + 0.000000;-0.280357;-0.959896;, + 0.000000;-0.280357;-0.959896;, + 0.000000;-0.280357;-0.959896;, + 0.000000;-0.280357;-0.959896;, + 0.000000; 0.640010; 0.768367;, + 0.000000; 0.640010; 0.768367;, + 0.000000; 0.640010; 0.768367;, + 0.000000; 0.640010; 0.768367;, + 0.984694; 0.165048;-0.055998;, + 0.984694; 0.165048;-0.055998;, + 0.984694; 0.165048;-0.055998;, + 0.984694; 0.165048;-0.055998;, + -0.979760; 0.189564;-0.064316;, + -0.979760; 0.189564;-0.064316;, + -0.979760; 0.189564;-0.064316;, + -0.979760; 0.189564;-0.064316;, + 0.000000; 0.933410;-0.358811;, + 0.000000; 0.933410;-0.358811;, + 0.000000; 0.933410;-0.358811;, + 0.000000; 0.933410;-0.358811;, + -0.992678; 0.109120;-0.051792;, + -0.992678; 0.109120;-0.051792;, + -0.992678; 0.109120;-0.051792;, + -0.992678; 0.109120;-0.051792;, + 0.000000; 0.510587; 0.859826;, + 0.000000; 0.510587; 0.859826;, + 0.000000; 0.510587; 0.859826;, + 0.000000; 0.510587; 0.859826;, + 0.992678; 0.109120;-0.051792;, + 0.992678; 0.109120;-0.051792;, + 0.992678; 0.109120;-0.051792;, + 0.992678; 0.109120;-0.051792;, + -0.261173; 0.005940; 0.965274;, + -0.261173; 0.005940; 0.965274;, + -0.261173; 0.005940; 0.965274;, + -0.261173; 0.005940; 0.965274;, + -0.209960; 0.976798; 0.042231;, + -0.209960; 0.976798; 0.042231;, + -0.209960; 0.976798; 0.042231;, + -0.209960; 0.976798; 0.042231;, + 0.297039; 0.001107;-0.954865;, + 0.297039; 0.001107;-0.954865;, + 0.297039; 0.001107;-0.954865;, + 0.297039; 0.001107;-0.954865;, + 0.209960;-0.976798;-0.042233;, + 0.209960;-0.976798;-0.042233;, + 0.209960;-0.976798;-0.042233;, + 0.209960;-0.976798;-0.042233;, + -0.840506;-0.179834;-0.511087;, + -0.840506;-0.179834;-0.511087;, + -0.840506;-0.179834;-0.511087;, + -0.840506;-0.179834;-0.511087;, + 0.931767; 0.185369; 0.312167;, + 0.931767; 0.185369; 0.312167;, + 0.931767; 0.185369; 0.312167;, + 0.931767; 0.185369; 0.312167;, + -0.204566;-0.002152;-0.978850;, + -0.204566;-0.002152;-0.978850;, + -0.204566;-0.002152;-0.978850;, + -0.204566;-0.002152;-0.978850;, + 0.183886; 0.982109;-0.040588;, + 0.183886; 0.982109;-0.040588;, + 0.183886; 0.982109;-0.040588;, + 0.183886; 0.982109;-0.040588;, + 0.231786;-0.003196; 0.972761;, + 0.231786;-0.003196; 0.972761;, + 0.231786;-0.003196; 0.972761;, + 0.231786;-0.003196; 0.972761;, + -0.183886;-0.982109; 0.040589;, + -0.183886;-0.982109; 0.040589;, + -0.183886;-0.982109; 0.040589;, + -0.183886;-0.982109; 0.040589;, + 0.943190;-0.187923;-0.274003;, + 0.943190;-0.187923;-0.274003;, + 0.943190;-0.187923;-0.274003;, + 0.943190;-0.187923;-0.274003;, + -0.973362; 0.187690; 0.131676;, + -0.973362; 0.187690; 0.131676;, + -0.973362; 0.187690; 0.131676;, + -0.973362; 0.187690; 0.131676;, + -0.963521;-0.233403; 0.130961;, + -0.963521;-0.233403; 0.130961;, + -0.963521;-0.233403; 0.130961;, + -0.963521;-0.233403; 0.130961;, + -0.203399; 0.973756; 0.102115;, + -0.203399; 0.973756; 0.102115;, + -0.203399; 0.973756; 0.102115;, + -0.203399; 0.973756; 0.102115;, + 0.958897; 0.247088; 0.139516;, + 0.958897; 0.247088; 0.139516;, + 0.958897; 0.247088; 0.139516;, + 0.958897; 0.247088; 0.139516;, + 0.229736;-0.953833; 0.193451;, + 0.229736;-0.953833; 0.193451;, + 0.229736;-0.953833; 0.193451;, + 0.229736;-0.953833; 0.193451;, + 0.058422;-0.065189;-0.996161;, + 0.058422;-0.065189;-0.996161;, + 0.058422;-0.065189;-0.996161;, + 0.058422;-0.065189;-0.996161;, + -0.058422; 0.065189; 0.996161;, + -0.058422; 0.065189; 0.996161;, + -0.058422; 0.065189; 0.996161;, + -0.058422; 0.065189; 0.996161;, + -0.964797;-0.245028;-0.095541;, + -0.964797;-0.245028;-0.095541;, + -0.964797;-0.245028;-0.095541;, + -0.964797;-0.245028;-0.095541;, + -0.226867; 0.947641;-0.224738;, + -0.226867; 0.947641;-0.224738;, + -0.226867; 0.947641;-0.224738;, + -0.226867; 0.947641;-0.224738;, + 0.967699; 0.243367; 0.065811;, + 0.967699; 0.243367; 0.065811;, + 0.967699; 0.243367; 0.065811;, + 0.967699; 0.243367; 0.065811;, + 0.223509;-0.939864; 0.258262;, + 0.223509;-0.939864; 0.258262;, + 0.223509;-0.939864; 0.258262;, + 0.223509;-0.939864; 0.258262;, + 0.969453; 0.241820; 0.041031;, + 0.969453; 0.241820; 0.041031;, + 0.969453; 0.241820; 0.041031;, + 0.969453; 0.241820; 0.041031;, + 0.238217;-0.968129; 0.077326;, + 0.238217;-0.968129; 0.077326;, + 0.238217;-0.968129; 0.077326;, + 0.238217;-0.968129; 0.077326;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -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.161622; 0.986715;-0.016464;, + -0.161622; 0.986715;-0.016464;, + -0.161622; 0.986715;-0.016464;, + -0.161622; 0.986715;-0.016464;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.966042;-0.256834;-0.028270;, + -0.966042;-0.256834;-0.028270;, + -0.966042;-0.256834;-0.028270;, + -0.966042;-0.256834;-0.028270;, + -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.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + -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.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + -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.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -0.999076; 0.000000;-0.042972;, + -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.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + 0.999076; 0.000000;-0.042972;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -0.998854; 0.000000;-0.047854;, + -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.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000; 0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.000000;-0.996894;-0.078751;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + 0.998854; 0.000000;-0.047854;, + -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.001157; 0.999925;-0.012185;, + 0.001157; 0.999925;-0.012185;, + 0.001157; 0.999925;-0.012185;, + 0.001157; 0.999925;-0.012185;, + 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;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.013126;-0.257330;-0.966235;, + -0.013126;-0.257330;-0.966235;, + -0.013126;-0.257330;-0.966235;, + -0.013126;-0.257330;-0.966235;, + -0.002877; 0.231388; 0.972857;, + -0.002877; 0.231388; 0.972857;, + -0.002877; 0.231388; 0.972857;, + -0.002877; 0.231388; 0.972857;, + 0.000000;-0.989489;-0.144609;, + 0.000000;-0.989489;-0.144609;, + 0.000000;-0.989489;-0.144609;, + 0.000000;-0.989489;-0.144609;, + 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;, + 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;-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;, + 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;-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; 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; 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; 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; 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;-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;, + 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.963903; 0.000000;-0.266253;, + 0.963903; 0.000000;-0.266253;, + 0.963903; 0.000000;-0.266253;, + 0.963903; 0.000000;-0.266253;, + 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; 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.997596; 0.000000; 0.069296;, + 0.997596; 0.000000; 0.069296;, + 0.997596; 0.000000; 0.069296;, + 0.997596; 0.000000; 0.069296;, + 0.000000; 0.989532;-0.144311;, + 0.000000; 0.989532;-0.144311;, + 0.000000; 0.989532;-0.144311;, + 0.000000; 0.989532;-0.144311;, + -0.999437; 0.000000; 0.033555;, + -0.999437; 0.000000; 0.033555;, + -0.999437; 0.000000; 0.033555;, + -0.999437; 0.000000; 0.033555;, + 0.000000; 0.989489;-0.144610;, + 0.000000; 0.989489;-0.144610;, + 0.000000; 0.989489;-0.144610;, + 0.000000; 0.989489;-0.144610;, + -0.954446; 0.000000;-0.298385;, + -0.954446; 0.000000;-0.298385;, + -0.954446; 0.000000;-0.298385;, + -0.954446; 0.000000;-0.298385;, + 0.000000;-0.989532;-0.144311;, + 0.000000;-0.989532;-0.144311;, + 0.000000;-0.989532;-0.144311;, + 0.000000;-0.989532;-0.144311;; + 116; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;, + 4;408;409;410;411;, + 4;412;413;414;415;, + 4;416;417;418;419;, + 4;420;421;422;423;, + 4;424;425;426;427;, + 4;428;429;430;431;, + 4;432;433;434;435;, + 4;436;437;438;439;, + 4;440;441;442;443;, + 4;444;445;446;447;, + 4;448;449;450;451;, + 4;452;453;454;455;, + 4;456;457;458;459;, + 4;460;461;462;463;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 464; + 0.444664; 0.882740;, + 0.453010; 0.994603;, + 0.352139; 0.990704;, + 0.370352; 0.882084;, + 0.699615; 0.826957;, + 0.888198; 0.826957;, + 0.888198; 0.999617;, + 0.699615; 0.999617;, + 0.566940; 0.877116;, + 0.559308; 0.768256;, + 0.664340; 0.764336;, + 0.671138; 0.868138;, + 0.999617; 0.397190;, + 0.811034; 0.397190;, + 0.811034; 0.271762;, + 0.999617; 0.271762;, + 0.566940; 0.877116;, + 0.565483; 0.991269;, + 0.453010; 0.994603;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.352139; 0.990704;, + 0.243744; 0.976452;, + 0.255729; 0.872295;, + 0.447331; 0.770867;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.373731; 0.773298;, + 0.565483; 0.991269;, + 0.566940; 0.877116;, + 0.671138; 0.868138;, + 0.670488; 0.977139;, + 0.559308; 0.768256;, + 0.566940; 0.877116;, + 0.444664; 0.882740;, + 0.447331; 0.770867;, + 0.373731; 0.773298;, + 0.370352; 0.882084;, + 0.255729; 0.872295;, + 0.261819; 0.766836;, + 0.694945; 0.168323;, + 0.694945; 0.057246;, + 0.784866; 0.057246;, + 0.784866; 0.168323;, + 0.978885; 0.802852;, + 0.978885; 0.908930;, + 0.888965; 0.908930;, + 0.888965; 0.802852;, + 0.980864; 0.057246;, + 0.980864; 0.168323;, + 0.890944; 0.168323;, + 0.890944; 0.057246;, + 0.995043; 0.999617;, + 0.888965; 0.999617;, + 0.888965; 0.909696;, + 0.995043; 0.909696;, + 0.588867; 0.168323;, + 0.588867; 0.057246;, + 0.694945; 0.057246;, + 0.694945; 0.168323;, + 0.784866; 0.168323;, + 0.784866; 0.057246;, + 0.890944; 0.057246;, + 0.890944; 0.168323;, + 0.581893; 0.381313;, + 0.525981; 0.490259;, + 0.379618; 0.402841;, + 0.398054; 0.301018;, + 0.815523; 0.662938;, + 0.815524; 0.728486;, + 0.769623; 0.748548;, + 0.769623; 0.642876;, + 0.048873; 0.480128;, + 0.006488; 0.386718;, + 0.167529; 0.313647;, + 0.194276; 0.403737;, + 0.988636; 0.730470;, + 0.896211; 0.730470;, + 0.896211; 0.660198;, + 0.988636; 0.660198;, + 0.723019; 0.642876;, + 0.769623; 0.642876;, + 0.769623; 0.748548;, + 0.723019; 0.748548;, + 0.398054; 0.301018;, + 0.379618; 0.402841;, + 0.194276; 0.403737;, + 0.167529; 0.313647;, + 0.877077; 0.662938;, + 0.877077; 0.728486;, + 0.815524; 0.728486;, + 0.815523; 0.662938;, + 0.357048; 0.517540;, + 0.216152; 0.507657;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.216152; 0.507657;, + 0.120216; 0.568830;, + 0.048873; 0.480128;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.525981; 0.490259;, + 0.444034; 0.577428;, + 0.357048; 0.517540;, + 0.362490; 0.686881;, + 0.215162; 0.682739;, + 0.251936; 0.612341;, + 0.315469; 0.601729;, + 0.357048; 0.517540;, + 0.444034; 0.577428;, + 0.362490; 0.686881;, + 0.315469; 0.601729;, + 0.315469; 0.601729;, + 0.251936; 0.612341;, + 0.216152; 0.507657;, + 0.357048; 0.517540;, + 0.251936; 0.612341;, + 0.215162; 0.682739;, + 0.120216; 0.568830;, + 0.216152; 0.507657;, + 0.882221; 0.248633;, + 0.854668; 0.246226;, + 0.860426; 0.180315;, + 0.887978; 0.182722;, + 0.854668; 0.246226;, + 0.811034; 0.225788;, + 0.836391; 0.169090;, + 0.860426; 0.180315;, + 0.955560; 0.229325;, + 0.928738; 0.236069;, + 0.913594; 0.175833;, + 0.940417; 0.169090;, + 0.928738; 0.236069;, + 0.882221; 0.248633;, + 0.887978; 0.182722;, + 0.913594; 0.175833;, + 0.568666; 0.188259;, + 0.570943; 0.215822;, + 0.522758; 0.215822;, + 0.520482; 0.188259;, + 0.557028; 0.187492;, + 0.557028; 0.159835;, + 0.583256; 0.155869;, + 0.583256; 0.183526;, + 0.831256; 0.582510;, + 0.811034; 0.563643;, + 0.853460; 0.518170;, + 0.873682; 0.537037;, + 0.941763; 0.626056;, + 0.893812; 0.623471;, + 0.917809; 0.562573;, + 0.941763; 0.563864;, + 0.893812; 0.623471;, + 0.868081; 0.613331;, + 0.892078; 0.552433;, + 0.917809; 0.562573;, + 0.868081; 0.613331;, + 0.831256; 0.582510;, + 0.873682; 0.537037;, + 0.892078; 0.552433;, + 0.680049; 0.227106;, + 0.680049; 0.254763;, + 0.632028; 0.254763;, + 0.632028; 0.227106;, + 0.631262; 0.227106;, + 0.631262; 0.254763;, + 0.607273; 0.254763;, + 0.607273; 0.227106;, + 0.151813; 0.952191;, + 0.112345; 0.947279;, + 0.113514; 0.904716;, + 0.158003; 0.906790;, + 0.112345; 0.947279;, + 0.077106; 0.948022;, + 0.069721; 0.907057;, + 0.113514; 0.904716;, + 0.077106; 0.948022;, + 0.041465; 0.957980;, + 0.021003; 0.917204;, + 0.069721; 0.907057;, + 0.189475; 0.963315;, + 0.151813; 0.952191;, + 0.158003; 0.906790;, + 0.212875; 0.914749;, + 0.563441; 0.216588;, + 0.563441; 0.263118;, + 0.520482; 0.263118;, + 0.520482; 0.216588;, + 0.758717; 0.826190;, + 0.758717; 0.792862;, + 0.808077; 0.792862;, + 0.808077; 0.826190;, + 0.160570; 0.844684;, + 0.116458; 0.842962;, + 0.117818; 0.795850;, + 0.145830; 0.795143;, + 0.116458; 0.842962;, + 0.069466; 0.841189;, + 0.076449; 0.791324;, + 0.117818; 0.795850;, + 0.069466; 0.841189;, + 0.014746; 0.837740;, + 0.047872; 0.785711;, + 0.076449; 0.791324;, + 0.209296; 0.833892;, + 0.160570; 0.844684;, + 0.145830; 0.795143;, + 0.184389; 0.782622;, + 0.069721; 0.907057;, + 0.021003; 0.917204;, + 0.014746; 0.837740;, + 0.069466; 0.841189;, + 0.212875; 0.914749;, + 0.158003; 0.906790;, + 0.160570; 0.844684;, + 0.209296; 0.833892;, + 0.696701; 0.623144;, + 0.663486; 0.624673;, + 0.640785; 0.404303;, + 0.699058; 0.401620;, + 0.556261; 0.154243;, + 0.556261; 0.187492;, + 0.520482; 0.187492;, + 0.520482; 0.154243;, + 0.113514; 0.904716;, + 0.069721; 0.907057;, + 0.069466; 0.841189;, + 0.116458; 0.842962;, + 0.696269; 0.621054;, + 0.663054; 0.622583;, + 0.640352; 0.402213;, + 0.698626; 0.399530;, + 0.158003; 0.906790;, + 0.113514; 0.904716;, + 0.116458; 0.842962;, + 0.160570; 0.844684;, + 0.621714; 0.314631;, + 0.680049; 0.314631;, + 0.680049; 0.367630;, + 0.621714; 0.367630;, + 0.663054; 0.622583;, + 0.627632; 0.627630;, + 0.587883; 0.409689;, + 0.640352; 0.402213;, + 0.844623; 0.792862;, + 0.844623; 0.826112;, + 0.808843; 0.826112;, + 0.808843; 0.792862;, + 0.732005; 0.622825;, + 0.696269; 0.621054;, + 0.698626; 0.399530;, + 0.751560; 0.402153;, + 0.764905; 0.627630;, + 0.732005; 0.622825;, + 0.751560; 0.402153;, + 0.809283; 0.410584;, + 0.699615; 0.773191;, + 0.757950; 0.773191;, + 0.757950; 0.826190;, + 0.699615; 0.826190;, + 0.663486; 0.624673;, + 0.628065; 0.629720;, + 0.588315; 0.411779;, + 0.640785; 0.404303;, + 0.732437; 0.624915;, + 0.696701; 0.623144;, + 0.699058; 0.401620;, + 0.751992; 0.404243;, + 0.765338; 0.629720;, + 0.732437; 0.624915;, + 0.751992; 0.404243;, + 0.809715; 0.412674;, + 0.697254; 0.619480;, + 0.664039; 0.621009;, + 0.641336; 0.400639;, + 0.699610; 0.397956;, + 0.680049; 0.193089;, + 0.680049; 0.226339;, + 0.644269; 0.226339;, + 0.644269; 0.193089;, + 0.680049; 0.255529;, + 0.680049; 0.313865;, + 0.627050; 0.313865;, + 0.627050; 0.255529;, + 0.664039; 0.621009;, + 0.628617; 0.626056;, + 0.588867; 0.408115;, + 0.641336; 0.400639;, + 0.732989; 0.621251;, + 0.697254; 0.619480;, + 0.699610; 0.397956;, + 0.752544; 0.400579;, + 0.765890; 0.626056;, + 0.732989; 0.621251;, + 0.752544; 0.400579;, + 0.810267; 0.409010;, + 0.697253; 0.620613;, + 0.664039; 0.622143;, + 0.641336; 0.401773;, + 0.699610; 0.399090;, + 0.643503; 0.193089;, + 0.643503; 0.226339;, + 0.607723; 0.226339;, + 0.607723; 0.193089;, + 0.573481; 0.263885;, + 0.573481; 0.322220;, + 0.520482; 0.322220;, + 0.520482; 0.263885;, + 0.664039; 0.622143;, + 0.628617; 0.627190;, + 0.588867; 0.409249;, + 0.641336; 0.401773;, + 0.732989; 0.622384;, + 0.697253; 0.620613;, + 0.699610; 0.399090;, + 0.752544; 0.401713;, + 0.765890; 0.627190;, + 0.732989; 0.622384;, + 0.752544; 0.401713;, + 0.810267; 0.410144;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 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.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 1; + 3; + 9; + } + SkinWeights { + "Armature_noga4"; + 24; + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-1.430863, 0.883390, 1.000000;; + } //End of Armature_noga4 Skin Weights + SkinWeights { + "Armature_noga2"; + 24; + 216, + 217, + 218, + 219, + 244, + 245, + 246, + 247, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-1.448169, 0.881825, 1.000000;; + } //End of Armature_noga2 Skin Weights + SkinWeights { + "Armature_hvost"; + 56; + 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, + 210, + 211, + 212, + 213, + 214, + 215, + 224, + 225, + 226, + 227, + 232, + 233, + 234, + 235; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.698127,-0.052851, 0.714020, 0.000000, + -0.710717,-0.171780, 0.682183, 0.000000, + 0.086601,-0.983717,-0.157487, 0.000000, + -1.399654,-0.200846, 1.150453, 1.000000;; + } //End of Armature_hvost Skin Weights + SkinWeights { + "Armature_sheya"; + 24; + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.997121,-0.075824,-0.000243, 0.000000, + 0.075644, 0.994519, 0.072177, 0.000000, + -0.005231,-0.071988, 0.997392, 0.000000, + -0.170866,-1.720121,-0.152821, 1.000000;; + } //End of Armature_sheya Skin Weights + SkinWeights { + "Armature_head"; + 224; + 64, + 65, + 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, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 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; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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, 0.959864, 0.280464, 0.000000, + -0.000000,-0.280465, 0.959864, 0.000000, + -0.039910,-2.530474,-0.704059, 1.000000;; + } //End of Armature_head Skin Weights + SkinWeights { + "Armature_zubi"; + 24; + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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, 0.954399, 0.298535, 0.000000, + -0.000000,-0.298535, 0.954399, 0.000000, + -0.095552,-3.607529,-0.236531, 1.000000;; + } //End of Armature_zubi Skin Weights + SkinWeights { + "Armature_Body"; + 40; + 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; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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, 0.996529,-0.083252, 0.000000, + 0.000000, 0.083252, 0.996529, 0.000000, + -0.039910, 1.507776, 0.102992, 1.000000;; + } //End of Armature_Body Skin Weights + SkinWeights { + "Armature_noga3"; + 24; + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-1.429884,-0.864167, 1.000000;; + } //End of Armature_noga3 Skin Weights + SkinWeights { + "Armature_noga1"; + 24; + 220, + 221, + 222, + 223, + 228, + 229, + 230, + 231, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-1.466174,-0.824358, 1.000000;; + } //End of Armature_noga1 Skin Weights + } //End of Mesh Mesh + } //End of Cube +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 136; + 0;3; -19.739037, 0.216398, 0.218101;;, + 1;3; -19.739037, 0.216398, 0.218101;;, + 2;3; -19.739037, 0.216398, 0.218101;;, + 3;3; -19.739037, 0.216398, 0.218101;;, + 4;3; -19.739037, 0.216398, 0.218101;;, + 5;3; -19.739037, 0.216398, 0.218101;;, + 6;3; -19.739037, 0.216398, 0.218101;;, + 7;3; -19.739037, 0.216398, 0.218101;;, + 8;3; -19.739037, 0.216398, 0.218101;;, + 9;3; -19.739037, 0.216398, 0.218101;;, + 10;3; -19.739037, 0.216398, 0.218101;;, + 11;3; -19.739037, 0.216398, 0.218101;;, + 12;3; -19.739037, 0.216398, 0.218101;;, + 13;3; -19.739037, 0.216398, 0.218101;;, + 14;3; -19.739037, 0.216398, 0.218101;;, + 15;3; -19.739037, 0.216398, 0.218101;;, + 16;3; -19.739037, 0.216398, 0.218101;;, + 17;3; -19.739037, 0.216398, 0.218101;;, + 18;3; -19.739037, 0.216398, 0.218101;;, + 19;3; -19.739037, 0.216398, 0.218101;;, + 20;3; -19.739037, 0.216398, 0.218101;;, + 21;3; -19.739037, 0.216398, 0.218101;;, + 22;3; -19.739037, 0.216398, 0.218101;;, + 23;3; -19.739037, 0.216398, 0.218101;;, + 24;3; -19.739037, 0.216398, 0.218101;;, + 25;3; -19.739037, 0.216398, 0.218101;;, + 26;3; -19.739037, 0.216398, 0.218101;;, + 27;3; -19.739037, 0.216398, 0.218101;;, + 28;3; -19.739037, 0.216398, 0.218101;;, + 29;3; -19.739037, 0.216398, 0.218101;;, + 30;3; -19.739037, 0.216398, 0.218101;;, + 31;3; -19.739037, 0.216398, 0.218101;;, + 32;3; -19.739037, 0.216398, 0.218101;;, + 33;3; -19.739037, 0.216398, 0.218101;;, + 34;3; -19.739037, 0.216398, 0.218101;;, + 35;3; -19.739037, 0.216398, 0.218101;;, + 36;3; -19.739037, 0.216398, 0.218101;;, + 37;3; -19.739037, 0.216398, 0.218101;;, + 38;3; -19.739037, 0.216398, 0.218101;;, + 39;3; -19.739037, 0.216398, 0.218101;;, + 40;3; -19.739037, 0.216398, 0.218101;;, + 41;3; -19.739037, 0.216398, 0.218101;;, + 42;3; -19.739037, 0.216398, 0.218101;;, + 43;3; -19.739037, 0.216398, 0.218101;;, + 44;3; -19.739037, 0.216398, 0.218101;;, + 45;3; -19.739037, 0.216398, 0.218101;;, + 46;3; -19.739037, 0.216398, 0.218101;;, + 47;3; -19.739037, 0.216398, 0.218101;;, + 48;3; -19.739037, 0.216398, 0.218101;;, + 49;3; -19.739037, 0.216398, 0.218101;;, + 50;3; -19.739037, 0.216398, 0.218101;;, + 51;3; -19.739037, 0.216398, 0.218101;;, + 52;3; -19.739037, 0.216398, 0.218101;;, + 53;3; -19.739037, 0.216398, 0.218101;;, + 54;3; -19.739037, 0.216398, 0.218101;;, + 55;3; -19.739037, 0.216398, 0.218101;;, + 56;3; -19.739037, 0.216398, 0.218101;;, + 57;3; -19.739037, 0.216398, 0.218101;;, + 58;3; -19.739037, 0.216398, 0.218101;;, + 59;3; -19.739037, 0.216398, 0.218101;;, + 60;3; -19.739037, 0.216398, 0.218101;;, + 61;3; -19.739037, 0.216398, 0.218101;;, + 62;3; -19.739037, 0.216398, 0.218101;;, + 63;3; -19.739037, 0.216398, 0.218101;;, + 64;3; -19.739037, 0.216398, 0.218101;;, + 65;3; -19.739037, 0.216398, 0.218101;;, + 66;3; -19.739037, 0.216398, 0.218101;;, + 67;3; -19.739037, 0.216398, 0.218101;;, + 68;3; -19.739037, 0.216398, 0.218101;;, + 69;3; -19.739037, 0.216398, 0.218101;;, + 70;3; -19.739037, 0.216398, 0.218101;;, + 71;3; -19.739037, 0.216398, 0.218101;;, + 72;3; -19.739037, 0.216398, 0.218101;;, + 73;3; -19.739037, 0.216398, 0.218101;;, + 74;3; -19.739037, 0.216398, 0.218101;;, + 75;3; -19.739037, 0.216398, 0.218101;;, + 76;3; -19.739037, 0.216398, 0.218101;;, + 77;3; -19.739037, 0.216398, 0.218101;;, + 78;3; -19.739037, 0.216398, 0.218101;;, + 79;3; -19.739037, 0.216398, 0.218101;;, + 80;3; -19.739037, 0.216398, 0.218101;;, + 81;3; -19.739037, 0.216398, 0.218101;;, + 82;3; -19.739037, 0.216398, 0.218101;;, + 83;3; -19.739037, 0.216398, 0.218101;;, + 84;3; -19.739037, 0.216398, 0.218101;;, + 85;3; -19.739037, 0.216398, 0.218101;;, + 86;3; -19.739037, 0.216398, 0.218101;;, + 87;3; -19.739037, 0.216398, 0.218101;;, + 88;3; -19.739037, 0.216398, 0.218101;;, + 89;3; -19.739037, 0.216398, 0.218101;;, + 90;3; -19.739037, 0.216398, 0.218101;;, + 91;3; -19.739037, 0.216398, 0.218101;;, + 92;3; -19.739037, 0.216398, 0.218101;;, + 93;3; -19.739037, 0.216398, 0.218101;;, + 94;3; -19.739037, 0.216398, 0.218101;;, + 95;3; -19.739037, 0.216398, 0.218101;;, + 96;3; -19.739037, 0.216398, 0.218101;;, + 97;3; -19.739037, 0.216398, 0.218101;;, + 98;3; -19.739037, 0.216398, 0.218101;;, + 99;3; -19.739037, 0.216398, 0.218101;;, + 100;3; -19.739037, 0.216398, 0.218101;;, + 101;3; -19.739037, 0.216398, 0.218101;;, + 102;3; -19.739037, 0.216398, 0.218101;;, + 103;3; -19.739037, 0.216398, 0.218101;;, + 104;3; -19.739037, 0.216398, 0.218101;;, + 105;3; -19.739037, 0.216398, 0.218101;;, + 106;3; -19.739037, 0.216398, 0.218101;;, + 107;3; -19.739037, 0.216398, 0.218101;;, + 108;3; -19.739037, 0.216398, 0.218101;;, + 109;3; -19.739037, 0.216398, 0.218101;;, + 110;3; -19.739037, 0.216398, 0.218101;;, + 111;3; -19.739037, 0.216398, 0.218101;;, + 112;3; -19.739037, 0.216398, 0.218101;;, + 113;3; -19.739037, 0.216398, 0.218101;;, + 114;3; -19.739037, 0.216398, 0.218101;;, + 115;3; -19.739037, 0.216398, 0.218101;;, + 116;3; -19.739037, 0.216398, 0.218101;;, + 117;3; -19.739037, 0.216398, 0.218101;;, + 118;3; -19.739037, 0.216398, 0.218101;;, + 119;3; -19.739037, 0.216398, 0.218101;;, + 120;3; -19.739037, 0.216398, 0.218101;;, + 121;3; -19.739037, 0.216398, 0.218101;;, + 122;3; -19.739037, 0.216398, 0.218101;;, + 123;3; -19.739037, 0.216398, 0.218101;;, + 124;3; -19.739037, 0.216398, 0.218101;;, + 125;3; -19.739037, 0.216398, 0.218101;;, + 126;3; -19.739037, 0.216398, 0.218101;;, + 127;3; -19.739037, 0.216398, 0.218101;;, + 128;3; -19.739037, 0.216398, 0.218101;;, + 129;3; -19.739037, 0.216398, 0.218101;;, + 130;3; -19.739037, 0.216398, 0.218101;;, + 131;3; -19.739037, 0.216398, 0.218101;;, + 132;3; -19.739037, 0.216398, 0.218101;;, + 133;3; -19.739037, 0.216398, 0.218101;;, + 134;3; -19.739037, 0.216398, 0.218101;;, + 135;3; -19.739037, 0.216398, 0.218101;;; + } + AnimationKey { //Rotation + 0; + 136; + 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;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 3.749036, 3.749036, 3.749036;;, + 1;3; 3.749036, 3.749036, 3.749036;;, + 2;3; 3.749036, 3.749036, 3.749036;;, + 3;3; 3.749036, 3.749036, 3.749036;;, + 4;3; 3.749036, 3.749036, 3.749036;;, + 5;3; 3.749036, 3.749036, 3.749036;;, + 6;3; 3.749036, 3.749036, 3.749036;;, + 7;3; 3.749036, 3.749036, 3.749036;;, + 8;3; 3.749036, 3.749036, 3.749036;;, + 9;3; 3.749036, 3.749036, 3.749036;;, + 10;3; 3.749036, 3.749036, 3.749036;;, + 11;3; 3.749036, 3.749036, 3.749036;;, + 12;3; 3.749036, 3.749036, 3.749036;;, + 13;3; 3.749036, 3.749036, 3.749036;;, + 14;3; 3.749036, 3.749036, 3.749036;;, + 15;3; 3.749036, 3.749036, 3.749036;;, + 16;3; 3.749036, 3.749036, 3.749036;;, + 17;3; 3.749036, 3.749036, 3.749036;;, + 18;3; 3.749036, 3.749036, 3.749036;;, + 19;3; 3.749036, 3.749036, 3.749036;;, + 20;3; 3.749036, 3.749036, 3.749036;;, + 21;3; 3.749036, 3.749036, 3.749036;;, + 22;3; 3.749036, 3.749036, 3.749036;;, + 23;3; 3.749036, 3.749036, 3.749036;;, + 24;3; 3.749036, 3.749036, 3.749036;;, + 25;3; 3.749036, 3.749036, 3.749036;;, + 26;3; 3.749036, 3.749036, 3.749036;;, + 27;3; 3.749036, 3.749036, 3.749036;;, + 28;3; 3.749036, 3.749036, 3.749036;;, + 29;3; 3.749036, 3.749036, 3.749036;;, + 30;3; 3.749036, 3.749036, 3.749036;;, + 31;3; 3.749036, 3.749036, 3.749036;;, + 32;3; 3.749036, 3.749036, 3.749036;;, + 33;3; 3.749036, 3.749036, 3.749036;;, + 34;3; 3.749036, 3.749036, 3.749036;;, + 35;3; 3.749036, 3.749036, 3.749036;;, + 36;3; 3.749036, 3.749036, 3.749036;;, + 37;3; 3.749036, 3.749036, 3.749036;;, + 38;3; 3.749036, 3.749036, 3.749036;;, + 39;3; 3.749036, 3.749036, 3.749036;;, + 40;3; 3.749036, 3.749036, 3.749036;;, + 41;3; 3.749036, 3.749036, 3.749036;;, + 42;3; 3.749036, 3.749036, 3.749036;;, + 43;3; 3.749036, 3.749036, 3.749036;;, + 44;3; 3.749036, 3.749036, 3.749036;;, + 45;3; 3.749036, 3.749036, 3.749036;;, + 46;3; 3.749036, 3.749036, 3.749036;;, + 47;3; 3.749036, 3.749036, 3.749036;;, + 48;3; 3.749036, 3.749036, 3.749036;;, + 49;3; 3.749036, 3.749036, 3.749036;;, + 50;3; 3.749036, 3.749036, 3.749036;;, + 51;3; 3.749036, 3.749036, 3.749036;;, + 52;3; 3.749036, 3.749036, 3.749036;;, + 53;3; 3.749036, 3.749036, 3.749036;;, + 54;3; 3.749036, 3.749036, 3.749036;;, + 55;3; 3.749036, 3.749036, 3.749036;;, + 56;3; 3.749036, 3.749036, 3.749036;;, + 57;3; 3.749036, 3.749036, 3.749036;;, + 58;3; 3.749036, 3.749036, 3.749036;;, + 59;3; 3.749036, 3.749036, 3.749036;;, + 60;3; 3.749036, 3.749036, 3.749036;;, + 61;3; 3.749036, 3.749036, 3.749036;;, + 62;3; 3.749036, 3.749036, 3.749036;;, + 63;3; 3.749036, 3.749036, 3.749036;;, + 64;3; 3.749036, 3.749036, 3.749036;;, + 65;3; 3.749036, 3.749036, 3.749036;;, + 66;3; 3.749036, 3.749036, 3.749036;;, + 67;3; 3.749036, 3.749036, 3.749036;;, + 68;3; 3.749036, 3.749036, 3.749036;;, + 69;3; 3.749036, 3.749036, 3.749036;;, + 70;3; 3.749036, 3.749036, 3.749036;;, + 71;3; 3.749036, 3.749036, 3.749036;;, + 72;3; 3.749036, 3.749036, 3.749036;;, + 73;3; 3.749036, 3.749036, 3.749036;;, + 74;3; 3.749036, 3.749036, 3.749036;;, + 75;3; 3.749036, 3.749036, 3.749036;;, + 76;3; 3.749036, 3.749036, 3.749036;;, + 77;3; 3.749036, 3.749036, 3.749036;;, + 78;3; 3.749036, 3.749036, 3.749036;;, + 79;3; 3.749036, 3.749036, 3.749036;;, + 80;3; 3.749036, 3.749036, 3.749036;;, + 81;3; 3.749036, 3.749036, 3.749036;;, + 82;3; 3.749036, 3.749036, 3.749036;;, + 83;3; 3.749036, 3.749036, 3.749036;;, + 84;3; 3.749036, 3.749036, 3.749036;;, + 85;3; 3.749036, 3.749036, 3.749036;;, + 86;3; 3.749036, 3.749036, 3.749036;;, + 87;3; 3.749036, 3.749036, 3.749036;;, + 88;3; 3.749036, 3.749036, 3.749036;;, + 89;3; 3.749036, 3.749036, 3.749036;;, + 90;3; 3.749036, 3.749036, 3.749036;;, + 91;3; 3.749036, 3.749036, 3.749036;;, + 92;3; 3.749036, 3.749036, 3.749036;;, + 93;3; 3.749036, 3.749036, 3.749036;;, + 94;3; 3.749036, 3.749036, 3.749036;;, + 95;3; 3.749036, 3.749036, 3.749036;;, + 96;3; 3.749036, 3.749036, 3.749036;;, + 97;3; 3.749036, 3.749036, 3.749036;;, + 98;3; 3.749036, 3.749036, 3.749036;;, + 99;3; 3.749036, 3.749036, 3.749036;;, + 100;3; 3.749036, 3.749036, 3.749036;;, + 101;3; 3.749036, 3.749036, 3.749036;;, + 102;3; 3.749036, 3.749036, 3.749036;;, + 103;3; 3.749036, 3.749036, 3.749036;;, + 104;3; 3.749036, 3.749036, 3.749036;;, + 105;3; 3.749036, 3.749036, 3.749036;;, + 106;3; 3.749036, 3.749036, 3.749036;;, + 107;3; 3.749036, 3.749036, 3.749036;;, + 108;3; 3.749036, 3.749036, 3.749036;;, + 109;3; 3.749036, 3.749036, 3.749036;;, + 110;3; 3.749036, 3.749036, 3.749036;;, + 111;3; 3.749036, 3.749036, 3.749036;;, + 112;3; 3.749036, 3.749036, 3.749036;;, + 113;3; 3.749036, 3.749036, 3.749036;;, + 114;3; 3.749036, 3.749036, 3.749036;;, + 115;3; 3.749036, 3.749036, 3.749036;;, + 116;3; 3.749036, 3.749036, 3.749036;;, + 117;3; 3.749036, 3.749036, 3.749036;;, + 118;3; 3.749036, 3.749036, 3.749036;;, + 119;3; 3.749036, 3.749036, 3.749036;;, + 120;3; 3.749036, 3.749036, 3.749036;;, + 121;3; 3.749036, 3.749036, 3.749036;;, + 122;3; 3.749036, 3.749036, 3.749036;;, + 123;3; 3.749036, 3.749036, 3.749036;;, + 124;3; 3.749036, 3.749036, 3.749036;;, + 125;3; 3.749036, 3.749036, 3.749036;;, + 126;3; 3.749036, 3.749036, 3.749036;;, + 127;3; 3.749036, 3.749036, 3.749036;;, + 128;3; 3.749036, 3.749036, 3.749036;;, + 129;3; 3.749036, 3.749036, 3.749036;;, + 130;3; 3.749036, 3.749036, 3.749036;;, + 131;3; 3.749036, 3.749036, 3.749036;;, + 132;3; 3.749036, 3.749036, 3.749036;;, + 133;3; 3.749036, 3.749036, 3.749036;;, + 134;3; 3.749036, 3.749036, 3.749036;;, + 135;3; 3.749036, 3.749036, 3.749036;;; + } + } + Animation { + {Armature_Body} + AnimationKey { //Position + 2; + 136; + 0;3; 5.378092,-1.647068, 2.876912;;, + 1;3; 5.378092,-1.647068, 2.876912;;, + 2;3; 5.378092,-1.647068, 2.876912;;, + 3;3; 5.378092,-1.647068, 2.876912;;, + 4;3; 5.378092,-1.647068, 2.876912;;, + 5;3; 5.378092,-1.647068, 2.876912;;, + 6;3; 5.378092,-1.647068, 2.876912;;, + 7;3; 5.378092,-1.647068, 2.876912;;, + 8;3; 5.378092,-1.647068, 2.876912;;, + 9;3; 5.378092,-1.647068, 2.876912;;, + 10;3; 5.378092,-1.647068, 2.876912;;, + 11;3; 5.378092,-1.647068, 2.876912;;, + 12;3; 5.378092,-1.647068, 2.876912;;, + 13;3; 5.378092,-1.647068, 2.876912;;, + 14;3; 5.378092,-1.647068, 2.876912;;, + 15;3; 5.378092,-1.647068, 2.876912;;, + 16;3; 5.378092,-1.647068, 2.876912;;, + 17;3; 5.378092,-1.647068, 2.876912;;, + 18;3; 5.378092,-1.647068, 2.876912;;, + 19;3; 5.378092,-1.647068, 2.876912;;, + 20;3; 5.378092,-1.647068, 2.876912;;, + 21;3; 5.378092,-1.647068, 2.876912;;, + 22;3; 5.378092,-1.647068, 2.876912;;, + 23;3; 5.378092,-1.647068, 2.876912;;, + 24;3; 5.378092,-1.647068, 2.876912;;, + 25;3; 5.378092,-1.647068, 2.876912;;, + 26;3; 5.378092,-1.647068, 2.876912;;, + 27;3; 5.378092,-1.647068, 2.876912;;, + 28;3; 5.378092,-1.647068, 2.876912;;, + 29;3; 5.378092,-1.647068, 2.876912;;, + 30;3; 5.378092,-1.647068, 2.876912;;, + 31;3; 5.378092,-1.647068, 2.876912;;, + 32;3; 5.378092,-1.647068, 2.876912;;, + 33;3; 5.378092,-1.647068, 2.876912;;, + 34;3; 5.378092,-1.647068, 2.876912;;, + 35;3; 5.378092,-1.647068, 2.876912;;, + 36;3; 5.378092,-1.647068, 2.882412;;, + 37;3; 5.378092,-1.647068, 2.898830;;, + 38;3; 5.378092,-1.647068, 2.924675;;, + 39;3; 5.378092,-1.647068, 2.956158;;, + 40;3; 5.378092,-1.647068, 2.987640;;, + 41;3; 5.378092,-1.647068, 3.013484;;, + 42;3; 5.378092,-1.647068, 3.029901;;, + 43;3; 5.378092,-1.647068, 3.035401;;, + 44;3; 5.378092,-1.647068, 3.031038;;, + 45;3; 5.378092,-1.647068, 3.017950;;, + 46;3; 5.378092,-1.647068, 2.996935;;, + 47;3; 5.378092,-1.647068, 2.970201;;, + 48;3; 5.378092,-1.647068, 2.941358;;, + 49;3; 5.378092,-1.647068, 2.914623;;, + 50;3; 5.378092,-1.647068, 2.893608;;, + 51;3; 5.378092,-1.647068, 2.880520;;, + 52;3; 5.378092,-1.647068, 2.876157;;, + 53;3; 5.378092,-1.647068, 2.886195;;, + 54;3; 5.378092,-1.647068, 2.915410;;, + 55;3; 5.378092,-1.647068, 2.957406;;, + 56;3; 5.378092,-1.647068, 2.999403;;, + 57;3; 5.378092,-1.647068, 3.028617;;, + 58;3; 5.378092,-1.647068, 3.038655;;, + 59;3; 5.378092,-1.647068, 3.031317;;, + 60;3; 5.378092,-1.647068, 3.009612;;, + 61;3; 5.378092,-1.647068, 2.976541;;, + 62;3; 5.378092,-1.647069, 2.939030;;, + 63;3; 5.378092,-1.647069, 2.905957;;, + 64;3; 5.378092,-1.647068, 2.884250;;, + 65;3; 5.378092,-1.647068, 2.876912;;, + 66;3; 5.378092,-1.647068, 2.876912;;, + 67;3; 5.378092,-1.647068, 2.876912;;, + 68;3; 5.378092,-1.647068, 2.876912;;, + 69;3; 5.378092,-1.647068, 2.876912;;, + 70;3; 5.378092,-1.647068, 2.876912;;, + 71;3; 5.378092,-1.647068, 2.876912;;, + 72;3; 5.378092,-1.647068, 2.876912;;, + 73;3; 5.378092,-1.647068, 2.876912;;, + 74;3; 5.378092,-1.647068, 2.876912;;, + 75;3; 5.378092,-1.647068, 2.876912;;, + 76;3; 5.378092,-1.647068, 2.876912;;, + 77;3; 5.378092,-1.647068, 2.876912;;, + 78;3; 5.378092,-1.647068, 2.876912;;, + 79;3; 5.378092,-1.647068, 2.876912;;, + 80;3; 5.378092,-1.647068, 2.876912;;, + 81;3; 5.378092,-1.647068, 2.876912;;, + 82;3; 5.378092,-1.647068, 2.876912;;, + 83;3; 5.378092,-1.647068, 2.876912;;, + 84;3; 5.378092,-1.647068, 2.876912;;, + 85;3; 5.378092,-1.647068, 2.876912;;, + 86;3; 5.378092,-1.647068, 2.876912;;, + 87;3; 5.378092,-1.647068, 2.876912;;, + 88;3; 5.378092,-1.647068, 2.876912;;, + 89;3; 5.378092,-1.647068, 2.876912;;, + 90;3; 5.378092,-1.647068, 2.876912;;, + 91;3; 5.378092,-1.647068, 2.876912;;, + 92;3; 5.378092,-1.647068, 2.876912;;, + 93;3; 5.378092,-1.647068, 2.876912;;, + 94;3; 5.378092,-1.647068, 2.876912;;, + 95;3; 5.378092,-1.647068, 2.876912;;, + 96;3; 5.378092,-1.647068, 2.876912;;, + 97;3; 5.378092,-1.647068, 2.876912;;, + 98;3; 5.378092,-1.647068, 2.876912;;, + 99;3; 5.378092,-1.647068, 2.876912;;, + 100;3; 5.378092,-1.647068, 2.876912;;, + 101;3; 5.378092,-1.647068, 2.876912;;, + 102;3; 5.378092,-1.647068, 2.876912;;, + 103;3; 5.378092,-1.647068, 2.876912;;, + 104;3; 5.378092,-1.647068, 2.876912;;, + 105;3; 5.378092,-1.647068, 2.876912;;, + 106;3; 5.378092,-1.647068, 2.882412;;, + 107;3; 5.378092,-1.647068, 2.898830;;, + 108;3; 5.378092,-1.647068, 2.924675;;, + 109;3; 5.378092,-1.647068, 2.956157;;, + 110;3; 5.378092,-1.647068, 2.987640;;, + 111;3; 5.378092,-1.647068, 3.013484;;, + 112;3; 5.378092,-1.647068, 3.029901;;, + 113;3; 5.378092,-1.647068, 3.035401;;, + 114;3; 5.378092,-1.647068, 3.030918;;, + 115;3; 5.378092,-1.647068, 3.017950;;, + 116;3; 5.378092,-1.647068, 2.999916;;, + 117;3; 5.378092,-1.647068, 2.975391;;, + 118;3; 5.378092,-1.647068, 2.946747;;, + 119;3; 5.378092,-1.647068, 2.918379;;, + 120;3; 5.378092,-1.647068, 2.895288;;, + 121;3; 5.378092,-1.647068, 2.880877;;, + 122;3; 5.378092,-1.647068, 2.876157;;, + 123;3; 5.378092,-1.647068, 2.886195;;, + 124;3; 5.378092,-1.647068, 2.915409;;, + 125;3; 5.378092,-1.647068, 2.957406;;, + 126;3; 5.378092,-1.647068, 2.999403;;, + 127;3; 5.378092,-1.647068, 3.028617;;, + 128;3; 5.378092,-1.647068, 3.038655;;, + 129;3; 5.378092,-1.647068, 3.031318;;, + 130;3; 5.378092,-1.647069, 3.009614;;, + 131;3; 5.378092,-1.647069, 2.976547;;, + 132;3; 5.378092,-1.647069, 2.939038;;, + 133;3; 5.378092,-1.647069, 2.905964;;, + 134;3; 5.378092,-1.647069, 2.884252;;, + 135;3; 5.378092,-1.647068, 2.876912;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 1;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 2;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 3;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 4;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 5;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 6;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 7;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 8;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 9;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 10;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 11;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 12;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 13;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 14;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 15;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 16;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 17;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 18;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 19;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 20;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 21;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 22;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 23;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 24;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 25;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 26;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 27;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 28;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 29;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 30;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 31;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 32;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 33;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 34;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 35;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 36;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 37;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 38;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 39;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 40;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 41;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 42;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 43;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 44;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 45;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 46;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 47;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 48;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 49;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 50;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 51;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 52;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 53;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 54;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 55;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 56;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 57;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 58;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 59;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 60;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 61;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 62;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 63;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 64;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 65;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 66;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 67;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 68;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 69;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 70;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 71;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 72;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 73;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 74;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 75;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 76;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 77;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 78;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 79;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 80;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 81;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 82;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 83;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 84;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 85;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 86;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 87;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 88;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 89;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 90;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 91;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 92;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 93;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 94;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 95;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 96;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 97;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 98;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 99;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 100;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 101;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 102;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 103;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 104;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 105;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 106;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 107;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 108;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 109;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 110;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 111;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 112;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 113;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 114;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 115;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 116;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 117;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 118;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 119;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 120;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 121;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 122;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 123;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 124;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 125;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 126;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 127;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 128;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 129;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 130;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 131;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 132;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 133;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 134;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 135;4; -0.999132, 0.041662, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 136; + 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;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga3} + AnimationKey { //Position + 2; + 136; + 0;3; 0.824256,-0.011078,-1.204985;;, + 1;3; 0.824256,-0.011078,-1.204985;;, + 2;3; 0.824256,-0.011078,-1.204985;;, + 3;3; 0.824256,-0.011078,-1.204985;;, + 4;3; 0.824256,-0.011078,-1.204985;;, + 5;3; 0.824256,-0.011078,-1.204985;;, + 6;3; 0.824256,-0.011078,-1.204985;;, + 7;3; 0.824256,-0.011078,-1.204985;;, + 8;3; 0.824256,-0.011078,-1.204985;;, + 9;3; 0.824256,-0.011078,-1.204985;;, + 10;3; 0.824256,-0.011078,-1.204985;;, + 11;3; 0.824256,-0.011078,-1.204985;;, + 12;3; 0.824256,-0.011078,-1.204985;;, + 13;3; 0.824256,-0.011078,-1.204985;;, + 14;3; 0.824256,-0.011078,-1.204985;;, + 15;3; 0.824256,-0.011078,-1.204985;;, + 16;3; 0.824256,-0.011078,-1.204985;;, + 17;3; 0.824256,-0.011078,-1.204985;;, + 18;3; 0.824256,-0.011078,-1.204985;;, + 19;3; 0.824256,-0.011078,-1.204985;;, + 20;3; 0.824256,-0.011078,-1.204985;;, + 21;3; 0.824256,-0.011078,-1.204985;;, + 22;3; 0.824256,-0.011078,-1.204985;;, + 23;3; 0.824256,-0.011078,-1.204985;;, + 24;3; 0.824256,-0.011078,-1.204985;;, + 25;3; 0.824256,-0.011078,-1.204985;;, + 26;3; 0.824256,-0.011078,-1.204985;;, + 27;3; 0.824256,-0.011078,-1.204985;;, + 28;3; 0.824256,-0.011078,-1.204985;;, + 29;3; 0.824256,-0.011078,-1.204985;;, + 30;3; 0.824256,-0.011078,-1.204985;;, + 31;3; 0.824256,-0.011078,-1.204985;;, + 32;3; 0.824256,-0.011078,-1.204985;;, + 33;3; 0.824256,-0.011078,-1.204985;;, + 34;3; 0.824256,-0.011078,-1.204985;;, + 35;3; 0.824256,-0.011078,-1.204985;;, + 36;3; 0.824256,-0.011078,-1.204985;;, + 37;3; 0.824256,-0.011078,-1.204985;;, + 38;3; 0.824256,-0.011078,-1.204985;;, + 39;3; 0.824256,-0.011078,-1.204985;;, + 40;3; 0.824256,-0.011078,-1.204985;;, + 41;3; 0.824256,-0.011078,-1.204985;;, + 42;3; 0.824256,-0.011078,-1.204985;;, + 43;3; 0.824256,-0.011078,-1.204985;;, + 44;3; 0.824256,-0.011078,-1.204985;;, + 45;3; 0.824256,-0.011078,-1.204985;;, + 46;3; 0.824256,-0.011078,-1.204985;;, + 47;3; 0.824256,-0.011078,-1.204985;;, + 48;3; 0.824256,-0.011078,-1.204985;;, + 49;3; 0.824256,-0.011078,-1.204985;;, + 50;3; 0.824256,-0.011078,-1.204985;;, + 51;3; 0.824256,-0.011078,-1.204985;;, + 52;3; 0.824256,-0.011078,-1.204985;;, + 53;3; 0.824256,-0.011078,-1.204985;;, + 54;3; 0.824256,-0.011078,-1.204985;;, + 55;3; 0.824256,-0.011078,-1.204985;;, + 56;3; 0.824256,-0.011078,-1.204985;;, + 57;3; 0.824256,-0.011078,-1.204985;;, + 58;3; 0.824256,-0.011078,-1.204985;;, + 59;3; 0.824256,-0.011078,-1.204985;;, + 60;3; 0.824256,-0.011078,-1.204985;;, + 61;3; 0.824256,-0.011078,-1.204985;;, + 62;3; 0.824256,-0.011078,-1.204985;;, + 63;3; 0.824256,-0.011078,-1.204985;;, + 64;3; 0.824256,-0.011078,-1.204985;;, + 65;3; 0.824256,-0.011078,-1.204985;;, + 66;3; 0.824256,-0.011078,-1.204985;;, + 67;3; 0.824256,-0.011078,-1.204985;;, + 68;3; 0.824256,-0.011078,-1.204985;;, + 69;3; 0.824256,-0.011078,-1.204985;;, + 70;3; 0.824256,-0.011078,-1.204985;;, + 71;3; 0.824256,-0.011078,-1.204985;;, + 72;3; 0.824256,-0.011078,-1.204985;;, + 73;3; 0.824256,-0.011078,-1.204985;;, + 74;3; 0.824256,-0.011078,-1.204985;;, + 75;3; 0.824256,-0.011078,-1.204985;;, + 76;3; 0.824256,-0.011078,-1.204985;;, + 77;3; 0.824256,-0.011078,-1.204985;;, + 78;3; 0.824256,-0.011078,-1.204985;;, + 79;3; 0.824256,-0.011078,-1.204985;;, + 80;3; 0.824256,-0.011078,-1.204985;;, + 81;3; 0.824256,-0.011078,-1.204985;;, + 82;3; 0.824256,-0.011078,-1.204985;;, + 83;3; 0.824256,-0.011078,-1.204985;;, + 84;3; 0.824256,-0.011078,-1.204985;;, + 85;3; 0.824256,-0.011078,-1.204985;;, + 86;3; 0.824256,-0.011078,-1.204985;;, + 87;3; 0.824256,-0.011078,-1.204985;;, + 88;3; 0.824256,-0.011078,-1.204985;;, + 89;3; 0.824256,-0.011078,-1.204985;;, + 90;3; 0.824256,-0.011078,-1.204985;;, + 91;3; 0.824256,-0.011078,-1.204985;;, + 92;3; 0.824256,-0.011078,-1.204985;;, + 93;3; 0.824256,-0.011078,-1.204985;;, + 94;3; 0.824256,-0.011078,-1.204985;;, + 95;3; 0.824256,-0.011078,-1.204985;;, + 96;3; 0.824256,-0.011078,-1.204985;;, + 97;3; 0.824256,-0.011078,-1.204985;;, + 98;3; 0.824256,-0.011078,-1.204985;;, + 99;3; 0.824256,-0.011078,-1.204985;;, + 100;3; 0.824256,-0.011078,-1.204985;;, + 101;3; 0.824256,-0.011078,-1.204985;;, + 102;3; 0.824256,-0.011078,-1.204985;;, + 103;3; 0.824256,-0.011078,-1.204985;;, + 104;3; 0.824256,-0.011078,-1.204985;;, + 105;3; 0.824256,-0.011078,-1.204985;;, + 106;3; 0.824256,-0.011078,-1.204985;;, + 107;3; 0.824256,-0.011078,-1.204985;;, + 108;3; 0.824256,-0.011078,-1.204985;;, + 109;3; 0.824256,-0.011078,-1.204985;;, + 110;3; 0.824256,-0.011078,-1.204985;;, + 111;3; 0.824256,-0.011078,-1.204985;;, + 112;3; 0.824256,-0.011078,-1.204985;;, + 113;3; 0.824256,-0.011078,-1.204985;;, + 114;3; 0.824256,-0.011078,-1.204985;;, + 115;3; 0.824256,-0.011078,-1.204985;;, + 116;3; 0.824256,-0.011078,-1.204985;;, + 117;3; 0.824256,-0.011078,-1.204985;;, + 118;3; 0.824256,-0.011078,-1.204985;;, + 119;3; 0.824256,-0.011078,-1.204985;;, + 120;3; 0.824256,-0.011078,-1.204985;;, + 121;3; 0.824256,-0.011078,-1.204985;;, + 122;3; 0.824256,-0.011078,-1.204985;;, + 123;3; 0.824256,-0.011078,-1.204985;;, + 124;3; 0.824256,-0.011078,-1.204985;;, + 125;3; 0.824256,-0.011078,-1.204985;;, + 126;3; 0.824256,-0.011078,-1.204985;;, + 127;3; 0.824256,-0.011078,-1.204985;;, + 128;3; 0.824256,-0.011078,-1.204985;;, + 129;3; 0.824256,-0.011078,-1.204985;;, + 130;3; 0.824256,-0.011078,-1.204985;;, + 131;3; 0.824256,-0.011078,-1.204985;;, + 132;3; 0.824256,-0.011078,-1.204985;;, + 133;3; 0.824256,-0.011078,-1.204985;;, + 134;3; 0.824256,-0.011078,-1.204985;;, + 135;3; 0.824256,-0.011078,-1.204985;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.471419,-0.525048, 0.471419,-0.525048;;, + 37;4; -0.449585,-0.538928, 0.449585,-0.538928;;, + 38;4; -0.415216,-0.560776, 0.415216,-0.560775;;, + 39;4; -0.373354,-0.587385, 0.373354,-0.587385;;, + 40;4; -0.331496,-0.613991, 0.331496,-0.613991;;, + 41;4; -0.297134,-0.635832, 0.297134,-0.635832;;, + 42;4; -0.275307,-0.649706, 0.275307,-0.649706;;, + 43;4; -0.267994,-0.654354, 0.267994,-0.654354;;, + 44;4; -0.271164,-0.651497, 0.271164,-0.651497;;, + 45;4; -0.280754,-0.642868, 0.280754,-0.642868;;, + 46;4; -0.296731,-0.628532, 0.296731,-0.628532;;, + 47;4; -0.318782,-0.608809, 0.318782,-0.608809;;, + 48;4; -0.346239,-0.584351, 0.346239,-0.584351;;, + 49;4; -0.378024,-0.556181, 0.378024,-0.556181;;, + 50;4; -0.412665,-0.525678, 0.412665,-0.525678;;, + 51;4; -0.448397,-0.494478, 0.448398,-0.494477;;, + 52;4; -0.483345,-0.464307, 0.483345,-0.464307;;, + 53;4; -0.515728,-0.436788, 0.515728,-0.436788;;, + 54;4; -0.544052,-0.413272, 0.544052,-0.413272;;, + 55;4; -0.567204,-0.394746, 0.567204,-0.394746;;, + 56;4; -0.584482,-0.381824, 0.584482,-0.381824;;, + 57;4; -0.595539,-0.374790, 0.595539,-0.374790;;, + 58;4; -0.600308,-0.373672, 0.600308,-0.373671;;, + 59;4; -0.596120,-0.381769, 0.596120,-0.381769;;, + 60;4; -0.580435,-0.402142, 0.580435,-0.402142;;, + 61;4; -0.555540,-0.432097, 0.555540,-0.432097;;, + 62;4; -0.526829,-0.465563, 0.526829,-0.465563;;, + 63;4; -0.501294,-0.494832, 0.501294,-0.494832;;, + 64;4; -0.484447,-0.513952, 0.484447,-0.513952;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.463301,-0.526860, 0.463301,-0.526859;;, + 107;4; -0.417252,-0.546134, 0.417252,-0.546134;;, + 108;4; -0.344789,-0.576451, 0.344789,-0.576451;;, + 109;4; -0.256546,-0.613358, 0.256546,-0.613358;;, + 110;4; -0.168312,-0.650257, 0.168312,-0.650257;;, + 111;4; -0.095870,-0.680556, 0.095870,-0.680556;;, + 112;4; -0.049840,-0.699813, 0.049840,-0.699813;;, + 113;4; -0.034414,-0.706269, 0.034414,-0.706269;;, + 114;4; -0.037872,-0.703537, 0.037872,-0.703537;;, + 115;4; -0.057302,-0.688805, 0.057302,-0.688805;;, + 116;4; -0.091541,-0.663016, 0.091541,-0.663016;;, + 117;4; -0.137489,-0.628455, 0.137490,-0.628455;;, + 118;4; -0.191915,-0.587762, 0.191915,-0.587762;;, + 119;4; -0.251696,-0.543478, 0.251696,-0.543478;;, + 120;4; -0.313906,-0.497971, 0.313906,-0.497971;;, + 121;4; -0.375876,-0.453394, 0.375877,-0.453394;;, + 122;4; -0.435236,-0.411649, 0.435236,-0.411649;;, + 123;4; -0.489928,-0.374380, 0.489928,-0.374380;;, + 124;4; -0.538212,-0.342968, 0.538212,-0.342968;;, + 125;4; -0.578647,-0.318547, 0.578647,-0.318547;;, + 126;4; -0.610074,-0.302025, 0.610074,-0.302024;;, + 127;4; -0.631585,-0.294102, 0.631585,-0.294102;;, + 128;4; -0.642492,-0.295303, 0.642492,-0.295303;;, + 129;4; -0.639410,-0.310234, 0.639410,-0.310233;;, + 130;4; -0.619509,-0.342661, 0.619509,-0.342661;;, + 131;4; -0.585929,-0.388513, 0.585929,-0.388513;;, + 132;4; -0.546281,-0.438858, 0.546281,-0.438858;;, + 133;4; -0.510571,-0.482497, 0.510571,-0.482497;;, + 134;4; -0.486826,-0.510862, 0.486826,-0.510862;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 136; + 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;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga1} + AnimationKey { //Position + 2; + 136; + 0;3; 0.784448, 3.021216,-1.494725;;, + 1;3; 0.784448, 3.021216,-1.494725;;, + 2;3; 0.784448, 3.021216,-1.494725;;, + 3;3; 0.784448, 3.021216,-1.494725;;, + 4;3; 0.784448, 3.021216,-1.494725;;, + 5;3; 0.784448, 3.021216,-1.494725;;, + 6;3; 0.784448, 3.021216,-1.494725;;, + 7;3; 0.784448, 3.021216,-1.494725;;, + 8;3; 0.784448, 3.021216,-1.494725;;, + 9;3; 0.784448, 3.021216,-1.494725;;, + 10;3; 0.784448, 3.021216,-1.494725;;, + 11;3; 0.784448, 3.021216,-1.494725;;, + 12;3; 0.784448, 3.021216,-1.494725;;, + 13;3; 0.784448, 3.021216,-1.494725;;, + 14;3; 0.784448, 3.021216,-1.494725;;, + 15;3; 0.784448, 3.021216,-1.494725;;, + 16;3; 0.784448, 3.021216,-1.494725;;, + 17;3; 0.784448, 3.021216,-1.494725;;, + 18;3; 0.784448, 3.021216,-1.494725;;, + 19;3; 0.784448, 3.021216,-1.494725;;, + 20;3; 0.784448, 3.021216,-1.494725;;, + 21;3; 0.784448, 3.021216,-1.494725;;, + 22;3; 0.784448, 3.021216,-1.494725;;, + 23;3; 0.784448, 3.021216,-1.494725;;, + 24;3; 0.784448, 3.021216,-1.494725;;, + 25;3; 0.784448, 3.021216,-1.494725;;, + 26;3; 0.784448, 3.021216,-1.494725;;, + 27;3; 0.784448, 3.021216,-1.494725;;, + 28;3; 0.784448, 3.021216,-1.494725;;, + 29;3; 0.784448, 3.021216,-1.494725;;, + 30;3; 0.784448, 3.021216,-1.494725;;, + 31;3; 0.784448, 3.021216,-1.494725;;, + 32;3; 0.784448, 3.021216,-1.494725;;, + 33;3; 0.784448, 3.021216,-1.494725;;, + 34;3; 0.784448, 3.021216,-1.494725;;, + 35;3; 0.784448, 3.021216,-1.494725;;, + 36;3; 0.784448, 3.021216,-1.494725;;, + 37;3; 0.784448, 3.021216,-1.494725;;, + 38;3; 0.784448, 3.021216,-1.494725;;, + 39;3; 0.784448, 3.021216,-1.494725;;, + 40;3; 0.784448, 3.021216,-1.494725;;, + 41;3; 0.784448, 3.021216,-1.494725;;, + 42;3; 0.784448, 3.021216,-1.494725;;, + 43;3; 0.784448, 3.021216,-1.494725;;, + 44;3; 0.784448, 3.021216,-1.494725;;, + 45;3; 0.784448, 3.021216,-1.494725;;, + 46;3; 0.784448, 3.021216,-1.494725;;, + 47;3; 0.784448, 3.021216,-1.494725;;, + 48;3; 0.784448, 3.021216,-1.494725;;, + 49;3; 0.784448, 3.021216,-1.494725;;, + 50;3; 0.784448, 3.021216,-1.494725;;, + 51;3; 0.784448, 3.021216,-1.494725;;, + 52;3; 0.784448, 3.021216,-1.494725;;, + 53;3; 0.784448, 3.021216,-1.494725;;, + 54;3; 0.784448, 3.021216,-1.494725;;, + 55;3; 0.784448, 3.021216,-1.494725;;, + 56;3; 0.784448, 3.021216,-1.494725;;, + 57;3; 0.784448, 3.021216,-1.494725;;, + 58;3; 0.784448, 3.021216,-1.494725;;, + 59;3; 0.784448, 3.021216,-1.494725;;, + 60;3; 0.784448, 3.021216,-1.494725;;, + 61;3; 0.784448, 3.021216,-1.494725;;, + 62;3; 0.784448, 3.021216,-1.494725;;, + 63;3; 0.784448, 3.021216,-1.494725;;, + 64;3; 0.784448, 3.021216,-1.494725;;, + 65;3; 0.784448, 3.021216,-1.494725;;, + 66;3; 0.784448, 3.021216,-1.494725;;, + 67;3; 0.784448, 3.021216,-1.494725;;, + 68;3; 0.784448, 3.021216,-1.494725;;, + 69;3; 0.784448, 3.021216,-1.494725;;, + 70;3; 0.784448, 3.021216,-1.494725;;, + 71;3; 0.784448, 3.021216,-1.494725;;, + 72;3; 0.784448, 3.021216,-1.494725;;, + 73;3; 0.784448, 3.021216,-1.494725;;, + 74;3; 0.784448, 3.021216,-1.494725;;, + 75;3; 0.784448, 3.021216,-1.494725;;, + 76;3; 0.784448, 3.021216,-1.494725;;, + 77;3; 0.784448, 3.021216,-1.494725;;, + 78;3; 0.784448, 3.021216,-1.494725;;, + 79;3; 0.784448, 3.021216,-1.494725;;, + 80;3; 0.784448, 3.021216,-1.494725;;, + 81;3; 0.784448, 3.021216,-1.494725;;, + 82;3; 0.784448, 3.021216,-1.494725;;, + 83;3; 0.784448, 3.021216,-1.494725;;, + 84;3; 0.784448, 3.021216,-1.494725;;, + 85;3; 0.784448, 3.021216,-1.494725;;, + 86;3; 0.784448, 3.021216,-1.494725;;, + 87;3; 0.784448, 3.021216,-1.494725;;, + 88;3; 0.784448, 3.021216,-1.494725;;, + 89;3; 0.784448, 3.021216,-1.494725;;, + 90;3; 0.784448, 3.021216,-1.494725;;, + 91;3; 0.784448, 3.021216,-1.494725;;, + 92;3; 0.784448, 3.021216,-1.494725;;, + 93;3; 0.784448, 3.021216,-1.494725;;, + 94;3; 0.784448, 3.021216,-1.494725;;, + 95;3; 0.784448, 3.021216,-1.494725;;, + 96;3; 0.784448, 3.021216,-1.494725;;, + 97;3; 0.784448, 3.021216,-1.494725;;, + 98;3; 0.784448, 3.021216,-1.494725;;, + 99;3; 0.784448, 3.021216,-1.494725;;, + 100;3; 0.784448, 3.021216,-1.494725;;, + 101;3; 0.784448, 3.021216,-1.494725;;, + 102;3; 0.784448, 3.021216,-1.494725;;, + 103;3; 0.784448, 3.021216,-1.494725;;, + 104;3; 0.784448, 3.021216,-1.494725;;, + 105;3; 0.784448, 3.021216,-1.494725;;, + 106;3; 0.784448, 3.021216,-1.494725;;, + 107;3; 0.784448, 3.021216,-1.494725;;, + 108;3; 0.784448, 3.021216,-1.494725;;, + 109;3; 0.784448, 3.021216,-1.494725;;, + 110;3; 0.784448, 3.021216,-1.494725;;, + 111;3; 0.784448, 3.021216,-1.494725;;, + 112;3; 0.784448, 3.021216,-1.494725;;, + 113;3; 0.784448, 3.021216,-1.494725;;, + 114;3; 0.784448, 3.021216,-1.494725;;, + 115;3; 0.784448, 3.021216,-1.494725;;, + 116;3; 0.784448, 3.021216,-1.494725;;, + 117;3; 0.784448, 3.021216,-1.494725;;, + 118;3; 0.784448, 3.021216,-1.494725;;, + 119;3; 0.784448, 3.021216,-1.494725;;, + 120;3; 0.784448, 3.021216,-1.494725;;, + 121;3; 0.784448, 3.021216,-1.494725;;, + 122;3; 0.784448, 3.021216,-1.494725;;, + 123;3; 0.784448, 3.021216,-1.494725;;, + 124;3; 0.784448, 3.021216,-1.494725;;, + 125;3; 0.784448, 3.021216,-1.494725;;, + 126;3; 0.784448, 3.021216,-1.494725;;, + 127;3; 0.784448, 3.021216,-1.494725;;, + 128;3; 0.784448, 3.021216,-1.494725;;, + 129;3; 0.784448, 3.021216,-1.494725;;, + 130;3; 0.784448, 3.021216,-1.494725;;, + 131;3; 0.784448, 3.021216,-1.494725;;, + 132;3; 0.784448, 3.021216,-1.494725;;, + 133;3; 0.784448, 3.021216,-1.494725;;, + 134;3; 0.784448, 3.021216,-1.494725;;, + 135;3; 0.784448, 3.021216,-1.494725;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.483955,-0.513539, 0.483955,-0.513539;;, + 37;4; -0.499536,-0.493071, 0.499536,-0.493071;;, + 38;4; -0.524060,-0.460853, 0.524060,-0.460853;;, + 39;4; -0.553930,-0.421610, 0.553930,-0.421610;;, + 40;4; -0.583796,-0.382370, 0.583796,-0.382370;;, + 41;4; -0.608313,-0.350158, 0.608313,-0.350158;;, + 42;4; -0.623887,-0.329697, 0.623887,-0.329697;;, + 43;4; -0.629105,-0.322842, 0.629105,-0.322841;;, + 44;4; -0.626395,-0.325558, 0.626395,-0.325558;;, + 45;4; -0.618208,-0.333776, 0.618207,-0.333776;;, + 46;4; -0.604601,-0.347469, 0.604601,-0.347469;;, + 47;4; -0.585875,-0.366370, 0.585875,-0.366370;;, + 48;4; -0.562643,-0.389905, 0.562643,-0.389905;;, + 49;4; -0.535871,-0.417154, 0.535871,-0.417154;;, + 50;4; -0.506861,-0.446856, 0.506861,-0.446856;;, + 51;4; -0.477161,-0.477500, 0.477161,-0.477500;;, + 52;4; -0.448405,-0.507479, 0.448405,-0.507479;;, + 53;4; -0.422131,-0.535269, 0.422131,-0.535268;;, + 54;4; -0.399618,-0.559587, 0.399618,-0.559587;;, + 55;4; -0.381808,-0.579482, 0.381808,-0.579482;;, + 56;4; -0.369282,-0.594349, 0.369282,-0.594349;;, + 57;4; -0.362313,-0.603892, 0.362313,-0.603892;;, + 58;4; -0.360931,-0.608053, 0.360931,-0.608053;;, + 59;4; -0.367377,-0.605275, 0.367377,-0.605275;;, + 60;4; -0.383708,-0.594080, 0.383708,-0.594080;;, + 61;4; -0.407762,-0.576122, 0.407762,-0.576122;;, + 62;4; -0.434653,-0.555326, 0.434653,-0.555326;;, + 63;4; -0.458181,-0.536793, 0.458181,-0.536793;;, + 64;4; -0.473553,-0.524551, 0.473553,-0.524551;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.486441,-0.505692, 0.486441,-0.505691;;, + 107;4; -0.509428,-0.461814, 0.509428,-0.461814;;, + 108;4; -0.545587,-0.392767, 0.545587,-0.392767;;, + 109;4; -0.589608,-0.308682, 0.589608,-0.308682;;, + 110;4; -0.633619,-0.224607, 0.633619,-0.224607;;, + 111;4; -0.669755,-0.155581, 0.669755,-0.155581;;, + 112;4; -0.692721,-0.111723, 0.692721,-0.111723;;, + 113;4; -0.700419,-0.097025, 0.700419,-0.097025;;, + 114;4; -0.696763,-0.100406, 0.696763,-0.100406;;, + 115;4; -0.676592,-0.119091, 0.676592,-0.119091;;, + 116;4; -0.641210,-0.152012, 0.641210,-0.152012;;, + 117;4; -0.593929,-0.196363, 0.593929,-0.196363;;, + 118;4; -0.538312,-0.249035, 0.538312,-0.249035;;, + 119;4; -0.477783,-0.307026, 0.477783,-0.307026;;, + 120;4; -0.415539,-0.367521, 0.415539,-0.367521;;, + 121;4; -0.354482,-0.427953, 0.354482,-0.427953;;, + 122;4; -0.297180,-0.486038, 0.297180,-0.486038;;, + 123;4; -0.245847,-0.539794, 0.245847,-0.539794;;, + 124;4; -0.202350,-0.587542, 0.202350,-0.587542;;, + 125;4; -0.168222,-0.627892, 0.168222,-0.627892;;, + 126;4; -0.144686,-0.659719, 0.144686,-0.659719;;, + 127;4; -0.132693,-0.682144, 0.132693,-0.682144;;, + 128;4; -0.132952,-0.694495, 0.132953,-0.694495;;, + 129;4; -0.153888,-0.692321, 0.153888,-0.692321;;, + 130;4; -0.202733,-0.671710, 0.202733,-0.671710;;, + 131;4; -0.273188,-0.636020, 0.273188,-0.636020;;, + 132;4; -0.351280,-0.593466, 0.351280,-0.593466;;, + 133;4; -0.419352,-0.554921, 0.419352,-0.554921;;, + 134;4; -0.463768,-0.529189, 0.463768,-0.529189;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 136; + 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;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga4} + AnimationKey { //Position + 2; + 136; + 0;3; -0.923299,-0.011159,-1.205961;;, + 1;3; -0.923299,-0.011159,-1.205961;;, + 2;3; -0.923299,-0.011159,-1.205961;;, + 3;3; -0.923299,-0.011159,-1.205961;;, + 4;3; -0.923299,-0.011159,-1.205961;;, + 5;3; -0.923299,-0.011159,-1.205961;;, + 6;3; -0.923299,-0.011159,-1.205961;;, + 7;3; -0.923299,-0.011159,-1.205961;;, + 8;3; -0.923299,-0.011159,-1.205961;;, + 9;3; -0.923299,-0.011159,-1.205961;;, + 10;3; -0.923299,-0.011159,-1.205961;;, + 11;3; -0.923299,-0.011159,-1.205961;;, + 12;3; -0.923299,-0.011159,-1.205961;;, + 13;3; -0.923299,-0.011159,-1.205961;;, + 14;3; -0.923299,-0.011159,-1.205961;;, + 15;3; -0.923299,-0.011159,-1.205961;;, + 16;3; -0.923299,-0.011159,-1.205961;;, + 17;3; -0.923299,-0.011159,-1.205961;;, + 18;3; -0.923299,-0.011159,-1.205961;;, + 19;3; -0.923299,-0.011159,-1.205961;;, + 20;3; -0.923299,-0.011159,-1.205961;;, + 21;3; -0.923299,-0.011159,-1.205961;;, + 22;3; -0.923299,-0.011159,-1.205961;;, + 23;3; -0.923299,-0.011159,-1.205961;;, + 24;3; -0.923299,-0.011159,-1.205961;;, + 25;3; -0.923299,-0.011159,-1.205961;;, + 26;3; -0.923299,-0.011159,-1.205961;;, + 27;3; -0.923299,-0.011159,-1.205961;;, + 28;3; -0.923299,-0.011159,-1.205961;;, + 29;3; -0.923299,-0.011159,-1.205961;;, + 30;3; -0.923299,-0.011159,-1.205961;;, + 31;3; -0.923299,-0.011159,-1.205961;;, + 32;3; -0.923299,-0.011159,-1.205961;;, + 33;3; -0.923299,-0.011159,-1.205961;;, + 34;3; -0.923299,-0.011159,-1.205961;;, + 35;3; -0.923299,-0.011159,-1.205961;;, + 36;3; -0.923299,-0.011159,-1.205961;;, + 37;3; -0.923299,-0.011159,-1.205961;;, + 38;3; -0.923299,-0.011159,-1.205961;;, + 39;3; -0.923299,-0.011159,-1.205961;;, + 40;3; -0.923299,-0.011159,-1.205961;;, + 41;3; -0.923299,-0.011159,-1.205961;;, + 42;3; -0.923299,-0.011159,-1.205961;;, + 43;3; -0.923299,-0.011159,-1.205961;;, + 44;3; -0.923299,-0.011159,-1.205961;;, + 45;3; -0.923299,-0.011159,-1.205961;;, + 46;3; -0.923299,-0.011159,-1.205961;;, + 47;3; -0.923299,-0.011159,-1.205961;;, + 48;3; -0.923299,-0.011159,-1.205961;;, + 49;3; -0.923299,-0.011159,-1.205961;;, + 50;3; -0.923299,-0.011159,-1.205961;;, + 51;3; -0.923299,-0.011159,-1.205961;;, + 52;3; -0.923299,-0.011159,-1.205961;;, + 53;3; -0.923299,-0.011159,-1.205961;;, + 54;3; -0.923299,-0.011159,-1.205961;;, + 55;3; -0.923299,-0.011159,-1.205961;;, + 56;3; -0.923299,-0.011159,-1.205961;;, + 57;3; -0.923299,-0.011159,-1.205961;;, + 58;3; -0.923299,-0.011159,-1.205961;;, + 59;3; -0.923299,-0.011159,-1.205961;;, + 60;3; -0.923299,-0.011159,-1.205961;;, + 61;3; -0.923299,-0.011159,-1.205961;;, + 62;3; -0.923299,-0.011159,-1.205961;;, + 63;3; -0.923299,-0.011159,-1.205961;;, + 64;3; -0.923299,-0.011159,-1.205961;;, + 65;3; -0.923299,-0.011159,-1.205961;;, + 66;3; -0.923299,-0.011159,-1.205961;;, + 67;3; -0.923299,-0.011159,-1.205961;;, + 68;3; -0.923299,-0.011159,-1.205961;;, + 69;3; -0.923299,-0.011159,-1.205961;;, + 70;3; -0.923299,-0.011159,-1.205961;;, + 71;3; -0.923299,-0.011159,-1.205961;;, + 72;3; -0.923299,-0.011159,-1.205961;;, + 73;3; -0.923299,-0.011159,-1.205961;;, + 74;3; -0.923299,-0.011159,-1.205961;;, + 75;3; -0.923299,-0.011159,-1.205961;;, + 76;3; -0.923299,-0.011159,-1.205961;;, + 77;3; -0.923299,-0.011159,-1.205961;;, + 78;3; -0.923299,-0.011159,-1.205961;;, + 79;3; -0.923299,-0.011159,-1.205961;;, + 80;3; -0.923299,-0.011159,-1.205961;;, + 81;3; -0.923299,-0.011159,-1.205961;;, + 82;3; -0.923299,-0.011159,-1.205961;;, + 83;3; -0.923299,-0.011159,-1.205961;;, + 84;3; -0.923299,-0.011159,-1.205961;;, + 85;3; -0.923299,-0.011159,-1.205961;;, + 86;3; -0.923299,-0.011159,-1.205961;;, + 87;3; -0.923299,-0.011159,-1.205961;;, + 88;3; -0.923299,-0.011159,-1.205961;;, + 89;3; -0.923299,-0.011159,-1.205961;;, + 90;3; -0.923299,-0.011159,-1.205961;;, + 91;3; -0.923299,-0.011159,-1.205961;;, + 92;3; -0.923299,-0.011159,-1.205961;;, + 93;3; -0.923299,-0.011159,-1.205961;;, + 94;3; -0.923299,-0.011159,-1.205961;;, + 95;3; -0.923299,-0.011159,-1.205961;;, + 96;3; -0.923299,-0.011159,-1.205961;;, + 97;3; -0.923299,-0.011159,-1.205961;;, + 98;3; -0.923299,-0.011159,-1.205961;;, + 99;3; -0.923299,-0.011159,-1.205961;;, + 100;3; -0.923299,-0.011159,-1.205961;;, + 101;3; -0.923299,-0.011159,-1.205961;;, + 102;3; -0.923299,-0.011159,-1.205961;;, + 103;3; -0.923299,-0.011159,-1.205961;;, + 104;3; -0.923299,-0.011159,-1.205961;;, + 105;3; -0.923299,-0.011159,-1.205961;;, + 106;3; -0.923299,-0.011159,-1.205961;;, + 107;3; -0.923299,-0.011159,-1.205961;;, + 108;3; -0.923299,-0.011159,-1.205961;;, + 109;3; -0.923299,-0.011159,-1.205961;;, + 110;3; -0.923299,-0.011159,-1.205961;;, + 111;3; -0.923299,-0.011159,-1.205961;;, + 112;3; -0.923299,-0.011159,-1.205961;;, + 113;3; -0.923299,-0.011159,-1.205961;;, + 114;3; -0.923299,-0.011159,-1.205961;;, + 115;3; -0.923299,-0.011159,-1.205961;;, + 116;3; -0.923299,-0.011159,-1.205961;;, + 117;3; -0.923299,-0.011159,-1.205961;;, + 118;3; -0.923299,-0.011159,-1.205961;;, + 119;3; -0.923299,-0.011159,-1.205961;;, + 120;3; -0.923299,-0.011159,-1.205961;;, + 121;3; -0.923299,-0.011159,-1.205961;;, + 122;3; -0.923299,-0.011159,-1.205961;;, + 123;3; -0.923299,-0.011159,-1.205961;;, + 124;3; -0.923299,-0.011159,-1.205961;;, + 125;3; -0.923299,-0.011159,-1.205961;;, + 126;3; -0.923299,-0.011159,-1.205961;;, + 127;3; -0.923299,-0.011159,-1.205961;;, + 128;3; -0.923299,-0.011159,-1.205961;;, + 129;3; -0.923299,-0.011159,-1.205961;;, + 130;3; -0.923299,-0.011159,-1.205961;;, + 131;3; -0.923299,-0.011159,-1.205961;;, + 132;3; -0.923299,-0.011159,-1.205961;;, + 133;3; -0.923299,-0.011159,-1.205961;;, + 134;3; -0.923299,-0.011159,-1.205961;;, + 135;3; -0.923299,-0.011159,-1.205961;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.482184,-0.516822, 0.482185,-0.516822;;, + 37;4; -0.492450,-0.506118, 0.492450,-0.506118;;, + 38;4; -0.508534,-0.489186, 0.508534,-0.489186;;, + 39;4; -0.527984,-0.468405, 0.527984,-0.468405;;, + 40;4; -0.547196,-0.447367, 0.547196,-0.447367;;, + 41;4; -0.562604,-0.429702, 0.562604,-0.429702;;, + 42;4; -0.571844,-0.417885, 0.571844,-0.417885;;, + 43;4; -0.574016,-0.412923, 0.574016,-0.412923;;, + 44;4; -0.569663,-0.413978, 0.569663,-0.413978;;, + 45;4; -0.559287,-0.420193, 0.559287,-0.420193;;, + 46;4; -0.542949,-0.431542, 0.542949,-0.431542;;, + 47;4; -0.520977,-0.447777, 0.520977,-0.447776;;, + 48;4; -0.494044,-0.468360, 0.494044,-0.468360;;, + 49;4; -0.463210,-0.492430, 0.463210,-0.492430;;, + 50;4; -0.429904,-0.518806, 0.429904,-0.518806;;, + 51;4; -0.395827,-0.546074, 0.395827,-0.546074;;, + 52;4; -0.362775,-0.572726, 0.362775,-0.572726;;, + 53;4; -0.332436,-0.597335, 0.332436,-0.597335;;, + 54;4; -0.306220,-0.618699, 0.306220,-0.618698;;, + 55;4; -0.285160,-0.635924, 0.285160,-0.635924;;, + 56;4; -0.269898,-0.648444, 0.269898,-0.648443;;, + 57;4; -0.260736,-0.655978, 0.260736,-0.655978;;, + 58;4; -0.257707,-0.658473, 0.257707,-0.658473;;, + 59;4; -0.267733,-0.652210, 0.267733,-0.652210;;, + 60;4; -0.297392,-0.633683, 0.297392,-0.633683;;, + 61;4; -0.342579,-0.605457, 0.342579,-0.605457;;, + 62;4; -0.393836,-0.573438, 0.393836,-0.573438;;, + 63;4; -0.439033,-0.545202, 0.439033,-0.545202;;, + 64;4; -0.468704,-0.526665, 0.468704,-0.526665;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.486744,-0.509400, 0.486744,-0.509400;;, + 107;4; -0.510455,-0.476386, 0.510455,-0.476386;;, + 108;4; -0.547311,-0.423935, 0.547311,-0.423935;;, + 109;4; -0.591333,-0.359126, 0.591333,-0.359126;;, + 110;4; -0.633927,-0.292779, 0.633927,-0.292779;;, + 111;4; -0.666718,-0.235944, 0.666718,-0.235944;;, + 112;4; -0.684263,-0.196259, 0.684263,-0.196259;;, + 113;4; -0.684609,-0.176946, 0.684609,-0.176946;;, + 114;4; -0.672960,-0.172187, 0.672960,-0.172187;;, + 115;4; -0.645206,-0.185654, 0.645206,-0.185654;;, + 116;4; -0.601532,-0.214884, 0.601532,-0.214884;;, + 117;4; -0.544660,-0.255951, 0.544660,-0.255951;;, + 118;4; -0.478481,-0.305578, 0.478481,-0.305578;;, + 119;4; -0.406739,-0.360603, 0.406739,-0.360603;;, + 120;4; -0.332928,-0.418069, 0.332928,-0.418069;;, + 121;4; -0.260224,-0.475279, 0.260224,-0.475279;;, + 122;4; -0.191436,-0.529837, 0.191436,-0.529837;;, + 123;4; -0.128993,-0.579668, 0.128993,-0.579668;;, + 124;4; -0.074942,-0.623014, 0.074942,-0.623014;;, + 125;4; -0.030964,-0.658422, 0.030964,-0.658422;;, + 126;4; 0.001591,-0.684719,-0.001591,-0.684719;;, + 127;4; 0.021676,-0.700988,-0.021675,-0.700988;;, + 128;4; 0.028506,-0.706532,-0.028506,-0.706532;;, + 129;4; 0.005515,-0.698107,-0.005515,-0.698107;;, + 130;4; -0.062432,-0.673232, 0.062432,-0.673232;;, + 131;4; -0.165922,-0.635355, 0.165922,-0.635355;;, + 132;4; -0.283421,-0.592296, 0.283422,-0.592296;;, + 133;4; -0.387246,-0.554146, 0.387246,-0.554146;;, + 134;4; -0.455581,-0.528956, 0.455581,-0.528956;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 136; + 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;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga2} + AnimationKey { //Position + 2; + 136; + 0;3; -0.921735, 3.022715,-1.476782;;, + 1;3; -0.921735, 3.022715,-1.476782;;, + 2;3; -0.921735, 3.022715,-1.476782;;, + 3;3; -0.921735, 3.022715,-1.476782;;, + 4;3; -0.921735, 3.022715,-1.476782;;, + 5;3; -0.921735, 3.022715,-1.476782;;, + 6;3; -0.921735, 3.022715,-1.476782;;, + 7;3; -0.921735, 3.022715,-1.476782;;, + 8;3; -0.921735, 3.022715,-1.476782;;, + 9;3; -0.921735, 3.022715,-1.476782;;, + 10;3; -0.921735, 3.022715,-1.476782;;, + 11;3; -0.921735, 3.022715,-1.476782;;, + 12;3; -0.921735, 3.022715,-1.476782;;, + 13;3; -0.921735, 3.022715,-1.476782;;, + 14;3; -0.921735, 3.022715,-1.476782;;, + 15;3; -0.921735, 3.022715,-1.476782;;, + 16;3; -0.921735, 3.022715,-1.476782;;, + 17;3; -0.921735, 3.022715,-1.476782;;, + 18;3; -0.921735, 3.022715,-1.476782;;, + 19;3; -0.921735, 3.022715,-1.476782;;, + 20;3; -0.921735, 3.022715,-1.476782;;, + 21;3; -0.921735, 3.022715,-1.476782;;, + 22;3; -0.921735, 3.022715,-1.476782;;, + 23;3; -0.921735, 3.022715,-1.476782;;, + 24;3; -0.921735, 3.022715,-1.476782;;, + 25;3; -0.921735, 3.022715,-1.476782;;, + 26;3; -0.921735, 3.022715,-1.476782;;, + 27;3; -0.921735, 3.022715,-1.476782;;, + 28;3; -0.921735, 3.022715,-1.476782;;, + 29;3; -0.921735, 3.022715,-1.476782;;, + 30;3; -0.921735, 3.022715,-1.476782;;, + 31;3; -0.921735, 3.022715,-1.476782;;, + 32;3; -0.921735, 3.022715,-1.476782;;, + 33;3; -0.921735, 3.022715,-1.476782;;, + 34;3; -0.921735, 3.022715,-1.476782;;, + 35;3; -0.921735, 3.022715,-1.476782;;, + 36;3; -0.921735, 3.022715,-1.476782;;, + 37;3; -0.921735, 3.022715,-1.476782;;, + 38;3; -0.921735, 3.022716,-1.476782;;, + 39;3; -0.921735, 3.022715,-1.476782;;, + 40;3; -0.921735, 3.022715,-1.476782;;, + 41;3; -0.921735, 3.022715,-1.476782;;, + 42;3; -0.921735, 3.022715,-1.476782;;, + 43;3; -0.921735, 3.022715,-1.476782;;, + 44;3; -0.921735, 3.022715,-1.476782;;, + 45;3; -0.921735, 3.022715,-1.476782;;, + 46;3; -0.921735, 3.022715,-1.476782;;, + 47;3; -0.921735, 3.022715,-1.476782;;, + 48;3; -0.921735, 3.022715,-1.476782;;, + 49;3; -0.921735, 3.022715,-1.476782;;, + 50;3; -0.921735, 3.022715,-1.476782;;, + 51;3; -0.921735, 3.022715,-1.476782;;, + 52;3; -0.921735, 3.022715,-1.476782;;, + 53;3; -0.921735, 3.022715,-1.476782;;, + 54;3; -0.921735, 3.022715,-1.476782;;, + 55;3; -0.921735, 3.022715,-1.476782;;, + 56;3; -0.921735, 3.022715,-1.476782;;, + 57;3; -0.921735, 3.022715,-1.476782;;, + 58;3; -0.921735, 3.022715,-1.476782;;, + 59;3; -0.921735, 3.022715,-1.476782;;, + 60;3; -0.921735, 3.022716,-1.476782;;, + 61;3; -0.921735, 3.022715,-1.476782;;, + 62;3; -0.921735, 3.022715,-1.476782;;, + 63;3; -0.921735, 3.022715,-1.476782;;, + 64;3; -0.921735, 3.022715,-1.476782;;, + 65;3; -0.921735, 3.022715,-1.476782;;, + 66;3; -0.921735, 3.022715,-1.476782;;, + 67;3; -0.921735, 3.022715,-1.476782;;, + 68;3; -0.921735, 3.022715,-1.476782;;, + 69;3; -0.921735, 3.022715,-1.476782;;, + 70;3; -0.921735, 3.022715,-1.476782;;, + 71;3; -0.921735, 3.022715,-1.476782;;, + 72;3; -0.921735, 3.022715,-1.476782;;, + 73;3; -0.921735, 3.022715,-1.476782;;, + 74;3; -0.921735, 3.022715,-1.476782;;, + 75;3; -0.921735, 3.022715,-1.476782;;, + 76;3; -0.921735, 3.022715,-1.476782;;, + 77;3; -0.921735, 3.022715,-1.476782;;, + 78;3; -0.921735, 3.022715,-1.476782;;, + 79;3; -0.921735, 3.022715,-1.476782;;, + 80;3; -0.921735, 3.022715,-1.476782;;, + 81;3; -0.921735, 3.022715,-1.476782;;, + 82;3; -0.921735, 3.022715,-1.476782;;, + 83;3; -0.921735, 3.022715,-1.476782;;, + 84;3; -0.921735, 3.022715,-1.476782;;, + 85;3; -0.921735, 3.022715,-1.476782;;, + 86;3; -0.921735, 3.022715,-1.476782;;, + 87;3; -0.921735, 3.022715,-1.476782;;, + 88;3; -0.921735, 3.022715,-1.476782;;, + 89;3; -0.921735, 3.022715,-1.476782;;, + 90;3; -0.921735, 3.022715,-1.476782;;, + 91;3; -0.921735, 3.022715,-1.476782;;, + 92;3; -0.921735, 3.022715,-1.476782;;, + 93;3; -0.921735, 3.022715,-1.476782;;, + 94;3; -0.921735, 3.022715,-1.476782;;, + 95;3; -0.921735, 3.022715,-1.476782;;, + 96;3; -0.921735, 3.022715,-1.476782;;, + 97;3; -0.921735, 3.022715,-1.476782;;, + 98;3; -0.921735, 3.022715,-1.476782;;, + 99;3; -0.921735, 3.022715,-1.476782;;, + 100;3; -0.921735, 3.022715,-1.476782;;, + 101;3; -0.921735, 3.022715,-1.476782;;, + 102;3; -0.921735, 3.022715,-1.476782;;, + 103;3; -0.921735, 3.022715,-1.476782;;, + 104;3; -0.921735, 3.022715,-1.476782;;, + 105;3; -0.921735, 3.022715,-1.476782;;, + 106;3; -0.921735, 3.022715,-1.476782;;, + 107;3; -0.921735, 3.022715,-1.476782;;, + 108;3; -0.921735, 3.022715,-1.476782;;, + 109;3; -0.921735, 3.022715,-1.476782;;, + 110;3; -0.921735, 3.022715,-1.476782;;, + 111;3; -0.921735, 3.022716,-1.476782;;, + 112;3; -0.921735, 3.022715,-1.476782;;, + 113;3; -0.921735, 3.022715,-1.476782;;, + 114;3; -0.921735, 3.022715,-1.476782;;, + 115;3; -0.921735, 3.022715,-1.476782;;, + 116;3; -0.921735, 3.022715,-1.476782;;, + 117;3; -0.921735, 3.022715,-1.476782;;, + 118;3; -0.921735, 3.022715,-1.476782;;, + 119;3; -0.921735, 3.022715,-1.476782;;, + 120;3; -0.921735, 3.022715,-1.476782;;, + 121;3; -0.921735, 3.022716,-1.476782;;, + 122;3; -0.921735, 3.022715,-1.476782;;, + 123;3; -0.921735, 3.022715,-1.476782;;, + 124;3; -0.921735, 3.022716,-1.476782;;, + 125;3; -0.921735, 3.022715,-1.476782;;, + 126;3; -0.921735, 3.022715,-1.476782;;, + 127;3; -0.921735, 3.022715,-1.476782;;, + 128;3; -0.921735, 3.022715,-1.476782;;, + 129;3; -0.921735, 3.022715,-1.476782;;, + 130;3; -0.921735, 3.022715,-1.476782;;, + 131;3; -0.921735, 3.022715,-1.476782;;, + 132;3; -0.921735, 3.022715,-1.476782;;, + 133;3; -0.921735, 3.022715,-1.476782;;, + 134;3; -0.921735, 3.022715,-1.476782;;, + 135;3; -0.921735, 3.022715,-1.476782;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.473719,-0.524120, 0.473719,-0.524120;;, + 37;4; -0.458727,-0.535209, 0.458727,-0.535209;;, + 38;4; -0.435075,-0.552608, 0.435075,-0.552608;;, + 39;4; -0.406169,-0.573697, 0.406169,-0.573697;;, + 40;4; -0.377103,-0.594610, 0.377103,-0.594610;;, + 41;4; -0.352997,-0.611510, 0.352997,-0.611510;;, + 42;4; -0.337312,-0.621841, 0.337312,-0.621841;;, + 43;4; -0.331432,-0.624622, 0.331432,-0.624622;;, + 44;4; -0.333325,-0.621077, 0.333325,-0.621077;;, + 45;4; -0.340931,-0.612412, 0.340931,-0.612412;;, + 46;4; -0.354217,-0.598676, 0.354217,-0.598676;;, + 47;4; -0.372897,-0.580147, 0.372897,-0.580147;;, + 48;4; -0.396367,-0.557394, 0.396367,-0.557394;;, + 49;4; -0.423659,-0.531316, 0.423659,-0.531316;;, + 50;4; -0.453455,-0.503126, 0.453455,-0.503126;;, + 51;4; -0.484175,-0.474267, 0.484175,-0.474267;;, + 52;4; -0.514143,-0.446263, 0.514143,-0.446263;;, + 53;4; -0.541771,-0.420551, 0.541771,-0.420551;;, + 54;4; -0.565727,-0.398327, 0.565727,-0.398327;;, + 55;4; -0.585025,-0.380470, 0.585025,-0.380470;;, + 56;4; -0.599041,-0.367527, 0.599041,-0.367527;;, + 57;4; -0.607470,-0.359756, 0.607470,-0.359756;;, + 58;4; -0.610260,-0.357187, 0.610260,-0.357187;;, + 59;4; -0.604294,-0.364590, 0.604294,-0.364590;;, + 60;4; -0.586645,-0.386491, 0.586645,-0.386491;;, + 61;4; -0.559756,-0.419860, 0.559756,-0.419860;;, + 62;4; -0.529254,-0.457710, 0.529254,-0.457710;;, + 63;4; -0.502359,-0.491084, 0.502359,-0.491084;;, + 64;4; -0.484704,-0.512991, 0.484704,-0.512991;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.469165,-0.526653, 0.469165,-0.526653;;, + 107;4; -0.440481,-0.545184, 0.440481,-0.545184;;, + 108;4; -0.395022,-0.574008, 0.395022,-0.574008;;, + 109;4; -0.339069,-0.608472, 0.339069,-0.608472;;, + 110;4; -0.282145,-0.641872, 0.282145,-0.641872;;, + 111;4; -0.233920,-0.667669, 0.233920,-0.667669;;, + 112;4; -0.201026,-0.681605, 0.201026,-0.681605;;, + 113;4; -0.186209,-0.682148, 0.186209,-0.682148;;, + 114;4; -0.184293,-0.673407, 0.184293,-0.673407;;, + 115;4; -0.198654,-0.652224, 0.198654,-0.652224;;, + 116;4; -0.227327,-0.618733, 0.227327,-0.618733;;, + 117;4; -0.266944,-0.575073, 0.266944,-0.575073;;, + 118;4; -0.314446,-0.524234, 0.314446,-0.524234;;, + 119;4; -0.366879,-0.469097, 0.366879,-0.469097;;, + 120;4; -0.421477,-0.412351, 0.421477,-0.412351;;, + 121;4; -0.475720,-0.356442, 0.475720,-0.356442;;, + 122;4; -0.527372,-0.303537, 0.527372,-0.303537;;, + 123;4; -0.574491,-0.255505, 0.574491,-0.255505;;, + 124;4; -0.615439,-0.213925, 0.615439,-0.213925;;, + 125;4; -0.648861,-0.180093, 0.648861,-0.180093;;, + 126;4; -0.673667,-0.155048, 0.673667,-0.155048;;, + 127;4; -0.689003,-0.139597, 0.689003,-0.139597;;, + 128;4; -0.694228,-0.134342, 0.694228,-0.134342;;, + 129;4; -0.684464,-0.151844, 0.684464,-0.151844;;, + 130;4; -0.655615,-0.203585, 0.655615,-0.203585;;, + 131;4; -0.611676,-0.282402, 0.611676,-0.282402;;, + 132;4; -0.561774,-0.371862, 0.561774,-0.371861;;, + 133;4; -0.517651,-0.450858, 0.517651,-0.450858;;, + 134;4; -0.488588,-0.502807, 0.488588,-0.502807;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 136; + 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;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_hvost} + AnimationKey { //Position + 2; + 136; + 0;3; 0.105165,-0.291279, 0.358470;;, + 1;3; 0.105165,-0.291279, 0.358470;;, + 2;3; 0.105165,-0.291279, 0.358470;;, + 3;3; 0.105165,-0.291279, 0.358470;;, + 4;3; 0.105165,-0.291279, 0.358470;;, + 5;3; 0.105165,-0.291279, 0.358470;;, + 6;3; 0.105165,-0.291279, 0.358470;;, + 7;3; 0.105165,-0.291279, 0.358470;;, + 8;3; 0.105165,-0.291279, 0.358470;;, + 9;3; 0.105165,-0.291279, 0.358470;;, + 10;3; 0.105165,-0.291279, 0.358470;;, + 11;3; 0.105165,-0.291279, 0.358470;;, + 12;3; 0.105165,-0.291279, 0.358470;;, + 13;3; 0.105165,-0.291279, 0.358470;;, + 14;3; 0.105165,-0.291279, 0.358470;;, + 15;3; 0.105165,-0.291279, 0.358470;;, + 16;3; 0.105165,-0.291279, 0.358470;;, + 17;3; 0.105165,-0.291279, 0.358470;;, + 18;3; 0.105165,-0.291279, 0.358470;;, + 19;3; 0.105165,-0.291279, 0.358470;;, + 20;3; 0.105165,-0.291279, 0.358470;;, + 21;3; 0.105165,-0.291279, 0.358470;;, + 22;3; 0.105165,-0.291279, 0.358470;;, + 23;3; 0.105165,-0.291279, 0.358470;;, + 24;3; 0.105165,-0.291279, 0.358470;;, + 25;3; 0.105165,-0.291279, 0.358470;;, + 26;3; 0.105165,-0.291279, 0.358470;;, + 27;3; 0.105165,-0.291279, 0.358470;;, + 28;3; 0.105165,-0.291279, 0.358470;;, + 29;3; 0.105165,-0.291279, 0.358470;;, + 30;3; 0.105165,-0.291279, 0.358470;;, + 31;3; 0.105165,-0.291279, 0.358470;;, + 32;3; 0.105165,-0.291279, 0.358470;;, + 33;3; 0.105165,-0.291279, 0.358470;;, + 34;3; 0.105165,-0.291279, 0.358470;;, + 35;3; 0.105165,-0.291279, 0.358470;;, + 36;3; 0.105165,-0.291279, 0.358470;;, + 37;3; 0.105165,-0.291279, 0.358470;;, + 38;3; 0.105165,-0.291279, 0.358470;;, + 39;3; 0.105165,-0.291279, 0.358470;;, + 40;3; 0.105165,-0.291279, 0.358470;;, + 41;3; 0.105165,-0.291279, 0.358470;;, + 42;3; 0.105165,-0.291279, 0.358470;;, + 43;3; 0.105165,-0.291279, 0.358470;;, + 44;3; 0.105165,-0.291279, 0.358470;;, + 45;3; 0.105165,-0.291279, 0.358470;;, + 46;3; 0.105165,-0.291279, 0.358470;;, + 47;3; 0.105165,-0.291279, 0.358470;;, + 48;3; 0.105165,-0.291279, 0.358470;;, + 49;3; 0.105165,-0.291279, 0.358470;;, + 50;3; 0.105165,-0.291279, 0.358470;;, + 51;3; 0.105165,-0.291279, 0.358470;;, + 52;3; 0.105165,-0.291279, 0.358470;;, + 53;3; 0.105165,-0.291279, 0.358470;;, + 54;3; 0.105165,-0.291279, 0.358470;;, + 55;3; 0.105165,-0.291279, 0.358470;;, + 56;3; 0.105165,-0.291279, 0.358470;;, + 57;3; 0.105165,-0.291279, 0.358470;;, + 58;3; 0.105165,-0.291279, 0.358470;;, + 59;3; 0.105165,-0.291279, 0.358470;;, + 60;3; 0.105165,-0.291279, 0.358470;;, + 61;3; 0.105165,-0.291279, 0.358470;;, + 62;3; 0.105165,-0.291279, 0.358470;;, + 63;3; 0.105165,-0.291279, 0.358470;;, + 64;3; 0.105165,-0.291279, 0.358470;;, + 65;3; 0.105165,-0.291279, 0.358470;;, + 66;3; 0.105165,-0.291279, 0.358470;;, + 67;3; 0.105165,-0.291279, 0.358470;;, + 68;3; 0.105165,-0.291279, 0.358470;;, + 69;3; 0.105165,-0.291279, 0.358470;;, + 70;3; 0.105165,-0.291279, 0.358470;;, + 71;3; 0.105165,-0.291279, 0.358470;;, + 72;3; 0.105165,-0.291279, 0.358470;;, + 73;3; 0.105165,-0.291279, 0.358470;;, + 74;3; 0.105165,-0.291279, 0.358470;;, + 75;3; 0.105165,-0.291279, 0.358470;;, + 76;3; 0.105165,-0.291279, 0.358470;;, + 77;3; 0.105165,-0.291279, 0.358470;;, + 78;3; 0.105165,-0.291279, 0.358470;;, + 79;3; 0.105165,-0.291279, 0.358470;;, + 80;3; 0.105165,-0.291279, 0.358470;;, + 81;3; 0.105165,-0.291279, 0.358470;;, + 82;3; 0.105165,-0.291279, 0.358470;;, + 83;3; 0.105165,-0.291279, 0.358470;;, + 84;3; 0.105165,-0.291279, 0.358470;;, + 85;3; 0.105165,-0.291279, 0.358470;;, + 86;3; 0.105165,-0.291279, 0.358470;;, + 87;3; 0.105165,-0.291279, 0.358470;;, + 88;3; 0.105165,-0.291279, 0.358470;;, + 89;3; 0.105165,-0.291279, 0.358470;;, + 90;3; 0.105165,-0.291279, 0.358470;;, + 91;3; 0.105165,-0.291279, 0.358470;;, + 92;3; 0.105165,-0.291279, 0.358470;;, + 93;3; 0.105165,-0.291279, 0.358470;;, + 94;3; 0.105165,-0.291279, 0.358470;;, + 95;3; 0.105165,-0.291279, 0.358470;;, + 96;3; 0.105165,-0.291279, 0.358470;;, + 97;3; 0.105165,-0.291279, 0.358470;;, + 98;3; 0.105165,-0.291279, 0.358470;;, + 99;3; 0.105165,-0.291279, 0.358470;;, + 100;3; 0.105165,-0.291279, 0.358470;;, + 101;3; 0.105165,-0.291279, 0.358470;;, + 102;3; 0.105165,-0.291279, 0.358470;;, + 103;3; 0.105165,-0.291279, 0.358470;;, + 104;3; 0.105165,-0.291279, 0.358470;;, + 105;3; 0.105165,-0.291279, 0.358470;;, + 106;3; 0.105165,-0.291279, 0.358470;;, + 107;3; 0.105165,-0.291279, 0.358470;;, + 108;3; 0.105165,-0.291279, 0.358470;;, + 109;3; 0.105165,-0.291279, 0.358470;;, + 110;3; 0.105165,-0.291279, 0.358470;;, + 111;3; 0.105165,-0.291279, 0.358470;;, + 112;3; 0.105165,-0.291279, 0.358470;;, + 113;3; 0.105165,-0.291279, 0.358470;;, + 114;3; 0.105165,-0.291279, 0.358470;;, + 115;3; 0.105165,-0.291279, 0.358470;;, + 116;3; 0.105165,-0.291279, 0.358470;;, + 117;3; 0.105165,-0.291279, 0.358470;;, + 118;3; 0.105165,-0.291279, 0.358470;;, + 119;3; 0.105165,-0.291279, 0.358470;;, + 120;3; 0.105165,-0.291279, 0.358470;;, + 121;3; 0.105165,-0.291279, 0.358470;;, + 122;3; 0.105165,-0.291279, 0.358470;;, + 123;3; 0.105165,-0.291279, 0.358470;;, + 124;3; 0.105165,-0.291279, 0.358470;;, + 125;3; 0.105165,-0.291279, 0.358470;;, + 126;3; 0.105165,-0.291279, 0.358470;;, + 127;3; 0.105165,-0.291279, 0.358470;;, + 128;3; 0.105165,-0.291279, 0.358470;;, + 129;3; 0.105165,-0.291279, 0.358470;;, + 130;3; 0.105165,-0.291279, 0.358470;;, + 131;3; 0.105165,-0.291279, 0.358470;;, + 132;3; 0.105165,-0.291279, 0.358470;;, + 133;3; 0.105165,-0.291279, 0.358470;;, + 134;3; 0.105165,-0.291279, 0.358470;;, + 135;3; 0.105165,-0.291279, 0.358470;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 1;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 2;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 3;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 4;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 5;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 6;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 7;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 8;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 9;4; -0.561014,-0.723949, 0.238921,-0.306999;;, + 10;4; -0.575060,-0.690426, 0.184552,-0.358451;;, + 11;4; -0.594567,-0.641346, 0.106104,-0.432044;;, + 12;4; -0.612765,-0.590529, 0.027051,-0.504947;;, + 13;4; -0.623212,-0.552233,-0.028979,-0.554504;;, + 14;4; -0.622945,-0.533953,-0.050020,-0.569504;;, + 15;4; -0.602096,-0.542017,-0.018023,-0.528442;;, + 16;4; -0.552670,-0.580372, 0.080254,-0.414877;;, + 17;4; -0.484828,-0.639724, 0.222965,-0.253333;;, + 18;4; -0.418300,-0.700808, 0.366270,-0.092486;;, + 19;4; -0.372482,-0.743929, 0.466192, 0.019170;;, + 20;4; -0.356823,-0.758866, 0.500575, 0.057496;;, + 21;4; -0.374538,-0.756775, 0.478970, 0.026669;;, + 22;4; -0.424425,-0.750892, 0.418140,-0.060142;;, + 23;4; -0.488475,-0.743339, 0.340039,-0.171601;;, + 24;4; -0.538373,-0.737448, 0.279186,-0.258430;;, + 25;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 26;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 27;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 28;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 29;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 30;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 31;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 32;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 33;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 34;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 35;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 36;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 37;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 38;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 39;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 40;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 41;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 42;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 43;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 44;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 45;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 46;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 47;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 48;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 49;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 50;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 51;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 52;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 53;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 54;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 55;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 56;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 57;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 58;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 59;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 60;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 61;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 62;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 63;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 64;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 65;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 66;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 67;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 68;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 69;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 70;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 71;4; -0.535274,-0.734089, 0.278584,-0.256249;;, + 72;4; -0.472375,-0.728553, 0.340072,-0.157917;;, + 73;4; -0.373158,-0.715527, 0.432069,-0.006370;;, + 74;4; -0.253969,-0.691881, 0.533281, 0.168995;;, + 75;4; -0.137653,-0.656171, 0.617367, 0.329535;;, + 76;4; -0.043608,-0.609320, 0.664455, 0.444255;;, + 77;4; 0.018224,-0.553672, 0.666527, 0.498859;;, + 78;4; 0.072989,-0.480623, 0.641269, 0.526461;;, + 79;4; 0.126603,-0.405510, 0.612225, 0.550007;;, + 80;4; 0.142409,-0.374454, 0.591492, 0.550778;;, + 81;4; 0.010358,-0.333466, 0.444038, 0.568002;;, + 82;4; -0.259884,-0.256623, 0.141437, 0.613428;;, + 83;4; -0.379890,-0.232545,-0.020516, 0.616913;;, + 84;4; -0.372974,-0.253638,-0.048164, 0.581873;;, + 85;4; -0.371218,-0.280405,-0.063925, 0.535909;;, + 86;4; -0.374319,-0.312239,-0.068399, 0.480151;;, + 87;4; -0.381838,-0.348358,-0.062484, 0.416061;;, + 88;4; -0.393205,-0.387811,-0.047375, 0.345415;;, + 89;4; -0.407725,-0.429513,-0.024540, 0.270246;;, + 90;4; -0.424611,-0.472281, 0.004336, 0.192764;;, + 91;4; -0.443016,-0.514898, 0.037430, 0.115252;;, + 92;4; -0.462079,-0.556169, 0.072865, 0.039947;;, + 93;4; -0.480964,-0.594981, 0.108810,-0.031057;;, + 94;4; -0.498900,-0.630348, 0.143556,-0.095902;;, + 95;4; -0.515206,-0.661438, 0.175579,-0.153017;;, + 96;4; -0.529309,-0.687595, 0.203581,-0.201149;;, + 97;4; -0.540751,-0.708328, 0.226500,-0.239360;;, + 98;4; -0.549181,-0.723307, 0.243510,-0.267005;;, + 99;4; -0.554349,-0.732341, 0.254005,-0.283697;;, + 100;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 101;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 102;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 103;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 104;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 105;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 106;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 107;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 108;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 109;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 110;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 111;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 112;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 113;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 114;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 115;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 116;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 117;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 118;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 119;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 120;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 121;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 122;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 123;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 124;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 125;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 126;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 127;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 128;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 129;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 130;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 131;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 132;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 133;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 134;4; -0.556095,-0.735353, 0.257568,-0.289268;;, + 135;4; -0.556095,-0.735353, 0.257568,-0.289268;;; + } + AnimationKey { //Scale + 1; + 136; + 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;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_sheya} + AnimationKey { //Position + 2; + 136; + 0;3; 0.000000, 3.238709,-0.013816;;, + 1;3; 0.000000, 3.238709,-0.013816;;, + 2;3; 0.000000, 3.236990,-0.034342;;, + 3;3; 0.000000, 3.231916,-0.094984;;, + 4;3; 0.000000, 3.224207,-0.187240;;, + 5;3; 0.000000, 3.215480,-0.291771;;, + 6;3; 0.000000, 3.207790,-0.383908;;, + 7;3; 0.000000, 3.202737,-0.444412;;, + 8;3; 0.000000, 3.201027,-0.464880;;, + 9;3; 0.000000, 3.201027,-0.464880;;, + 10;3; 0.000000, 3.201027,-0.464880;;, + 11;3; 0.000000, 3.201027,-0.464880;;, + 12;3; 0.000000, 3.201027,-0.464880;;, + 13;3; 0.000000, 3.201027,-0.464880;;, + 14;3; 0.000000, 3.201027,-0.464880;;, + 15;3; 0.000000, 3.201027,-0.464880;;, + 16;3; 0.000000, 3.201027,-0.464880;;, + 17;3; 0.000000, 3.201027,-0.464880;;, + 18;3; 0.000000, 3.201027,-0.464880;;, + 19;3; 0.000000, 3.201027,-0.464880;;, + 20;3; 0.000000, 3.201027,-0.464880;;, + 21;3; 0.000000, 3.201027,-0.464880;;, + 22;3; 0.000000, 3.201027,-0.464880;;, + 23;3; 0.000000, 3.201027,-0.464880;;, + 24;3; 0.000000, 3.201027,-0.464880;;, + 25;3; 0.000000, 3.201027,-0.464880;;, + 26;3; 0.000000, 3.203358,-0.436993;;, + 27;3; 0.000000, 3.210135,-0.355884;;, + 28;3; 0.000000, 3.219868,-0.239348;;, + 29;3; 0.000000, 3.229601,-0.122812;;, + 30;3; 0.000000, 3.236378,-0.041703;;, + 31;3; 0.000000, 3.238709,-0.013816;;, + 32;3; 0.000000, 3.238709,-0.013816;;, + 33;3; 0.000000, 3.238709,-0.013816;;, + 34;3; 0.000000, 3.238709,-0.013816;;, + 35;3; 0.000000, 3.238709,-0.013816;;, + 36;3; 0.000000, 3.238709,-0.013816;;, + 37;3; 0.000000, 3.238709,-0.013816;;, + 38;3; 0.000000, 3.238709,-0.013816;;, + 39;3; 0.000000, 3.238709,-0.013816;;, + 40;3; 0.000000, 3.238709,-0.013816;;, + 41;3; 0.000000, 3.238709,-0.013816;;, + 42;3; 0.000000, 3.238709,-0.013816;;, + 43;3; 0.000000, 3.238709,-0.013816;;, + 44;3; 0.000000, 3.238709,-0.013816;;, + 45;3; 0.000000, 3.238709,-0.013816;;, + 46;3; 0.000000, 3.238709,-0.013816;;, + 47;3; 0.000000, 3.238709,-0.013816;;, + 48;3; 0.000000, 3.238709,-0.013816;;, + 49;3; 0.000000, 3.238709,-0.013816;;, + 50;3; 0.000000, 3.238709,-0.013816;;, + 51;3; 0.000000, 3.238709,-0.013816;;, + 52;3; 0.000000, 3.238709,-0.013816;;, + 53;3; 0.000000, 3.238709,-0.013816;;, + 54;3; 0.000000, 3.238709,-0.013816;;, + 55;3; 0.000000, 3.238709,-0.013816;;, + 56;3; 0.000000, 3.238709,-0.013816;;, + 57;3; 0.000000, 3.238709,-0.013816;;, + 58;3; 0.000000, 3.238709,-0.013816;;, + 59;3; 0.000000, 3.238709,-0.013816;;, + 60;3; 0.000000, 3.238709,-0.013816;;, + 61;3; 0.000000, 3.238709,-0.013816;;, + 62;3; 0.000000, 3.238709,-0.013816;;, + 63;3; 0.000000, 3.238709,-0.013816;;, + 64;3; 0.000000, 3.238709,-0.013816;;, + 65;3; 0.000000, 3.238709,-0.013816;;, + 66;3; 0.000000, 3.238709,-0.013816;;, + 67;3; 0.000000, 3.238709,-0.013816;;, + 68;3; 0.000000, 3.238709,-0.013816;;, + 69;3; 0.000000, 3.238709,-0.013816;;, + 70;3; 0.000000, 3.238709,-0.013816;;, + 71;3; 0.000000, 3.238709,-0.013816;;, + 72;3; 0.000000, 3.238709,-0.013816;;, + 73;3; 0.000000, 3.238709,-0.013816;;, + 74;3; 0.000000, 3.238709,-0.013816;;, + 75;3; 0.000000, 3.238709,-0.013816;;, + 76;3; 0.000000, 3.238709,-0.013816;;, + 77;3; 0.000000, 3.238709,-0.013816;;, + 78;3; 0.000000, 3.238709,-0.013816;;, + 79;3; 0.000000, 3.238709,-0.013816;;, + 80;3; 0.000000, 3.238709,-0.013816;;, + 81;3; 0.000000, 3.238709,-0.013816;;, + 82;3; 0.000000, 3.238709,-0.013816;;, + 83;3; 0.000000, 3.238709,-0.013816;;, + 84;3; 0.000000, 3.238709,-0.013816;;, + 85;3; 0.000000, 3.238709,-0.013816;;, + 86;3; 0.000000, 3.238709,-0.013816;;, + 87;3; 0.000000, 3.238709,-0.013816;;, + 88;3; 0.000000, 3.238709,-0.013816;;, + 89;3; 0.000000, 3.238709,-0.013816;;, + 90;3; 0.000000, 3.238709,-0.013816;;, + 91;3; 0.000000, 3.238709,-0.013816;;, + 92;3; 0.000000, 3.238709,-0.013816;;, + 93;3; 0.000000, 3.238709,-0.013816;;, + 94;3; 0.000000, 3.238709,-0.013816;;, + 95;3; 0.000000, 3.238709,-0.013816;;, + 96;3; 0.000000, 3.238709,-0.013816;;, + 97;3; 0.000000, 3.238709,-0.013816;;, + 98;3; 0.000000, 3.238709,-0.013816;;, + 99;3; 0.000000, 3.238709,-0.013816;;, + 100;3; 0.000000, 3.238709,-0.013816;;, + 101;3; 0.000000, 3.238709,-0.013816;;, + 102;3; 0.000000, 3.238709,-0.013816;;, + 103;3; 0.000000, 3.238709,-0.013816;;, + 104;3; 0.000000, 3.238709,-0.013816;;, + 105;3; 0.000000, 3.238709,-0.013816;;, + 106;3; 0.000000, 3.238709,-0.013816;;, + 107;3; 0.000000, 3.238709,-0.013816;;, + 108;3; 0.000000, 3.238709,-0.013816;;, + 109;3; 0.000000, 3.238709,-0.013816;;, + 110;3; 0.000000, 3.238709,-0.013816;;, + 111;3; 0.000000, 3.238709,-0.013816;;, + 112;3; 0.000000, 3.238709,-0.013816;;, + 113;3; 0.000000, 3.238709,-0.013816;;, + 114;3; 0.000000, 3.238709,-0.013816;;, + 115;3; 0.000000, 3.238709,-0.013816;;, + 116;3; 0.000000, 3.238709,-0.013816;;, + 117;3; 0.000000, 3.238709,-0.013816;;, + 118;3; 0.000000, 3.238709,-0.013816;;, + 119;3; 0.000000, 3.238709,-0.013816;;, + 120;3; 0.000000, 3.238709,-0.013816;;, + 121;3; 0.000000, 3.238709,-0.013816;;, + 122;3; 0.000000, 3.238709,-0.013816;;, + 123;3; 0.000000, 3.238709,-0.013816;;, + 124;3; 0.000000, 3.238709,-0.013816;;, + 125;3; 0.000000, 3.238709,-0.013816;;, + 126;3; 0.000000, 3.238709,-0.013816;;, + 127;3; 0.000000, 3.238709,-0.013816;;, + 128;3; 0.000000, 3.238709,-0.013816;;, + 129;3; 0.000000, 3.238709,-0.013816;;, + 130;3; 0.000000, 3.238709,-0.013816;;, + 131;3; 0.000000, 3.238709,-0.013816;;, + 132;3; 0.000000, 3.238709,-0.013816;;, + 133;3; 0.000000, 3.238709,-0.013816;;, + 134;3; 0.000000, 3.238709,-0.013816;;, + 135;3; 0.000000, 3.238709,-0.013816;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 1;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 2;4; -0.976686,-0.085962, 0.015156, 0.033999;;, + 3;4; -0.957666,-0.146060, 0.017070, 0.032575;;, + 4;4; -0.928699,-0.237482, 0.019992, 0.030406;;, + 5;4; -0.895855,-0.341063, 0.023310, 0.027945;;, + 6;4; -0.866900,-0.432362, 0.026237, 0.025775;;, + 7;4; -0.847893,-0.492318, 0.028156, 0.024351;;, + 8;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 9;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 10;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 11;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 12;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 13;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 14;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 15;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 16;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 17;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 18;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 19;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 20;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 21;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 22;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 23;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 24;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 25;4; -0.841466,-0.512601, 0.028804, 0.023869;;, + 26;4; -0.850219,-0.484965, 0.027922, 0.024525;;, + 27;4; -0.875686,-0.404590, 0.025353, 0.026432;;, + 28;4; -0.912292,-0.289110, 0.021657, 0.029175;;, + 29;4; -0.948897,-0.173630, 0.017961, 0.031917;;, + 30;4; -0.974365,-0.093255, 0.015392, 0.033825;;, + 31;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 32;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 33;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 34;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 35;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 36;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 37;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 38;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 39;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 40;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 41;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 42;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 43;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 44;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 45;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 46;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 47;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 48;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 49;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 50;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 51;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 52;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 53;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 54;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 55;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 56;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 57;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 58;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 59;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 60;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 61;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 62;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 63;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 64;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 65;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 66;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 67;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 68;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 69;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 70;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 71;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 72;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 73;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 74;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 75;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 76;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 77;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 78;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 79;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 80;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 81;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 82;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 83;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 84;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 85;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 86;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 87;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 88;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 89;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 90;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 91;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 92;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 93;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 94;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 95;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 96;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 97;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 98;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 99;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 100;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 101;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 102;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 103;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 104;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 105;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 106;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 107;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 108;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 109;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 110;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 111;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 112;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 113;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 114;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 115;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 116;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 117;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 118;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 119;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 120;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 121;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 122;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 123;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 124;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 125;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 126;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 127;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 128;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 129;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 130;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 131;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 132;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 133;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 134;4; -0.983117,-0.065618, 0.014510, 0.034480;;, + 135;4; -0.983117,-0.065618, 0.014510, 0.034480;;; + } + AnimationKey { //Scale + 1; + 136; + 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;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_head} + AnimationKey { //Position + 2; + 136; + 0;3; 0.067776, 0.891274, 0.002915;;, + 1;3; 0.067776, 0.891274, 0.002915;;, + 2;3; 0.067776, 0.891274, 0.002915;;, + 3;3; 0.067776, 0.891274, 0.002916;;, + 4;3; 0.067776, 0.891274, 0.002916;;, + 5;3; 0.067776, 0.891274, 0.002916;;, + 6;3; 0.067776, 0.891274, 0.002916;;, + 7;3; 0.067776, 0.891274, 0.002916;;, + 8;3; 0.067776, 0.891274, 0.002915;;, + 9;3; 0.067776, 0.891274, 0.002915;;, + 10;3; 0.067776, 0.891274, 0.002915;;, + 11;3; 0.067776, 0.891274, 0.002915;;, + 12;3; 0.067776, 0.891274, 0.002915;;, + 13;3; 0.067776, 0.891274, 0.002915;;, + 14;3; 0.067776, 0.891274, 0.002915;;, + 15;3; 0.067776, 0.891274, 0.002915;;, + 16;3; 0.067776, 0.891274, 0.002915;;, + 17;3; 0.067776, 0.891274, 0.002915;;, + 18;3; 0.067776, 0.891274, 0.002915;;, + 19;3; 0.067776, 0.891274, 0.002915;;, + 20;3; 0.067776, 0.891274, 0.002915;;, + 21;3; 0.067776, 0.891274, 0.002915;;, + 22;3; 0.067776, 0.891274, 0.002915;;, + 23;3; 0.067776, 0.891274, 0.002915;;, + 24;3; 0.067776, 0.891274, 0.002915;;, + 25;3; 0.067776, 0.891274, 0.002915;;, + 26;3; 0.067776, 0.891274, 0.002915;;, + 27;3; 0.067777, 0.891274, 0.002915;;, + 28;3; 0.067776, 0.891274, 0.002916;;, + 29;3; 0.067776, 0.891274, 0.002915;;, + 30;3; 0.067776, 0.891274, 0.002916;;, + 31;3; 0.067776, 0.891274, 0.002915;;, + 32;3; 0.067776, 0.891274, 0.002915;;, + 33;3; 0.067776, 0.891274, 0.002915;;, + 34;3; 0.067776, 0.891274, 0.002915;;, + 35;3; 0.067776, 0.891274, 0.002915;;, + 36;3; 0.067776, 0.891274, 0.002915;;, + 37;3; 0.067776, 0.891274, 0.002916;;, + 38;3; 0.067777, 0.891274, 0.002916;;, + 39;3; 0.067776, 0.891274, 0.002915;;, + 40;3; 0.067776, 0.891274, 0.002915;;, + 41;3; 0.067776, 0.891274, 0.002915;;, + 42;3; 0.067776, 0.891274, 0.002915;;, + 43;3; 0.067776, 0.891274, 0.002915;;, + 44;3; 0.067776, 0.891274, 0.002915;;, + 45;3; 0.067777, 0.891274, 0.002915;;, + 46;3; 0.067776, 0.891274, 0.002915;;, + 47;3; 0.067777, 0.891274, 0.002915;;, + 48;3; 0.067777, 0.891274, 0.002915;;, + 49;3; 0.067776, 0.891274, 0.002915;;, + 50;3; 0.067777, 0.891274, 0.002915;;, + 51;3; 0.067776, 0.891274, 0.002915;;, + 52;3; 0.067776, 0.891274, 0.002915;;, + 53;3; 0.067776, 0.891274, 0.002915;;, + 54;3; 0.067776, 0.891274, 0.002915;;, + 55;3; 0.067776, 0.891274, 0.002916;;, + 56;3; 0.067776, 0.891274, 0.002915;;, + 57;3; 0.067776, 0.891274, 0.002915;;, + 58;3; 0.067777, 0.891274, 0.002916;;, + 59;3; 0.067776, 0.891274, 0.002915;;, + 60;3; 0.067777, 0.891274, 0.002915;;, + 61;3; 0.067776, 0.891274, 0.002915;;, + 62;3; 0.067777, 0.891274, 0.002915;;, + 63;3; 0.067777, 0.891274, 0.002915;;, + 64;3; 0.067777, 0.891274, 0.002915;;, + 65;3; 0.067776, 0.891274, 0.002915;;, + 66;3; 0.067776, 0.891274, 0.002915;;, + 67;3; 0.067776, 0.891274, 0.002915;;, + 68;3; 0.067776, 0.891274, 0.002915;;, + 69;3; 0.067776, 0.891274, 0.002915;;, + 70;3; 0.067776, 0.891274, 0.002915;;, + 71;3; 0.067776, 0.891274, 0.002915;;, + 72;3; 0.067776, 0.891274, 0.002915;;, + 73;3; 0.067776, 0.891274, 0.002915;;, + 74;3; 0.067776, 0.891274, 0.002915;;, + 75;3; 0.067776, 0.891274, 0.002915;;, + 76;3; 0.067776, 0.891274, 0.002915;;, + 77;3; 0.067776, 0.891274, 0.002915;;, + 78;3; 0.067776, 0.891274, 0.002915;;, + 79;3; 0.067776, 0.891274, 0.002915;;, + 80;3; 0.067776, 0.891274, 0.002915;;, + 81;3; 0.067776, 0.891274, 0.002915;;, + 82;3; 0.067776, 0.891274, 0.002915;;, + 83;3; 0.067776, 0.891274, 0.002915;;, + 84;3; 0.067776, 0.891274, 0.002915;;, + 85;3; 0.067776, 0.891274, 0.002915;;, + 86;3; 0.067776, 0.891274, 0.002915;;, + 87;3; 0.067776, 0.891274, 0.002915;;, + 88;3; 0.067776, 0.891274, 0.002915;;, + 89;3; 0.067776, 0.891274, 0.002915;;, + 90;3; 0.067776, 0.891274, 0.002915;;, + 91;3; 0.067776, 0.891274, 0.002915;;, + 92;3; 0.067776, 0.891274, 0.002915;;, + 93;3; 0.067776, 0.891274, 0.002915;;, + 94;3; 0.067776, 0.891274, 0.002915;;, + 95;3; 0.067776, 0.891274, 0.002915;;, + 96;3; 0.067776, 0.891274, 0.002915;;, + 97;3; 0.067776, 0.891274, 0.002915;;, + 98;3; 0.067776, 0.891274, 0.002915;;, + 99;3; 0.067776, 0.891274, 0.002915;;, + 100;3; 0.067776, 0.891274, 0.002915;;, + 101;3; 0.067776, 0.891274, 0.002915;;, + 102;3; 0.067776, 0.891274, 0.002915;;, + 103;3; 0.067776, 0.891274, 0.002915;;, + 104;3; 0.067776, 0.891274, 0.002915;;, + 105;3; 0.067776, 0.891274, 0.002915;;, + 106;3; 0.067776, 0.891274, 0.002915;;, + 107;3; 0.067776, 0.891274, 0.002916;;, + 108;3; 0.067777, 0.891274, 0.002916;;, + 109;3; 0.067776, 0.891274, 0.002915;;, + 110;3; 0.067776, 0.891274, 0.002915;;, + 111;3; 0.067776, 0.891274, 0.002915;;, + 112;3; 0.067776, 0.891274, 0.002915;;, + 113;3; 0.067776, 0.891274, 0.002915;;, + 114;3; 0.067776, 0.891274, 0.002915;;, + 115;3; 0.067777, 0.891274, 0.002915;;, + 116;3; 0.067777, 0.891274, 0.002915;;, + 117;3; 0.067776, 0.891274, 0.002915;;, + 118;3; 0.067777, 0.891274, 0.002915;;, + 119;3; 0.067777, 0.891274, 0.002915;;, + 120;3; 0.067776, 0.891274, 0.002915;;, + 121;3; 0.067777, 0.891274, 0.002915;;, + 122;3; 0.067776, 0.891274, 0.002915;;, + 123;3; 0.067776, 0.891274, 0.002915;;, + 124;3; 0.067776, 0.891274, 0.002915;;, + 125;3; 0.067776, 0.891274, 0.002916;;, + 126;3; 0.067776, 0.891274, 0.002915;;, + 127;3; 0.067776, 0.891274, 0.002915;;, + 128;3; 0.067777, 0.891274, 0.002916;;, + 129;3; 0.067776, 0.891274, 0.002915;;, + 130;3; 0.067776, 0.891274, 0.002915;;, + 131;3; 0.067777, 0.891274, 0.002915;;, + 132;3; 0.067776, 0.891274, 0.002915;;, + 133;3; 0.067777, 0.891274, 0.002915;;, + 134;3; 0.067777, 0.891274, 0.002915;;, + 135;3; 0.067776, 0.891274, 0.002915;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 1;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 2;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 3;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 4;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 5;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 6;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 7;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 8;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 9;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 10;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 11;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 12;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 13;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 14;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 15;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 16;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 17;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 18;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 19;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 20;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 21;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 22;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 23;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 24;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 25;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 26;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 27;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 28;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 29;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 30;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 31;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 32;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 33;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 34;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 35;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 36;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 37;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 38;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 39;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 40;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 41;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 42;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 43;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 44;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 45;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 46;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 47;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 48;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 49;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 50;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 51;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 52;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 53;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 54;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 55;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 56;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 57;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 58;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 59;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 60;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 61;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 62;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 63;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 64;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 65;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 66;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 67;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 68;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 69;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 70;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 71;4; -0.993396,-0.093970, 0.003706,-0.037410;;, + 72;4; -0.992585,-0.059156, 0.002434,-0.036511;;, + 73;4; -0.991349,-0.006118, 0.000497,-0.035141;;, + 74;4; -0.989946, 0.054035,-0.001699,-0.033587;;, + 75;4; -0.988710, 0.107069,-0.003636,-0.032217;;, + 76;4; -0.987899, 0.141879,-0.004908,-0.031318;;, + 77;4; -0.987625, 0.153647,-0.005337,-0.031014;;, + 78;4; -0.987650, 0.152567,-0.005298,-0.031042;;, + 79;4; -0.987726, 0.149304,-0.005179,-0.031126;;, + 80;4; -0.987853, 0.143842,-0.004979,-0.031267;;, + 81;4; -0.988031, 0.136199,-0.004700,-0.031464;;, + 82;4; -0.988258, 0.126432,-0.004343,-0.031717;;, + 83;4; -0.988533, 0.114647,-0.003913,-0.032021;;, + 84;4; -0.988851, 0.101005,-0.003415,-0.032373;;, + 85;4; -0.989207, 0.085729,-0.002857,-0.032768;;, + 86;4; -0.989594, 0.069101,-0.002250,-0.033197;;, + 87;4; -0.990005, 0.051460,-0.001605,-0.033653;;, + 88;4; -0.990431, 0.033191,-0.000938,-0.034125;;, + 89;4; -0.990862, 0.014709,-0.000263,-0.034602;;, + 90;4; -0.991288,-0.003560, 0.000404,-0.035074;;, + 91;4; -0.991699,-0.021201, 0.001048,-0.035530;;, + 92;4; -0.992087,-0.037828, 0.001656,-0.035959;;, + 93;4; -0.992443,-0.053103, 0.002213,-0.036354;;, + 94;4; -0.992761,-0.066744, 0.002712,-0.036706;;, + 95;4; -0.993036,-0.078528, 0.003142,-0.037011;;, + 96;4; -0.993263,-0.088294, 0.003499,-0.037263;;, + 97;4; -0.993441,-0.095936, 0.003778,-0.037460;;, + 98;4; -0.993569,-0.101397, 0.003977,-0.037601;;, + 99;4; -0.993645,-0.104660, 0.004096,-0.037686;;, + 100;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 101;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 102;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 103;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 104;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 105;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 106;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 107;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 108;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 109;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 110;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 111;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 112;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 113;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 114;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 115;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 116;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 117;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 118;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 119;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 120;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 121;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 122;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 123;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 124;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 125;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 126;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 127;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 128;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 129;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 130;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 131;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 132;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 133;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 134;4; -0.993670,-0.105740, 0.004136,-0.037714;;, + 135;4; -0.993670,-0.105740, 0.004136,-0.037714;;; + } + AnimationKey { //Scale + 1; + 136; + 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;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_zubi} + AnimationKey { //Position + 2; + 136; + 0;3; 0.194650, 1.828288,-0.748248;;, + 1;3; 0.194650, 1.828288,-0.748248;;, + 2;3; 0.194650, 1.828288,-0.748248;;, + 3;3; 0.194649, 1.828288,-0.748248;;, + 4;3; 0.194650, 1.828288,-0.748248;;, + 5;3; 0.194650, 1.828288,-0.748248;;, + 6;3; 0.194649, 1.828288,-0.748248;;, + 7;3; 0.194650, 1.828288,-0.748248;;, + 8;3; 0.194650, 1.828288,-0.748248;;, + 9;3; 0.194650, 1.828288,-0.748248;;, + 10;3; 0.194650, 1.828288,-0.748248;;, + 11;3; 0.194650, 1.828288,-0.748248;;, + 12;3; 0.194650, 1.828288,-0.748248;;, + 13;3; 0.194650, 1.828288,-0.748248;;, + 14;3; 0.194650, 1.828288,-0.748248;;, + 15;3; 0.194650, 1.828288,-0.748248;;, + 16;3; 0.194650, 1.828288,-0.748248;;, + 17;3; 0.194650, 1.828288,-0.748248;;, + 18;3; 0.194650, 1.828288,-0.748248;;, + 19;3; 0.194650, 1.828288,-0.748248;;, + 20;3; 0.194650, 1.828288,-0.748248;;, + 21;3; 0.194650, 1.828288,-0.748248;;, + 22;3; 0.194650, 1.828288,-0.748248;;, + 23;3; 0.194650, 1.828288,-0.748248;;, + 24;3; 0.194650, 1.828288,-0.748248;;, + 25;3; 0.194650, 1.828288,-0.748248;;, + 26;3; 0.194650, 1.828288,-0.748248;;, + 27;3; 0.194650, 1.828288,-0.748248;;, + 28;3; 0.194650, 1.828288,-0.748248;;, + 29;3; 0.194650, 1.828288,-0.748248;;, + 30;3; 0.194650, 1.828288,-0.748248;;, + 31;3; 0.194650, 1.828288,-0.748248;;, + 32;3; 0.194650, 1.828288,-0.748248;;, + 33;3; 0.194650, 1.828288,-0.748248;;, + 34;3; 0.194650, 1.828288,-0.748248;;, + 35;3; 0.194650, 1.828288,-0.748248;;, + 36;3; 0.194650, 1.828288,-0.748248;;, + 37;3; 0.194650, 1.828288,-0.748248;;, + 38;3; 0.194650, 1.828288,-0.748248;;, + 39;3; 0.194650, 1.828288,-0.748248;;, + 40;3; 0.194650, 1.828288,-0.748248;;, + 41;3; 0.194650, 1.828288,-0.748248;;, + 42;3; 0.194650, 1.828288,-0.748248;;, + 43;3; 0.194650, 1.828288,-0.748248;;, + 44;3; 0.194650, 1.828288,-0.748248;;, + 45;3; 0.194651, 1.828288,-0.748248;;, + 46;3; 0.194650, 1.828288,-0.748248;;, + 47;3; 0.194650, 1.828288,-0.748248;;, + 48;3; 0.194650, 1.828288,-0.748248;;, + 49;3; 0.194650, 1.828288,-0.748248;;, + 50;3; 0.194650, 1.828288,-0.748248;;, + 51;3; 0.194650, 1.828288,-0.748248;;, + 52;3; 0.194650, 1.828288,-0.748248;;, + 53;3; 0.194650, 1.828288,-0.748248;;, + 54;3; 0.194650, 1.828288,-0.748248;;, + 55;3; 0.194650, 1.828288,-0.748248;;, + 56;3; 0.194650, 1.828288,-0.748248;;, + 57;3; 0.194650, 1.828288,-0.748248;;, + 58;3; 0.194650, 1.828288,-0.748248;;, + 59;3; 0.194650, 1.828288,-0.748248;;, + 60;3; 0.194650, 1.828288,-0.748248;;, + 61;3; 0.194650, 1.828288,-0.748248;;, + 62;3; 0.194650, 1.828288,-0.748248;;, + 63;3; 0.194651, 1.828288,-0.748249;;, + 64;3; 0.194650, 1.828288,-0.748248;;, + 65;3; 0.194650, 1.828288,-0.748248;;, + 66;3; 0.194650, 1.828288,-0.748248;;, + 67;3; 0.194650, 1.828288,-0.748248;;, + 68;3; 0.194650, 1.828288,-0.748248;;, + 69;3; 0.194650, 1.828288,-0.748248;;, + 70;3; 0.194650, 1.828288,-0.748248;;, + 71;3; 0.193824, 1.826865,-0.718989;;, + 72;3; 0.191380, 1.822641,-0.632490;;, + 73;3; 0.187655, 1.816186,-0.500793;;, + 74;3; 0.183428, 1.808853,-0.351470;;, + 75;3; 0.179702, 1.802391,-0.219807;;, + 76;3; 0.177257, 1.798159,-0.133348;;, + 77;3; 0.176431, 1.796732,-0.104106;;, + 78;3; 0.176538, 1.796916,-0.107892;;, + 79;3; 0.176887, 1.797517,-0.120255;;, + 80;3; 0.177464, 1.798515,-0.140691;;, + 81;3; 0.178165, 1.799728,-0.165500;;, + 82;3; 0.178872, 1.800950,-0.190476;;, + 83;3; 0.179610, 1.802228,-0.216583;;, + 84;3; 0.180459, 1.803698,-0.246602;;, + 85;3; 0.181415, 1.805352,-0.280384;;, + 86;3; 0.182468, 1.807176,-0.317636;;, + 87;3; 0.183607, 1.809149,-0.357892;;, + 88;3; 0.184812, 1.811236,-0.400490;;, + 89;3; 0.186059, 1.813397,-0.444573;;, + 90;3; 0.187319, 1.815581,-0.489110;;, + 91;3; 0.188559, 1.817731,-0.532954;;, + 92;3; 0.189747, 1.819790,-0.574925;;, + 93;3; 0.190850, 1.821702,-0.613904;;, + 94;3; 0.191840, 1.823419,-0.648918;;, + 95;3; 0.192697, 1.824904,-0.679203;;, + 96;3; 0.193405, 1.826131,-0.704224;;, + 97;3; 0.193955, 1.827084,-0.723676;;, + 98;3; 0.194345, 1.827759,-0.737448;;, + 99;3; 0.194575, 1.828157,-0.745585;;, + 100;3; 0.194650, 1.828288,-0.748248;;, + 101;3; 0.194650, 1.828288,-0.748248;;, + 102;3; 0.194650, 1.828288,-0.748248;;, + 103;3; 0.194650, 1.828288,-0.748248;;, + 104;3; 0.194650, 1.828288,-0.748248;;, + 105;3; 0.194650, 1.828288,-0.748248;;, + 106;3; 0.194650, 1.828288,-0.748248;;, + 107;3; 0.194650, 1.828288,-0.748248;;, + 108;3; 0.194650, 1.828288,-0.748248;;, + 109;3; 0.194650, 1.828288,-0.748248;;, + 110;3; 0.194650, 1.828288,-0.748248;;, + 111;3; 0.194650, 1.828288,-0.748248;;, + 112;3; 0.194650, 1.828288,-0.748248;;, + 113;3; 0.194650, 1.828288,-0.748248;;, + 114;3; 0.194650, 1.828288,-0.748248;;, + 115;3; 0.194651, 1.828288,-0.748248;;, + 116;3; 0.194651, 1.828288,-0.748248;;, + 117;3; 0.194650, 1.828288,-0.748248;;, + 118;3; 0.194650, 1.828288,-0.748248;;, + 119;3; 0.194650, 1.828288,-0.748248;;, + 120;3; 0.194650, 1.828288,-0.748248;;, + 121;3; 0.194650, 1.828288,-0.748248;;, + 122;3; 0.194650, 1.828288,-0.748248;;, + 123;3; 0.194650, 1.828288,-0.748248;;, + 124;3; 0.194650, 1.828288,-0.748248;;, + 125;3; 0.194650, 1.828288,-0.748248;;, + 126;3; 0.194650, 1.828288,-0.748248;;, + 127;3; 0.194650, 1.828288,-0.748248;;, + 128;3; 0.194650, 1.828288,-0.748248;;, + 129;3; 0.194650, 1.828288,-0.748248;;, + 130;3; 0.194650, 1.828288,-0.748248;;, + 131;3; 0.194650, 1.828288,-0.748248;;, + 132;3; 0.194650, 1.828288,-0.748248;;, + 133;3; 0.194650, 1.828288,-0.748248;;, + 134;3; 0.194650, 1.828288,-0.748248;;, + 135;3; 0.194650, 1.828288,-0.748248;;; + } + AnimationKey { //Rotation + 0; + 136; + 0;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 1;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 2;4; -0.992483,-0.108459, 0.004226,-0.037868;;, + 3;4; -0.987374,-0.131655, 0.005069,-0.038267;;, + 4;4; -0.979333,-0.168163, 0.006395,-0.038895;;, + 5;4; -0.969538,-0.212625, 0.008010,-0.039660;;, + 6;4; -0.959745,-0.257081, 0.009625,-0.040425;;, + 7;4; -0.951705,-0.293573, 0.010950,-0.041053;;, + 8;4; -0.946598,-0.316754, 0.011792,-0.041453;;, + 9;4; -0.944887,-0.324521, 0.012074,-0.041586;;, + 10;4; -0.946901,-0.314574, 0.011713,-0.041409;;, + 11;4; -0.952859,-0.285148, 0.010644,-0.040884;;, + 12;4; -0.961938,-0.240314, 0.009015,-0.040084;;, + 13;4; -0.972235,-0.189461, 0.007168,-0.039177;;, + 14;4; -0.981313,-0.144627, 0.005539,-0.038377;;, + 15;4; -0.987272,-0.115201, 0.004470,-0.037852;;, + 16;4; -0.989286,-0.105254, 0.004109,-0.037675;;, + 17;4; -0.986277,-0.121439, 0.004697,-0.037973;;, + 18;4; -0.977802,-0.167028, 0.006353,-0.038813;;, + 19;4; -0.966921,-0.225564, 0.008480,-0.039892;;, + 20;4; -0.958446,-0.271154, 0.010136,-0.040732;;, + 21;4; -0.955437,-0.287339, 0.010724,-0.041030;;, + 22;4; -0.959701,-0.261762, 0.009795,-0.040541;;, + 23;4; -0.971097,-0.194805, 0.007362,-0.039270;;, + 24;4; -0.983146,-0.127683, 0.004923,-0.038018;;, + 25;4; -0.989057,-0.101707, 0.003979,-0.037578;;, + 26;4; -0.990877,-0.101289, 0.003965,-0.037632;;, + 27;4; -0.992338,-0.100979, 0.003954,-0.037676;;, + 28;4; -0.993349,-0.100790, 0.003947,-0.037707;;, + 29;4; -0.993913,-0.100706, 0.003944,-0.037725;;, + 30;4; -0.994145,-0.100686, 0.003944,-0.037732;;, + 31;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 32;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 33;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 34;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 35;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 36;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 37;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 38;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 39;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 40;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 41;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 42;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 43;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 44;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 45;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 46;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 47;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 48;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 49;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 50;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 51;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 52;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 53;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 54;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 55;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 56;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 57;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 58;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 59;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 60;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 61;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 62;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 63;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 64;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 65;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 66;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 67;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 68;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 69;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 70;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 71;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 72;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 73;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 74;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 75;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 76;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 77;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 78;4; -0.991164,-0.115356, 0.004477,-0.037994;;, + 79;4; -0.982629,-0.156671, 0.005978,-0.038725;;, + 80;4; -0.971671,-0.209714, 0.007904,-0.039663;;, + 81;4; -0.963137,-0.251026, 0.009405,-0.040394;;, + 82;4; -0.960107,-0.265695, 0.009938,-0.040654;;, + 83;4; -0.960339,-0.264571, 0.009897,-0.040634;;, + 84;4; -0.961041,-0.261174, 0.009774,-0.040574;;, + 85;4; -0.962213,-0.255501, 0.009568,-0.040474;;, + 86;4; -0.963842,-0.247611, 0.009281,-0.040334;;, + 87;4; -0.965901,-0.237644, 0.008919,-0.040158;;, + 88;4; -0.968341,-0.225834, 0.008490,-0.039949;;, + 89;4; -0.971092,-0.212518, 0.008006,-0.039713;;, + 90;4; -0.974064,-0.198131, 0.007484,-0.039458;;, + 91;4; -0.977151,-0.183188, 0.006941,-0.039194;;, + 92;4; -0.980238,-0.168245, 0.006398,-0.038930;;, + 93;4; -0.983210,-0.153859, 0.005875,-0.038675;;, + 94;4; -0.985961,-0.140543, 0.005392,-0.038439;;, + 95;4; -0.988400,-0.128734, 0.004963,-0.038230;;, + 96;4; -0.990459,-0.118768, 0.004601,-0.038054;;, + 97;4; -0.992089,-0.110879, 0.004314,-0.037915;;, + 98;4; -0.993261,-0.105206, 0.004108,-0.037814;;, + 99;4; -0.993963,-0.101810, 0.003985,-0.037754;;, + 100;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 101;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 102;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 103;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 104;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 105;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 106;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 107;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 108;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 109;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 110;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 111;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 112;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 113;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 114;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 115;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 116;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 117;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 118;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 119;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 120;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 121;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 122;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 123;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 124;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 125;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 126;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 127;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 128;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 129;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 130;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 131;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 132;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 133;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 134;4; -0.994195,-0.100686, 0.003944,-0.037734;;, + 135;4; -0.994195,-0.100686, 0.003944,-0.037734;;; + } + AnimationKey { //Scale + 1; + 136; + 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;;, + 135;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube} + AnimationKey { //Position + 2; + 136; + 0;3; 0.274003,-0.357581,11.859126;;, + 1;3; 0.274003,-0.357581,11.859126;;, + 2;3; 0.274003,-0.357581,11.859126;;, + 3;3; 0.274003,-0.357581,11.859126;;, + 4;3; 0.274003,-0.357581,11.859126;;, + 5;3; 0.274003,-0.357581,11.859126;;, + 6;3; 0.274003,-0.357581,11.859126;;, + 7;3; 0.274003,-0.357581,11.859126;;, + 8;3; 0.274003,-0.357581,11.859126;;, + 9;3; 0.274003,-0.357581,11.859126;;, + 10;3; 0.274003,-0.357581,11.859126;;, + 11;3; 0.274003,-0.357581,11.859126;;, + 12;3; 0.274003,-0.357581,11.859126;;, + 13;3; 0.274003,-0.357581,11.859126;;, + 14;3; 0.274003,-0.357581,11.859126;;, + 15;3; 0.274003,-0.357581,11.859126;;, + 16;3; 0.274003,-0.357581,11.859126;;, + 17;3; 0.274003,-0.357581,11.859126;;, + 18;3; 0.274003,-0.357581,11.859126;;, + 19;3; 0.274003,-0.357581,11.859126;;, + 20;3; 0.274003,-0.357581,11.859126;;, + 21;3; 0.274003,-0.357581,11.859126;;, + 22;3; 0.274003,-0.357581,11.859126;;, + 23;3; 0.274003,-0.357581,11.859126;;, + 24;3; 0.274003,-0.357581,11.859126;;, + 25;3; 0.274003,-0.357581,11.859126;;, + 26;3; 0.274003,-0.357581,11.859126;;, + 27;3; 0.274003,-0.357581,11.859126;;, + 28;3; 0.274003,-0.357581,11.859126;;, + 29;3; 0.274003,-0.357581,11.859126;;, + 30;3; 0.274003,-0.357581,11.859126;;, + 31;3; 0.274003,-0.357581,11.859126;;, + 32;3; 0.274003,-0.357581,11.859126;;, + 33;3; 0.274003,-0.357581,11.859126;;, + 34;3; 0.274003,-0.357581,11.859126;;, + 35;3; 0.274003,-0.357581,11.859126;;, + 36;3; 0.274003,-0.357581,11.859126;;, + 37;3; 0.274003,-0.357581,11.859126;;, + 38;3; 0.274003,-0.357581,11.859126;;, + 39;3; 0.274003,-0.357581,11.859126;;, + 40;3; 0.274003,-0.357581,11.859126;;, + 41;3; 0.274003,-0.357581,11.859126;;, + 42;3; 0.274003,-0.357581,11.859126;;, + 43;3; 0.274003,-0.357581,11.859126;;, + 44;3; 0.274003,-0.357581,11.859126;;, + 45;3; 0.274003,-0.357581,11.859126;;, + 46;3; 0.274003,-0.357581,11.859126;;, + 47;3; 0.274003,-0.357581,11.859126;;, + 48;3; 0.274003,-0.357581,11.859126;;, + 49;3; 0.274003,-0.357581,11.859126;;, + 50;3; 0.274003,-0.357581,11.859126;;, + 51;3; 0.274003,-0.357581,11.859126;;, + 52;3; 0.274003,-0.357581,11.859126;;, + 53;3; 0.274003,-0.357581,11.859126;;, + 54;3; 0.274003,-0.357581,11.859126;;, + 55;3; 0.274003,-0.357581,11.859126;;, + 56;3; 0.274003,-0.357581,11.859126;;, + 57;3; 0.274003,-0.357581,11.859126;;, + 58;3; 0.274003,-0.357581,11.859126;;, + 59;3; 0.274003,-0.357581,11.859126;;, + 60;3; 0.274003,-0.357581,11.859126;;, + 61;3; 0.274003,-0.357581,11.859126;;, + 62;3; 0.274003,-0.357581,11.859126;;, + 63;3; 0.274003,-0.357581,11.859126;;, + 64;3; 0.274003,-0.357581,11.859126;;, + 65;3; 0.274003,-0.357581,11.859126;;, + 66;3; 0.274003,-0.357581,11.859126;;, + 67;3; 0.274003,-0.357581,11.859126;;, + 68;3; 0.274003,-0.357581,11.859126;;, + 69;3; 0.274003,-0.357581,11.859126;;, + 70;3; 0.274003,-0.357581,11.859126;;, + 71;3; 0.274003,-0.357581,11.859126;;, + 72;3; 0.274003,-0.357581,11.859126;;, + 73;3; 0.274003,-0.357581,11.859126;;, + 74;3; 0.274003,-0.357581,11.859126;;, + 75;3; 0.274003,-0.357581,11.859126;;, + 76;3; 0.274003,-0.357581,11.859126;;, + 77;3; 0.274003,-0.357581,11.859126;;, + 78;3; 0.274003,-0.357581,11.859126;;, + 79;3; 0.274003,-0.357581,11.859126;;, + 80;3; 0.274003,-0.357581,11.859126;;, + 81;3; 0.274003,-0.357581,11.859126;;, + 82;3; 0.274003,-0.357581,11.859126;;, + 83;3; 0.274003,-0.357581,11.859126;;, + 84;3; 0.274003,-0.357581,11.859126;;, + 85;3; 0.274003,-0.357581,11.859126;;, + 86;3; 0.274003,-0.357581,11.859126;;, + 87;3; 0.274003,-0.357581,11.859126;;, + 88;3; 0.274003,-0.357581,11.859126;;, + 89;3; 0.274003,-0.357581,11.859126;;, + 90;3; 0.274003,-0.357581,11.859126;;, + 91;3; 0.274003,-0.357581,11.859126;;, + 92;3; 0.274003,-0.357581,11.859126;;, + 93;3; 0.274003,-0.357581,11.859126;;, + 94;3; 0.274003,-0.357581,11.859126;;, + 95;3; 0.274003,-0.357581,11.859126;;, + 96;3; 0.274003,-0.357581,11.859126;;, + 97;3; 0.274003,-0.357581,11.859126;;, + 98;3; 0.274003,-0.357581,11.859126;;, + 99;3; 0.274003,-0.357581,11.859126;;, + 100;3; 0.274003,-0.357581,11.859126;;, + 101;3; 0.274003,-0.357581,11.859126;;, + 102;3; 0.274003,-0.357581,11.859126;;, + 103;3; 0.274003,-0.357581,11.859126;;, + 104;3; 0.274003,-0.357581,11.859126;;, + 105;3; 0.274003,-0.357581,11.859126;;, + 106;3; 0.274003,-0.357581,11.859126;;, + 107;3; 0.274003,-0.357581,11.859126;;, + 108;3; 0.274003,-0.357581,11.859126;;, + 109;3; 0.274003,-0.357581,11.859126;;, + 110;3; 0.274003,-0.357581,11.859126;;, + 111;3; 0.274003,-0.357581,11.859126;;, + 112;3; 0.274003,-0.357581,11.859126;;, + 113;3; 0.274003,-0.357581,11.859126;;, + 114;3; 0.274003,-0.357581,11.859126;;, + 115;3; 0.274003,-0.357581,11.859126;;, + 116;3; 0.274003,-0.357581,11.859126;;, + 117;3; 0.274003,-0.357581,11.859126;;, + 118;3; 0.274003,-0.357581,11.859126;;, + 119;3; 0.274003,-0.357581,11.859126;;, + 120;3; 0.274003,-0.357581,11.859126;;, + 121;3; 0.274003,-0.357581,11.859126;;, + 122;3; 0.274003,-0.357581,11.859126;;, + 123;3; 0.274003,-0.357581,11.859126;;, + 124;3; 0.274003,-0.357581,11.859126;;, + 125;3; 0.274003,-0.357581,11.859126;;, + 126;3; 0.274003,-0.357581,11.859126;;, + 127;3; 0.274003,-0.357581,11.859126;;, + 128;3; 0.274003,-0.357581,11.859126;;, + 129;3; 0.274003,-0.357581,11.859126;;, + 130;3; 0.274003,-0.357581,11.859126;;, + 131;3; 0.274003,-0.357581,11.859126;;, + 132;3; 0.274003,-0.357581,11.859126;;, + 133;3; 0.274003,-0.357581,11.859126;;, + 134;3; 0.274003,-0.357581,11.859126;;, + 135;3; 0.274003,-0.357581,11.859126;;; + } + AnimationKey { //Rotation + 0; + 136; + 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;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 136; + 0;3; 3.749036, 3.749036, 3.749036;;, + 1;3; 3.749036, 3.749036, 3.749036;;, + 2;3; 3.749036, 3.749036, 3.749036;;, + 3;3; 3.749036, 3.749036, 3.749036;;, + 4;3; 3.749036, 3.749036, 3.749036;;, + 5;3; 3.749036, 3.749036, 3.749036;;, + 6;3; 3.749036, 3.749036, 3.749036;;, + 7;3; 3.749036, 3.749036, 3.749036;;, + 8;3; 3.749036, 3.749036, 3.749036;;, + 9;3; 3.749036, 3.749036, 3.749036;;, + 10;3; 3.749036, 3.749036, 3.749036;;, + 11;3; 3.749036, 3.749036, 3.749036;;, + 12;3; 3.749036, 3.749036, 3.749036;;, + 13;3; 3.749036, 3.749036, 3.749036;;, + 14;3; 3.749036, 3.749036, 3.749036;;, + 15;3; 3.749036, 3.749036, 3.749036;;, + 16;3; 3.749036, 3.749036, 3.749036;;, + 17;3; 3.749036, 3.749036, 3.749036;;, + 18;3; 3.749036, 3.749036, 3.749036;;, + 19;3; 3.749036, 3.749036, 3.749036;;, + 20;3; 3.749036, 3.749036, 3.749036;;, + 21;3; 3.749036, 3.749036, 3.749036;;, + 22;3; 3.749036, 3.749036, 3.749036;;, + 23;3; 3.749036, 3.749036, 3.749036;;, + 24;3; 3.749036, 3.749036, 3.749036;;, + 25;3; 3.749036, 3.749036, 3.749036;;, + 26;3; 3.749036, 3.749036, 3.749036;;, + 27;3; 3.749036, 3.749036, 3.749036;;, + 28;3; 3.749036, 3.749036, 3.749036;;, + 29;3; 3.749036, 3.749036, 3.749036;;, + 30;3; 3.749036, 3.749036, 3.749036;;, + 31;3; 3.749036, 3.749036, 3.749036;;, + 32;3; 3.749036, 3.749036, 3.749036;;, + 33;3; 3.749036, 3.749036, 3.749036;;, + 34;3; 3.749036, 3.749036, 3.749036;;, + 35;3; 3.749036, 3.749036, 3.749036;;, + 36;3; 3.749036, 3.749036, 3.749036;;, + 37;3; 3.749036, 3.749036, 3.749036;;, + 38;3; 3.749036, 3.749036, 3.749036;;, + 39;3; 3.749036, 3.749036, 3.749036;;, + 40;3; 3.749036, 3.749036, 3.749036;;, + 41;3; 3.749036, 3.749036, 3.749036;;, + 42;3; 3.749036, 3.749036, 3.749036;;, + 43;3; 3.749036, 3.749036, 3.749036;;, + 44;3; 3.749036, 3.749036, 3.749036;;, + 45;3; 3.749036, 3.749036, 3.749036;;, + 46;3; 3.749036, 3.749036, 3.749036;;, + 47;3; 3.749036, 3.749036, 3.749036;;, + 48;3; 3.749036, 3.749036, 3.749036;;, + 49;3; 3.749036, 3.749036, 3.749036;;, + 50;3; 3.749036, 3.749036, 3.749036;;, + 51;3; 3.749036, 3.749036, 3.749036;;, + 52;3; 3.749036, 3.749036, 3.749036;;, + 53;3; 3.749036, 3.749036, 3.749036;;, + 54;3; 3.749036, 3.749036, 3.749036;;, + 55;3; 3.749036, 3.749036, 3.749036;;, + 56;3; 3.749036, 3.749036, 3.749036;;, + 57;3; 3.749036, 3.749036, 3.749036;;, + 58;3; 3.749036, 3.749036, 3.749036;;, + 59;3; 3.749036, 3.749036, 3.749036;;, + 60;3; 3.749036, 3.749036, 3.749036;;, + 61;3; 3.749036, 3.749036, 3.749036;;, + 62;3; 3.749036, 3.749036, 3.749036;;, + 63;3; 3.749036, 3.749036, 3.749036;;, + 64;3; 3.749036, 3.749036, 3.749036;;, + 65;3; 3.749036, 3.749036, 3.749036;;, + 66;3; 3.749036, 3.749036, 3.749036;;, + 67;3; 3.749036, 3.749036, 3.749036;;, + 68;3; 3.749036, 3.749036, 3.749036;;, + 69;3; 3.749036, 3.749036, 3.749036;;, + 70;3; 3.749036, 3.749036, 3.749036;;, + 71;3; 3.749036, 3.749036, 3.749036;;, + 72;3; 3.749036, 3.749036, 3.749036;;, + 73;3; 3.749036, 3.749036, 3.749036;;, + 74;3; 3.749036, 3.749036, 3.749036;;, + 75;3; 3.749036, 3.749036, 3.749036;;, + 76;3; 3.749036, 3.749036, 3.749036;;, + 77;3; 3.749036, 3.749036, 3.749036;;, + 78;3; 3.749036, 3.749036, 3.749036;;, + 79;3; 3.749036, 3.749036, 3.749036;;, + 80;3; 3.749036, 3.749036, 3.749036;;, + 81;3; 3.749036, 3.749036, 3.749036;;, + 82;3; 3.749036, 3.749036, 3.749036;;, + 83;3; 3.749036, 3.749036, 3.749036;;, + 84;3; 3.749036, 3.749036, 3.749036;;, + 85;3; 3.749036, 3.749036, 3.749036;;, + 86;3; 3.749036, 3.749036, 3.749036;;, + 87;3; 3.749036, 3.749036, 3.749036;;, + 88;3; 3.749036, 3.749036, 3.749036;;, + 89;3; 3.749036, 3.749036, 3.749036;;, + 90;3; 3.749036, 3.749036, 3.749036;;, + 91;3; 3.749036, 3.749036, 3.749036;;, + 92;3; 3.749036, 3.749036, 3.749036;;, + 93;3; 3.749036, 3.749036, 3.749036;;, + 94;3; 3.749036, 3.749036, 3.749036;;, + 95;3; 3.749036, 3.749036, 3.749036;;, + 96;3; 3.749036, 3.749036, 3.749036;;, + 97;3; 3.749036, 3.749036, 3.749036;;, + 98;3; 3.749036, 3.749036, 3.749036;;, + 99;3; 3.749036, 3.749036, 3.749036;;, + 100;3; 3.749036, 3.749036, 3.749036;;, + 101;3; 3.749036, 3.749036, 3.749036;;, + 102;3; 3.749036, 3.749036, 3.749036;;, + 103;3; 3.749036, 3.749036, 3.749036;;, + 104;3; 3.749036, 3.749036, 3.749036;;, + 105;3; 3.749036, 3.749036, 3.749036;;, + 106;3; 3.749036, 3.749036, 3.749036;;, + 107;3; 3.749036, 3.749036, 3.749036;;, + 108;3; 3.749036, 3.749036, 3.749036;;, + 109;3; 3.749036, 3.749036, 3.749036;;, + 110;3; 3.749036, 3.749036, 3.749036;;, + 111;3; 3.749036, 3.749036, 3.749036;;, + 112;3; 3.749036, 3.749036, 3.749036;;, + 113;3; 3.749036, 3.749036, 3.749036;;, + 114;3; 3.749036, 3.749036, 3.749036;;, + 115;3; 3.749036, 3.749036, 3.749036;;, + 116;3; 3.749036, 3.749036, 3.749036;;, + 117;3; 3.749036, 3.749036, 3.749036;;, + 118;3; 3.749036, 3.749036, 3.749036;;, + 119;3; 3.749036, 3.749036, 3.749036;;, + 120;3; 3.749036, 3.749036, 3.749036;;, + 121;3; 3.749036, 3.749036, 3.749036;;, + 122;3; 3.749036, 3.749036, 3.749036;;, + 123;3; 3.749036, 3.749036, 3.749036;;, + 124;3; 3.749036, 3.749036, 3.749036;;, + 125;3; 3.749036, 3.749036, 3.749036;;, + 126;3; 3.749036, 3.749036, 3.749036;;, + 127;3; 3.749036, 3.749036, 3.749036;;, + 128;3; 3.749036, 3.749036, 3.749036;;, + 129;3; 3.749036, 3.749036, 3.749036;;, + 130;3; 3.749036, 3.749036, 3.749036;;, + 131;3; 3.749036, 3.749036, 3.749036;;, + 132;3; 3.749036, 3.749036, 3.749036;;, + 133;3; 3.749036, 3.749036, 3.749036;;, + 134;3; 3.749036, 3.749036, 3.749036;;, + 135;3; 3.749036, 3.749036, 3.749036;;; + } + } +} //End of AnimationSet diff --git a/cache/media/b18fe46f2dbda8748a60b933b3d62de8b7885dba b/cache/media/b18fe46f2dbda8748a60b933b3d62de8b7885dba new file mode 100644 index 000000000..50d7673f6 Binary files /dev/null and b/cache/media/b18fe46f2dbda8748a60b933b3d62de8b7885dba differ diff --git a/cache/media/b1a2477eeddb5bb959e1b4483015f36fabd458cf b/cache/media/b1a2477eeddb5bb959e1b4483015f36fabd458cf new file mode 100644 index 000000000..1d108a233 Binary files /dev/null and b/cache/media/b1a2477eeddb5bb959e1b4483015f36fabd458cf differ diff --git a/cache/media/b20fef80f8b74a2b8b42dc8ca5258bddb2315fa3 b/cache/media/b20fef80f8b74a2b8b42dc8ca5258bddb2315fa3 new file mode 100644 index 000000000..791a58ab1 Binary files /dev/null and b/cache/media/b20fef80f8b74a2b8b42dc8ca5258bddb2315fa3 differ diff --git a/cache/media/b22db9230b94f766325e87c04b9daca08f545f49 b/cache/media/b22db9230b94f766325e87c04b9daca08f545f49 new file mode 100644 index 000000000..8497bf170 Binary files /dev/null and b/cache/media/b22db9230b94f766325e87c04b9daca08f545f49 differ diff --git a/cache/media/b23fdcbaf154bda5c498966aeae1fd7d729e4771 b/cache/media/b23fdcbaf154bda5c498966aeae1fd7d729e4771 new file mode 100644 index 000000000..685a22ccf Binary files /dev/null and b/cache/media/b23fdcbaf154bda5c498966aeae1fd7d729e4771 differ diff --git a/cache/media/b2848ddfd491fe4bfa49a522f01933253f3c9bb3 b/cache/media/b2848ddfd491fe4bfa49a522f01933253f3c9bb3 new file mode 100644 index 000000000..f0b1bd45c Binary files /dev/null and b/cache/media/b2848ddfd491fe4bfa49a522f01933253f3c9bb3 differ diff --git a/cache/media/b3af5ffe5e55a98230370a0099891a73409286f0 b/cache/media/b3af5ffe5e55a98230370a0099891a73409286f0 new file mode 100644 index 000000000..d4648bb3f Binary files /dev/null and b/cache/media/b3af5ffe5e55a98230370a0099891a73409286f0 differ diff --git a/cache/media/b3c387893e21b11f02293716d6d279d84e14444a b/cache/media/b3c387893e21b11f02293716d6d279d84e14444a new file mode 100644 index 000000000..1ec1981b1 Binary files /dev/null and b/cache/media/b3c387893e21b11f02293716d6d279d84e14444a differ diff --git a/cache/media/b41b60e92498c7f6a8526be2c0dead2305eac9de b/cache/media/b41b60e92498c7f6a8526be2c0dead2305eac9de new file mode 100644 index 000000000..0e459078b Binary files /dev/null and b/cache/media/b41b60e92498c7f6a8526be2c0dead2305eac9de differ diff --git a/cache/media/b42a946e16fc8f5e14fc6a9b4e79aeee7498aba3 b/cache/media/b42a946e16fc8f5e14fc6a9b4e79aeee7498aba3 new file mode 100644 index 000000000..442caa270 Binary files /dev/null and b/cache/media/b42a946e16fc8f5e14fc6a9b4e79aeee7498aba3 differ diff --git a/cache/media/b439f2d79435e037eecad62b7f063d3fd6886489 b/cache/media/b439f2d79435e037eecad62b7f063d3fd6886489 new file mode 100644 index 000000000..bd5127b5b --- /dev/null +++ b/cache/media/b439f2d79435e037eecad62b7f063d3fd6886489 @@ -0,0 +1,40 @@ +# Blender v2.76 (sub 0) OBJ File: 'door_a.blend' +# www.blender.org +mtllib door_a.mtl +o Cube_Cube.001 +v 0.499000 -0.499000 -0.499000 +v 0.499000 1.499000 -0.499000 +v 0.499000 -0.499000 -0.375000 +v 0.499000 1.499000 -0.375000 +v -0.499000 -0.499000 -0.499000 +v -0.499000 1.499000 -0.499000 +v -0.499000 -0.499000 -0.375000 +v -0.499000 1.499000 -0.375000 +vt 0.842105 1.000000 +vt 0.894737 1.000000 +vt 0.894737 0.000000 +vt 0.842105 0.000000 +vt 0.421053 1.000000 +vt 0.421053 0.000000 +vt 0.947368 1.000000 +vt 0.947368 0.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.500000 +vt 0.947368 0.500000 +vt 1.000000 1.000000 +vt 1.000000 0.000000 +vn 1.000000 0.000000 0.000000 +vn 0.000000 0.000000 1.000000 +vn -1.000000 0.000000 0.000000 +vn 0.000000 0.000000 -1.000000 +vn 0.000000 -1.000000 0.000000 +vn 0.000000 1.000000 0.000000 +usemtl None +s off +f 2/1/1 4/2/1 3/3/1 1/4/1 +f 4/5/2 8/1/2 7/4/2 3/6/2 +f 8/2/3 6/7/3 5/8/3 7/3/3 +f 6/9/4 2/5/4 1/6/4 5/10/4 +f 1/11/5 3/12/5 7/7/5 5/13/5 +f 6/14/6 8/8/6 4/12/6 2/11/6 diff --git a/cache/media/b4541a43d0ed3f047ddbcbd0459a06d5df846548 b/cache/media/b4541a43d0ed3f047ddbcbd0459a06d5df846548 new file mode 100644 index 000000000..1dddc3d9a Binary files /dev/null and b/cache/media/b4541a43d0ed3f047ddbcbd0459a06d5df846548 differ diff --git a/cache/media/b46de80f74725e47c2ab12be6df78bf82149aeb4 b/cache/media/b46de80f74725e47c2ab12be6df78bf82149aeb4 new file mode 100644 index 000000000..a031a34ad Binary files /dev/null and b/cache/media/b46de80f74725e47c2ab12be6df78bf82149aeb4 differ diff --git a/cache/media/b4e68a2abd8205f04c22637d5694b523d71a56eb b/cache/media/b4e68a2abd8205f04c22637d5694b523d71a56eb new file mode 100644 index 000000000..b775a9fd3 Binary files /dev/null and b/cache/media/b4e68a2abd8205f04c22637d5694b523d71a56eb differ diff --git a/cache/media/b50357bbbbbc12959c15c7590cd526df1ff2404b b/cache/media/b50357bbbbbc12959c15c7590cd526df1ff2404b new file mode 100644 index 000000000..df3d7a77d Binary files /dev/null and b/cache/media/b50357bbbbbc12959c15c7590cd526df1ff2404b differ diff --git a/cache/media/b51355da21c6430199151c1316627a09983e5971 b/cache/media/b51355da21c6430199151c1316627a09983e5971 new file mode 100644 index 000000000..d5ac83d09 Binary files /dev/null and b/cache/media/b51355da21c6430199151c1316627a09983e5971 differ diff --git a/cache/media/b6390c92f1c65a75ec081fbb15172229f8006a04 b/cache/media/b6390c92f1c65a75ec081fbb15172229f8006a04 new file mode 100644 index 000000000..bf0403e9d Binary files /dev/null and b/cache/media/b6390c92f1c65a75ec081fbb15172229f8006a04 differ diff --git a/cache/media/b663c1d8021422de4570f455d1b6177b16b877b5 b/cache/media/b663c1d8021422de4570f455d1b6177b16b877b5 new file mode 100644 index 000000000..af95ec7f8 Binary files /dev/null and b/cache/media/b663c1d8021422de4570f455d1b6177b16b877b5 differ diff --git a/cache/media/b6f12bd1a30338c9b9d6ce62ced840446c8be1e2 b/cache/media/b6f12bd1a30338c9b9d6ce62ced840446c8be1e2 new file mode 100644 index 000000000..da2540287 Binary files /dev/null and b/cache/media/b6f12bd1a30338c9b9d6ce62ced840446c8be1e2 differ diff --git a/cache/media/b6fd311c1d153e74fb855cab65104d677f7ad4af b/cache/media/b6fd311c1d153e74fb855cab65104d677f7ad4af new file mode 100644 index 000000000..c4aa7b936 Binary files /dev/null and b/cache/media/b6fd311c1d153e74fb855cab65104d677f7ad4af differ diff --git a/cache/media/b6ff375a6e56c0de647e69cd3fd8f3d4acedfb09 b/cache/media/b6ff375a6e56c0de647e69cd3fd8f3d4acedfb09 new file mode 100644 index 000000000..6fa3af5c2 Binary files /dev/null and b/cache/media/b6ff375a6e56c0de647e69cd3fd8f3d4acedfb09 differ diff --git a/cache/media/b7be816edabe7681c7f8b6b8d5cf91d23b9e43bf b/cache/media/b7be816edabe7681c7f8b6b8d5cf91d23b9e43bf new file mode 100644 index 000000000..0f52062af Binary files /dev/null and b/cache/media/b7be816edabe7681c7f8b6b8d5cf91d23b9e43bf differ diff --git a/cache/media/b88fd7d15b7fa43dddb4c298ebfd63d30411d468 b/cache/media/b88fd7d15b7fa43dddb4c298ebfd63d30411d468 new file mode 100644 index 000000000..be8a4e1cf Binary files /dev/null and b/cache/media/b88fd7d15b7fa43dddb4c298ebfd63d30411d468 differ diff --git a/cache/media/b901377bde3bf0d5a586c631172b23a0df84cfee b/cache/media/b901377bde3bf0d5a586c631172b23a0df84cfee new file mode 100644 index 000000000..e39535c66 Binary files /dev/null and b/cache/media/b901377bde3bf0d5a586c631172b23a0df84cfee differ diff --git a/cache/media/b9159f03b7e165e44a1a66710f627d8f295848a1 b/cache/media/b9159f03b7e165e44a1a66710f627d8f295848a1 new file mode 100644 index 000000000..3c31f77c2 Binary files /dev/null and b/cache/media/b9159f03b7e165e44a1a66710f627d8f295848a1 differ diff --git a/cache/media/b964e02c30d03f63d4cdcbfe742b781367b4a50f b/cache/media/b964e02c30d03f63d4cdcbfe742b781367b4a50f new file mode 100644 index 000000000..ec5c20392 Binary files /dev/null and b/cache/media/b964e02c30d03f63d4cdcbfe742b781367b4a50f differ diff --git a/cache/media/b9c97328b08d467f4ca5b69fb7f2da8b7652edf8 b/cache/media/b9c97328b08d467f4ca5b69fb7f2da8b7652edf8 new file mode 100644 index 000000000..c43015c08 Binary files /dev/null and b/cache/media/b9c97328b08d467f4ca5b69fb7f2da8b7652edf8 differ diff --git a/cache/media/ba323a59cde9ac8bc90e751bea1ab9c4b0d4d2be b/cache/media/ba323a59cde9ac8bc90e751bea1ab9c4b0d4d2be new file mode 100644 index 000000000..04b64c0bd Binary files /dev/null and b/cache/media/ba323a59cde9ac8bc90e751bea1ab9c4b0d4d2be differ diff --git a/cache/media/ba57c69486d263b500ee5802c0dea4c6113c3fbc b/cache/media/ba57c69486d263b500ee5802c0dea4c6113c3fbc new file mode 100644 index 000000000..d9c72670d Binary files /dev/null and b/cache/media/ba57c69486d263b500ee5802c0dea4c6113c3fbc differ diff --git a/cache/media/ba74de50399c88763941b2b0d7eac1acd86490d7 b/cache/media/ba74de50399c88763941b2b0d7eac1acd86490d7 new file mode 100644 index 000000000..1d76708a0 Binary files /dev/null and b/cache/media/ba74de50399c88763941b2b0d7eac1acd86490d7 differ diff --git a/cache/media/ba793879b69e2eec92fef139c98e5773b04919e5 b/cache/media/ba793879b69e2eec92fef139c98e5773b04919e5 new file mode 100644 index 000000000..5f9ca7be5 Binary files /dev/null and b/cache/media/ba793879b69e2eec92fef139c98e5773b04919e5 differ diff --git a/cache/media/bad5086cf0bdbf968a7e3b3fd46a88ececfdae13 b/cache/media/bad5086cf0bdbf968a7e3b3fd46a88ececfdae13 new file mode 100644 index 000000000..746c26428 Binary files /dev/null and b/cache/media/bad5086cf0bdbf968a7e3b3fd46a88ececfdae13 differ diff --git a/cache/media/bc2c334f78cc0f6cf9842492a2f58d60b1816eb9 b/cache/media/bc2c334f78cc0f6cf9842492a2f58d60b1816eb9 new file mode 100644 index 000000000..f6dfd1d97 Binary files /dev/null and b/cache/media/bc2c334f78cc0f6cf9842492a2f58d60b1816eb9 differ diff --git a/cache/media/bc5e886d7b1b13a217389a90d32e0931eb7ea248 b/cache/media/bc5e886d7b1b13a217389a90d32e0931eb7ea248 new file mode 100644 index 000000000..e8f83d81f Binary files /dev/null and b/cache/media/bc5e886d7b1b13a217389a90d32e0931eb7ea248 differ diff --git a/cache/media/be0ffe781ce036051e6b2bfba65774b14a40c289 b/cache/media/be0ffe781ce036051e6b2bfba65774b14a40c289 new file mode 100644 index 000000000..b6cc9e85e Binary files /dev/null and b/cache/media/be0ffe781ce036051e6b2bfba65774b14a40c289 differ diff --git a/cache/media/beb4e8236e23bd81e2b0dde1aea155f7acbb8c2b b/cache/media/beb4e8236e23bd81e2b0dde1aea155f7acbb8c2b new file mode 100644 index 000000000..fae19dd0d Binary files /dev/null and b/cache/media/beb4e8236e23bd81e2b0dde1aea155f7acbb8c2b differ diff --git a/cache/media/bed7c7590dc20e6063de29a65b4b4b3b20931b32 b/cache/media/bed7c7590dc20e6063de29a65b4b4b3b20931b32 new file mode 100644 index 000000000..d34c01a43 Binary files /dev/null and b/cache/media/bed7c7590dc20e6063de29a65b4b4b3b20931b32 differ diff --git a/cache/media/bee49345337d8fed22512e267c2b4409095af3dd b/cache/media/bee49345337d8fed22512e267c2b4409095af3dd new file mode 100644 index 000000000..792961dc7 Binary files /dev/null and b/cache/media/bee49345337d8fed22512e267c2b4409095af3dd differ diff --git a/cache/media/bf400ab1c8c011106b61a958507b12670a9a7115 b/cache/media/bf400ab1c8c011106b61a958507b12670a9a7115 new file mode 100644 index 000000000..46757b884 Binary files /dev/null and b/cache/media/bf400ab1c8c011106b61a958507b12670a9a7115 differ diff --git a/cache/media/bf423f8f28e4dc12f66c6e541ab01efff0e27dc0 b/cache/media/bf423f8f28e4dc12f66c6e541ab01efff0e27dc0 new file mode 100644 index 000000000..624f5565d Binary files /dev/null and b/cache/media/bf423f8f28e4dc12f66c6e541ab01efff0e27dc0 differ diff --git a/cache/media/bfa7eb4429c9b6894742eade922e0adfced69f4e b/cache/media/bfa7eb4429c9b6894742eade922e0adfced69f4e new file mode 100644 index 000000000..048927cd4 Binary files /dev/null and b/cache/media/bfa7eb4429c9b6894742eade922e0adfced69f4e differ diff --git a/cache/media/c003d41508bfbb9105847ceee3b7827aa72038b3 b/cache/media/c003d41508bfbb9105847ceee3b7827aa72038b3 new file mode 100644 index 000000000..070d79718 Binary files /dev/null and b/cache/media/c003d41508bfbb9105847ceee3b7827aa72038b3 differ diff --git a/cache/media/c00deec30e815af3980b861c60b86251135c7c35 b/cache/media/c00deec30e815af3980b861c60b86251135c7c35 new file mode 100644 index 000000000..3394288e2 Binary files /dev/null and b/cache/media/c00deec30e815af3980b861c60b86251135c7c35 differ diff --git a/cache/media/c02a49460c433ff88874fc25f42cd19c85e1301a b/cache/media/c02a49460c433ff88874fc25f42cd19c85e1301a new file mode 100644 index 000000000..04e03d801 Binary files /dev/null and b/cache/media/c02a49460c433ff88874fc25f42cd19c85e1301a differ diff --git a/cache/media/c032140a0afe6b0896d4cb58499f93c277a76a00 b/cache/media/c032140a0afe6b0896d4cb58499f93c277a76a00 new file mode 100644 index 000000000..e25633b70 Binary files /dev/null and b/cache/media/c032140a0afe6b0896d4cb58499f93c277a76a00 differ diff --git a/cache/media/c0332770d9009fdb24a861ca079098a490464d27 b/cache/media/c0332770d9009fdb24a861ca079098a490464d27 new file mode 100644 index 000000000..fe78e6253 Binary files /dev/null and b/cache/media/c0332770d9009fdb24a861ca079098a490464d27 differ diff --git a/cache/media/c058659cb9659854257fa6cc3d4f744109b2d457 b/cache/media/c058659cb9659854257fa6cc3d4f744109b2d457 new file mode 100644 index 000000000..da747e5e5 Binary files /dev/null and b/cache/media/c058659cb9659854257fa6cc3d4f744109b2d457 differ diff --git a/cache/media/c11217745e5a480960fff96d0b1cdadacc02acf7 b/cache/media/c11217745e5a480960fff96d0b1cdadacc02acf7 new file mode 100644 index 000000000..e7150e501 Binary files /dev/null and b/cache/media/c11217745e5a480960fff96d0b1cdadacc02acf7 differ diff --git a/cache/media/c169a011b5b568256c4a8e5048f9190049eda8f5 b/cache/media/c169a011b5b568256c4a8e5048f9190049eda8f5 new file mode 100644 index 000000000..9606ccf45 Binary files /dev/null and b/cache/media/c169a011b5b568256c4a8e5048f9190049eda8f5 differ diff --git a/cache/media/c1cfde3caa20ff3b2c4dab72a11f7c2b19e50cbb b/cache/media/c1cfde3caa20ff3b2c4dab72a11f7c2b19e50cbb new file mode 100644 index 000000000..4cff308c2 Binary files /dev/null and b/cache/media/c1cfde3caa20ff3b2c4dab72a11f7c2b19e50cbb differ diff --git a/cache/media/c1f428a944bd7805f9c9c8ed27a721e39aa85d0f b/cache/media/c1f428a944bd7805f9c9c8ed27a721e39aa85d0f new file mode 100644 index 000000000..f83da0879 Binary files /dev/null and b/cache/media/c1f428a944bd7805f9c9c8ed27a721e39aa85d0f differ diff --git a/cache/media/c2050ed84ffaa7eb935529d1651b15315b94465c b/cache/media/c2050ed84ffaa7eb935529d1651b15315b94465c new file mode 100644 index 000000000..061709c80 Binary files /dev/null and b/cache/media/c2050ed84ffaa7eb935529d1651b15315b94465c differ diff --git a/cache/media/c2095cda39fb4a350f215b6a23ce741e8b69fa3b b/cache/media/c2095cda39fb4a350f215b6a23ce741e8b69fa3b new file mode 100644 index 000000000..a988d8ce3 Binary files /dev/null and b/cache/media/c2095cda39fb4a350f215b6a23ce741e8b69fa3b differ diff --git a/cache/media/c20caa1a5ea45d192cb28209d9d7957b5674578f b/cache/media/c20caa1a5ea45d192cb28209d9d7957b5674578f new file mode 100644 index 000000000..ef4d7b155 Binary files /dev/null and b/cache/media/c20caa1a5ea45d192cb28209d9d7957b5674578f differ diff --git a/cache/media/c232447c8a503524aa8dace02a9e24ec7d4133d2 b/cache/media/c232447c8a503524aa8dace02a9e24ec7d4133d2 new file mode 100644 index 000000000..299776f60 Binary files /dev/null and b/cache/media/c232447c8a503524aa8dace02a9e24ec7d4133d2 differ diff --git a/cache/media/c24ff29a19987b9023caebd1df4a44ae676a1db1 b/cache/media/c24ff29a19987b9023caebd1df4a44ae676a1db1 new file mode 100644 index 000000000..5b254e428 Binary files /dev/null and b/cache/media/c24ff29a19987b9023caebd1df4a44ae676a1db1 differ diff --git a/cache/media/c28581922fc6220bb8a527a69b2dde48f93b37e0 b/cache/media/c28581922fc6220bb8a527a69b2dde48f93b37e0 new file mode 100644 index 000000000..2620dfdb5 Binary files /dev/null and b/cache/media/c28581922fc6220bb8a527a69b2dde48f93b37e0 differ diff --git a/cache/media/c28b9c564732461a10025c0e2ac341fbdc2bbf71 b/cache/media/c28b9c564732461a10025c0e2ac341fbdc2bbf71 new file mode 100644 index 000000000..bbaeb6a67 Binary files /dev/null and b/cache/media/c28b9c564732461a10025c0e2ac341fbdc2bbf71 differ diff --git a/cache/media/c2c0b07cb936891dace6226033503f485bc287dc b/cache/media/c2c0b07cb936891dace6226033503f485bc287dc new file mode 100644 index 000000000..184a9d885 Binary files /dev/null and b/cache/media/c2c0b07cb936891dace6226033503f485bc287dc differ diff --git a/cache/media/c34444cff368e4d3feb19c27fec3d9ffc8559daa b/cache/media/c34444cff368e4d3feb19c27fec3d9ffc8559daa new file mode 100644 index 000000000..6bcd620ca Binary files /dev/null and b/cache/media/c34444cff368e4d3feb19c27fec3d9ffc8559daa differ diff --git a/cache/media/c37d60250d40b4d1d904255390afd585a1e40013 b/cache/media/c37d60250d40b4d1d904255390afd585a1e40013 new file mode 100644 index 000000000..f9f5fe7c8 Binary files /dev/null and b/cache/media/c37d60250d40b4d1d904255390afd585a1e40013 differ diff --git a/cache/media/c386437f2f04641dfd6ec5887b7d7eceb4c2ffcf b/cache/media/c386437f2f04641dfd6ec5887b7d7eceb4c2ffcf new file mode 100644 index 000000000..2bbb9cf6c Binary files /dev/null and b/cache/media/c386437f2f04641dfd6ec5887b7d7eceb4c2ffcf differ diff --git a/cache/media/c3ab3304952e1a7ac2243d74a797878ca9966a54 b/cache/media/c3ab3304952e1a7ac2243d74a797878ca9966a54 new file mode 100644 index 000000000..68a8e5e4c Binary files /dev/null and b/cache/media/c3ab3304952e1a7ac2243d74a797878ca9966a54 differ diff --git a/cache/media/c4cd7dab4c21fd121c3f48f3a8208ecbd0399520 b/cache/media/c4cd7dab4c21fd121c3f48f3a8208ecbd0399520 new file mode 100644 index 000000000..4ba507d61 Binary files /dev/null and b/cache/media/c4cd7dab4c21fd121c3f48f3a8208ecbd0399520 differ diff --git a/cache/media/c558a74facba8b97ee2a21b2bb343b21c10d1eb2 b/cache/media/c558a74facba8b97ee2a21b2bb343b21c10d1eb2 new file mode 100644 index 000000000..cf46aa2d8 Binary files /dev/null and b/cache/media/c558a74facba8b97ee2a21b2bb343b21c10d1eb2 differ diff --git a/cache/media/c6a5999121f0291d6201730693f3aed907bdd183 b/cache/media/c6a5999121f0291d6201730693f3aed907bdd183 new file mode 100644 index 000000000..b0c4684be Binary files /dev/null and b/cache/media/c6a5999121f0291d6201730693f3aed907bdd183 differ diff --git a/cache/media/c704e5b771fab18015878a8ee93fb1d4a86fe4cc b/cache/media/c704e5b771fab18015878a8ee93fb1d4a86fe4cc new file mode 100644 index 000000000..87c69b289 Binary files /dev/null and b/cache/media/c704e5b771fab18015878a8ee93fb1d4a86fe4cc differ diff --git a/cache/media/c71c9c8a2178c7945e42656e312b69324ac33732 b/cache/media/c71c9c8a2178c7945e42656e312b69324ac33732 new file mode 100644 index 000000000..0513540a0 Binary files /dev/null and b/cache/media/c71c9c8a2178c7945e42656e312b69324ac33732 differ diff --git a/cache/media/c7452355096f9e43cb6c6b7cd83b93e044b55164 b/cache/media/c7452355096f9e43cb6c6b7cd83b93e044b55164 new file mode 100644 index 000000000..95f66cb90 Binary files /dev/null and b/cache/media/c7452355096f9e43cb6c6b7cd83b93e044b55164 differ diff --git a/cache/media/c7483e4e6efa4145aa52443a690aad0fa8bb33c6 b/cache/media/c7483e4e6efa4145aa52443a690aad0fa8bb33c6 new file mode 100644 index 000000000..2ab1c8ef7 Binary files /dev/null and b/cache/media/c7483e4e6efa4145aa52443a690aad0fa8bb33c6 differ diff --git a/cache/media/c7a413b4bd47f0a7693bbcd5a71f0ef69fd87c5c b/cache/media/c7a413b4bd47f0a7693bbcd5a71f0ef69fd87c5c new file mode 100644 index 000000000..89f3793ad --- /dev/null +++ b/cache/media/c7a413b4bd47f0a7693bbcd5a71f0ef69fd87c5c @@ -0,0 +1,191 @@ +# Blender v2.73 (sub 0) OBJ File: '3d_armor_stand.blend' +# www.blender.org +mtllib 3d_armor_stand.mtl +o Player_Cube +v 0.062500 1.312500 -0.062500 +v 0.062500 1.312500 0.062500 +v -0.062500 1.312500 -0.062500 +v -0.062500 1.312500 0.062500 +v -0.187500 -0.437504 0.062500 +v -0.187500 -0.437504 -0.062500 +v -0.187500 0.937500 0.062500 +v -0.187500 0.937500 -0.062500 +v -0.250000 0.250000 0.062500 +v -0.250000 0.250000 -0.062500 +v -0.250000 0.125003 0.062500 +v -0.250000 0.125003 -0.062500 +v 0.250000 0.250000 0.062500 +v 0.250000 0.250000 -0.062500 +v 0.250000 0.125003 0.062500 +v 0.250000 0.125003 -0.062500 +v -0.062500 -0.437504 -0.062500 +v -0.062500 -0.437504 0.062500 +v -0.062500 0.937500 0.062500 +v -0.062500 0.937500 -0.062500 +v 0.062500 0.250000 0.062500 +v 0.062500 0.250000 -0.062500 +v 0.187500 0.250000 -0.062500 +v 0.187500 0.250000 0.062500 +v 0.187500 0.937500 -0.062500 +v 0.187500 0.937500 0.062500 +v 0.187500 -0.437504 -0.062500 +v 0.187500 -0.437504 0.062500 +v 0.062500 -0.437504 -0.062500 +v 0.062500 -0.437504 0.062500 +v 0.062500 0.937500 0.062500 +v 0.062500 0.937500 -0.062500 +v -0.062500 0.812500 -0.062500 +v -0.187500 0.812500 -0.062500 +v -0.062500 0.812500 0.062500 +v -0.187500 0.812500 0.062500 +v 0.062500 0.812500 -0.062500 +v 0.187500 0.812500 -0.062500 +v 0.187500 0.812500 0.062500 +v 0.062500 0.812500 0.062500 +v 0.375000 0.812500 0.062500 +v 0.375000 0.812500 -0.062500 +v 0.375000 0.937500 0.062500 +v 0.375000 0.937500 -0.062500 +v 0.500000 -0.437500 -0.500000 +v 0.500000 -0.437500 0.500000 +v -0.500000 -0.437500 -0.500000 +v -0.500000 -0.437500 0.500000 +v -0.062500 0.250000 -0.062500 +v -0.187500 0.250000 -0.062500 +v -0.062500 0.250000 0.062500 +v -0.187500 0.250000 0.062500 +v -0.375000 0.937500 0.062500 +v -0.375000 0.937500 -0.062500 +v -0.375000 0.812500 -0.062500 +v -0.375000 0.812500 0.062500 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v -0.500000 -0.500000 0.500000 +v 0.187500 0.124998 0.062500 +v 0.187500 0.124998 -0.062500 +v 0.062500 0.124998 0.062500 +v 0.062500 0.124998 -0.062500 +v -0.062500 0.124998 -0.062500 +v -0.187500 0.124998 -0.062500 +v -0.062500 0.124998 0.062500 +v -0.187500 0.124998 0.062500 +vt 0.000000 0.000000 +vt 0.875000 0.000000 +vt 0.875000 0.250000 +vt 0.000000 0.250000 +vt 0.125000 0.500000 +vt 0.125000 0.750000 +vt -0.000000 0.750000 +vt -0.000000 0.500000 +vt 0.750000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 0.250000 +vt 0.750000 0.250000 +vt 0.375000 0.500000 +vt 0.375000 0.750000 +vt 0.875000 0.750000 +vt 0.875000 1.000000 +vt 0.000000 1.000000 +vt 0.875000 0.500000 +vt 0.750000 0.500000 +vt 1.000000 0.500000 +vt 1.000000 0.750000 +vt 0.750000 0.750000 +vt 0.625000 1.000000 +vt 0.375000 1.000000 +vt 0.625000 0.750000 +vt 0.625000 0.500000 +vt 0.250000 0.500000 +vt 0.250000 0.750000 +vt 0.625000 0.250000 +vt 0.625000 -0.000000 +vt 0.250000 0.250000 +vt 0.250000 0.000000 +vt 0.375000 0.250000 +vt 0.250000 1.000000 +vt 1.000000 1.000000 +vt 0.750000 1.000000 +vt 0.375000 -0.000000 +vt 0.125000 0.250000 +vt 0.125000 1.000000 +vt 0.125000 0.000000 +vt -0.000000 0.937500 +vt 1.000000 0.937500 +vt 0.937500 0.000000 +vt 0.937500 1.000000 +vt 1.000000 0.062500 +vt 0.000000 0.062500 +vt 0.062500 0.000000 +vt 0.062500 1.000000 +g Player_Cube_Stand +usemtl Stand +s off +f 64/1 29/2 30/3 63/4 +f 52/5 50/6 10/7 9/8 +f 17/9 18/10 5/11 6/12 +f 68/3 66/2 6/1 5/4 +f 7/13 8/14 54/7 53/8 +f 67/15 68/16 5/17 18/7 +f 62/4 27/3 29/18 64/8 +f 66/3 65/18 17/8 6/4 +f 9/19 10/20 12/21 11/22 +f 63/7 30/15 28/16 61/17 +f 65/18 67/15 18/7 17/8 +f 61/8 28/18 27/15 62/7 +f 19/23 7/24 36/14 35/25 +f 8/14 7/13 19/26 20/25 +f 23/15 24/18 13/20 14/21 +f 13/8 15/27 16/28 14/7 +f 39/29 38/30 42/10 41/11 +f 29/31 27/4 28/1 30/32 +f 25/28 26/27 43/26 44/25 +f 38/12 25/19 44/13 42/33 +f 25/28 32/7 31/8 26/27 +f 8/26 20/13 33/33 34/29 +f 25/19 38/12 37/11 32/20 +f 31/17 40/7 39/28 26/34 +f 26/34 39/28 41/25 43/23 +f 43/7 41/28 42/34 44/17 +f 53/22 54/21 55/35 56/36 +f 36/14 7/24 53/17 56/7 +f 8/26 34/29 55/11 54/20 +f 34/37 36/33 56/4 55/1 +f 51/13 21/26 22/25 49/14 +f 20/4 3/12 1/19 32/8 +f 40/15 31/16 19/23 35/25 +f 35/29 33/30 37/2 40/3 +f 33/33 20/13 32/5 37/38 +f 3/14 4/24 2/23 1/25 +f 19/12 4/4 3/1 20/9 +f 31/36 2/17 4/7 19/22 +f 32/22 1/7 2/8 31/19 +f 23/5 62/38 64/33 22/13 +f 21/14 63/24 61/39 24/6 +f 61/3 62/2 16/10 15/11 +f 62/38 23/5 14/8 16/4 +f 24/6 61/39 15/17 13/7 +f 50/18 66/3 12/11 10/20 +f 66/40 68/38 11/4 12/1 +f 50/18 49/26 65/29 66/3 +f 51/25 52/15 68/16 67/23 +f 68/16 52/15 9/21 11/35 +f 49/26 22/13 64/33 65/29 +f 51/25 67/23 63/24 21/14 +f 67/33 65/37 64/30 63/29 +f 37/1 22/2 21/3 40/4 +f 38/4 23/3 22/18 37/8 +f 40/7 21/15 24/16 39/17 +f 39/8 24/18 23/15 38/7 +f 36/2 34/3 50/4 52/1 +f 35/15 36/16 52/17 51/7 +f 34/3 33/18 49/8 50/4 +f 33/18 35/15 51/7 49/8 +g Player_Cube_Base +usemtl Base +f 47/17 48/1 46/10 45/35 +f 59/1 57/10 58/35 60/17 +f 48/17 60/41 58/42 46/35 +f 46/43 58/10 57/35 45/44 +f 47/1 45/10 57/45 59/46 +f 48/47 47/48 59/17 60/1 diff --git a/cache/media/c7c9dc18aea431897e3a21582b5fdb800af1b80d b/cache/media/c7c9dc18aea431897e3a21582b5fdb800af1b80d new file mode 100644 index 000000000..2e6895d37 Binary files /dev/null and b/cache/media/c7c9dc18aea431897e3a21582b5fdb800af1b80d differ diff --git a/cache/media/c8ba75d8770b4978fb81a3b130819e2b295b7aff b/cache/media/c8ba75d8770b4978fb81a3b130819e2b295b7aff new file mode 100644 index 000000000..d42590ffb Binary files /dev/null and b/cache/media/c8ba75d8770b4978fb81a3b130819e2b295b7aff differ diff --git a/cache/media/c8cdc32a53416b6a09b3936f52e15d77f62ebf53 b/cache/media/c8cdc32a53416b6a09b3936f52e15d77f62ebf53 new file mode 100644 index 000000000..b9b1b3ca1 Binary files /dev/null and b/cache/media/c8cdc32a53416b6a09b3936f52e15d77f62ebf53 differ diff --git a/cache/media/c902011b8a7bf73cb2510f35790660654b5c9cd5 b/cache/media/c902011b8a7bf73cb2510f35790660654b5c9cd5 new file mode 100644 index 000000000..696c9ffd2 Binary files /dev/null and b/cache/media/c902011b8a7bf73cb2510f35790660654b5c9cd5 differ diff --git a/cache/media/c99179fca2eb2f05d7c47d01d7c5369fd0d7fdde b/cache/media/c99179fca2eb2f05d7c47d01d7c5369fd0d7fdde new file mode 100644 index 000000000..eda1a0bb6 Binary files /dev/null and b/cache/media/c99179fca2eb2f05d7c47d01d7c5369fd0d7fdde differ diff --git a/cache/media/c9cad3edd420ece09894d0432b28bab236b4484b b/cache/media/c9cad3edd420ece09894d0432b28bab236b4484b new file mode 100644 index 000000000..db4f4a3e5 Binary files /dev/null and b/cache/media/c9cad3edd420ece09894d0432b28bab236b4484b differ diff --git a/cache/media/ca69d28396607030abaf73348be229b5272ff4d8 b/cache/media/ca69d28396607030abaf73348be229b5272ff4d8 new file mode 100644 index 000000000..e2bbfd7af Binary files /dev/null and b/cache/media/ca69d28396607030abaf73348be229b5272ff4d8 differ diff --git a/cache/media/ca78af9649d1f570f4dc6c0c4c9423151e7c3af7 b/cache/media/ca78af9649d1f570f4dc6c0c4c9423151e7c3af7 new file mode 100644 index 000000000..536acc535 Binary files /dev/null and b/cache/media/ca78af9649d1f570f4dc6c0c4c9423151e7c3af7 differ diff --git a/cache/media/ca7f7dc44ef3442ff8d7ca07eb40af2c9f9b3fb5 b/cache/media/ca7f7dc44ef3442ff8d7ca07eb40af2c9f9b3fb5 new file mode 100644 index 000000000..49b23cc5d Binary files /dev/null and b/cache/media/ca7f7dc44ef3442ff8d7ca07eb40af2c9f9b3fb5 differ diff --git a/cache/media/cac870a4d494a91ebf67ff3cdf5549890f220b51 b/cache/media/cac870a4d494a91ebf67ff3cdf5549890f220b51 new file mode 100644 index 000000000..e2ecd8416 Binary files /dev/null and b/cache/media/cac870a4d494a91ebf67ff3cdf5549890f220b51 differ diff --git a/cache/media/cb091e3ad5a78c3b0f27dcdd44dada78d17e2911 b/cache/media/cb091e3ad5a78c3b0f27dcdd44dada78d17e2911 new file mode 100644 index 000000000..8d8c16684 Binary files /dev/null and b/cache/media/cb091e3ad5a78c3b0f27dcdd44dada78d17e2911 differ diff --git a/cache/media/cb5fd72d7396f0c60d54cd8b546b08d42def0625 b/cache/media/cb5fd72d7396f0c60d54cd8b546b08d42def0625 new file mode 100644 index 000000000..7f49f61f8 Binary files /dev/null and b/cache/media/cb5fd72d7396f0c60d54cd8b546b08d42def0625 differ diff --git a/cache/media/cbdbb3352427692e1d188dda1c057539cf6193f7 b/cache/media/cbdbb3352427692e1d188dda1c057539cf6193f7 new file mode 100644 index 000000000..c45d870d9 Binary files /dev/null and b/cache/media/cbdbb3352427692e1d188dda1c057539cf6193f7 differ diff --git a/cache/media/cc76e7c383a95081848a78409b321e6ddd685d26 b/cache/media/cc76e7c383a95081848a78409b321e6ddd685d26 new file mode 100644 index 000000000..124fc297c Binary files /dev/null and b/cache/media/cc76e7c383a95081848a78409b321e6ddd685d26 differ diff --git a/cache/media/cc9c7477153ba63ad38612c986c6ea247a870cb7 b/cache/media/cc9c7477153ba63ad38612c986c6ea247a870cb7 new file mode 100644 index 000000000..c88a5f09a Binary files /dev/null and b/cache/media/cc9c7477153ba63ad38612c986c6ea247a870cb7 differ diff --git a/cache/media/cd278fd64a232827a24ec11ee2dcad28672d370e b/cache/media/cd278fd64a232827a24ec11ee2dcad28672d370e new file mode 100644 index 000000000..66d8f2ed3 Binary files /dev/null and b/cache/media/cd278fd64a232827a24ec11ee2dcad28672d370e differ diff --git a/cache/media/ce3a021d834837966b594a23837b46b66aa26d00 b/cache/media/ce3a021d834837966b594a23837b46b66aa26d00 new file mode 100644 index 000000000..8d260ce01 Binary files /dev/null and b/cache/media/ce3a021d834837966b594a23837b46b66aa26d00 differ diff --git a/cache/media/cec190ebe9d7db65f910a1d4dd2af06473c5a09f b/cache/media/cec190ebe9d7db65f910a1d4dd2af06473c5a09f new file mode 100644 index 000000000..4d2306668 Binary files /dev/null and b/cache/media/cec190ebe9d7db65f910a1d4dd2af06473c5a09f differ diff --git a/cache/media/cf5d601f03c9bb11cb1a7a6553b75ae81d795ab5 b/cache/media/cf5d601f03c9bb11cb1a7a6553b75ae81d795ab5 new file mode 100644 index 000000000..4ac460294 Binary files /dev/null and b/cache/media/cf5d601f03c9bb11cb1a7a6553b75ae81d795ab5 differ diff --git a/cache/media/cf76f8c6ca12090dbeaafdb3dd71c241096868d4 b/cache/media/cf76f8c6ca12090dbeaafdb3dd71c241096868d4 new file mode 100644 index 000000000..052f69255 --- /dev/null +++ b/cache/media/cf76f8c6ca12090dbeaafdb3dd71c241096868d4 @@ -0,0 +1,193 @@ +# Blender v2.73 (sub 0) OBJ File: '3d_armor_entity_3.blend' +# www.blender.org +mtllib 3d_armor_entity.mtl +o Player_Cube +v 2.200000 9.763893 1.200000 +v 2.200000 9.763893 -1.200000 +v 2.200000 2.663871 1.200000 +v 2.200000 2.663871 -1.200000 +v -2.200000 9.763893 -1.200000 +v -2.200000 9.763893 1.200000 +v -2.200000 2.663871 -1.200000 +v -2.200000 2.663871 1.200000 +v 2.300000 13.863962 2.300000 +v 2.300000 13.863962 -2.300000 +v 2.300000 9.263885 2.300000 +v 2.300000 9.263885 -2.300000 +v -2.300000 13.863962 -2.300000 +v -2.300000 13.863962 2.300000 +v -2.300000 9.263885 -2.300000 +v -2.300000 9.263885 2.300000 +v -2.322686 2.473175 -1.300000 +v -2.322686 2.473175 1.300000 +v -4.713554 2.682348 1.300000 +v -4.713554 2.682348 -1.300000 +v -1.686446 9.745432 -1.300000 +v -1.686446 9.745432 1.300000 +v -4.077313 9.954605 1.300000 +v -4.077313 9.954605 -1.300000 +v 4.077313 9.954605 -1.300000 +v 4.077313 9.954605 1.300000 +v 1.686446 9.745432 1.300000 +v 1.686446 9.745432 -1.300000 +v 4.713554 2.682348 -1.300000 +v 4.713554 2.682348 1.300000 +v 2.322686 2.473175 1.300000 +v 2.322686 2.473175 -1.300000 +v 0.139099 2.938947 -1.200000 +v 0.139099 2.938947 1.200000 +v 0.261266 -4.059988 1.200000 +v 0.261266 -4.059988 -1.200000 +v 2.660901 -4.018101 1.190000 +v 2.660901 -4.018101 -1.210000 +v 2.538733 2.980834 1.190000 +v 2.538733 2.980834 -1.210000 +v -0.139099 2.938947 -1.200000 +v -0.139099 2.938947 1.200000 +v -0.261266 -4.059988 1.200000 +v -0.261266 -4.059988 -1.200000 +v -2.538734 2.980834 -1.210000 +v -2.538734 2.980834 1.190000 +v -2.660901 -4.018101 -1.210000 +v -2.660901 -4.018101 1.190000 +v -2.799999 -4.387500 1.390000 +v -2.799999 -4.387500 -1.410000 +v -2.800000 -0.812499 1.390000 +v -2.800000 -0.812499 -1.410000 +v -0.000000 -4.387500 -1.400000 +v -0.000000 -4.387500 1.400000 +v -0.000000 -0.812499 1.400000 +v -0.000000 -0.812499 -1.400000 +v 2.800000 -0.812499 -1.410000 +v 2.800000 -0.812499 1.390000 +v 2.799999 -4.387500 -1.410000 +v 2.799999 -4.387500 1.390000 +v 0.000000 -4.387500 -1.400000 +v 0.000000 -4.387500 1.400000 +v 0.000000 -0.812499 1.400000 +v 0.000000 -0.812499 -1.400000 +v 2.267006 13.830965 2.267006 +v 2.267006 13.830965 -2.267006 +v 2.267006 9.296881 2.267006 +v 2.267006 9.296881 -2.267006 +v -2.267006 13.830965 -2.267006 +v -2.267006 13.830965 2.267006 +v -2.267006 9.296881 -2.267006 +v -2.267006 9.296881 2.267006 +vt 0.250000 0.375000 +vt 0.250000 0.000000 +vt 0.312500 0.000000 +vt 0.312500 0.375000 +vt 0.437500 0.375000 +vt 0.437500 0.500000 +vt 0.312500 0.500000 +vt 0.562500 0.375000 +vt 0.562500 0.500000 +vt 0.437500 0.000000 +vt 0.500000 0.000000 +vt 0.500000 0.375000 +vt 0.625000 0.000000 +vt 0.625000 0.375000 +vt 0.500000 0.750000 +vt 0.500000 0.500000 +vt 0.625000 0.500000 +vt 0.625000 0.750000 +vt 0.750000 0.750000 +vt 0.750000 1.000000 +vt 0.625000 1.000000 +vt 0.875000 0.750000 +vt 0.875000 1.000000 +vt 0.750000 0.500000 +vt 0.875000 0.500000 +vt 1.000000 0.750000 +vt 1.000000 0.500000 +vt 0.750000 0.375000 +vt 0.812500 0.500000 +vt 0.812500 0.375000 +vt 0.687500 0.375000 +vt 0.687500 0.500000 +vt 0.687500 0.000000 +vt 0.750000 0.000000 +vt 0.812500 0.000000 +vt 0.875000 0.375000 +vt 0.875000 0.000000 +vt 0.125000 0.375000 +vt 0.062500 0.375000 +vt 0.062500 0.500000 +vt 0.125000 0.500000 +vt 0.187500 0.375000 +vt 0.187500 0.500000 +vt 0.000000 0.375000 +vt 0.000000 0.000000 +vt 0.062500 0.000000 +vt 0.187500 0.000000 +vt 0.125000 0.000000 +vt 0.437500 0.875000 +vt 0.437500 1.000000 +vt 0.375000 1.000000 +vt 0.375000 0.875000 +vt 0.250000 0.875000 +vt 0.312500 0.875000 +vt 0.312500 0.656250 +vt 0.250000 0.656250 +vt 0.500000 0.875000 +vt 0.437500 0.656250 +vt 0.500000 0.656250 +vt 0.375000 0.656250 +vt 0.312500 1.000000 +usemtl Armor +s off +f 1/1 3/2 4/3 2/4 +f 5/5 6/6 1/7 2/4 +f 8/6 7/5 4/8 3/9 +f 5/5 2/4 4/3 7/10 +f 7/10 8/11 6/12 5/5 +f 8/11 3/13 1/14 6/12 +f 9/15 11/16 12/17 10/18 +f 13/19 14/20 9/21 10/18 +f 12/22 11/23 16/20 15/19 +f 13/19 10/18 12/17 15/24 +f 14/22 13/19 15/24 16/25 +f 9/26 14/22 16/25 11/27 +f 17/28 18/24 19/29 20/30 +f 24/31 23/32 22/24 21/28 +f 23/31 24/14 20/13 19/33 +f 24/31 21/28 17/34 20/33 +f 21/28 22/30 18/35 17/34 +f 22/30 23/36 19/37 18/35 +f 27/30 31/35 30/37 26/36 +f 28/28 32/34 31/35 27/30 +f 25/31 29/33 32/34 28/28 +f 26/31 30/33 29/13 25/14 +f 25/31 28/28 27/24 26/32 +f 32/28 29/30 30/29 31/24 +f 40/38 33/39 34/40 39/41 +f 36/42 38/38 37/41 35/43 +f 39/44 37/45 38/46 40/39 +f 34/1 35/2 37/47 39/42 +f 40/38 38/48 36/46 33/39 +f 33/42 36/47 35/48 34/38 +f 45/38 46/41 42/40 41/39 +f 41/42 42/38 43/48 44/47 +f 45/38 41/39 44/46 47/48 +f 42/1 46/42 48/47 43/2 +f 46/44 45/39 47/46 48/45 +f 44/42 43/43 48/41 47/38 +f 53/49 54/50 49/51 50/52 +f 51/53 52/54 50/55 49/56 +f 55/57 51/49 49/58 54/59 +f 52/52 56/54 53/55 50/60 +f 56/49 55/52 54/60 53/58 +f 52/52 51/51 55/61 56/54 +f 64/49 61/58 62/60 63/52 +f 57/52 59/60 61/55 64/54 +f 63/57 62/59 60/58 58/49 +f 58/53 60/56 59/55 57/54 +f 61/49 59/52 60/51 62/50 +f 57/52 64/54 63/61 58/51 +f 65/15 66/18 68/17 67/16 +f 69/19 66/18 65/21 70/20 +f 68/22 71/19 72/20 67/23 +f 69/19 71/24 68/17 66/18 +f 70/22 72/25 71/24 69/19 +f 65/26 67/27 72/25 70/22 diff --git a/cache/media/cf7ebc7f28ff29356577f5c0a1470bb70ca8d6ee b/cache/media/cf7ebc7f28ff29356577f5c0a1470bb70ca8d6ee new file mode 100644 index 000000000..e92c8b2e1 Binary files /dev/null and b/cache/media/cf7ebc7f28ff29356577f5c0a1470bb70ca8d6ee differ diff --git a/cache/media/cfbba0bb21509c983190ff0df1ea791ed0abd667 b/cache/media/cfbba0bb21509c983190ff0df1ea791ed0abd667 new file mode 100644 index 000000000..da99bce74 Binary files /dev/null and b/cache/media/cfbba0bb21509c983190ff0df1ea791ed0abd667 differ diff --git a/cache/media/cff39d6a6a6fb61ce1708315f7ebb30d303e2cb5 b/cache/media/cff39d6a6a6fb61ce1708315f7ebb30d303e2cb5 new file mode 100644 index 000000000..ca2d750ef Binary files /dev/null and b/cache/media/cff39d6a6a6fb61ce1708315f7ebb30d303e2cb5 differ diff --git a/cache/media/d09e253cf95c9d80744d55d4c2afff0219b9fc50 b/cache/media/d09e253cf95c9d80744d55d4c2afff0219b9fc50 new file mode 100644 index 000000000..b8f38d716 Binary files /dev/null and b/cache/media/d09e253cf95c9d80744d55d4c2afff0219b9fc50 differ diff --git a/cache/media/d10ced298a9ed8e4e2a7c825e7c35b6e84b2a697 b/cache/media/d10ced298a9ed8e4e2a7c825e7c35b6e84b2a697 new file mode 100644 index 000000000..0c25678ce Binary files /dev/null and b/cache/media/d10ced298a9ed8e4e2a7c825e7c35b6e84b2a697 differ diff --git a/cache/media/d154b6b40edd75b2c053ba2d22bf76d4d66cad3a b/cache/media/d154b6b40edd75b2c053ba2d22bf76d4d66cad3a new file mode 100644 index 000000000..8f0ac39b7 Binary files /dev/null and b/cache/media/d154b6b40edd75b2c053ba2d22bf76d4d66cad3a differ diff --git a/cache/media/d1aa8f96cd50ebef171cb37841e62d3cc9767d9c b/cache/media/d1aa8f96cd50ebef171cb37841e62d3cc9767d9c new file mode 100644 index 000000000..d057af24c Binary files /dev/null and b/cache/media/d1aa8f96cd50ebef171cb37841e62d3cc9767d9c differ diff --git a/cache/media/d1d0af052bc1cce2d5f5872960c691b4f94e34a5 b/cache/media/d1d0af052bc1cce2d5f5872960c691b4f94e34a5 new file mode 100644 index 000000000..1e76430d2 Binary files /dev/null and b/cache/media/d1d0af052bc1cce2d5f5872960c691b4f94e34a5 differ diff --git a/cache/media/d22621f52869c833d1943f9f59c4daab0b4074eb b/cache/media/d22621f52869c833d1943f9f59c4daab0b4074eb new file mode 100644 index 000000000..c25f43b9a Binary files /dev/null and b/cache/media/d22621f52869c833d1943f9f59c4daab0b4074eb differ diff --git a/cache/media/d25a4a3732283b7be2786f387a5214e823f477a8 b/cache/media/d25a4a3732283b7be2786f387a5214e823f477a8 new file mode 100644 index 000000000..2dca0dc8d Binary files /dev/null and b/cache/media/d25a4a3732283b7be2786f387a5214e823f477a8 differ diff --git a/cache/media/d2ff48d4038443e6e7ef81ade5e0c613f3ee75f9 b/cache/media/d2ff48d4038443e6e7ef81ade5e0c613f3ee75f9 new file mode 100644 index 000000000..b5abf1e9e Binary files /dev/null and b/cache/media/d2ff48d4038443e6e7ef81ade5e0c613f3ee75f9 differ diff --git a/cache/media/d33085ffa4fde30e524744dbbc1becb9db8cd8ab b/cache/media/d33085ffa4fde30e524744dbbc1becb9db8cd8ab new file mode 100644 index 000000000..123f0f4b9 Binary files /dev/null and b/cache/media/d33085ffa4fde30e524744dbbc1becb9db8cd8ab differ diff --git a/cache/media/d38a7d63b92e0b6a7b846ab9bfbe864fc2e38471 b/cache/media/d38a7d63b92e0b6a7b846ab9bfbe864fc2e38471 new file mode 100644 index 000000000..20db84eda Binary files /dev/null and b/cache/media/d38a7d63b92e0b6a7b846ab9bfbe864fc2e38471 differ diff --git a/cache/media/d3b64b2436f3bdfda1fbd99192789ba054a98b49 b/cache/media/d3b64b2436f3bdfda1fbd99192789ba054a98b49 new file mode 100644 index 000000000..dbccd0e39 Binary files /dev/null and b/cache/media/d3b64b2436f3bdfda1fbd99192789ba054a98b49 differ diff --git a/cache/media/d468ef93c122a169b7418c7655672c5ccfdd0c72 b/cache/media/d468ef93c122a169b7418c7655672c5ccfdd0c72 new file mode 100644 index 000000000..10d648373 Binary files /dev/null and b/cache/media/d468ef93c122a169b7418c7655672c5ccfdd0c72 differ diff --git a/cache/media/d4a5b11ce8d2389d6cb26a035fcd59590d6d79c2 b/cache/media/d4a5b11ce8d2389d6cb26a035fcd59590d6d79c2 new file mode 100644 index 000000000..d04f9e39e Binary files /dev/null and b/cache/media/d4a5b11ce8d2389d6cb26a035fcd59590d6d79c2 differ diff --git a/cache/media/d51f4a3f5e43b2f61e8d09879d94baced284ed70 b/cache/media/d51f4a3f5e43b2f61e8d09879d94baced284ed70 new file mode 100644 index 000000000..78d587432 Binary files /dev/null and b/cache/media/d51f4a3f5e43b2f61e8d09879d94baced284ed70 differ diff --git a/cache/media/d5795aaa1370b697447e97969a5aa8f794958c7b b/cache/media/d5795aaa1370b697447e97969a5aa8f794958c7b new file mode 100644 index 000000000..4a5328ff3 Binary files /dev/null and b/cache/media/d5795aaa1370b697447e97969a5aa8f794958c7b differ diff --git a/cache/media/d6717781905d8f4d0ad191e8270b4fed4ae21a2b b/cache/media/d6717781905d8f4d0ad191e8270b4fed4ae21a2b new file mode 100644 index 000000000..3880fc0d4 Binary files /dev/null and b/cache/media/d6717781905d8f4d0ad191e8270b4fed4ae21a2b differ diff --git a/cache/media/d6f38355de6e36b66b573f59c71832b6c7c3fc13 b/cache/media/d6f38355de6e36b66b573f59c71832b6c7c3fc13 new file mode 100644 index 000000000..f225e3449 Binary files /dev/null and b/cache/media/d6f38355de6e36b66b573f59c71832b6c7c3fc13 differ diff --git a/cache/media/d75923fa72ab5ba89a01dee613883b81305b486d b/cache/media/d75923fa72ab5ba89a01dee613883b81305b486d new file mode 100644 index 000000000..dd99e1361 Binary files /dev/null and b/cache/media/d75923fa72ab5ba89a01dee613883b81305b486d differ diff --git a/cache/media/d7623c31909f39ee7c4dcef05f506ae018b1dc22 b/cache/media/d7623c31909f39ee7c4dcef05f506ae018b1dc22 new file mode 100644 index 000000000..90994e5fc Binary files /dev/null and b/cache/media/d7623c31909f39ee7c4dcef05f506ae018b1dc22 differ diff --git a/cache/media/d82cb94c46d31b12c2158ca20babbe438af7624c b/cache/media/d82cb94c46d31b12c2158ca20babbe438af7624c new file mode 100644 index 000000000..dbb63cd96 Binary files /dev/null and b/cache/media/d82cb94c46d31b12c2158ca20babbe438af7624c differ diff --git a/cache/media/d8a9da7167dc889f426748d8377178895e23cbb2 b/cache/media/d8a9da7167dc889f426748d8377178895e23cbb2 new file mode 100644 index 000000000..16e3d13be Binary files /dev/null and b/cache/media/d8a9da7167dc889f426748d8377178895e23cbb2 differ diff --git a/cache/media/d906ff3ab142dc60ac0a749cd8144ff3872d4f3f b/cache/media/d906ff3ab142dc60ac0a749cd8144ff3872d4f3f new file mode 100644 index 000000000..865ebf8a4 Binary files /dev/null and b/cache/media/d906ff3ab142dc60ac0a749cd8144ff3872d4f3f differ diff --git a/cache/media/d9b1a9e49d4179e1e3260db34f0c392d96fc755e b/cache/media/d9b1a9e49d4179e1e3260db34f0c392d96fc755e new file mode 100644 index 000000000..d5416ab01 Binary files /dev/null and b/cache/media/d9b1a9e49d4179e1e3260db34f0c392d96fc755e differ diff --git a/cache/media/d9b2828d00246524398e96702459eb560985fba0 b/cache/media/d9b2828d00246524398e96702459eb560985fba0 new file mode 100644 index 000000000..cc61390c3 Binary files /dev/null and b/cache/media/d9b2828d00246524398e96702459eb560985fba0 differ diff --git a/cache/media/d9cb7422ee404e75cfbf71933710994a8f662b56 b/cache/media/d9cb7422ee404e75cfbf71933710994a8f662b56 new file mode 100644 index 000000000..22d1ad6b8 Binary files /dev/null and b/cache/media/d9cb7422ee404e75cfbf71933710994a8f662b56 differ diff --git a/cache/media/d9d2f42fe09ba8d6419892ff3c31fe664a6be092 b/cache/media/d9d2f42fe09ba8d6419892ff3c31fe664a6be092 new file mode 100644 index 000000000..6fbc5b392 Binary files /dev/null and b/cache/media/d9d2f42fe09ba8d6419892ff3c31fe664a6be092 differ diff --git a/cache/media/d9fb5508196f8895fba3adc57730f942cc16ae3c b/cache/media/d9fb5508196f8895fba3adc57730f942cc16ae3c new file mode 100644 index 000000000..e8a7f2773 Binary files /dev/null and b/cache/media/d9fb5508196f8895fba3adc57730f942cc16ae3c differ diff --git a/cache/media/da57fb40a9d6b8f5e55213688b48a8b9199b171c b/cache/media/da57fb40a9d6b8f5e55213688b48a8b9199b171c new file mode 100644 index 000000000..5d3aded2d Binary files /dev/null and b/cache/media/da57fb40a9d6b8f5e55213688b48a8b9199b171c differ diff --git a/cache/media/dabf78572604d98cc5ee40018cbe2338b96032a1 b/cache/media/dabf78572604d98cc5ee40018cbe2338b96032a1 new file mode 100644 index 000000000..a54b97012 Binary files /dev/null and b/cache/media/dabf78572604d98cc5ee40018cbe2338b96032a1 differ diff --git a/cache/media/dacd5b194620b0cdeba70e91b114051d02340239 b/cache/media/dacd5b194620b0cdeba70e91b114051d02340239 new file mode 100644 index 000000000..c729de9bf Binary files /dev/null and b/cache/media/dacd5b194620b0cdeba70e91b114051d02340239 differ diff --git a/cache/media/db556f7cb2fcd8adf359a6b804d02699c9ef04ac b/cache/media/db556f7cb2fcd8adf359a6b804d02699c9ef04ac new file mode 100644 index 000000000..689195f75 Binary files /dev/null and b/cache/media/db556f7cb2fcd8adf359a6b804d02699c9ef04ac differ diff --git a/cache/media/db7da42d1aa6f21605dcc2b08866217ae5b87838 b/cache/media/db7da42d1aa6f21605dcc2b08866217ae5b87838 new file mode 100644 index 000000000..a6d105f99 Binary files /dev/null and b/cache/media/db7da42d1aa6f21605dcc2b08866217ae5b87838 differ diff --git a/cache/media/dc17733a73daedacccde8f1c2367895ef6e78c88 b/cache/media/dc17733a73daedacccde8f1c2367895ef6e78c88 new file mode 100644 index 000000000..4da398c0a Binary files /dev/null and b/cache/media/dc17733a73daedacccde8f1c2367895ef6e78c88 differ diff --git a/cache/media/dc78633636ee531f9cef98576af435aa005df443 b/cache/media/dc78633636ee531f9cef98576af435aa005df443 new file mode 100644 index 000000000..faf0ec13d Binary files /dev/null and b/cache/media/dc78633636ee531f9cef98576af435aa005df443 differ diff --git a/cache/media/dc8e6294a702f705e0d5751f392db353a0abf4c9 b/cache/media/dc8e6294a702f705e0d5751f392db353a0abf4c9 new file mode 100644 index 000000000..f94c844ae Binary files /dev/null and b/cache/media/dc8e6294a702f705e0d5751f392db353a0abf4c9 differ diff --git a/cache/media/dcc0d3ae3e34164d0e015940f600177c8e240220 b/cache/media/dcc0d3ae3e34164d0e015940f600177c8e240220 new file mode 100644 index 000000000..362a4ad1e Binary files /dev/null and b/cache/media/dcc0d3ae3e34164d0e015940f600177c8e240220 differ diff --git a/cache/media/dce0cead6cc6f6a6879b6e1af0c853cd894e6f57 b/cache/media/dce0cead6cc6f6a6879b6e1af0c853cd894e6f57 new file mode 100644 index 000000000..3e890855b Binary files /dev/null and b/cache/media/dce0cead6cc6f6a6879b6e1af0c853cd894e6f57 differ diff --git a/cache/media/dcebd8310534f9e4345f229c83ef959859321b39 b/cache/media/dcebd8310534f9e4345f229c83ef959859321b39 new file mode 100644 index 000000000..0a3d36a76 Binary files /dev/null and b/cache/media/dcebd8310534f9e4345f229c83ef959859321b39 differ diff --git a/cache/media/dd1d9a8d6d090aaa071f7168a567508108f3a451 b/cache/media/dd1d9a8d6d090aaa071f7168a567508108f3a451 new file mode 100644 index 000000000..297eced40 Binary files /dev/null and b/cache/media/dd1d9a8d6d090aaa071f7168a567508108f3a451 differ diff --git a/cache/media/dd797091391896cda451dcd722f75828f74394b3 b/cache/media/dd797091391896cda451dcd722f75828f74394b3 new file mode 100644 index 000000000..40bafe6be Binary files /dev/null and b/cache/media/dd797091391896cda451dcd722f75828f74394b3 differ diff --git a/cache/media/dda352f692e4944a449a9525abafc211371d7985 b/cache/media/dda352f692e4944a449a9525abafc211371d7985 new file mode 100644 index 000000000..bcf2dfc5c Binary files /dev/null and b/cache/media/dda352f692e4944a449a9525abafc211371d7985 differ diff --git a/cache/media/de7f76478dea3cbab2779de645e8c858e65553ea b/cache/media/de7f76478dea3cbab2779de645e8c858e65553ea new file mode 100644 index 000000000..6fe9ed936 Binary files /dev/null and b/cache/media/de7f76478dea3cbab2779de645e8c858e65553ea differ diff --git a/cache/media/df7c83aa122f641584a5fb0c1c37bcbc5c3677e7 b/cache/media/df7c83aa122f641584a5fb0c1c37bcbc5c3677e7 new file mode 100644 index 000000000..21d98bdbb Binary files /dev/null and b/cache/media/df7c83aa122f641584a5fb0c1c37bcbc5c3677e7 differ diff --git a/cache/media/df85654df8d31038a1d8e02b91703443c8eae0d5 b/cache/media/df85654df8d31038a1d8e02b91703443c8eae0d5 new file mode 100644 index 000000000..67bac0f9e Binary files /dev/null and b/cache/media/df85654df8d31038a1d8e02b91703443c8eae0d5 differ diff --git a/cache/media/e007d712276e64d6c7ae95a5978ac57eee750a30 b/cache/media/e007d712276e64d6c7ae95a5978ac57eee750a30 new file mode 100644 index 000000000..ba66471e1 Binary files /dev/null and b/cache/media/e007d712276e64d6c7ae95a5978ac57eee750a30 differ diff --git a/cache/media/e04cb1d8b2911f9281c29719101d06c089acb988 b/cache/media/e04cb1d8b2911f9281c29719101d06c089acb988 new file mode 100644 index 000000000..00d1d5828 Binary files /dev/null and b/cache/media/e04cb1d8b2911f9281c29719101d06c089acb988 differ diff --git a/cache/media/e074a7f215c88803b2062899e0f70839f0bdce9a b/cache/media/e074a7f215c88803b2062899e0f70839f0bdce9a new file mode 100644 index 000000000..091127768 Binary files /dev/null and b/cache/media/e074a7f215c88803b2062899e0f70839f0bdce9a differ diff --git a/cache/media/e0c6bdf77ccb0ce23f1216871b0cebc3068214c4 b/cache/media/e0c6bdf77ccb0ce23f1216871b0cebc3068214c4 new file mode 100644 index 000000000..b0d429ebc Binary files /dev/null and b/cache/media/e0c6bdf77ccb0ce23f1216871b0cebc3068214c4 differ diff --git a/cache/media/e0defb5968b8cab751f359d8f42ff672f7aa9aab b/cache/media/e0defb5968b8cab751f359d8f42ff672f7aa9aab new file mode 100644 index 000000000..22699f23b Binary files /dev/null and b/cache/media/e0defb5968b8cab751f359d8f42ff672f7aa9aab differ diff --git a/cache/media/e15b8aac28848cbc022d59b6691cec774a717540 b/cache/media/e15b8aac28848cbc022d59b6691cec774a717540 new file mode 100644 index 000000000..2220addd6 Binary files /dev/null and b/cache/media/e15b8aac28848cbc022d59b6691cec774a717540 differ diff --git a/cache/media/e1a449f2c9991a1b92319d80c22989b951712e09 b/cache/media/e1a449f2c9991a1b92319d80c22989b951712e09 new file mode 100644 index 000000000..e479ace83 Binary files /dev/null and b/cache/media/e1a449f2c9991a1b92319d80c22989b951712e09 differ diff --git a/cache/media/e1ab1412c375e79515d41e4891b9ea27e6c93180 b/cache/media/e1ab1412c375e79515d41e4891b9ea27e6c93180 new file mode 100644 index 000000000..055a6ac04 Binary files /dev/null and b/cache/media/e1ab1412c375e79515d41e4891b9ea27e6c93180 differ diff --git a/cache/media/e1b195aea7bb93228b543509a76ecb6cb4362353 b/cache/media/e1b195aea7bb93228b543509a76ecb6cb4362353 new file mode 100644 index 000000000..2a4f47b4f Binary files /dev/null and b/cache/media/e1b195aea7bb93228b543509a76ecb6cb4362353 differ diff --git a/cache/media/e27051775cb3251f19b49aa7fc3ca3c0f35b564b b/cache/media/e27051775cb3251f19b49aa7fc3ca3c0f35b564b new file mode 100644 index 000000000..69f4b7bf9 Binary files /dev/null and b/cache/media/e27051775cb3251f19b49aa7fc3ca3c0f35b564b differ diff --git a/cache/media/e292ea8e105993d8cae8df9c3a0efa749b6e49f6 b/cache/media/e292ea8e105993d8cae8df9c3a0efa749b6e49f6 new file mode 100644 index 000000000..dcbe93344 Binary files /dev/null and b/cache/media/e292ea8e105993d8cae8df9c3a0efa749b6e49f6 differ diff --git a/cache/media/e2d0789164d718cb91219a45f42f7b24e748e468 b/cache/media/e2d0789164d718cb91219a45f42f7b24e748e468 new file mode 100644 index 000000000..895ec425b --- /dev/null +++ b/cache/media/e2d0789164d718cb91219a45f42f7b24e748e468 @@ -0,0 +1,5316 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + 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 { + -0.000234, 2.732761, 0.000000, 0.000000, + -2.732761,-0.000234, 0.000000, 0.000000, + 0.000000, 0.000000, 2.732761, 0.000000, + 0.164184,-2.791352, 4.770043, 1.000000;; + } + Frame Armature_body2 { + FrameTransformMatrix { + 0.087606,-0.000000,-0.996155, 0.000000, + 0.996155, 0.000000, 0.087606, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.155674, 0.000000, 0.000000, 1.000000;; + } + Frame Armature_head { + FrameTransformMatrix { + 0.000000, 0.000000, 1.000000, 0.000000, + 0.007902, 0.999969,-0.000000, 0.000000, + -0.999969, 0.007902, 0.000000, 0.000000, + -0.000000, 1.674146, 0.000000, 1.000000;; + } + } //End of Armature_head + Frame Armature_hvost { + FrameTransformMatrix { + -0.961313, 0.212562,-0.175201, 0.000000, + -0.203920,-0.976750,-0.066147, 0.000000, + -0.185188,-0.027861, 0.982308, 0.000000, + -0.371885,-0.304373,-0.053265, 1.000000;; + } + } //End of Armature_hvost + Frame Armature_noga3 { + FrameTransformMatrix { + 0.073289, 0.972682, 0.220268, 0.000000, + 0.997097,-0.076035, 0.004003, 0.000000, + 0.020641, 0.219336,-0.975431, 0.000000, + 0.532289,-0.143643, 0.710859, 1.000000;; + } + } //End of Armature_noga3 + Frame Armature_noga4 { + FrameTransformMatrix { + 0.073289, 0.972682, 0.220268, 0.000000, + 0.997097,-0.076035, 0.004003, 0.000000, + 0.020641, 0.219336,-0.975431, 0.000000, + 0.532289,-0.143643,-0.879248, 1.000000;; + } + } //End of Armature_noga4 + Frame Armature_noga2 { + FrameTransformMatrix { + 0.073289, 0.972682, 0.220268, 0.000000, + 0.997097,-0.076035, 0.004003, 0.000000, + 0.020641, 0.219335,-0.975431, 0.000000, + 0.700789, 1.772341,-0.879248, 1.000000;; + } + } //End of Armature_noga2 + Frame Armature_noga1 { + FrameTransformMatrix { + 0.073289, 0.972682, 0.220268, 0.000000, + 0.997097,-0.076035, 0.004003, 0.000000, + 0.020641, 0.219336,-0.975431, 0.000000, + 0.700789, 1.772341, 0.698612, 1.000000;; + } + } //End of Armature_noga1 + } //End of Armature_body2 + } //End of Armature + Frame Cube { + FrameTransformMatrix { + -0.000234, 2.732761, 0.000000, 0.000000, + -2.732761,-0.000234, 0.000000, 0.000000, + 0.000000, 0.000000, 2.732761, 0.000000, + -0.022274,-1.486684, 5.904222, 1.000000;; + } + Mesh { //Mesh Mesh + 408; + -1.000000;-1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000; 0.013041;, + -1.000000;-1.000000; 0.013041;, + -1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000; 1.000000; 1.000000;, + -1.000000; 1.000000; 0.013041;, + 1.782056;-1.000000;-1.494922;, + 1.782056; 1.000000;-1.494922;, + 1.000000; 1.000000;-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.013041;, + 1.000000;-1.000000; 1.000000;, + 1.000000;-1.000000;-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.013041;, + -1.000000; 1.000000; 0.013041;, + 1.000000; 1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 2.929399;-0.653627;-1.366374;, + 2.929399; 0.653627;-1.366374;, + 1.782056; 1.000000;-1.494922;, + 1.782056;-1.000000;-1.494922;, + 1.000000; 1.000000; 1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.782056; 1.000000;-1.494922;, + 1.782056; 1.000000; 1.000000;, + 1.782056; 1.000000; 1.000000;, + 1.782056;-1.000000; 1.000000;, + 1.000000;-1.000000; 1.000000;, + 1.000000; 1.000000; 1.000000;, + 1.782056;-1.000000; 1.000000;, + 1.782056;-1.000000;-1.494922;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000; 1.000000;, + 3.192818;-0.423998;-0.769693;, + 3.192818; 0.423998;-0.769693;, + 2.929399; 0.653627;-1.366374;, + 2.929399;-0.653627;-1.366374;, + 2.389777;-0.653627; 0.653627;, + 2.929399;-0.653627;-1.366374;, + 1.782056;-1.000000;-1.494922;, + 1.782056;-1.000000; 1.000000;, + 1.782056; 1.000000; 1.000000;, + 1.782056; 1.000000;-1.494922;, + 2.929399; 0.653627;-1.366374;, + 2.389777; 0.653627; 0.653627;, + 2.389777; 0.653627; 0.653627;, + 2.389777;-0.653627; 0.653627;, + 1.782056;-1.000000; 1.000000;, + 1.782056; 1.000000; 1.000000;, + 3.363553;-0.423998;-0.551867;, + 3.363553; 0.423998;-0.551867;, + 3.192818; 0.423998;-0.769693;, + 3.192818;-0.423998;-0.769693;, + 2.389777; 0.653627; 0.653627;, + 2.929399; 0.653627;-1.366374;, + 3.192818; 0.423998;-0.769693;, + 2.653195; 0.423998; 0.296128;, + 2.653195; 0.423998; 0.296128;, + 2.653195;-0.423998; 0.296128;, + 2.389777;-0.653627; 0.653627;, + 2.389777; 0.653627; 0.653627;, + 2.653195;-0.423998; 0.296128;, + 3.192818;-0.423998;-0.769693;, + 2.929399;-0.653627;-1.366374;, + 2.389777;-0.653627; 0.653627;, + 3.363553; 0.423998;-0.551867;, + 3.363553;-0.423998;-0.551867;, + 3.363553;-0.423998; 0.296128;, + 3.363553; 0.423998; 0.296128;, + 3.363553; 0.423998; 0.296128;, + 3.363553;-0.423998; 0.296128;, + 2.653195;-0.423998; 0.296128;, + 2.653195; 0.423998; 0.296128;, + 3.363553;-0.423998; 0.296128;, + 3.363553;-0.423998;-0.551867;, + 3.192818;-0.423998;-0.769693;, + 2.653195;-0.423998; 0.296128;, + 2.653195; 0.423998; 0.296128;, + 3.192818; 0.423998;-0.769693;, + 3.363553; 0.423998;-0.551867;, + 3.363553; 0.423998; 0.296128;, + 2.944614;-0.144918;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 2.944614;-0.144918;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 2.944614; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 2.944614; 0.200745;-0.319240;, + 3.271239;-0.144918;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614;-0.144918;-0.645865;, + 2.944614;-0.144918;-0.319240;, + 2.944614; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239;-0.144918;-0.319240;, + 3.271239; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.319240;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.319240;, + 3.271239;-0.144918;-0.319240;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.645865;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 3.271239;-0.144918;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 3.271239; 0.200745;-0.319240;, + 3.158436;-0.843188; 0.129739;, + 3.158436;-0.935268; 0.129739;, + 3.057417;-0.935268; 0.129739;, + 3.057417;-0.843188; 0.129739;, + 2.944614; 0.200745;-0.319240;, + 2.944614; 0.647331;-0.319240;, + 3.271239; 0.647331;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239; 0.200745;-0.319240;, + 3.271239; 0.647331;-0.319240;, + 3.271239; 0.647331;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 3.271239; 0.200745;-0.645865;, + 3.271239; 0.647331;-0.645865;, + 2.944614; 0.647331;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.200745;-0.645865;, + 2.944614; 0.647331;-0.645865;, + 2.944614; 0.647331;-0.319240;, + 2.944614; 0.200745;-0.319240;, + 3.063179; 0.860849; 0.129739;, + 3.063179; 0.942425; 0.129739;, + 3.152674; 0.942425; 0.129739;, + 3.152674; 0.860849; 0.129739;, + 3.271239;-0.144918;-0.319240;, + 3.271239;-0.591504;-0.319240;, + 2.944614;-0.591504;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.144918;-0.319240;, + 2.944614;-0.591504;-0.319240;, + 2.944614;-0.591504;-0.645865;, + 2.944614;-0.144918;-0.645865;, + 2.944614;-0.144918;-0.645865;, + 2.944614;-0.591504;-0.645865;, + 3.271239;-0.591504;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.144918;-0.645865;, + 3.271239;-0.591504;-0.645865;, + 3.271239;-0.591504;-0.319240;, + 3.271239;-0.144918;-0.319240;, + 2.944614; 0.945055;-0.645865;, + 3.271239; 0.945055;-0.645865;, + 3.271239; 0.945055;-0.319240;, + 2.944614; 0.945055;-0.319240;, + 3.152674; 0.860849; 0.129739;, + 3.152674; 0.942425; 0.129739;, + 3.271239; 0.945055;-0.319240;, + 3.271239; 0.647331;-0.319240;, + 3.271239; 0.647331;-0.319240;, + 3.271239; 0.945055;-0.319240;, + 3.271239; 0.945055;-0.645865;, + 3.271239; 0.647331;-0.645865;, + 3.271239; 0.647331;-0.645865;, + 3.271239; 0.945055;-0.645865;, + 2.944614; 0.945055;-0.645865;, + 2.944614; 0.647331;-0.645865;, + 2.944614; 0.647331;-0.645865;, + 2.944614; 0.945055;-0.645865;, + 2.944614; 0.945055;-0.319240;, + 2.944614; 0.647331;-0.319240;, + 3.271239;-0.889228;-0.645865;, + 2.944614;-0.889228;-0.645865;, + 2.944614;-0.889228;-0.319240;, + 3.271239;-0.889228;-0.319240;, + 3.158436;-0.843188; 0.129739;, + 3.057417;-0.843188; 0.129739;, + 2.944614;-0.591504;-0.319240;, + 3.271239;-0.591504;-0.319240;, + 2.944614;-0.591504;-0.319240;, + 2.944614;-0.889228;-0.319240;, + 2.944614;-0.889228;-0.645865;, + 2.944614;-0.591504;-0.645865;, + 2.944614;-0.591504;-0.645865;, + 2.944614;-0.889228;-0.645865;, + 3.271239;-0.889228;-0.645865;, + 3.271239;-0.591504;-0.645865;, + 3.271239;-0.591504;-0.645865;, + 3.271239;-0.889228;-0.645865;, + 3.271239;-0.889228;-0.319240;, + 3.271239;-0.591504;-0.319240;, + 3.063179; 0.860849; 0.129739;, + 3.152674; 0.860849; 0.129739;, + 3.271239; 0.647331;-0.319240;, + 2.944614; 0.647331;-0.319240;, + 3.158436;-0.935268; 0.129739;, + 3.158436;-0.843188; 0.129739;, + 3.271239;-0.591504;-0.319240;, + 3.271239;-0.889228;-0.319240;, + 3.271239;-0.889228;-0.319240;, + 2.944614;-0.889228;-0.319240;, + 3.057417;-0.935268; 0.129739;, + 3.158436;-0.935268; 0.129739;, + 3.063179; 0.942425; 0.129739;, + 3.063179; 0.860849; 0.129739;, + 2.944614; 0.647331;-0.319240;, + 2.944614; 0.945055;-0.319240;, + 2.944614; 0.945055;-0.319240;, + 3.271239; 0.945055;-0.319240;, + 3.152674; 0.942425; 0.129739;, + 3.063179; 0.942425; 0.129739;, + 3.057417;-0.843188; 0.129739;, + 3.057417;-0.935268; 0.129739;, + 2.944614;-0.889228;-0.319240;, + 2.944614;-0.591504;-0.319240;, + -0.905841;-0.958383;-2.117298;, + -0.905841;-0.605846;-2.117298;, + -0.905841;-0.605846;-1.011325;, + -0.905841;-0.958383;-1.011325;, + -0.905841;-0.605846;-2.117298;, + -0.553305;-0.605846;-2.117298;, + -0.553305;-0.605846;-1.011325;, + -0.905841;-0.605846;-1.011325;, + -0.553305;-0.605846;-2.117298;, + -0.553305;-0.958383;-2.117298;, + -0.553305;-0.958383;-1.011325;, + -0.553305;-0.605846;-1.011325;, + -0.553305;-0.958383;-2.117298;, + -0.905841;-0.958383;-2.117298;, + -0.905841;-0.958383;-1.011325;, + -0.553305;-0.958383;-1.011325;, + -0.553305;-0.958383;-2.117298;, + -0.553305;-0.605846;-2.117298;, + -0.905841;-0.605846;-2.117298;, + -0.905841;-0.958383;-2.117298;, + -0.905841;-0.958383;-1.011325;, + -0.905841;-0.605846;-1.011325;, + -0.553305;-0.605846;-1.011325;, + -0.553305;-0.958383;-1.011325;, + -0.905841; 0.626523;-2.117298;, + -0.905841; 0.979060;-2.117298;, + -0.905841; 0.979060;-1.011325;, + -0.905841; 0.626523;-1.011325;, + -0.905841; 0.979060;-2.117298;, + -0.553305; 0.979060;-2.117298;, + -0.553305; 0.979060;-1.011325;, + -0.905841; 0.979060;-1.011325;, + -0.553305; 0.979060;-2.117298;, + -0.553305; 0.626523;-2.117298;, + -0.553305; 0.626523;-1.011325;, + -0.553305; 0.979060;-1.011325;, + -0.553305; 0.626523;-2.117298;, + -0.905841; 0.626523;-2.117298;, + -0.905841; 0.626523;-1.011325;, + -0.553305; 0.626523;-1.011325;, + -0.553305; 0.626523;-2.117298;, + -0.553305; 0.979060;-2.117298;, + -0.905841; 0.979060;-2.117298;, + -0.905841; 0.626523;-2.117298;, + -0.905841; 0.626523;-1.011325;, + -0.905841; 0.979060;-1.011325;, + -0.553305; 0.979060;-1.011325;, + -0.553305; 0.626523;-1.011325;, + 1.029230; 0.626523;-2.117298;, + 1.029230; 0.979060;-2.117298;, + 1.029230; 0.979060;-1.011325;, + 1.029230; 0.626523;-1.011325;, + 1.029230; 0.979060;-2.117298;, + 1.381767; 0.979060;-2.117298;, + 1.381767; 0.979060;-1.011325;, + 1.029230; 0.979060;-1.011325;, + 1.381767; 0.979060;-2.117298;, + 1.381767; 0.626523;-2.117298;, + 1.381767; 0.626523;-1.011325;, + 1.381767; 0.979060;-1.011325;, + 1.381767; 0.626523;-2.117298;, + 1.029230; 0.626523;-2.117298;, + 1.029230; 0.626523;-1.011325;, + 1.381767; 0.626523;-1.011325;, + 1.381767; 0.626523;-2.117298;, + 1.381767; 0.979060;-2.117298;, + 1.029230; 0.979060;-2.117298;, + 1.029230; 0.626523;-2.117298;, + 1.029230; 0.626523;-1.011325;, + 1.029230; 0.979060;-1.011325;, + 1.381767; 0.979060;-1.011325;, + 1.381767; 0.626523;-1.011325;, + 1.029230;-0.968674;-2.117298;, + 1.029230;-0.616137;-2.117298;, + 1.029230;-0.616137;-1.011325;, + 1.029230;-0.968674;-1.011325;, + 1.029230;-0.616137;-2.117298;, + 1.381767;-0.616137;-2.117298;, + 1.381767;-0.616137;-1.011325;, + 1.029230;-0.616137;-1.011325;, + 1.381767;-0.616137;-2.117298;, + 1.381767;-0.968674;-2.117298;, + 1.381767;-0.968674;-1.011325;, + 1.381767;-0.616137;-1.011325;, + 1.381767;-0.968674;-2.117298;, + 1.029230;-0.968674;-2.117298;, + 1.029230;-0.968674;-1.011325;, + 1.381767;-0.968674;-1.011325;, + 1.381767;-0.968674;-2.117298;, + 1.381767;-0.616137;-2.117298;, + 1.029230;-0.616137;-2.117298;, + 1.029230;-0.968674;-2.117298;, + 1.029230;-0.968674;-1.011325;, + 1.029230;-0.616137;-1.011325;, + 1.381767;-0.616137;-1.011325;, + 1.381767;-0.968674;-1.011325;, + -1.798844;-0.135824;-0.084023;, + -1.798844; 0.174168;-0.084023;, + -1.798844; 0.174168; 0.225970;, + -1.798844;-0.135824; 0.225970;, + -1.798844; 0.174168;-0.084023;, + -0.975902; 0.174168;-0.272977;, + -0.975902; 0.174168; 0.037015;, + -1.798844; 0.174168; 0.225970;, + -0.975902; 0.174168;-0.272977;, + -0.975902;-0.135824;-0.272977;, + -0.975902;-0.135824; 0.037015;, + -0.975902; 0.174168; 0.037015;, + -0.975902;-0.135824;-0.272977;, + -1.798844;-0.135824;-0.084023;, + -1.798844;-0.135824; 0.225970;, + -0.975902;-0.135824; 0.037015;, + -0.975902;-0.135824;-0.272977;, + -0.975902; 0.174168;-0.272977;, + -1.798844; 0.174168;-0.084023;, + -1.798844;-0.135824;-0.084023;, + -1.798844;-0.135824; 0.225970;, + -1.798844; 0.174168; 0.225970;, + -0.975902; 0.174168; 0.037015;, + -0.975902;-0.135824; 0.037015;, + 1.449429;-0.717499; 0.974606;, + 1.643658;-0.708508; 0.974200;, + 1.649909;-0.819067; 1.747433;, + 1.455680;-0.828058; 1.747839;, + 1.643658;-0.708508; 0.974200;, + 1.653159;-0.915680; 0.931782;, + 1.662708;-1.100848; 1.398462;, + 1.649909;-0.819067; 1.747433;, + 1.653159;-0.915680; 0.931782;, + 1.458930;-0.924671; 0.932188;, + 1.468478;-1.109839; 1.398868;, + 1.662708;-1.100848; 1.398462;, + 1.458930;-0.924671; 0.932188;, + 1.449429;-0.717499; 0.974606;, + 1.455680;-0.828058; 1.747839;, + 1.468478;-1.109839; 1.398868;, + 1.458930;-0.924671; 0.932188;, + 1.653159;-0.915680; 0.931782;, + 1.643658;-0.708508; 0.974200;, + 1.449429;-0.717499; 0.974606;, + 1.455680;-0.828058; 1.747839;, + 1.649909;-0.819067; 1.747433;, + 1.662708;-1.100848; 1.398462;, + 1.468478;-1.109839; 1.398868;, + 1.405700; 0.856790; 0.983993;, + 1.596236; 0.818034; 0.984066;, + 1.645591; 1.061609; 1.662321;, + 1.455054; 1.100365; 1.662248;, + 1.596236; 0.818034; 0.984066;, + 1.633956; 1.003299; 0.888862;, + 1.693816; 1.298348; 1.290771;, + 1.645591; 1.061609; 1.662321;, + 1.633956; 1.003299; 0.888862;, + 1.443419; 1.042055; 0.888789;, + 1.503279; 1.337104; 1.290698;, + 1.693816; 1.298348; 1.290771;, + 1.443419; 1.042055; 0.888789;, + 1.405700; 0.856790; 0.983993;, + 1.455054; 1.100365; 1.662248;, + 1.503279; 1.337104; 1.290698;, + 1.443419; 1.042055; 0.888789;, + 1.633956; 1.003299; 0.888862;, + 1.596236; 0.818034; 0.984066;, + 1.405700; 0.856790; 0.983993;, + 1.455054; 1.100365; 1.662248;, + 1.645591; 1.061609; 1.662321;, + 1.693816; 1.298348; 1.290771;, + 1.503279; 1.337104; 1.290698;; + 102; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;; + MeshNormals { //Mesh Normals + 408; + -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; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.534759; 0.000000;-0.845005;, + -0.534759; 0.000000;-0.845005;, + -0.534759; 0.000000;-0.845005;, + -0.534759; 0.000000;-0.845005;, + 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;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.442530; 0.000000; 0.896754;, + -0.442530; 0.000000; 0.896754;, + -0.442530; 0.000000; 0.896754;, + -0.442530; 0.000000; 0.896754;, + 0.111343; 0.000000;-0.993782;, + 0.111343; 0.000000;-0.993782;, + 0.111343; 0.000000;-0.993782;, + 0.111343; 0.000000;-0.993782;, + -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; 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.914818; 0.000000;-0.403867;, + 0.914818; 0.000000;-0.403867;, + 0.914818; 0.000000;-0.403867;, + 0.914818; 0.000000;-0.403867;, + 0.371549;-0.927351; 0.044407;, + 0.371549;-0.927351; 0.044407;, + 0.371549;-0.927351; 0.044407;, + 0.371549;-0.927351; 0.044407;, + 0.371549; 0.927351; 0.044407;, + 0.371549; 0.927351; 0.044407;, + 0.371549; 0.927351; 0.044407;, + 0.371549; 0.927351; 0.044407;, + 0.495174; 0.000000; 0.868794;, + 0.495174; 0.000000; 0.868794;, + 0.495174; 0.000000; 0.868794;, + 0.495174; 0.000000; 0.868794;, + 0.787044; 0.000000;-0.616897;, + 0.787044; 0.000000;-0.616897;, + 0.787044; 0.000000;-0.616897;, + 0.787044; 0.000000;-0.616897;, + 0.588302; 0.782027; 0.205754;, + 0.588302; 0.782027; 0.205754;, + 0.588302; 0.782027; 0.205754;, + 0.588302; 0.782027; 0.205754;, + 0.805057; 0.000000; 0.593197;, + 0.805057; 0.000000; 0.593197;, + 0.805057; 0.000000; 0.593197;, + 0.805057; 0.000000; 0.593197;, + 0.588302;-0.782027; 0.205754;, + 0.588302;-0.782027; 0.205754;, + 0.588302;-0.782027; 0.205754;, + 0.588302;-0.782027; 0.205754;, + 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; 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; 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;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.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;-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;, + 0.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; 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; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 0.000000;, + 0.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; 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;, + 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;, + -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;, + 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;-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; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.966856; 0.000000; 0.255323;, + 0.966856; 0.000000; 0.255323;, + 0.966856; 0.000000; 0.255323;, + 0.966856; 0.000000; 0.255323;, + 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; 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;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000; 0.872294; 0.488981;, + 0.000000; 0.872294; 0.488981;, + 0.000000; 0.872294; 0.488981;, + 0.000000; 0.872294; 0.488981;, + -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; 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.903080; 0.429472;, + 0.000000;-0.903080; 0.429472;, + 0.000000;-0.903080; 0.429472;, + 0.000000;-0.903080; 0.429472;, + 0.969858; 0.000000; 0.243670;, + 0.969858; 0.000000; 0.243670;, + 0.969858; 0.000000; 0.243670;, + 0.969858; 0.000000; 0.243670;, + 0.000000;-0.994784;-0.102009;, + 0.000000;-0.994784;-0.102009;, + 0.000000;-0.994784;-0.102009;, + 0.000000;-0.994784;-0.102009;, + -0.966856; 0.000000; 0.255323;, + -0.966856; 0.000000; 0.255323;, + -0.966856; 0.000000; 0.255323;, + -0.966856; 0.000000; 0.255323;, + 0.000000; 0.999983; 0.005858;, + 0.000000; 0.999983; 0.005858;, + 0.000000; 0.999983; 0.005858;, + 0.000000; 0.999983; 0.005858;, + -0.969858; 0.000000; 0.243669;, + -0.969858; 0.000000; 0.243669;, + -0.969858; 0.000000; 0.243669;, + -0.969858; 0.000000; 0.243669;, + -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; 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;, + 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;-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;, + -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;, + 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;-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;, + -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;, + 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;-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;, + -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;, + 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;-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;, + -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;, + 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.223785; 0.000000;-0.974638;, + -0.223785; 0.000000;-0.974638;, + -0.223785; 0.000000;-0.974638;, + -0.223785; 0.000000;-0.974638;, + 0.223785; 0.000000; 0.974638;, + 0.223785; 0.000000; 0.974638;, + 0.223785; 0.000000; 0.974638;, + 0.223785; 0.000000; 0.974638;, + -0.045477; 0.988856; 0.141757;, + -0.045477; 0.988856; 0.141757;, + -0.045477; 0.988856; 0.141757;, + -0.045477; 0.988856; 0.141757;, + 0.998903; 0.046809;-0.001564;, + 0.998903; 0.046809;-0.001564;, + 0.998903; 0.046809;-0.001564;, + 0.998903; 0.046809;-0.001564;, + 0.042202;-0.928382;-0.369224;, + 0.042202;-0.928382;-0.369224;, + 0.042202;-0.928382;-0.369224;, + 0.042202;-0.928382;-0.369224;, + -0.998903;-0.046808; 0.001564;, + -0.998903;-0.046808; 0.001564;, + -0.998903;-0.046808; 0.001564;, + -0.998903;-0.046808; 0.001564;, + -0.011313; 0.200076;-0.979715;, + -0.011313; 0.200076;-0.979715;, + -0.011313; 0.200076;-0.979715;, + -0.011313; 0.200076;-0.979715;, + 0.037275;-0.776820; 0.628619;, + 0.037275;-0.776820; 0.628619;, + 0.037275;-0.776820; 0.628619;, + 0.037275;-0.776820; 0.628619;, + 0.187279; 0.920085;-0.344049;, + 0.187279; 0.920085;-0.344049;, + 0.187279; 0.920085;-0.344049;, + 0.187279; 0.920085;-0.344049;, + -0.979946; 0.199263;-0.000281;, + -0.979946; 0.199263;-0.000281;, + -0.979946; 0.199263;-0.000281;, + -0.979946; 0.199263;-0.000281;, + -0.159748;-0.784251; 0.599525;, + -0.159748;-0.784251; 0.599525;, + -0.159748;-0.784251; 0.599525;, + -0.159748;-0.784251; 0.599525;, + 0.979946;-0.199262; 0.000281;, + 0.979946;-0.199262; 0.000281;, + 0.979946;-0.199262; 0.000281;, + 0.979946;-0.199262; 0.000281;, + 0.089315; 0.440791; 0.893155;, + 0.089315; 0.440791; 0.893155;, + 0.089315; 0.440791; 0.893155;, + 0.089315; 0.440791; 0.893155;, + -0.166899;-0.821566;-0.545137;, + -0.166899;-0.821566;-0.545137;, + -0.166899;-0.821566;-0.545137;, + -0.166899;-0.821566;-0.545137;; + 102; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;, + 4;344;345;346;347;, + 4;348;349;350;351;, + 4;352;353;354;355;, + 4;356;357;358;359;, + 4;360;361;362;363;, + 4;364;365;366;367;, + 4;368;369;370;371;, + 4;372;373;374;375;, + 4;376;377;378;379;, + 4;380;381;382;383;, + 4;384;385;386;387;, + 4;388;389;390;391;, + 4;392;393;394;395;, + 4;396;397;398;399;, + 4;400;401;402;403;, + 4;404;405;406;407;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 408; + 0.386811; 0.472283;, + 0.272912; 0.618747;, + 0.227425; 0.549647;, + 0.299564; 0.438277;, + 0.272912; 0.618747;, + 0.082190; 0.676898;, + 0.050502; 0.456036;, + 0.227425; 0.549647;, + 0.522138; 0.121679;, + 0.417251; 0.121679;, + 0.417251; 0.073143;, + 0.522138; 0.073143;, + 0.396334; 0.265386;, + 0.386811; 0.472283;, + 0.299564; 0.438277;, + 0.181004; 0.294413;, + 0.396334; 0.265386;, + 0.603231; 0.274910;, + 0.593707; 0.481806;, + 0.386811; 0.472283;, + 0.299564; 0.438277;, + 0.227425; 0.549647;, + 0.050502; 0.456036;, + 0.181004; 0.294413;, + 0.503973; 0.182226;, + 0.435416; 0.182226;, + 0.417251; 0.121679;, + 0.522138; 0.121679;, + 0.750355; 0.507719;, + 0.987093; 0.687609;, + 0.960706; 0.838343;, + 0.716963; 0.603832;, + 0.716963; 0.603832;, + 0.458562; 0.612200;, + 0.423581; 0.504655;, + 0.750355; 0.507719;, + 0.458562; 0.612200;, + 0.226735; 0.850015;, + 0.191236; 0.703989;, + 0.423581; 0.504655;, + 0.491930; 0.216432;, + 0.447459; 0.216432;, + 0.435416; 0.182226;, + 0.503973; 0.182226;, + 0.492461; 0.693426;, + 0.392732; 0.954402;, + 0.226735; 0.850015;, + 0.458562; 0.612200;, + 0.716963; 0.603832;, + 0.960706; 0.838343;, + 0.802252; 0.955339;, + 0.691288; 0.690751;, + 0.691288; 0.690751;, + 0.492461; 0.693426;, + 0.458562; 0.612200;, + 0.716963; 0.603832;, + 0.491930; 0.230946;, + 0.447459; 0.230946;, + 0.447459; 0.216432;, + 0.491930; 0.216432;, + 0.691288; 0.690751;, + 0.802252; 0.955339;, + 0.707973; 0.950323;, + 0.691716; 0.787540;, + 0.691716; 0.787540;, + 0.493187; 0.787479;, + 0.492461; 0.693426;, + 0.691288; 0.690751;, + 0.493187; 0.787479;, + 0.486624; 0.943277;, + 0.392732; 0.954402;, + 0.492461; 0.693426;, + 0.637145; 0.955620;, + 0.553870; 0.954715;, + 0.554556; 0.858307;, + 0.637506; 0.861349;, + 0.637506; 0.861349;, + 0.554556; 0.858307;, + 0.493187; 0.787479;, + 0.691716; 0.787540;, + 0.554556; 0.858307;, + 0.553870; 0.954715;, + 0.486624; 0.943277;, + 0.493187; 0.787479;, + 0.691716; 0.787540;, + 0.707973; 0.950323;, + 0.637145; 0.955620;, + 0.637506; 0.861349;, + 0.136776; 0.106951;, + 0.175398; 0.107104;, + 0.176964; 0.144298;, + 0.136301; 0.144608;, + 0.132081; 0.106610;, + 0.131875; 0.071042;, + 0.136422; 0.071293;, + 0.136776; 0.106951;, + 0.175568; 0.219895;, + 0.137892; 0.219264;, + 0.136586; 0.182582;, + 0.177191; 0.182467;, + 0.181818; 0.144471;, + 0.182095; 0.182855;, + 0.177191; 0.182467;, + 0.176964; 0.144298;, + 0.136422; 0.071293;, + 0.174123; 0.070400;, + 0.175398; 0.107104;, + 0.136776; 0.106951;, + 0.136301; 0.144608;, + 0.176964; 0.144298;, + 0.177191; 0.182467;, + 0.136586; 0.182582;, + 0.178805; 0.070528;, + 0.180156; 0.107246;, + 0.175398; 0.107104;, + 0.174123; 0.070400;, + 0.176964; 0.144298;, + 0.175398; 0.107104;, + 0.180156; 0.107246;, + 0.181818; 0.144471;, + 0.136586; 0.182582;, + 0.137892; 0.219264;, + 0.133247; 0.219107;, + 0.131735; 0.182402;, + 0.136776; 0.106951;, + 0.136301; 0.144608;, + 0.131453; 0.144299;, + 0.132081; 0.106610;, + 0.131735; 0.182402;, + 0.131453; 0.144299;, + 0.136301; 0.144608;, + 0.136586; 0.182582;, + 0.182095; 0.182855;, + 0.180287; 0.220459;, + 0.175568; 0.219895;, + 0.177191; 0.182467;, + 0.376197; 0.227521;, + 0.376197; 0.238034;, + 0.364664; 0.238034;, + 0.364664; 0.227521;, + 0.181818; 0.144471;, + 0.239430; 0.142279;, + 0.240753; 0.187646;, + 0.182095; 0.182855;, + 0.182095; 0.182855;, + 0.240753; 0.187646;, + 0.229919; 0.226625;, + 0.180287; 0.220459;, + 0.178805; 0.070528;, + 0.228965; 0.068210;, + 0.228236; 0.104812;, + 0.180156; 0.107246;, + 0.180156; 0.107246;, + 0.228236; 0.104812;, + 0.239430; 0.142279;, + 0.181818; 0.144471;, + 0.365979; 0.226984;, + 0.365979; 0.217670;, + 0.376197; 0.217670;, + 0.376197; 0.226984;, + 0.131735; 0.182402;, + 0.073243; 0.184232;, + 0.075088; 0.140495;, + 0.131453; 0.144299;, + 0.131453; 0.144299;, + 0.075088; 0.140495;, + 0.085363; 0.103454;, + 0.132081; 0.106610;, + 0.132081; 0.106610;, + 0.085363; 0.103454;, + 0.084043; 0.071544;, + 0.131875; 0.071042;, + 0.133247; 0.219107;, + 0.085694; 0.225219;, + 0.073243; 0.184232;, + 0.131735; 0.182402;, + 0.253165; 0.098905;, + 0.263783; 0.073376;, + 0.293335; 0.096939;, + 0.267343; 0.121520;, + 0.300314; 0.167277;, + 0.306474; 0.173391;, + 0.271868; 0.208653;, + 0.240753; 0.187646;, + 0.240753; 0.187646;, + 0.271868; 0.208653;, + 0.257409; 0.238034;, + 0.229919; 0.226625;, + 0.228965; 0.068210;, + 0.263783; 0.073376;, + 0.253165; 0.098905;, + 0.228236; 0.104812;, + 0.228236; 0.104812;, + 0.253165; 0.098905;, + 0.267343; 0.121520;, + 0.239430; 0.142279;, + 0.053926; 0.074823;, + 0.063678; 0.101658;, + 0.046916; 0.118072;, + 0.026989; 0.093996;, + 0.012396; 0.160519;, + 0.013229; 0.150105;, + 0.075088; 0.140495;, + 0.073243; 0.184232;, + 0.075088; 0.140495;, + 0.046916; 0.118072;, + 0.063678; 0.101658;, + 0.085363; 0.103454;, + 0.085363; 0.103454;, + 0.063678; 0.101658;, + 0.053926; 0.074823;, + 0.084043; 0.071544;, + 0.085694; 0.225219;, + 0.053143; 0.238034;, + 0.039084; 0.202323;, + 0.073243; 0.184232;, + 0.299601; 0.157935;, + 0.300314; 0.167277;, + 0.240753; 0.187646;, + 0.239430; 0.142279;, + 0.004685; 0.166594;, + 0.012396; 0.160519;, + 0.073243; 0.184232;, + 0.039084; 0.202323;, + 0.026989; 0.093996;, + 0.046916; 0.118072;, + 0.007433; 0.142454;, + 0.000268; 0.134683;, + 0.305143; 0.151001;, + 0.299601; 0.157935;, + 0.239430; 0.142279;, + 0.267343; 0.121520;, + 0.267343; 0.121520;, + 0.293335; 0.096939;, + 0.313027; 0.145070;, + 0.305143; 0.151001;, + 0.013229; 0.150105;, + 0.007433; 0.142454;, + 0.046916; 0.118072;, + 0.075088; 0.140495;, + 0.674790; 0.390072;, + 0.623481; 0.390072;, + 0.625199; 0.074486;, + 0.676508; 0.074486;, + 0.828718; 0.390072;, + 0.777409; 0.390072;, + 0.779127; 0.074486;, + 0.830436; 0.074486;, + 0.777409; 0.390072;, + 0.726099; 0.390072;, + 0.727817; 0.074486;, + 0.779127; 0.074486;, + 0.726099; 0.390072;, + 0.674790; 0.390072;, + 0.676508; 0.074486;, + 0.727817; 0.074486;, + 0.376734; 0.197783;, + 0.416984; 0.197783;, + 0.416984; 0.238034;, + 0.376734; 0.238034;, + 0.338959; 0.032478;, + 0.379210; 0.032478;, + 0.379210; 0.072728;, + 0.338959; 0.072728;, + 0.672241; 0.389947;, + 0.620931; 0.389947;, + 0.622649; 0.074361;, + 0.673959; 0.074361;, + 0.826169; 0.389947;, + 0.774859; 0.389947;, + 0.776577; 0.074361;, + 0.827887; 0.074361;, + 0.774859; 0.389947;, + 0.723550; 0.389947;, + 0.725268; 0.074361;, + 0.776577; 0.074361;, + 0.723550; 0.389947;, + 0.672241; 0.389947;, + 0.673959; 0.074361;, + 0.725268; 0.074361;, + 0.932559; 0.503812;, + 0.972810; 0.503812;, + 0.972810; 0.544062;, + 0.932559; 0.544062;, + 0.416984; 0.156996;, + 0.416984; 0.197247;, + 0.376734; 0.197247;, + 0.376734; 0.156996;, + 0.675511; 0.387510;, + 0.624201; 0.387510;, + 0.625919; 0.071924;, + 0.677229; 0.071924;, + 0.829438; 0.387510;, + 0.778129; 0.387510;, + 0.779847; 0.071924;, + 0.831157; 0.071925;, + 0.778129; 0.387510;, + 0.726820; 0.387510;, + 0.728538; 0.071924;, + 0.779847; 0.071924;, + 0.726820; 0.387510;, + 0.675511; 0.387510;, + 0.677229; 0.071924;, + 0.728538; 0.071924;, + 0.932559; 0.287954;, + 0.972810; 0.287954;, + 0.972810; 0.328204;, + 0.932559; 0.328204;, + 0.972810; 0.463024;, + 0.972810; 0.503275;, + 0.932559; 0.503275;, + 0.932559; 0.463024;, + 0.673879; 0.389027;, + 0.622570; 0.389027;, + 0.624287; 0.073442;, + 0.675597; 0.073442;, + 0.827807; 0.389027;, + 0.776497; 0.389027;, + 0.778216; 0.073442;, + 0.829525; 0.073442;, + 0.776497; 0.389027;, + 0.725188; 0.389027;, + 0.726906; 0.073442;, + 0.778216; 0.073442;, + 0.725188; 0.389027;, + 0.673879; 0.389027;, + 0.675597; 0.073442;, + 0.726906; 0.073442;, + 0.379210; 0.073265;, + 0.379210; 0.113515;, + 0.338959; 0.113515;, + 0.338959; 0.073265;, + 0.932559; 0.287417;, + 0.932559; 0.247167;, + 0.972810; 0.247167;, + 0.972810; 0.287417;, + 0.967952; 0.328741;, + 0.967952; 0.364134;, + 0.932559; 0.364134;, + 0.932559; 0.328741;, + 0.879503; 0.118087;, + 0.879503; 0.214490;, + 0.845007; 0.206570;, + 0.845007; 0.110167;, + 0.967952; 0.462488;, + 0.932559; 0.462488;, + 0.932559; 0.427095;, + 0.967952; 0.427095;, + 0.914896; 0.214490;, + 0.914896; 0.118087;, + 0.949391; 0.110167;, + 0.949391; 0.206570;, + 0.914896; 0.214490;, + 0.879503; 0.214490;, + 0.879503; 0.118087;, + 0.914896; 0.118087;, + 0.949391; 0.110167;, + 0.984784; 0.110167;, + 0.984784; 0.206570;, + 0.949391; 0.206570;, + 0.118063; 0.784242;, + 0.116259; 0.796985;, + 0.037635; 0.759206;, + 0.056242; 0.733033;, + 0.116259; 0.796985;, + 0.147033; 0.813827;, + 0.062771; 0.835151;, + 0.037635; 0.759206;, + 0.147033; 0.813827;, + 0.130208; 0.785009;, + 0.133534; 0.733033;, + 0.162499; 0.739022;, + 0.130208; 0.785009;, + 0.118063; 0.784242;, + 0.056242; 0.733033;, + 0.133534; 0.733033;, + 0.130208; 0.785009;, + 0.147033; 0.813827;, + 0.116259; 0.796985;, + 0.118063; 0.784242;, + 0.196420; 0.835210;, + 0.196395; 0.858875;, + 0.141782; 0.858875;, + 0.141807; 0.835210;, + 0.092391; 0.909330;, + 0.079222; 0.905191;, + 0.115874; 0.835210;, + 0.141722; 0.852985;, + 0.079222; 0.905191;, + 0.061070; 0.933885;, + 0.037635; 0.850835;, + 0.115874; 0.835210;, + 0.061070; 0.933885;, + 0.090075; 0.921329;, + 0.141722; 0.932145;, + 0.131792; 0.959529;, + 0.090075; 0.921329;, + 0.092391; 0.909330;, + 0.141722; 0.852985;, + 0.141722; 0.932145;, + 0.090075; 0.921329;, + 0.061070; 0.933885;, + 0.079222; 0.905191;, + 0.092391; 0.909330;, + 0.141785; 0.959529;, + 0.141782; 0.935864;, + 0.195723; 0.935864;, + 0.195726; 0.959529;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 1; + 3; + 7; + } + SkinWeights { + "Armature_noga3"; + 24; + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.975363, 0.011610, 0.220301, 0.000000, + -0.220268,-0.004003, 0.975431, 0.000000, + 0.012206,-0.999924,-0.001347, 0.000000, + 0.551675,-0.952433, 0.919341, 1.000000;; + } //End of Armature_noga3 Skin Weights + SkinWeights { + "Armature_body2"; + 28; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 28, + 29, + 34, + 35, + 38, + 39; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.087606, 0.996155, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -0.996155, 0.087606, 0.000000, 0.000000, + -0.357971, 0.667023,-0.068190, 1.000000;; + } //End of Armature_body2 Skin Weights + SkinWeights { + "Armature_noga4"; + 24; + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.975363, 0.011610, 0.220301, 0.000000, + -0.220268,-0.004003, 0.975431, 0.000000, + 0.012206,-0.999924,-0.001347, 0.000000, + 0.901926,-0.946068,-0.631700, 1.000000;; + } //End of Armature_noga4 Skin Weights + SkinWeights { + "Armature_head"; + 260; + 8, + 9, + 24, + 25, + 26, + 27, + 30, + 31, + 32, + 33, + 36, + 37, + 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, + 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, + 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, + 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, + 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; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.068190,-1.034611, 0.268365, 1.000000;; + } //End of Armature_head Skin Weights + SkinWeights { + "Armature_noga1"; + 24; + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.975363, 0.011610, 0.220301, 0.000000, + -0.220268,-0.004003, 0.975431, 0.000000, + 0.012206,-0.999924,-0.001347, 0.000000, + -1.321620,-0.974714, 0.483673, 1.000000;; + } //End of Armature_noga1 Skin Weights + SkinWeights { + "Armature_noga2"; + 24; + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.975363, 0.011610, 0.220301, 0.000000, + -0.220268,-0.004003, 0.975431, 0.000000, + 0.012206,-0.999924,-0.001347, 0.000000, + -0.974068,-0.968398,-1.055421, 1.000000;; + } //End of Armature_noga2 Skin Weights + SkinWeights { + "Armature_hvost"; + 24; + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 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.124841,-0.990569,-0.056459, 0.000000, + 0.006976, 0.057779,-0.998305, 0.000000, + 0.992152, 0.124235, 0.014123, 0.000000, + 0.191741,-0.950030,-0.068595, 1.000000;; + } //End of Armature_hvost Skin Weights + } //End of Mesh Mesh + } //End of Cube +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 102; + 0;3; 0.164184,-2.791352, 4.770043;;, + 1;3; 0.164184,-2.791352, 4.770043;;, + 2;3; 0.164184,-2.791352, 4.770043;;, + 3;3; 0.164184,-2.791352, 4.770043;;, + 4;3; 0.164184,-2.791352, 4.770043;;, + 5;3; 0.164184,-2.791352, 4.770043;;, + 6;3; 0.164184,-2.791352, 4.770043;;, + 7;3; 0.164184,-2.791352, 4.770043;;, + 8;3; 0.164184,-2.791352, 4.770043;;, + 9;3; 0.164184,-2.791352, 4.770043;;, + 10;3; 0.164184,-2.791352, 4.770043;;, + 11;3; 0.164184,-2.791352, 4.770043;;, + 12;3; 0.164184,-2.791352, 4.770043;;, + 13;3; 0.164184,-2.791352, 4.770043;;, + 14;3; 0.164184,-2.791352, 4.770043;;, + 15;3; 0.164184,-2.791352, 4.770043;;, + 16;3; 0.164184,-2.791352, 4.770043;;, + 17;3; 0.164184,-2.791352, 4.770043;;, + 18;3; 0.164184,-2.791352, 4.770043;;, + 19;3; 0.164184,-2.791352, 4.770043;;, + 20;3; 0.164184,-2.791352, 4.770043;;, + 21;3; 0.164184,-2.791352, 4.770043;;, + 22;3; 0.164184,-2.791352, 4.770043;;, + 23;3; 0.164184,-2.791352, 4.770043;;, + 24;3; 0.164184,-2.791352, 4.770043;;, + 25;3; 0.164184,-2.791352, 4.770043;;, + 26;3; 0.164184,-2.791352, 4.770043;;, + 27;3; 0.164184,-2.791352, 4.770043;;, + 28;3; 0.164184,-2.791352, 4.770043;;, + 29;3; 0.164184,-2.791352, 4.770043;;, + 30;3; 0.164184,-2.791352, 4.770043;;, + 31;3; 0.164184,-2.791352, 4.770043;;, + 32;3; 0.164184,-2.791352, 4.770043;;, + 33;3; 0.164184,-2.791352, 4.770043;;, + 34;3; 0.164184,-2.791352, 4.770043;;, + 35;3; 0.164184,-2.791352, 4.770043;;, + 36;3; 0.164184,-2.791352, 4.770043;;, + 37;3; 0.164184,-2.791352, 4.770043;;, + 38;3; 0.164184,-2.791352, 4.770043;;, + 39;3; 0.164184,-2.791352, 4.770043;;, + 40;3; 0.164184,-2.791352, 4.770043;;, + 41;3; 0.164184,-2.791352, 4.770043;;, + 42;3; 0.164184,-2.791352, 4.770043;;, + 43;3; 0.164184,-2.791352, 4.770043;;, + 44;3; 0.164184,-2.791352, 4.770043;;, + 45;3; 0.164184,-2.791352, 4.770043;;, + 46;3; 0.164184,-2.791352, 4.770043;;, + 47;3; 0.164184,-2.791352, 4.770043;;, + 48;3; 0.164184,-2.791352, 4.770043;;, + 49;3; 0.164184,-2.791352, 4.770043;;, + 50;3; 0.164184,-2.791352, 4.770043;;, + 51;3; 0.164184,-2.791352, 4.770043;;, + 52;3; 0.164184,-2.791352, 4.770043;;, + 53;3; 0.164184,-2.791352, 4.770043;;, + 54;3; 0.164184,-2.791352, 4.770043;;, + 55;3; 0.164184,-2.791352, 4.770043;;, + 56;3; 0.164184,-2.791352, 4.770043;;, + 57;3; 0.164184,-2.791352, 4.770043;;, + 58;3; 0.164184,-2.791352, 4.770043;;, + 59;3; 0.164184,-2.791352, 4.770043;;, + 60;3; 0.164184,-2.791352, 4.770043;;, + 61;3; 0.164184,-2.791352, 4.770043;;, + 62;3; 0.164184,-2.791352, 4.770043;;, + 63;3; 0.164184,-2.791352, 4.770043;;, + 64;3; 0.164184,-2.791352, 4.770043;;, + 65;3; 0.164184,-2.791352, 4.770043;;, + 66;3; 0.164184,-2.791352, 4.770043;;, + 67;3; 0.164184,-2.791352, 4.770043;;, + 68;3; 0.164184,-2.791352, 4.770043;;, + 69;3; 0.164184,-2.791352, 4.770043;;, + 70;3; 0.164184,-2.791352, 4.770043;;, + 71;3; 0.164184,-2.791352, 4.770043;;, + 72;3; 0.164184,-2.791352, 4.770043;;, + 73;3; 0.164184,-2.791352, 4.770043;;, + 74;3; 0.164184,-2.791352, 4.770043;;, + 75;3; 0.164184,-2.791352, 4.770043;;, + 76;3; 0.164184,-2.791352, 4.770043;;, + 77;3; 0.164184,-2.791352, 4.770043;;, + 78;3; 0.164184,-2.791352, 4.770043;;, + 79;3; 0.164184,-2.791352, 4.770043;;, + 80;3; 0.164184,-2.791352, 4.770043;;, + 81;3; 0.164184,-2.791352, 4.770043;;, + 82;3; 0.164184,-2.791352, 4.770043;;, + 83;3; 0.164184,-2.791352, 4.770043;;, + 84;3; 0.164184,-2.791352, 4.770043;;, + 85;3; 0.164184,-2.791352, 4.770043;;, + 86;3; 0.164184,-2.791352, 4.770043;;, + 87;3; 0.164184,-2.791352, 4.770043;;, + 88;3; 0.164184,-2.791352, 4.770043;;, + 89;3; 0.164184,-2.791352, 4.770043;;, + 90;3; 0.164184,-2.791352, 4.770043;;, + 91;3; 0.164184,-2.791352, 4.770043;;, + 92;3; 0.164184,-2.791352, 4.770043;;, + 93;3; 0.164184,-2.791352, 4.770043;;, + 94;3; 0.164184,-2.791352, 4.770043;;, + 95;3; 0.164184,-2.791352, 4.770043;;, + 96;3; 0.164184,-2.791352, 4.770043;;, + 97;3; 0.164184,-2.791352, 4.770043;;, + 98;3; 0.164184,-2.791352, 4.770043;;, + 99;3; 0.164184,-2.791352, 4.770043;;, + 100;3; 0.164184,-2.791352, 4.770043;;, + 101;3; 0.164184,-2.791352, 4.770043;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 1;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 2;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 3;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 4;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 5;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 6;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 7;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 8;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 9;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 10;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 11;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 12;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 13;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 14;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 15;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 16;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 17;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 18;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 19;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 20;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 21;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 22;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 23;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 24;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 25;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 26;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 27;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 28;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 29;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 30;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 31;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 32;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 33;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 34;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 35;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 36;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 37;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 38;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 39;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 40;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 41;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 42;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 43;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 44;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 45;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 46;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 47;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 48;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 49;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 50;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 51;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 52;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 53;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 54;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 55;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 56;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 57;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 58;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 59;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 60;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 61;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 62;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 63;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 64;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 65;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 66;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 67;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 68;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 69;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 70;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 71;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 72;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 73;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 74;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 75;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 76;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 77;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 78;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 79;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 80;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 81;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 82;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 83;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 84;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 85;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 86;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 87;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 88;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 89;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 90;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 91;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 92;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 93;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 94;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 95;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 96;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 97;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 98;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 99;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 100;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 101;4; -0.707076, 0.000000, 0.000000, 0.707137;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 2.732761, 2.732761, 2.732761;;, + 1;3; 2.732761, 2.732761, 2.732761;;, + 2;3; 2.732761, 2.732761, 2.732761;;, + 3;3; 2.732761, 2.732761, 2.732761;;, + 4;3; 2.732761, 2.732761, 2.732761;;, + 5;3; 2.732761, 2.732761, 2.732761;;, + 6;3; 2.732761, 2.732761, 2.732761;;, + 7;3; 2.732761, 2.732761, 2.732761;;, + 8;3; 2.732761, 2.732761, 2.732761;;, + 9;3; 2.732761, 2.732761, 2.732761;;, + 10;3; 2.732761, 2.732761, 2.732761;;, + 11;3; 2.732761, 2.732761, 2.732761;;, + 12;3; 2.732761, 2.732761, 2.732761;;, + 13;3; 2.732761, 2.732761, 2.732761;;, + 14;3; 2.732761, 2.732761, 2.732761;;, + 15;3; 2.732761, 2.732761, 2.732761;;, + 16;3; 2.732761, 2.732761, 2.732761;;, + 17;3; 2.732761, 2.732761, 2.732761;;, + 18;3; 2.732761, 2.732761, 2.732761;;, + 19;3; 2.732761, 2.732761, 2.732761;;, + 20;3; 2.732761, 2.732761, 2.732761;;, + 21;3; 2.732761, 2.732761, 2.732761;;, + 22;3; 2.732761, 2.732761, 2.732761;;, + 23;3; 2.732761, 2.732761, 2.732761;;, + 24;3; 2.732761, 2.732761, 2.732761;;, + 25;3; 2.732761, 2.732761, 2.732761;;, + 26;3; 2.732761, 2.732761, 2.732761;;, + 27;3; 2.732761, 2.732761, 2.732761;;, + 28;3; 2.732761, 2.732761, 2.732761;;, + 29;3; 2.732761, 2.732761, 2.732761;;, + 30;3; 2.732761, 2.732761, 2.732761;;, + 31;3; 2.732761, 2.732761, 2.732761;;, + 32;3; 2.732761, 2.732761, 2.732761;;, + 33;3; 2.732761, 2.732761, 2.732761;;, + 34;3; 2.732761, 2.732761, 2.732761;;, + 35;3; 2.732761, 2.732761, 2.732761;;, + 36;3; 2.732761, 2.732761, 2.732761;;, + 37;3; 2.732761, 2.732761, 2.732761;;, + 38;3; 2.732761, 2.732761, 2.732761;;, + 39;3; 2.732761, 2.732761, 2.732761;;, + 40;3; 2.732761, 2.732761, 2.732761;;, + 41;3; 2.732761, 2.732761, 2.732761;;, + 42;3; 2.732761, 2.732761, 2.732761;;, + 43;3; 2.732761, 2.732761, 2.732761;;, + 44;3; 2.732761, 2.732761, 2.732761;;, + 45;3; 2.732761, 2.732761, 2.732761;;, + 46;3; 2.732761, 2.732761, 2.732761;;, + 47;3; 2.732761, 2.732761, 2.732761;;, + 48;3; 2.732761, 2.732761, 2.732761;;, + 49;3; 2.732761, 2.732761, 2.732761;;, + 50;3; 2.732761, 2.732761, 2.732761;;, + 51;3; 2.732761, 2.732761, 2.732761;;, + 52;3; 2.732761, 2.732761, 2.732761;;, + 53;3; 2.732761, 2.732761, 2.732761;;, + 54;3; 2.732761, 2.732761, 2.732761;;, + 55;3; 2.732761, 2.732761, 2.732761;;, + 56;3; 2.732761, 2.732761, 2.732761;;, + 57;3; 2.732761, 2.732761, 2.732761;;, + 58;3; 2.732761, 2.732761, 2.732761;;, + 59;3; 2.732761, 2.732761, 2.732761;;, + 60;3; 2.732761, 2.732761, 2.732761;;, + 61;3; 2.732761, 2.732761, 2.732761;;, + 62;3; 2.732761, 2.732761, 2.732761;;, + 63;3; 2.732761, 2.732761, 2.732761;;, + 64;3; 2.732761, 2.732761, 2.732761;;, + 65;3; 2.732761, 2.732761, 2.732761;;, + 66;3; 2.732761, 2.732761, 2.732761;;, + 67;3; 2.732761, 2.732761, 2.732761;;, + 68;3; 2.732761, 2.732761, 2.732761;;, + 69;3; 2.732761, 2.732761, 2.732761;;, + 70;3; 2.732761, 2.732761, 2.732761;;, + 71;3; 2.732761, 2.732761, 2.732761;;, + 72;3; 2.732761, 2.732761, 2.732761;;, + 73;3; 2.732761, 2.732761, 2.732761;;, + 74;3; 2.732761, 2.732761, 2.732761;;, + 75;3; 2.732761, 2.732761, 2.732761;;, + 76;3; 2.732761, 2.732761, 2.732761;;, + 77;3; 2.732761, 2.732761, 2.732761;;, + 78;3; 2.732761, 2.732761, 2.732761;;, + 79;3; 2.732761, 2.732761, 2.732761;;, + 80;3; 2.732761, 2.732761, 2.732761;;, + 81;3; 2.732761, 2.732761, 2.732761;;, + 82;3; 2.732761, 2.732761, 2.732761;;, + 83;3; 2.732761, 2.732761, 2.732761;;, + 84;3; 2.732761, 2.732761, 2.732761;;, + 85;3; 2.732761, 2.732761, 2.732761;;, + 86;3; 2.732761, 2.732761, 2.732761;;, + 87;3; 2.732761, 2.732761, 2.732761;;, + 88;3; 2.732761, 2.732761, 2.732761;;, + 89;3; 2.732761, 2.732761, 2.732761;;, + 90;3; 2.732761, 2.732761, 2.732761;;, + 91;3; 2.732761, 2.732761, 2.732761;;, + 92;3; 2.732761, 2.732761, 2.732761;;, + 93;3; 2.732761, 2.732761, 2.732761;;, + 94;3; 2.732761, 2.732761, 2.732761;;, + 95;3; 2.732761, 2.732761, 2.732761;;, + 96;3; 2.732761, 2.732761, 2.732761;;, + 97;3; 2.732761, 2.732761, 2.732761;;, + 98;3; 2.732761, 2.732761, 2.732761;;, + 99;3; 2.732761, 2.732761, 2.732761;;, + 100;3; 2.732761, 2.732761, 2.732761;;, + 101;3; 2.732761, 2.732761, 2.732761;;; + } + } + Animation { + {Armature_body2} + AnimationKey { //Position + 2; + 102; + 0;3; -0.155674, 0.000000, 0.000000;;, + 1;3; -0.155674, 0.000000, 0.000000;;, + 2;3; -0.155674, 0.000000, 0.000000;;, + 3;3; -0.155674, 0.000000, 0.000000;;, + 4;3; -0.155674, 0.000000, 0.000000;;, + 5;3; -0.155674, 0.000000, 0.000000;;, + 6;3; -0.155674, 0.000000, 0.000000;;, + 7;3; -0.155674, 0.000000, 0.000000;;, + 8;3; -0.155674, 0.000000, 0.000000;;, + 9;3; -0.155674, 0.000000, 0.000000;;, + 10;3; -0.155674, 0.000000, 0.000000;;, + 11;3; -0.155674, 0.000000, 0.000000;;, + 12;3; -0.155674, 0.000000, 0.000000;;, + 13;3; -0.155674, 0.000000, 0.000000;;, + 14;3; -0.155674, 0.000000, 0.000000;;, + 15;3; -0.155674, 0.000000, 0.000000;;, + 16;3; -0.155674, 0.000000, 0.000000;;, + 17;3; -0.155674, 0.000000, 0.000000;;, + 18;3; -0.155674, 0.000000, 0.000000;;, + 19;3; -0.155674, 0.000000, 0.000000;;, + 20;3; -0.155674, 0.000000, 0.000000;;, + 21;3; -0.155674, 0.000000, 0.000000;;, + 22;3; -0.155674, 0.000000, 0.000000;;, + 23;3; -0.155674, 0.000000, 0.000000;;, + 24;3; -0.155674, 0.000000, 0.000000;;, + 25;3; -0.155674, 0.000000, 0.000000;;, + 26;3; -0.155674, 0.000000, 0.000000;;, + 27;3; -0.155674, 0.000000, 0.000000;;, + 28;3; -0.155674, 0.000000, 0.000000;;, + 29;3; -0.155674, 0.000000, 0.000000;;, + 30;3; -0.155674, 0.000000, 0.000000;;, + 31;3; -0.155674, 0.000000, 0.000000;;, + 32;3; -0.155674, 0.000000, 0.000000;;, + 33;3; -0.155674, 0.000000, 0.000000;;, + 34;3; -0.155674, 0.000000, 0.000000;;, + 35;3; -0.155674, 0.000000, 0.000000;;, + 36;3; -0.155674, 0.000000, 0.000000;;, + 37;3; -0.155674, 0.000000, 0.000000;;, + 38;3; -0.155674, 0.000000, 0.000000;;, + 39;3; -0.155674, 0.000000, 0.000000;;, + 40;3; -0.155674, 0.000000, 0.000000;;, + 41;3; -0.155674, 0.000000, 0.000000;;, + 42;3; -0.155674, 0.000000, 0.000000;;, + 43;3; -0.155674, 0.000000, 0.000000;;, + 44;3; -0.155674, 0.000000, 0.000000;;, + 45;3; -0.155674, 0.000000, 0.000000;;, + 46;3; -0.155674, 0.000000, 0.000000;;, + 47;3; -0.155674, 0.000000, 0.000000;;, + 48;3; -0.155674, 0.000000, 0.000000;;, + 49;3; -0.155674, 0.000000, 0.000000;;, + 50;3; -0.155674, 0.000000, 0.000000;;, + 51;3; -0.155674, 0.000000, 0.000000;;, + 52;3; -0.155674, 0.000000, 0.000000;;, + 53;3; -0.155674, 0.000000, 0.000000;;, + 54;3; -0.155674, 0.000000, 0.000000;;, + 55;3; -0.155674, 0.000000, 0.000000;;, + 56;3; -0.155674, 0.000000, 0.000000;;, + 57;3; -0.155674, 0.000000, 0.000000;;, + 58;3; -0.155674, 0.000000, 0.000000;;, + 59;3; -0.155674, 0.000000, 0.000000;;, + 60;3; -0.155674, 0.000000, 0.000000;;, + 61;3; -0.155674, 0.000000, 0.000000;;, + 62;3; -0.155674, 0.000000, 0.000000;;, + 63;3; -0.155674, 0.000000, 0.000000;;, + 64;3; -0.155674, 0.000000, 0.000000;;, + 65;3; -0.155674, 0.000000, 0.000000;;, + 66;3; -0.155674, 0.000000, 0.000000;;, + 67;3; -0.155674, 0.000000, 0.000000;;, + 68;3; -0.155674, 0.000000, 0.000000;;, + 69;3; -0.155674, 0.000000, 0.000000;;, + 70;3; -0.155674, 0.000000, 0.000000;;, + 71;3; -0.155675, 0.000000, 0.013041;;, + 72;3; -0.155675, 0.000000, 0.049769;;, + 73;3; -0.155674, 0.000000, 0.096925;;, + 74;3; -0.155674,-0.000000, 0.133652;;, + 75;3; -0.155674,-0.000000, 0.146692;;, + 76;3; -0.155674,-0.000000, 0.145010;;, + 77;3; -0.155674,-0.000000, 0.139965;;, + 78;3; -0.155674,-0.000000, 0.131865;;, + 79;3; -0.155674,-0.000000, 0.121561;;, + 80;3; -0.155674,-0.000000, 0.110444;;, + 81;3; -0.155674,-0.000000, 0.100140;;, + 82;3; -0.155674,-0.000000, 0.092041;;, + 83;3; -0.155674,-0.000000, 0.086996;;, + 84;3; -0.155674,-0.000000, 0.085315;;, + 85;3; -0.155674,-0.000000, 0.093929;;, + 86;3; -0.155674,-0.000000, 0.118191;;, + 87;3; -0.155674,-0.000000, 0.149343;;, + 88;3; -0.155674,-0.000000, 0.173605;;, + 89;3; -0.155674,-0.000000, 0.182218;;, + 90;3; -0.155674,-0.000000, 0.176670;;, + 91;3; -0.155674,-0.000000, 0.159839;;, + 92;3; -0.155674, 0.000000, 0.133860;;, + 93;3; -0.155675, 0.000000, 0.104420;;, + 94;3; -0.155674, 0.000000, 0.078076;;, + 95;3; -0.155674,-0.000000, 0.058822;;, + 96;3; -0.155674, 0.000000, 0.043558;;, + 97;3; -0.155674, 0.000000, 0.028825;;, + 98;3; -0.155675, 0.000000, 0.016073;;, + 99;3; -0.155675, 0.000000, 0.006782;;, + 100;3; -0.155674, 0.000000, 0.001560;;, + 101;3; -0.155674, 0.000000, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 1;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 2;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 3;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 4;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 5;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 6;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 7;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 8;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 9;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 10;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 11;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 12;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 13;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 14;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 15;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 16;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 17;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 18;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 19;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 20;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 21;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 22;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 23;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 24;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 25;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 26;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 27;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 28;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 29;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 30;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 31;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 32;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 33;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 34;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 35;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 36;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 37;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 38;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 39;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 40;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 41;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 42;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 43;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 44;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 45;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 46;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 47;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 48;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 49;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 50;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 51;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 52;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 53;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 54;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 55;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 56;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 57;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 58;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 59;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 60;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 61;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 62;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 63;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 64;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 65;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 66;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 67;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 68;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 69;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 70;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 71;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 72;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 73;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 74;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 75;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 76;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 77;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 78;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 79;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 80;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 81;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 82;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 83;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 84;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 85;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 86;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 87;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 88;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 89;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 90;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 91;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 92;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 93;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 94;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 95;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 96;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 97;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 98;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 99;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 100;4; -0.521442, 0.521442, 0.477597,-0.477597;;, + 101;4; -0.521442, 0.521442, 0.477597,-0.477597;;; + } + AnimationKey { //Scale + 1; + 102; + 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;;; + } + } + Animation { + {Armature_noga3} + AnimationKey { //Position + 2; + 102; + 0;3; 0.532289,-0.143643, 0.710859;;, + 1;3; 0.532289,-0.143643, 0.710859;;, + 2;3; 0.532289,-0.143643, 0.710859;;, + 3;3; 0.532289,-0.143643, 0.710859;;, + 4;3; 0.532289,-0.143643, 0.710859;;, + 5;3; 0.532289,-0.143643, 0.710859;;, + 6;3; 0.532289,-0.143643, 0.710859;;, + 7;3; 0.532289,-0.143643, 0.710859;;, + 8;3; 0.532289,-0.143643, 0.710859;;, + 9;3; 0.532289,-0.143643, 0.710859;;, + 10;3; 0.532289,-0.143643, 0.710859;;, + 11;3; 0.532289,-0.143643, 0.710859;;, + 12;3; 0.532289,-0.143643, 0.710859;;, + 13;3; 0.532289,-0.143643, 0.710859;;, + 14;3; 0.532289,-0.143643, 0.710859;;, + 15;3; 0.532289,-0.143643, 0.710859;;, + 16;3; 0.532289,-0.143643, 0.710859;;, + 17;3; 0.532289,-0.143643, 0.710859;;, + 18;3; 0.532289,-0.143643, 0.710859;;, + 19;3; 0.532289,-0.143643, 0.710859;;, + 20;3; 0.532289,-0.143643, 0.710859;;, + 21;3; 0.532289,-0.143643, 0.710859;;, + 22;3; 0.532289,-0.143643, 0.710859;;, + 23;3; 0.532289,-0.143643, 0.710859;;, + 24;3; 0.532289,-0.143643, 0.710859;;, + 25;3; 0.532289,-0.143643, 0.710859;;, + 26;3; 0.532289,-0.143643, 0.710859;;, + 27;3; 0.532289,-0.143643, 0.710859;;, + 28;3; 0.532289,-0.143643, 0.710859;;, + 29;3; 0.532289,-0.143643, 0.710859;;, + 30;3; 0.532289,-0.143643, 0.710859;;, + 31;3; 0.532289,-0.143643, 0.710859;;, + 32;3; 0.532289,-0.143643, 0.710859;;, + 33;3; 0.532289,-0.143643, 0.710859;;, + 34;3; 0.532289,-0.143643, 0.710859;;, + 35;3; 0.532289,-0.143643, 0.710859;;, + 36;3; 0.532289,-0.143643, 0.710859;;, + 37;3; 0.532289,-0.143643, 0.710859;;, + 38;3; 0.532289,-0.143643, 0.710859;;, + 39;3; 0.532289,-0.143643, 0.710859;;, + 40;3; 0.532289,-0.143643, 0.710859;;, + 41;3; 0.532289,-0.143643, 0.710859;;, + 42;3; 0.532289,-0.143643, 0.710859;;, + 43;3; 0.532289,-0.143643, 0.710859;;, + 44;3; 0.532289,-0.143643, 0.710859;;, + 45;3; 0.532289,-0.143643, 0.710859;;, + 46;3; 0.532289,-0.143643, 0.710859;;, + 47;3; 0.532289,-0.143643, 0.710859;;, + 48;3; 0.532289,-0.143643, 0.710859;;, + 49;3; 0.532289,-0.143643, 0.710859;;, + 50;3; 0.532289,-0.143643, 0.710859;;, + 51;3; 0.532289,-0.143643, 0.710859;;, + 52;3; 0.532289,-0.143643, 0.710859;;, + 53;3; 0.532289,-0.143643, 0.710859;;, + 54;3; 0.532289,-0.143643, 0.710859;;, + 55;3; 0.532289,-0.143643, 0.710859;;, + 56;3; 0.532289,-0.143643, 0.710859;;, + 57;3; 0.532289,-0.143643, 0.710859;;, + 58;3; 0.532289,-0.143643, 0.710859;;, + 59;3; 0.532289,-0.143643, 0.710859;;, + 60;3; 0.532289,-0.143643, 0.710859;;, + 61;3; 0.532289,-0.143643, 0.710859;;, + 62;3; 0.532289,-0.143643, 0.710859;;, + 63;3; 0.532289,-0.143643, 0.710859;;, + 64;3; 0.532289,-0.143643, 0.710859;;, + 65;3; 0.532289,-0.143643, 0.710859;;, + 66;3; 0.532289,-0.143643, 0.710859;;, + 67;3; 0.532289,-0.143643, 0.710859;;, + 68;3; 0.532289,-0.143643, 0.710859;;, + 69;3; 0.532289,-0.143643, 0.710859;;, + 70;3; 0.532289,-0.143643, 0.710859;;, + 71;3; 0.532289,-0.143643, 0.710859;;, + 72;3; 0.532289,-0.143644, 0.710859;;, + 73;3; 0.532289,-0.143644, 0.710859;;, + 74;3; 0.532289,-0.143643, 0.710859;;, + 75;3; 0.532289,-0.143643, 0.710859;;, + 76;3; 0.532289,-0.143644, 0.710859;;, + 77;3; 0.532289,-0.143643, 0.710859;;, + 78;3; 0.532289,-0.143643, 0.710859;;, + 79;3; 0.532289,-0.143644, 0.710859;;, + 80;3; 0.532289,-0.143643, 0.710859;;, + 81;3; 0.532289,-0.143643, 0.710859;;, + 82;3; 0.532289,-0.143644, 0.710859;;, + 83;3; 0.532289,-0.143643, 0.710859;;, + 84;3; 0.532289,-0.143643, 0.710859;;, + 85;3; 0.532289,-0.143643, 0.710859;;, + 86;3; 0.532289,-0.143643, 0.710859;;, + 87;3; 0.532289,-0.143644, 0.710859;;, + 88;3; 0.532289,-0.143643, 0.710859;;, + 89;3; 0.532289,-0.143643, 0.710859;;, + 90;3; 0.532289,-0.143644, 0.710859;;, + 91;3; 0.532289,-0.143643, 0.710859;;, + 92;3; 0.532289,-0.143643, 0.710859;;, + 93;3; 0.532289,-0.143643, 0.710859;;, + 94;3; 0.532289,-0.143644, 0.710859;;, + 95;3; 0.532289,-0.143643, 0.710859;;, + 96;3; 0.532289,-0.143644, 0.710859;;, + 97;3; 0.532289,-0.143643, 0.710859;;, + 98;3; 0.532289,-0.143643, 0.710859;;, + 99;3; 0.532289,-0.143644, 0.710859;;, + 100;3; 0.532289,-0.143643, 0.710859;;, + 101;3; 0.532289,-0.143643, 0.710859;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 1;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 2;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 3;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 4;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 5;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 6;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 7;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 8;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 9;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 10;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 11;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 12;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 13;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 14;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 15;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 16;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 17;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 18;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 19;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 20;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 21;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 22;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 23;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 24;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 25;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 26;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 27;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 28;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 29;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 30;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 31;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 32;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 33;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 34;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 35;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 36;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 37;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 38;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 39;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 40;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 41;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 42;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 43;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 44;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 45;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 46;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 47;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 48;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 49;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 50;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 51;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 52;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 53;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 54;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 55;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 56;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 57;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 58;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 59;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 60;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 61;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 62;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 63;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 64;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 65;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 66;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 67;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 68;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 69;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 70;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 71;4; -0.076249,-0.699385,-0.696587,-0.079400;;, + 72;4; -0.082977,-0.616503,-0.755460,-0.070282;;, + 73;4; -0.091621,-0.510132,-0.830999,-0.058570;;, + 74;4; -0.098353,-0.427291,-0.889827,-0.049447;;, + 75;4; -0.100743,-0.397872,-0.910722,-0.046209;;, + 76;4; -0.100385,-0.400798,-0.907565,-0.046529;;, + 77;4; -0.099304,-0.409646,-0.898028,-0.047496;;, + 78;4; -0.097497,-0.424442,-0.882083,-0.049113;;, + 79;4; -0.094976,-0.445092,-0.859841,-0.051369;;, + 80;4; -0.091773,-0.471343,-0.831583,-0.054238;;, + 81;4; -0.087942,-0.502754,-0.797792,-0.057672;;, + 82;4; -0.083565,-0.538673,-0.759182,-0.061598;;, + 83;4; -0.078748,-0.578230,-0.716701,-0.065923;;, + 84;4; -0.073623,-0.620356,-0.671512,-0.070529;;, + 85;4; -0.068342,-0.663828,-0.624942,-0.075283;;, + 86;4; -0.063064,-0.707339,-0.578410,-0.080041;;, + 87;4; -0.057951,-0.749580,-0.533331,-0.084660;;, + 88;4; -0.053153,-0.789325,-0.491032,-0.089007;;, + 89;4; -0.048802,-0.825501,-0.452669,-0.092964;;, + 90;4; -0.045003,-0.857233,-0.419185,-0.096435;;, + 91;4; -0.041838,-0.883862,-0.391287,-0.099347;;, + 92;4; -0.039361,-0.904942,-0.369452,-0.101654;;, + 93;4; -0.037602,-0.920214,-0.353954,-0.103325;;, + 94;4; -0.036573,-0.929575,-0.344897,-0.104350;;, + 95;4; -0.036271,-0.933049,-0.342250,-0.104732;;, + 96;4; -0.038638,-0.920872,-0.363238,-0.103416;;, + 97;4; -0.045417,-0.884355,-0.423275,-0.099456;;, + 98;4; -0.055130,-0.831547,-0.509292,-0.093729;;, + 99;4; -0.064823,-0.778549,-0.595258,-0.087993;;, + 100;4; -0.071553,-0.741566,-0.655092,-0.084005;;, + 101;4; -0.073863,-0.728827,-0.675668,-0.082636;;; + } + AnimationKey { //Scale + 1; + 102; + 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;;; + } + } + Animation { + {Armature_noga4} + AnimationKey { //Position + 2; + 102; + 0;3; 0.532289,-0.143643,-0.879248;;, + 1;3; 0.532289,-0.143643,-0.879248;;, + 2;3; 0.532289,-0.143643,-0.879248;;, + 3;3; 0.532289,-0.143643,-0.879248;;, + 4;3; 0.532289,-0.143643,-0.879248;;, + 5;3; 0.532289,-0.143643,-0.879248;;, + 6;3; 0.532289,-0.143643,-0.879248;;, + 7;3; 0.532289,-0.143643,-0.879248;;, + 8;3; 0.532289,-0.143643,-0.879248;;, + 9;3; 0.532289,-0.143643,-0.879248;;, + 10;3; 0.532289,-0.143643,-0.879248;;, + 11;3; 0.532289,-0.143643,-0.879248;;, + 12;3; 0.532289,-0.143643,-0.879248;;, + 13;3; 0.532289,-0.143643,-0.879248;;, + 14;3; 0.532289,-0.143643,-0.879248;;, + 15;3; 0.532289,-0.143643,-0.879248;;, + 16;3; 0.532289,-0.143643,-0.879248;;, + 17;3; 0.532289,-0.143643,-0.879248;;, + 18;3; 0.532289,-0.143643,-0.879248;;, + 19;3; 0.532289,-0.143643,-0.879248;;, + 20;3; 0.532289,-0.143643,-0.879248;;, + 21;3; 0.532289,-0.143643,-0.879248;;, + 22;3; 0.532289,-0.143643,-0.879248;;, + 23;3; 0.532289,-0.143643,-0.879248;;, + 24;3; 0.532289,-0.143643,-0.879248;;, + 25;3; 0.532289,-0.143643,-0.879248;;, + 26;3; 0.532289,-0.143643,-0.879248;;, + 27;3; 0.532289,-0.143643,-0.879248;;, + 28;3; 0.532289,-0.143643,-0.879248;;, + 29;3; 0.532289,-0.143643,-0.879248;;, + 30;3; 0.532289,-0.143643,-0.879248;;, + 31;3; 0.532289,-0.143643,-0.879248;;, + 32;3; 0.532289,-0.143643,-0.879248;;, + 33;3; 0.532289,-0.143643,-0.879248;;, + 34;3; 0.532289,-0.143643,-0.879248;;, + 35;3; 0.532289,-0.143643,-0.879248;;, + 36;3; 0.532289,-0.143643,-0.879248;;, + 37;3; 0.532289,-0.143643,-0.879248;;, + 38;3; 0.532289,-0.143643,-0.879248;;, + 39;3; 0.532289,-0.143643,-0.879248;;, + 40;3; 0.532289,-0.143643,-0.879248;;, + 41;3; 0.532289,-0.143643,-0.879248;;, + 42;3; 0.532289,-0.143643,-0.879248;;, + 43;3; 0.532289,-0.143643,-0.879248;;, + 44;3; 0.532289,-0.143643,-0.879248;;, + 45;3; 0.532289,-0.143643,-0.879248;;, + 46;3; 0.532289,-0.143643,-0.879248;;, + 47;3; 0.532289,-0.143643,-0.879248;;, + 48;3; 0.532289,-0.143643,-0.879248;;, + 49;3; 0.532289,-0.143643,-0.879248;;, + 50;3; 0.532289,-0.143643,-0.879248;;, + 51;3; 0.532289,-0.143643,-0.879248;;, + 52;3; 0.532289,-0.143643,-0.879248;;, + 53;3; 0.532289,-0.143643,-0.879248;;, + 54;3; 0.532289,-0.143643,-0.879248;;, + 55;3; 0.532289,-0.143643,-0.879248;;, + 56;3; 0.532289,-0.143643,-0.879248;;, + 57;3; 0.532289,-0.143643,-0.879248;;, + 58;3; 0.532289,-0.143643,-0.879248;;, + 59;3; 0.532289,-0.143643,-0.879248;;, + 60;3; 0.532289,-0.143643,-0.879248;;, + 61;3; 0.532289,-0.143643,-0.879248;;, + 62;3; 0.532289,-0.143643,-0.879248;;, + 63;3; 0.532289,-0.143643,-0.879248;;, + 64;3; 0.532289,-0.143643,-0.879248;;, + 65;3; 0.532289,-0.143643,-0.879248;;, + 66;3; 0.532289,-0.143643,-0.879248;;, + 67;3; 0.532289,-0.143643,-0.879248;;, + 68;3; 0.532289,-0.143643,-0.879248;;, + 69;3; 0.532289,-0.143643,-0.879248;;, + 70;3; 0.532289,-0.143643,-0.879248;;, + 71;3; 0.532289,-0.143643,-0.879248;;, + 72;3; 0.532289,-0.143643,-0.879248;;, + 73;3; 0.532289,-0.143644,-0.879248;;, + 74;3; 0.532289,-0.143643,-0.879248;;, + 75;3; 0.532289,-0.143643,-0.879248;;, + 76;3; 0.532289,-0.143643,-0.879248;;, + 77;3; 0.532289,-0.143643,-0.879248;;, + 78;3; 0.532289,-0.143643,-0.879248;;, + 79;3; 0.532289,-0.143643,-0.879248;;, + 80;3; 0.532289,-0.143643,-0.879248;;, + 81;3; 0.532289,-0.143643,-0.879248;;, + 82;3; 0.532289,-0.143643,-0.879248;;, + 83;3; 0.532289,-0.143643,-0.879248;;, + 84;3; 0.532289,-0.143643,-0.879248;;, + 85;3; 0.532289,-0.143643,-0.879248;;, + 86;3; 0.532289,-0.143643,-0.879248;;, + 87;3; 0.532289,-0.143643,-0.879248;;, + 88;3; 0.532289,-0.143643,-0.879248;;, + 89;3; 0.532289,-0.143643,-0.879248;;, + 90;3; 0.532289,-0.143644,-0.879248;;, + 91;3; 0.532289,-0.143643,-0.879248;;, + 92;3; 0.532289,-0.143643,-0.879248;;, + 93;3; 0.532289,-0.143643,-0.879248;;, + 94;3; 0.532289,-0.143643,-0.879248;;, + 95;3; 0.532289,-0.143643,-0.879248;;, + 96;3; 0.532289,-0.143643,-0.879248;;, + 97;3; 0.532289,-0.143643,-0.879248;;, + 98;3; 0.532289,-0.143643,-0.879248;;, + 99;3; 0.532289,-0.143644,-0.879248;;, + 100;3; 0.532289,-0.143643,-0.879248;;, + 101;3; 0.532289,-0.143643,-0.879248;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 1;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 2;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 3;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 4;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 5;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 6;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 7;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 8;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 9;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 10;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 11;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 12;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 13;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 14;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 15;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 16;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 17;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 18;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 19;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 20;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 21;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 22;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 23;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 24;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 25;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 26;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 27;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 28;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 29;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 30;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 31;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 32;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 33;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 34;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 35;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 36;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 37;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 38;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 39;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 40;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 41;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 42;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 43;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 44;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 45;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 46;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 47;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 48;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 49;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 50;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 51;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 52;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 53;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 54;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 55;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 56;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 57;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 58;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 59;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 60;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 61;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 62;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 63;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 64;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 65;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 66;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 67;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 68;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 69;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 70;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 71;4; -0.070609,-0.746717,-0.646769,-0.084568;;, + 72;4; -0.061439,-0.797068,-0.565414,-0.090014;;, + 73;4; -0.049661,-0.861678,-0.461000,-0.097011;;, + 74;4; -0.040487,-0.911996,-0.379680,-0.102461;;, + 75;4; -0.037231,-0.929868,-0.350802,-0.104395;;, + 76;4; -0.037545,-0.927307,-0.353566,-0.104115;;, + 77;4; -0.038492,-0.919575,-0.361929,-0.103270;;, + 78;4; -0.040078,-0.906660,-0.375924,-0.101859;;, + 79;4; -0.042293,-0.888662,-0.395471,-0.099893;;, + 80;4; -0.045112,-0.865822,-0.420343,-0.097397;;, + 81;4; -0.048488,-0.838547,-0.450135,-0.094417;;, + 82;4; -0.052354,-0.807433,-0.484245,-0.091017;;, + 83;4; -0.056618,-0.773265,-0.521865,-0.087284;;, + 84;4; -0.061167,-0.737002,-0.562000,-0.083322;;, + 85;4; -0.065871,-0.699737,-0.603507,-0.079250;;, + 86;4; -0.070592,-0.662633,-0.645161,-0.075196;;, + 87;4; -0.075189,-0.626848,-0.685733,-0.071288;;, + 88;4; -0.079532,-0.593461,-0.724070,-0.067642;;, + 89;4; -0.083506,-0.563413,-0.759158,-0.064362;;, + 90;4; -0.087017,-0.537466,-0.790169,-0.061531;;, + 91;4; -0.089994,-0.516186,-0.816476,-0.059211;;, + 92;4; -0.092388,-0.499954,-0.837651,-0.057444;;, + 93;4; -0.094171,-0.488984,-0.853441,-0.056253;;, + 94;4; -0.095331,-0.483348,-0.863743,-0.055645;;, + 95;4; -0.095870,-0.483014,-0.868570,-0.055618;;, + 96;4; -0.094687,-0.499943,-0.858279,-0.057485;;, + 97;4; -0.090792,-0.544737,-0.824204,-0.062416;;, + 98;4; -0.085063,-0.607865,-0.774043,-0.069360;;, + 99;4; -0.079285,-0.670505,-0.723365,-0.076242;;, + 100;4; -0.075251,-0.713930,-0.687899,-0.081005;;, + 101;4; -0.073863,-0.728827,-0.675668,-0.082636;;; + } + AnimationKey { //Scale + 1; + 102; + 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;;; + } + } + Animation { + {Armature_noga2} + AnimationKey { //Position + 2; + 102; + 0;3; 0.700789, 1.772341,-0.879248;;, + 1;3; 0.700789, 1.772341,-0.879248;;, + 2;3; 0.700789, 1.772341,-0.879248;;, + 3;3; 0.700789, 1.772341,-0.879248;;, + 4;3; 0.700789, 1.772341,-0.879248;;, + 5;3; 0.700789, 1.772341,-0.879248;;, + 6;3; 0.700789, 1.772341,-0.879248;;, + 7;3; 0.700789, 1.772341,-0.879248;;, + 8;3; 0.700789, 1.772341,-0.879248;;, + 9;3; 0.700789, 1.772341,-0.879248;;, + 10;3; 0.700789, 1.772341,-0.879248;;, + 11;3; 0.700789, 1.772341,-0.879248;;, + 12;3; 0.700789, 1.772341,-0.879248;;, + 13;3; 0.700789, 1.772341,-0.879248;;, + 14;3; 0.700789, 1.772341,-0.879248;;, + 15;3; 0.700789, 1.772341,-0.879248;;, + 16;3; 0.700789, 1.772341,-0.879248;;, + 17;3; 0.700789, 1.772341,-0.879248;;, + 18;3; 0.700789, 1.772341,-0.879248;;, + 19;3; 0.700789, 1.772341,-0.879248;;, + 20;3; 0.700789, 1.772341,-0.879248;;, + 21;3; 0.700789, 1.772341,-0.879248;;, + 22;3; 0.700789, 1.772341,-0.879248;;, + 23;3; 0.700789, 1.772341,-0.879248;;, + 24;3; 0.700789, 1.772341,-0.879248;;, + 25;3; 0.700789, 1.772341,-0.879248;;, + 26;3; 0.700789, 1.772341,-0.879248;;, + 27;3; 0.700789, 1.772341,-0.879248;;, + 28;3; 0.700789, 1.772341,-0.879248;;, + 29;3; 0.700789, 1.772341,-0.879248;;, + 30;3; 0.700789, 1.772341,-0.879248;;, + 31;3; 0.700789, 1.772341,-0.879248;;, + 32;3; 0.700789, 1.772341,-0.879248;;, + 33;3; 0.700789, 1.772341,-0.879248;;, + 34;3; 0.700789, 1.772341,-0.879248;;, + 35;3; 0.700789, 1.772341,-0.879248;;, + 36;3; 0.700789, 1.772341,-0.879248;;, + 37;3; 0.700789, 1.772341,-0.879248;;, + 38;3; 0.700789, 1.772341,-0.879248;;, + 39;3; 0.700789, 1.772341,-0.879248;;, + 40;3; 0.700789, 1.772341,-0.879248;;, + 41;3; 0.700789, 1.772341,-0.879248;;, + 42;3; 0.700789, 1.772341,-0.879248;;, + 43;3; 0.700789, 1.772341,-0.879248;;, + 44;3; 0.700789, 1.772341,-0.879248;;, + 45;3; 0.700789, 1.772341,-0.879248;;, + 46;3; 0.700789, 1.772341,-0.879248;;, + 47;3; 0.700789, 1.772341,-0.879248;;, + 48;3; 0.700789, 1.772341,-0.879248;;, + 49;3; 0.700789, 1.772341,-0.879248;;, + 50;3; 0.700789, 1.772341,-0.879248;;, + 51;3; 0.700789, 1.772341,-0.879248;;, + 52;3; 0.700789, 1.772341,-0.879248;;, + 53;3; 0.700789, 1.772341,-0.879248;;, + 54;3; 0.700789, 1.772341,-0.879248;;, + 55;3; 0.700789, 1.772341,-0.879248;;, + 56;3; 0.700789, 1.772341,-0.879248;;, + 57;3; 0.700789, 1.772341,-0.879248;;, + 58;3; 0.700789, 1.772341,-0.879248;;, + 59;3; 0.700789, 1.772341,-0.879248;;, + 60;3; 0.700789, 1.772341,-0.879248;;, + 61;3; 0.700789, 1.772341,-0.879248;;, + 62;3; 0.700789, 1.772341,-0.879248;;, + 63;3; 0.700789, 1.772341,-0.879248;;, + 64;3; 0.700789, 1.772341,-0.879248;;, + 65;3; 0.700789, 1.772341,-0.879248;;, + 66;3; 0.700789, 1.772341,-0.879248;;, + 67;3; 0.700789, 1.772341,-0.879248;;, + 68;3; 0.700789, 1.772341,-0.879248;;, + 69;3; 0.700789, 1.772341,-0.879248;;, + 70;3; 0.700789, 1.772341,-0.879248;;, + 71;3; 0.700789, 1.772341,-0.879248;;, + 72;3; 0.700789, 1.772341,-0.879248;;, + 73;3; 0.700789, 1.772341,-0.879248;;, + 74;3; 0.700789, 1.772341,-0.879248;;, + 75;3; 0.700789, 1.772341,-0.879248;;, + 76;3; 0.700789, 1.772341,-0.879248;;, + 77;3; 0.700789, 1.772341,-0.879248;;, + 78;3; 0.700789, 1.772341,-0.879248;;, + 79;3; 0.700789, 1.772341,-0.879248;;, + 80;3; 0.700789, 1.772341,-0.879248;;, + 81;3; 0.700789, 1.772341,-0.879248;;, + 82;3; 0.700789, 1.772341,-0.879248;;, + 83;3; 0.700789, 1.772341,-0.879248;;, + 84;3; 0.700789, 1.772341,-0.879248;;, + 85;3; 0.700789, 1.772341,-0.879248;;, + 86;3; 0.700789, 1.772341,-0.879248;;, + 87;3; 0.700789, 1.772341,-0.879248;;, + 88;3; 0.700789, 1.772341,-0.879248;;, + 89;3; 0.700789, 1.772341,-0.879248;;, + 90;3; 0.700789, 1.772341,-0.879248;;, + 91;3; 0.700789, 1.772341,-0.879248;;, + 92;3; 0.700789, 1.772341,-0.879248;;, + 93;3; 0.700789, 1.772341,-0.879248;;, + 94;3; 0.700789, 1.772341,-0.879248;;, + 95;3; 0.700789, 1.772341,-0.879248;;, + 96;3; 0.700789, 1.772341,-0.879248;;, + 97;3; 0.700789, 1.772341,-0.879248;;, + 98;3; 0.700789, 1.772341,-0.879248;;, + 99;3; 0.700789, 1.772341,-0.879248;;, + 100;3; 0.700789, 1.772341,-0.879248;;, + 101;3; 0.700789, 1.772341,-0.879248;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 1;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 2;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 3;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 4;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 5;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 6;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 7;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 8;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 9;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 10;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 11;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 12;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 13;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 14;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 15;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 16;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 17;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 18;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 19;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 20;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 21;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 22;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 23;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 24;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 25;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 26;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 27;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 28;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 29;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 30;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 31;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 32;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 33;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 34;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 35;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 36;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 37;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 38;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 39;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 40;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 41;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 42;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 43;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 44;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 45;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 46;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 47;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 48;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 49;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 50;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 51;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 52;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 53;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 54;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 55;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 56;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 57;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 58;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 59;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 60;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 61;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 62;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 63;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 64;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 65;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 66;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 67;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 68;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 69;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 70;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 71;4; -0.076219,-0.699980,-0.696324,-0.079466;;, + 72;4; -0.082861,-0.618772,-0.754457,-0.070533;;, + 73;4; -0.091395,-0.514549,-0.829049,-0.059058;;, + 74;4; -0.098042,-0.433380,-0.887140,-0.050121;;, + 75;4; -0.100400,-0.404555,-0.907772,-0.046949;;, + 76;4; -0.100049,-0.407434,-0.904668,-0.047263;;, + 77;4; -0.098985,-0.416138,-0.895284,-0.048214;;, + 78;4; -0.097207,-0.430694,-0.879598,-0.049805;;, + 79;4; -0.094727,-0.451008,-0.857716,-0.052025;;, + 80;4; -0.091576,-0.476832,-0.829914,-0.054847;;, + 81;4; -0.087807,-0.507731,-0.796668,-0.058225;;, + 82;4; -0.083500,-0.543064,-0.758681,-0.062087;;, + 83;4; -0.078760,-0.581975,-0.716884,-0.066341;;, + 84;4; -0.073718,-0.623411,-0.672420,-0.070872;;, + 85;4; -0.068521,-0.666170,-0.626597,-0.075547;;, + 86;4; -0.063328,-0.708965,-0.580808,-0.080227;;, + 87;4; -0.058297,-0.750508,-0.536447,-0.084770;;, + 88;4; -0.053575,-0.789592,-0.494819,-0.089045;;, + 89;4; -0.049292,-0.825163,-0.457061,-0.092935;;, + 90;4; -0.045553,-0.856360,-0.424100,-0.096347;;, + 91;4; -0.042437,-0.882536,-0.396632,-0.099210;;, + 92;4; -0.039998,-0.903249,-0.375128,-0.101476;;, + 93;4; -0.038265,-0.918245,-0.359856,-0.103117;;, + 94;4; -0.037250,-0.927426,-0.350918,-0.104123;;, + 95;4; -0.036949,-0.930813,-0.348286,-0.104495;;, + 96;4; -0.039271,-0.918742,-0.368873,-0.103189;;, + 97;4; -0.045926,-0.882614,-0.427816,-0.099272;;, + 98;4; -0.055464,-0.830387,-0.512283,-0.093607;;, + 99;4; -0.064984,-0.777983,-0.596703,-0.087934;;, + 100;4; -0.071595,-0.741420,-0.655462,-0.083990;;, + 101;4; -0.073863,-0.728827,-0.675668,-0.082636;;; + } + AnimationKey { //Scale + 1; + 102; + 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;;; + } + } + Animation { + {Armature_noga1} + AnimationKey { //Position + 2; + 102; + 0;3; 0.700789, 1.772341, 0.698612;;, + 1;3; 0.700789, 1.772341, 0.698612;;, + 2;3; 0.700789, 1.772341, 0.698612;;, + 3;3; 0.700789, 1.772341, 0.698612;;, + 4;3; 0.700789, 1.772341, 0.698612;;, + 5;3; 0.700789, 1.772341, 0.698612;;, + 6;3; 0.700789, 1.772341, 0.698612;;, + 7;3; 0.700789, 1.772341, 0.698612;;, + 8;3; 0.700789, 1.772341, 0.698612;;, + 9;3; 0.700789, 1.772341, 0.698612;;, + 10;3; 0.700789, 1.772341, 0.698612;;, + 11;3; 0.700789, 1.772341, 0.698612;;, + 12;3; 0.700789, 1.772341, 0.698612;;, + 13;3; 0.700789, 1.772341, 0.698612;;, + 14;3; 0.700789, 1.772341, 0.698612;;, + 15;3; 0.700789, 1.772341, 0.698612;;, + 16;3; 0.700789, 1.772341, 0.698612;;, + 17;3; 0.700789, 1.772341, 0.698612;;, + 18;3; 0.700789, 1.772341, 0.698612;;, + 19;3; 0.700789, 1.772341, 0.698612;;, + 20;3; 0.700789, 1.772341, 0.698612;;, + 21;3; 0.700789, 1.772341, 0.698612;;, + 22;3; 0.700789, 1.772341, 0.698612;;, + 23;3; 0.700789, 1.772341, 0.698612;;, + 24;3; 0.700789, 1.772341, 0.698612;;, + 25;3; 0.700789, 1.772341, 0.698612;;, + 26;3; 0.700789, 1.772341, 0.698612;;, + 27;3; 0.700789, 1.772341, 0.698612;;, + 28;3; 0.700789, 1.772341, 0.698612;;, + 29;3; 0.700789, 1.772341, 0.698612;;, + 30;3; 0.700789, 1.772341, 0.698612;;, + 31;3; 0.700789, 1.772341, 0.698612;;, + 32;3; 0.700789, 1.772341, 0.698612;;, + 33;3; 0.700789, 1.772341, 0.698612;;, + 34;3; 0.700789, 1.772341, 0.698612;;, + 35;3; 0.700789, 1.772341, 0.698612;;, + 36;3; 0.700789, 1.772341, 0.698612;;, + 37;3; 0.700789, 1.772341, 0.698612;;, + 38;3; 0.700789, 1.772341, 0.698612;;, + 39;3; 0.700789, 1.772341, 0.698612;;, + 40;3; 0.700789, 1.772341, 0.698612;;, + 41;3; 0.700789, 1.772341, 0.698612;;, + 42;3; 0.700789, 1.772341, 0.698612;;, + 43;3; 0.700789, 1.772341, 0.698612;;, + 44;3; 0.700789, 1.772341, 0.698612;;, + 45;3; 0.700789, 1.772341, 0.698612;;, + 46;3; 0.700789, 1.772341, 0.698612;;, + 47;3; 0.700789, 1.772341, 0.698612;;, + 48;3; 0.700789, 1.772341, 0.698612;;, + 49;3; 0.700789, 1.772341, 0.698612;;, + 50;3; 0.700789, 1.772341, 0.698612;;, + 51;3; 0.700789, 1.772341, 0.698612;;, + 52;3; 0.700789, 1.772341, 0.698612;;, + 53;3; 0.700789, 1.772341, 0.698612;;, + 54;3; 0.700789, 1.772341, 0.698612;;, + 55;3; 0.700789, 1.772341, 0.698612;;, + 56;3; 0.700789, 1.772341, 0.698612;;, + 57;3; 0.700789, 1.772341, 0.698612;;, + 58;3; 0.700789, 1.772341, 0.698612;;, + 59;3; 0.700789, 1.772341, 0.698612;;, + 60;3; 0.700789, 1.772341, 0.698612;;, + 61;3; 0.700789, 1.772341, 0.698612;;, + 62;3; 0.700789, 1.772341, 0.698612;;, + 63;3; 0.700789, 1.772341, 0.698612;;, + 64;3; 0.700789, 1.772341, 0.698612;;, + 65;3; 0.700789, 1.772341, 0.698612;;, + 66;3; 0.700789, 1.772341, 0.698612;;, + 67;3; 0.700789, 1.772341, 0.698612;;, + 68;3; 0.700789, 1.772341, 0.698612;;, + 69;3; 0.700789, 1.772341, 0.698612;;, + 70;3; 0.700789, 1.772341, 0.698612;;, + 71;3; 0.700789, 1.772341, 0.698612;;, + 72;3; 0.700789, 1.772341, 0.698612;;, + 73;3; 0.700789, 1.772341, 0.698612;;, + 74;3; 0.700789, 1.772341, 0.698612;;, + 75;3; 0.700789, 1.772341, 0.698612;;, + 76;3; 0.700789, 1.772341, 0.698612;;, + 77;3; 0.700789, 1.772341, 0.698612;;, + 78;3; 0.700789, 1.772341, 0.698612;;, + 79;3; 0.700789, 1.772341, 0.698612;;, + 80;3; 0.700789, 1.772341, 0.698612;;, + 81;3; 0.700789, 1.772341, 0.698612;;, + 82;3; 0.700789, 1.772341, 0.698612;;, + 83;3; 0.700789, 1.772341, 0.698612;;, + 84;3; 0.700789, 1.772341, 0.698612;;, + 85;3; 0.700789, 1.772341, 0.698612;;, + 86;3; 0.700789, 1.772341, 0.698612;;, + 87;3; 0.700789, 1.772341, 0.698612;;, + 88;3; 0.700789, 1.772341, 0.698612;;, + 89;3; 0.700789, 1.772341, 0.698612;;, + 90;3; 0.700789, 1.772341, 0.698612;;, + 91;3; 0.700789, 1.772341, 0.698612;;, + 92;3; 0.700789, 1.772341, 0.698612;;, + 93;3; 0.700789, 1.772341, 0.698612;;, + 94;3; 0.700789, 1.772341, 0.698612;;, + 95;3; 0.700789, 1.772341, 0.698612;;, + 96;3; 0.700789, 1.772341, 0.698612;;, + 97;3; 0.700789, 1.772341, 0.698612;;, + 98;3; 0.700789, 1.772341, 0.698612;;, + 99;3; 0.700789, 1.772341, 0.698612;;, + 100;3; 0.700789, 1.772341, 0.698612;;, + 101;3; 0.700789, 1.772341, 0.698612;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 1;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 2;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 3;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 4;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 5;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 6;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 7;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 8;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 9;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 10;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 11;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 12;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 13;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 14;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 15;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 16;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 17;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 18;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 19;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 20;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 21;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 22;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 23;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 24;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 25;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 26;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 27;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 28;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 29;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 30;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 31;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 32;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 33;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 34;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 35;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 36;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 37;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 38;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 39;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 40;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 41;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 42;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 43;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 44;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 45;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 46;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 47;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 48;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 49;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 50;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 51;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 52;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 53;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 54;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 55;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 56;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 57;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 58;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 59;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 60;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 61;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 62;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 63;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 64;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 65;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 66;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 67;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 68;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 69;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 70;4; -0.073863,-0.728827,-0.675668,-0.082636;;, + 71;4; -0.071225,-0.744892,-0.652281,-0.084377;;, + 72;4; -0.063779,-0.789971,-0.586299,-0.089268;;, + 73;4; -0.054176,-0.847438,-0.501243,-0.095506;;, + 74;4; -0.046619,-0.891430,-0.434297,-0.100278;;, + 75;4; -0.043797,-0.905669,-0.409243,-0.101815;;, + 76;4; -0.043909,-0.901068,-0.410168,-0.101304;;, + 77;4; -0.044672,-0.891343,-0.416839,-0.100233;;, + 78;4; -0.046091,-0.876482,-0.429292,-0.098602;;, + 79;4; -0.048155,-0.856583,-0.447443,-0.096420;;, + 80;4; -0.050837,-0.831881,-0.471056,-0.093713;;, + 81;4; -0.054092,-0.802780,-0.499714,-0.090527;;, + 82;4; -0.057847,-0.769867,-0.532797,-0.086924;;, + 83;4; -0.062010,-0.733918,-0.569474,-0.082989;;, + 84;4; -0.066464,-0.695882,-0.608720,-0.078827;;, + 85;4; -0.071075,-0.656840,-0.649360,-0.074556;;, + 86;4; -0.075701,-0.617942,-0.690133,-0.070301;;, + 87;4; -0.080198,-0.580335,-0.729777,-0.066187;;, + 88;4; -0.084432,-0.545089,-0.767105,-0.062333;;, + 89;4; -0.088285,-0.513136,-0.801078,-0.058838;;, + 90;4; -0.091660,-0.485229,-0.830844,-0.055787;;, + 91;4; -0.094485,-0.461934,-0.855760,-0.053240;;, + 92;4; -0.096711,-0.443627,-0.875386,-0.051239;;, + 93;4; -0.098307,-0.430521,-0.889466,-0.049806;;, + 94;4; -0.099262,-0.422690,-0.897893,-0.048951;;, + 95;4; -0.099578,-0.420101,-0.900683,-0.048668;;, + 96;4; -0.097989,-0.439166,-0.886790,-0.050766;;, + 97;4; -0.093361,-0.494628,-0.846380,-0.056877;;, + 98;4; -0.086709,-0.574357,-0.788290,-0.065662;;, + 99;4; -0.080062,-0.654143,-0.730138,-0.074441;;, + 100;4; -0.075446,-0.709712,-0.689615,-0.080542;;, + 101;4; -0.073863,-0.728827,-0.675668,-0.082636;;; + } + AnimationKey { //Scale + 1; + 102; + 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;;; + } + } + Animation { + {Armature_head} + AnimationKey { //Position + 2; + 102; + 0;3; -0.000000, 1.674146, 0.000000;;, + 1;3; -0.000000, 1.674146, 0.000000;;, + 2;3; -0.000000, 1.674146, 0.000000;;, + 3;3; -0.000000, 1.674146, 0.000000;;, + 4;3; -0.000000, 1.674146, 0.000000;;, + 5;3; -0.000000, 1.674146, 0.000000;;, + 6;3; -0.000000, 1.674146, 0.000000;;, + 7;3; -0.000000, 1.674146, 0.000000;;, + 8;3; -0.000000, 1.674146, 0.000000;;, + 9;3; -0.000000, 1.674146, 0.000000;;, + 10;3; -0.000000, 1.674146, 0.000000;;, + 11;3; -0.000000, 1.674146, 0.000000;;, + 12;3; -0.000000, 1.674146, 0.000000;;, + 13;3; -0.000000, 1.674146, 0.000000;;, + 14;3; -0.000000, 1.674146, 0.000000;;, + 15;3; -0.000000, 1.674146, 0.000000;;, + 16;3; -0.000000, 1.674146, 0.000000;;, + 17;3; -0.000000, 1.674146, 0.000000;;, + 18;3; -0.000000, 1.674146, 0.000000;;, + 19;3; -0.000000, 1.674146, 0.000000;;, + 20;3; -0.000000, 1.674146, 0.000000;;, + 21;3; -0.000000, 1.674146, 0.000000;;, + 22;3; -0.000000, 1.674146, 0.000000;;, + 23;3; -0.000000, 1.674146, 0.000000;;, + 24;3; -0.000000, 1.674146, 0.000000;;, + 25;3; -0.000000, 1.674146, 0.000000;;, + 26;3; -0.000000, 1.674146, 0.000000;;, + 27;3; -0.000000, 1.674146, 0.000000;;, + 28;3; -0.000000, 1.674146, 0.000000;;, + 29;3; -0.000000, 1.674146, 0.000000;;, + 30;3; -0.000000, 1.674146, 0.000000;;, + 31;3; -0.000000, 1.674146, 0.000000;;, + 32;3; -0.000000, 1.674146, 0.000000;;, + 33;3; -0.000000, 1.674146, 0.000000;;, + 34;3; -0.000000, 1.674146, 0.000000;;, + 35;3; -0.000000, 1.674146, 0.000000;;, + 36;3; -0.000000, 1.674146, 0.000000;;, + 37;3; -0.000000, 1.674146, 0.000000;;, + 38;3; -0.000000, 1.674146, 0.000000;;, + 39;3; -0.000000, 1.674146, 0.000000;;, + 40;3; -0.000000, 1.674146, 0.000000;;, + 41;3; -0.000000, 1.674146, 0.000000;;, + 42;3; -0.000000, 1.674146, 0.000000;;, + 43;3; -0.000000, 1.674146, 0.000000;;, + 44;3; -0.000000, 1.674146, 0.000000;;, + 45;3; -0.000000, 1.674146, 0.000000;;, + 46;3; -0.000000, 1.674146, 0.000000;;, + 47;3; -0.000000, 1.674146, 0.000000;;, + 48;3; -0.000000, 1.674146, 0.000000;;, + 49;3; -0.000000, 1.674146, 0.000000;;, + 50;3; -0.000000, 1.674146, 0.000000;;, + 51;3; -0.000000, 1.674146, 0.000000;;, + 52;3; -0.000000, 1.674146, 0.000000;;, + 53;3; -0.000000, 1.674146, 0.000000;;, + 54;3; -0.000000, 1.674146, 0.000000;;, + 55;3; -0.000000, 1.674146, 0.000000;;, + 56;3; -0.000000, 1.674146, 0.000000;;, + 57;3; -0.000000, 1.674146, 0.000000;;, + 58;3; -0.000000, 1.674146, 0.000000;;, + 59;3; -0.000000, 1.674146, 0.000000;;, + 60;3; -0.000000, 1.674146, 0.000000;;, + 61;3; -0.000000, 1.674146, 0.000000;;, + 62;3; -0.000000, 1.674146, 0.000000;;, + 63;3; -0.000000, 1.674146, 0.000000;;, + 64;3; -0.000000, 1.674146, 0.000000;;, + 65;3; -0.000000, 1.674146, 0.000000;;, + 66;3; -0.000000, 1.674146, 0.000000;;, + 67;3; -0.000000, 1.674146, 0.000000;;, + 68;3; -0.000000, 1.674146, 0.000000;;, + 69;3; -0.000000, 1.674146, 0.000000;;, + 70;3; -0.000000, 1.674146, 0.000000;;, + 71;3; -0.000000, 1.674146, 0.000000;;, + 72;3; 0.000000, 1.674146, 0.000000;;, + 73;3; -0.000000, 1.674146, 0.000000;;, + 74;3; -0.000000, 1.674146, 0.000000;;, + 75;3; -0.000000, 1.674146, 0.000000;;, + 76;3; -0.000000, 1.674146, 0.000000;;, + 77;3; -0.000000, 1.674146, 0.000000;;, + 78;3; -0.000000, 1.674146, 0.000000;;, + 79;3; -0.000000, 1.674146, 0.000000;;, + 80;3; -0.000000, 1.674146, 0.000000;;, + 81;3; -0.000000, 1.674146,-0.000000;;, + 82;3; -0.000000, 1.674146, 0.000000;;, + 83;3; -0.000000, 1.674146, 0.000000;;, + 84;3; -0.000000, 1.674146,-0.000000;;, + 85;3; 0.000000, 1.674146, 0.000000;;, + 86;3; -0.000000, 1.674146, 0.000000;;, + 87;3; -0.000000, 1.674146, 0.000000;;, + 88;3; 0.000000, 1.674146, 0.000000;;, + 89;3; -0.000000, 1.674146, 0.000000;;, + 90;3; -0.000000, 1.674146, 0.000000;;, + 91;3; -0.000000, 1.674146, 0.000000;;, + 92;3; -0.000000, 1.674146, 0.000000;;, + 93;3; 0.000000, 1.674146,-0.000000;;, + 94;3; -0.000000, 1.674146,-0.000000;;, + 95;3; -0.000000, 1.674146, 0.000000;;, + 96;3; -0.000000, 1.674146, 0.000000;;, + 97;3; -0.000000, 1.674146, 0.000000;;, + 98;3; -0.000000, 1.674146, 0.000000;;, + 99;3; -0.000000, 1.674146,-0.000000;;, + 100;3; -0.000000, 1.674146, 0.000000;;, + 101;3; -0.000000, 1.674146, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 1;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 2;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 3;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 4;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 5;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 6;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 7;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 8;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 9;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 10;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 11;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 12;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 13;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 14;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 15;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 16;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 17;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 18;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 19;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 20;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 21;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 22;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 23;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 24;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 25;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 26;4; -0.706775, 0.008456,-0.706775, 0.008456;;, + 27;4; -0.706077, 0.032526,-0.706077, 0.032526;;, + 28;4; -0.705751, 0.043775,-0.705751, 0.043775;;, + 29;4; -0.706039, 0.035432,-0.706039, 0.035432;;, + 30;4; -0.706656, 0.017578,-0.706656, 0.017578;;, + 31;4; -0.706945, 0.009235,-0.706945, 0.009235;;, + 32;4; -0.706844, 0.012135,-0.706844, 0.012135;;, + 33;4; -0.706558, 0.020306,-0.706558, 0.020306;;, + 34;4; -0.706192, 0.030797,-0.706192, 0.030797;;, + 35;4; -0.705906, 0.038967,-0.705906, 0.038967;;, + 36;4; -0.705805, 0.041868,-0.705805, 0.041868;;, + 37;4; -0.705991, 0.038144,-0.705990, 0.038144;;, + 38;4; -0.706447, 0.027738,-0.706447, 0.027738;;, + 39;4; -0.706824, 0.015541,-0.706824, 0.015541;;, + 40;4; -0.706811, 0.007295,-0.706811, 0.007295;;, + 41;4; -0.701904, 0.025942,-0.705927,-0.020202;;, + 42;4; -0.689478, 0.083985,-0.704022,-0.082801;;, + 43;4; -0.677123, 0.143604,-0.702186,-0.143793;;, + 44;4; -0.672393, 0.166254,-0.701478,-0.167257;;, + 45;4; -0.674517, 0.155352,-0.701805,-0.157557;;, + 46;4; -0.680750, 0.124798,-0.702809,-0.128156;;, + 47;4; -0.689724, 0.081209,-0.704267,-0.085558;;, + 48;4; -0.698704, 0.037754,-0.705730,-0.042821;;, + 49;4; -0.704954, 0.007570,-0.706750,-0.013038;;, + 50;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 51;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 52;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 53;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 54;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 55;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 56;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 57;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 58;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 59;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 60;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 61;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 62;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 63;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 64;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 65;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 66;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 67;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 68;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 69;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 70;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 71;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 72;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 73;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 74;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 75;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 76;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 77;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 78;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 79;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 80;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 81;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 82;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 83;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 84;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 85;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 86;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 87;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 88;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 89;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 90;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 91;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 92;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 93;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 94;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 95;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 96;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 97;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 98;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 99;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 100;4; -0.707101,-0.002794,-0.707101,-0.002794;;, + 101;4; -0.707101,-0.002794,-0.707101,-0.002794;;; + } + AnimationKey { //Scale + 1; + 102; + 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;;; + } + } + Animation { + {Armature_hvost} + AnimationKey { //Position + 2; + 102; + 0;3; -0.371885,-0.304373,-0.053265;;, + 1;3; -0.371885,-0.304373,-0.053265;;, + 2;3; -0.371885,-0.304373,-0.053265;;, + 3;3; -0.371885,-0.304373,-0.053265;;, + 4;3; -0.371885,-0.304373,-0.053265;;, + 5;3; -0.371885,-0.304373,-0.053265;;, + 6;3; -0.371885,-0.304373,-0.053265;;, + 7;3; -0.371885,-0.304373,-0.053265;;, + 8;3; -0.371885,-0.304373,-0.053265;;, + 9;3; -0.371885,-0.304373,-0.053265;;, + 10;3; -0.371885,-0.304373,-0.053265;;, + 11;3; -0.371885,-0.304373,-0.053265;;, + 12;3; -0.371885,-0.304373,-0.053265;;, + 13;3; -0.371885,-0.304373,-0.053265;;, + 14;3; -0.371885,-0.304373,-0.053265;;, + 15;3; -0.371885,-0.304373,-0.053265;;, + 16;3; -0.371885,-0.304373,-0.053265;;, + 17;3; -0.371885,-0.304373,-0.053265;;, + 18;3; -0.371885,-0.304373,-0.053265;;, + 19;3; -0.371885,-0.304373,-0.053265;;, + 20;3; -0.371885,-0.304373,-0.053265;;, + 21;3; -0.371885,-0.304373,-0.053265;;, + 22;3; -0.371885,-0.304373,-0.053265;;, + 23;3; -0.371885,-0.304373,-0.053265;;, + 24;3; -0.371885,-0.304373,-0.053265;;, + 25;3; -0.371885,-0.304373,-0.053265;;, + 26;3; -0.371885,-0.304373,-0.053265;;, + 27;3; -0.371885,-0.304373,-0.053265;;, + 28;3; -0.371885,-0.304373,-0.053265;;, + 29;3; -0.371885,-0.304373,-0.053265;;, + 30;3; -0.371885,-0.304373,-0.053265;;, + 31;3; -0.371885,-0.304373,-0.053265;;, + 32;3; -0.371885,-0.304373,-0.053265;;, + 33;3; -0.371885,-0.304373,-0.053265;;, + 34;3; -0.371885,-0.304373,-0.053265;;, + 35;3; -0.371885,-0.304373,-0.053265;;, + 36;3; -0.371885,-0.304373,-0.053265;;, + 37;3; -0.371885,-0.304373,-0.053265;;, + 38;3; -0.371885,-0.304373,-0.053265;;, + 39;3; -0.371885,-0.304373,-0.053265;;, + 40;3; -0.371885,-0.304373,-0.053265;;, + 41;3; -0.371885,-0.304373,-0.053265;;, + 42;3; -0.371885,-0.304373,-0.053265;;, + 43;3; -0.371885,-0.304373,-0.053265;;, + 44;3; -0.371885,-0.304373,-0.053265;;, + 45;3; -0.371885,-0.304373,-0.053265;;, + 46;3; -0.371885,-0.304373,-0.053265;;, + 47;3; -0.371885,-0.304373,-0.053265;;, + 48;3; -0.371885,-0.304373,-0.053265;;, + 49;3; -0.371885,-0.304373,-0.053265;;, + 50;3; -0.371885,-0.304373,-0.053265;;, + 51;3; -0.371885,-0.304373,-0.053265;;, + 52;3; -0.371885,-0.304373,-0.053265;;, + 53;3; -0.371885,-0.304373,-0.053265;;, + 54;3; -0.371885,-0.304373,-0.053265;;, + 55;3; -0.371885,-0.304373,-0.053265;;, + 56;3; -0.371885,-0.304373,-0.053265;;, + 57;3; -0.371885,-0.304373,-0.053265;;, + 58;3; -0.371885,-0.304373,-0.053265;;, + 59;3; -0.371885,-0.304373,-0.053265;;, + 60;3; -0.371885,-0.304373,-0.053265;;, + 61;3; -0.371885,-0.304373,-0.053265;;, + 62;3; -0.371885,-0.304373,-0.053265;;, + 63;3; -0.371885,-0.304373,-0.053265;;, + 64;3; -0.371885,-0.304373,-0.053265;;, + 65;3; -0.371885,-0.304373,-0.053265;;, + 66;3; -0.371885,-0.304373,-0.053265;;, + 67;3; -0.371885,-0.304373,-0.053265;;, + 68;3; -0.371885,-0.304373,-0.053265;;, + 69;3; -0.371885,-0.304373,-0.053265;;, + 70;3; -0.371885,-0.304373,-0.053265;;, + 71;3; -0.371885,-0.304373,-0.053265;;, + 72;3; -0.371885,-0.304373,-0.053265;;, + 73;3; -0.371885,-0.304373,-0.053265;;, + 74;3; -0.371885,-0.304373,-0.053265;;, + 75;3; -0.371885,-0.304373,-0.053265;;, + 76;3; -0.371885,-0.304373,-0.053265;;, + 77;3; -0.371885,-0.304373,-0.053265;;, + 78;3; -0.371885,-0.304373,-0.053265;;, + 79;3; -0.371885,-0.304373,-0.053265;;, + 80;3; -0.371885,-0.304373,-0.053265;;, + 81;3; -0.371885,-0.304373,-0.053265;;, + 82;3; -0.371885,-0.304373,-0.053265;;, + 83;3; -0.371885,-0.304373,-0.053265;;, + 84;3; -0.371885,-0.304373,-0.053265;;, + 85;3; -0.371885,-0.304373,-0.053265;;, + 86;3; -0.371885,-0.304373,-0.053265;;, + 87;3; -0.371885,-0.304373,-0.053265;;, + 88;3; -0.371885,-0.304373,-0.053265;;, + 89;3; -0.371885,-0.304373,-0.053265;;, + 90;3; -0.371885,-0.304373,-0.053265;;, + 91;3; -0.371885,-0.304373,-0.053265;;, + 92;3; -0.371885,-0.304373,-0.053265;;, + 93;3; -0.371885,-0.304373,-0.053265;;, + 94;3; -0.371885,-0.304373,-0.053265;;, + 95;3; -0.371885,-0.304373,-0.053265;;, + 96;3; -0.371885,-0.304373,-0.053265;;, + 97;3; -0.371885,-0.304373,-0.053265;;, + 98;3; -0.371885,-0.304373,-0.053265;;, + 99;3; -0.371885,-0.304373,-0.053265;;, + 100;3; -0.371885,-0.304373,-0.053265;;, + 101;3; -0.371885,-0.304373,-0.053265;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 1;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 2;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 3;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 4;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 5;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 6;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 7;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 8;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 9;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 10;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 11;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 12;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 13;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 14;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 15;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 16;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 17;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 18;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 19;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 20;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 21;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 22;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 23;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 24;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 25;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 26;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 27;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 28;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 29;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 30;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 31;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 32;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 33;4; -0.092171,-0.091801, 0.103340, 0.977726;;, + 34;4; -0.079170,-0.092602, 0.230341, 0.965454;;, + 35;4; -0.080174,-0.092981, 0.226130, 0.966924;;, + 36;4; -0.083078,-0.093954, 0.212380, 0.971164;;, + 37;4; -0.087206,-0.095018, 0.188694, 0.977155;;, + 38;4; -0.091248,-0.095436, 0.157386, 0.982942;;, + 39;4; -0.093909,-0.094633, 0.122667, 0.986621;;, + 40;4; -0.094558,-0.092458, 0.088213, 0.987284;;, + 41;4; -0.004325,-0.088704, 0.040224, 0.979222;;, + 42;4; 0.187822,-0.084584,-0.015920, 0.963174;;, + 43;4; 0.277597,-0.082988,-0.038278, 0.955781;;, + 44;4; 0.260219,-0.083351,-0.037618, 0.957332;;, + 45;4; 0.208831,-0.084427,-0.035667, 0.961922;;, + 46;4; 0.130568,-0.086067,-0.032694, 0.968918;;, + 47;4; 0.041820,-0.087927,-0.029322, 0.976856;;, + 48;4; -0.036429,-0.089568,-0.026350, 0.983854;;, + 49;4; -0.087801,-0.090644,-0.024399, 0.988445;;, + 50;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 51;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 52;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 53;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 54;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 55;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 56;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 57;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 58;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 59;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 60;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 61;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 62;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 63;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 64;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 65;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 66;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 67;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 68;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 69;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 70;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 71;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 72;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 73;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 74;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 75;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 76;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 77;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 78;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 79;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 80;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 81;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 82;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 83;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 84;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 85;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 86;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 87;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 88;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 89;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 90;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 91;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 92;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 93;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 94;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 95;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 96;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 97;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 98;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 99;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 100;4; -0.105172,-0.091008,-0.023740, 0.989996;;, + 101;4; -0.105172,-0.091008,-0.023740, 0.989996;;; + } + AnimationKey { //Scale + 1; + 102; + 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;;; + } + } + Animation { + {Cube} + AnimationKey { //Position + 2; + 102; + 0;3; -0.022274,-1.486684, 5.904222;;, + 1;3; -0.022274,-1.486684, 5.904222;;, + 2;3; -0.022274,-1.486684, 5.904222;;, + 3;3; -0.022274,-1.486684, 5.904222;;, + 4;3; -0.022274,-1.486684, 5.904222;;, + 5;3; -0.022274,-1.486684, 5.904222;;, + 6;3; -0.022274,-1.486684, 5.904222;;, + 7;3; -0.022274,-1.486684, 5.904222;;, + 8;3; -0.022274,-1.486684, 5.904222;;, + 9;3; -0.022274,-1.486684, 5.904222;;, + 10;3; -0.022274,-1.486684, 5.904222;;, + 11;3; -0.022274,-1.486684, 5.904222;;, + 12;3; -0.022274,-1.486684, 5.904222;;, + 13;3; -0.022274,-1.486684, 5.904222;;, + 14;3; -0.022274,-1.486684, 5.904222;;, + 15;3; -0.022274,-1.486684, 5.904222;;, + 16;3; -0.022274,-1.486684, 5.904222;;, + 17;3; -0.022274,-1.486684, 5.904222;;, + 18;3; -0.022274,-1.486684, 5.904222;;, + 19;3; -0.022274,-1.486684, 5.904222;;, + 20;3; -0.022274,-1.486684, 5.904222;;, + 21;3; -0.022274,-1.486684, 5.904222;;, + 22;3; -0.022274,-1.486684, 5.904222;;, + 23;3; -0.022274,-1.486684, 5.904222;;, + 24;3; -0.022274,-1.486684, 5.904222;;, + 25;3; -0.022274,-1.486684, 5.904222;;, + 26;3; -0.022274,-1.486684, 5.904222;;, + 27;3; -0.022274,-1.486684, 5.904222;;, + 28;3; -0.022274,-1.486684, 5.904222;;, + 29;3; -0.022274,-1.486684, 5.904222;;, + 30;3; -0.022274,-1.486684, 5.904222;;, + 31;3; -0.022274,-1.486684, 5.904222;;, + 32;3; -0.022274,-1.486684, 5.904222;;, + 33;3; -0.022274,-1.486684, 5.904222;;, + 34;3; -0.022274,-1.486684, 5.904222;;, + 35;3; -0.022274,-1.486684, 5.904222;;, + 36;3; -0.022274,-1.486684, 5.904222;;, + 37;3; -0.022274,-1.486684, 5.904222;;, + 38;3; -0.022274,-1.486684, 5.904222;;, + 39;3; -0.022274,-1.486684, 5.904222;;, + 40;3; -0.022274,-1.486684, 5.904222;;, + 41;3; -0.022274,-1.486684, 5.904222;;, + 42;3; -0.022274,-1.486684, 5.904222;;, + 43;3; -0.022274,-1.486684, 5.904222;;, + 44;3; -0.022274,-1.486684, 5.904222;;, + 45;3; -0.022274,-1.486684, 5.904222;;, + 46;3; -0.022274,-1.486684, 5.904222;;, + 47;3; -0.022274,-1.486684, 5.904222;;, + 48;3; -0.022274,-1.486684, 5.904222;;, + 49;3; -0.022274,-1.486684, 5.904222;;, + 50;3; -0.022274,-1.486684, 5.904222;;, + 51;3; -0.022274,-1.486684, 5.904222;;, + 52;3; -0.022274,-1.486684, 5.904222;;, + 53;3; -0.022274,-1.486684, 5.904222;;, + 54;3; -0.022274,-1.486684, 5.904222;;, + 55;3; -0.022274,-1.486684, 5.904222;;, + 56;3; -0.022274,-1.486684, 5.904222;;, + 57;3; -0.022274,-1.486684, 5.904222;;, + 58;3; -0.022274,-1.486684, 5.904222;;, + 59;3; -0.022274,-1.486684, 5.904222;;, + 60;3; -0.022274,-1.486684, 5.904222;;, + 61;3; -0.022274,-1.486684, 5.904222;;, + 62;3; -0.022274,-1.486684, 5.904222;;, + 63;3; -0.022274,-1.486684, 5.904222;;, + 64;3; -0.022274,-1.486684, 5.904222;;, + 65;3; -0.022274,-1.486684, 5.904222;;, + 66;3; -0.022274,-1.486684, 5.904222;;, + 67;3; -0.022274,-1.486684, 5.904222;;, + 68;3; -0.022274,-1.486684, 5.904222;;, + 69;3; -0.022274,-1.486684, 5.904222;;, + 70;3; -0.022274,-1.486684, 5.904222;;, + 71;3; -0.022274,-1.486684, 5.904222;;, + 72;3; -0.022274,-1.486684, 5.904222;;, + 73;3; -0.022274,-1.486684, 5.904222;;, + 74;3; -0.022274,-1.486684, 5.904222;;, + 75;3; -0.022274,-1.486684, 5.904222;;, + 76;3; -0.022274,-1.486684, 5.904222;;, + 77;3; -0.022274,-1.486684, 5.904222;;, + 78;3; -0.022274,-1.486684, 5.904222;;, + 79;3; -0.022274,-1.486684, 5.904222;;, + 80;3; -0.022274,-1.486684, 5.904222;;, + 81;3; -0.022274,-1.486684, 5.904222;;, + 82;3; -0.022274,-1.486684, 5.904222;;, + 83;3; -0.022274,-1.486684, 5.904222;;, + 84;3; -0.022274,-1.486684, 5.904222;;, + 85;3; -0.022274,-1.486684, 5.904222;;, + 86;3; -0.022274,-1.486684, 5.904222;;, + 87;3; -0.022274,-1.486684, 5.904222;;, + 88;3; -0.022274,-1.486684, 5.904222;;, + 89;3; -0.022274,-1.486684, 5.904222;;, + 90;3; -0.022274,-1.486684, 5.904222;;, + 91;3; -0.022274,-1.486684, 5.904222;;, + 92;3; -0.022274,-1.486684, 5.904222;;, + 93;3; -0.022274,-1.486684, 5.904222;;, + 94;3; -0.022274,-1.486684, 5.904222;;, + 95;3; -0.022274,-1.486684, 5.904222;;, + 96;3; -0.022274,-1.486684, 5.904222;;, + 97;3; -0.022274,-1.486684, 5.904222;;, + 98;3; -0.022274,-1.486684, 5.904222;;, + 99;3; -0.022274,-1.486684, 5.904222;;, + 100;3; -0.022274,-1.486684, 5.904222;;, + 101;3; -0.022274,-1.486684, 5.904222;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 1;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 2;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 3;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 4;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 5;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 6;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 7;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 8;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 9;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 10;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 11;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 12;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 13;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 14;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 15;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 16;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 17;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 18;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 19;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 20;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 21;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 22;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 23;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 24;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 25;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 26;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 27;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 28;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 29;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 30;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 31;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 32;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 33;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 34;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 35;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 36;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 37;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 38;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 39;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 40;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 41;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 42;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 43;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 44;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 45;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 46;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 47;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 48;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 49;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 50;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 51;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 52;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 53;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 54;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 55;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 56;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 57;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 58;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 59;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 60;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 61;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 62;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 63;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 64;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 65;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 66;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 67;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 68;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 69;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 70;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 71;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 72;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 73;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 74;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 75;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 76;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 77;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 78;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 79;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 80;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 81;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 82;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 83;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 84;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 85;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 86;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 87;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 88;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 89;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 90;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 91;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 92;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 93;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 94;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 95;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 96;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 97;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 98;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 99;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 100;4; -0.707076, 0.000000, 0.000000, 0.707137;;, + 101;4; -0.707076, 0.000000, 0.000000, 0.707137;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 2.732761, 2.732761, 2.732761;;, + 1;3; 2.732761, 2.732761, 2.732761;;, + 2;3; 2.732761, 2.732761, 2.732761;;, + 3;3; 2.732761, 2.732761, 2.732761;;, + 4;3; 2.732761, 2.732761, 2.732761;;, + 5;3; 2.732761, 2.732761, 2.732761;;, + 6;3; 2.732761, 2.732761, 2.732761;;, + 7;3; 2.732761, 2.732761, 2.732761;;, + 8;3; 2.732761, 2.732761, 2.732761;;, + 9;3; 2.732761, 2.732761, 2.732761;;, + 10;3; 2.732761, 2.732761, 2.732761;;, + 11;3; 2.732761, 2.732761, 2.732761;;, + 12;3; 2.732761, 2.732761, 2.732761;;, + 13;3; 2.732761, 2.732761, 2.732761;;, + 14;3; 2.732761, 2.732761, 2.732761;;, + 15;3; 2.732761, 2.732761, 2.732761;;, + 16;3; 2.732761, 2.732761, 2.732761;;, + 17;3; 2.732761, 2.732761, 2.732761;;, + 18;3; 2.732761, 2.732761, 2.732761;;, + 19;3; 2.732761, 2.732761, 2.732761;;, + 20;3; 2.732761, 2.732761, 2.732761;;, + 21;3; 2.732761, 2.732761, 2.732761;;, + 22;3; 2.732761, 2.732761, 2.732761;;, + 23;3; 2.732761, 2.732761, 2.732761;;, + 24;3; 2.732761, 2.732761, 2.732761;;, + 25;3; 2.732761, 2.732761, 2.732761;;, + 26;3; 2.732761, 2.732761, 2.732761;;, + 27;3; 2.732761, 2.732761, 2.732761;;, + 28;3; 2.732761, 2.732761, 2.732761;;, + 29;3; 2.732761, 2.732761, 2.732761;;, + 30;3; 2.732761, 2.732761, 2.732761;;, + 31;3; 2.732761, 2.732761, 2.732761;;, + 32;3; 2.732761, 2.732761, 2.732761;;, + 33;3; 2.732761, 2.732761, 2.732761;;, + 34;3; 2.732761, 2.732761, 2.732761;;, + 35;3; 2.732761, 2.732761, 2.732761;;, + 36;3; 2.732761, 2.732761, 2.732761;;, + 37;3; 2.732761, 2.732761, 2.732761;;, + 38;3; 2.732761, 2.732761, 2.732761;;, + 39;3; 2.732761, 2.732761, 2.732761;;, + 40;3; 2.732761, 2.732761, 2.732761;;, + 41;3; 2.732761, 2.732761, 2.732761;;, + 42;3; 2.732761, 2.732761, 2.732761;;, + 43;3; 2.732761, 2.732761, 2.732761;;, + 44;3; 2.732761, 2.732761, 2.732761;;, + 45;3; 2.732761, 2.732761, 2.732761;;, + 46;3; 2.732761, 2.732761, 2.732761;;, + 47;3; 2.732761, 2.732761, 2.732761;;, + 48;3; 2.732761, 2.732761, 2.732761;;, + 49;3; 2.732761, 2.732761, 2.732761;;, + 50;3; 2.732761, 2.732761, 2.732761;;, + 51;3; 2.732761, 2.732761, 2.732761;;, + 52;3; 2.732761, 2.732761, 2.732761;;, + 53;3; 2.732761, 2.732761, 2.732761;;, + 54;3; 2.732761, 2.732761, 2.732761;;, + 55;3; 2.732761, 2.732761, 2.732761;;, + 56;3; 2.732761, 2.732761, 2.732761;;, + 57;3; 2.732761, 2.732761, 2.732761;;, + 58;3; 2.732761, 2.732761, 2.732761;;, + 59;3; 2.732761, 2.732761, 2.732761;;, + 60;3; 2.732761, 2.732761, 2.732761;;, + 61;3; 2.732761, 2.732761, 2.732761;;, + 62;3; 2.732761, 2.732761, 2.732761;;, + 63;3; 2.732761, 2.732761, 2.732761;;, + 64;3; 2.732761, 2.732761, 2.732761;;, + 65;3; 2.732761, 2.732761, 2.732761;;, + 66;3; 2.732761, 2.732761, 2.732761;;, + 67;3; 2.732761, 2.732761, 2.732761;;, + 68;3; 2.732761, 2.732761, 2.732761;;, + 69;3; 2.732761, 2.732761, 2.732761;;, + 70;3; 2.732761, 2.732761, 2.732761;;, + 71;3; 2.732761, 2.732761, 2.732761;;, + 72;3; 2.732761, 2.732761, 2.732761;;, + 73;3; 2.732761, 2.732761, 2.732761;;, + 74;3; 2.732761, 2.732761, 2.732761;;, + 75;3; 2.732761, 2.732761, 2.732761;;, + 76;3; 2.732761, 2.732761, 2.732761;;, + 77;3; 2.732761, 2.732761, 2.732761;;, + 78;3; 2.732761, 2.732761, 2.732761;;, + 79;3; 2.732761, 2.732761, 2.732761;;, + 80;3; 2.732761, 2.732761, 2.732761;;, + 81;3; 2.732761, 2.732761, 2.732761;;, + 82;3; 2.732761, 2.732761, 2.732761;;, + 83;3; 2.732761, 2.732761, 2.732761;;, + 84;3; 2.732761, 2.732761, 2.732761;;, + 85;3; 2.732761, 2.732761, 2.732761;;, + 86;3; 2.732761, 2.732761, 2.732761;;, + 87;3; 2.732761, 2.732761, 2.732761;;, + 88;3; 2.732761, 2.732761, 2.732761;;, + 89;3; 2.732761, 2.732761, 2.732761;;, + 90;3; 2.732761, 2.732761, 2.732761;;, + 91;3; 2.732761, 2.732761, 2.732761;;, + 92;3; 2.732761, 2.732761, 2.732761;;, + 93;3; 2.732761, 2.732761, 2.732761;;, + 94;3; 2.732761, 2.732761, 2.732761;;, + 95;3; 2.732761, 2.732761, 2.732761;;, + 96;3; 2.732761, 2.732761, 2.732761;;, + 97;3; 2.732761, 2.732761, 2.732761;;, + 98;3; 2.732761, 2.732761, 2.732761;;, + 99;3; 2.732761, 2.732761, 2.732761;;, + 100;3; 2.732761, 2.732761, 2.732761;;, + 101;3; 2.732761, 2.732761, 2.732761;;; + } + } +} //End of AnimationSet diff --git a/cache/media/e36d0e6d05095f4f8d495f0beb6a8c9c1d704f8c b/cache/media/e36d0e6d05095f4f8d495f0beb6a8c9c1d704f8c new file mode 100644 index 000000000..5705c787c Binary files /dev/null and b/cache/media/e36d0e6d05095f4f8d495f0beb6a8c9c1d704f8c differ diff --git a/cache/media/e398716d6aa29a884e1dfe2d9895045a7c28a06d b/cache/media/e398716d6aa29a884e1dfe2d9895045a7c28a06d new file mode 100644 index 000000000..3211db157 Binary files /dev/null and b/cache/media/e398716d6aa29a884e1dfe2d9895045a7c28a06d differ diff --git a/cache/media/e3ebdd95f826ecfdd7aa267f6a7972a437b59eec b/cache/media/e3ebdd95f826ecfdd7aa267f6a7972a437b59eec new file mode 100644 index 000000000..ceed6fa75 Binary files /dev/null and b/cache/media/e3ebdd95f826ecfdd7aa267f6a7972a437b59eec differ diff --git a/cache/media/e3ede7f7df924073f9d510126ca0ccd019850f08 b/cache/media/e3ede7f7df924073f9d510126ca0ccd019850f08 new file mode 100644 index 000000000..efb95be55 Binary files /dev/null and b/cache/media/e3ede7f7df924073f9d510126ca0ccd019850f08 differ diff --git a/cache/media/e409d7ef6f36b1fa252be01f8741646bef0b6f5b b/cache/media/e409d7ef6f36b1fa252be01f8741646bef0b6f5b new file mode 100644 index 000000000..2ec074634 Binary files /dev/null and b/cache/media/e409d7ef6f36b1fa252be01f8741646bef0b6f5b differ diff --git a/cache/media/e43857e3ff0c8e7eb08e1148cf2cfc619861f671 b/cache/media/e43857e3ff0c8e7eb08e1148cf2cfc619861f671 new file mode 100644 index 000000000..2eb3a5cca Binary files /dev/null and b/cache/media/e43857e3ff0c8e7eb08e1148cf2cfc619861f671 differ diff --git a/cache/media/e48902842ed8fd74e5af4dfc64c8baa497cc8f04 b/cache/media/e48902842ed8fd74e5af4dfc64c8baa497cc8f04 new file mode 100644 index 000000000..888bc5a7a Binary files /dev/null and b/cache/media/e48902842ed8fd74e5af4dfc64c8baa497cc8f04 differ diff --git a/cache/media/e490914cf446539211157954b031a15c409e25a8 b/cache/media/e490914cf446539211157954b031a15c409e25a8 new file mode 100644 index 000000000..f87e826c9 Binary files /dev/null and b/cache/media/e490914cf446539211157954b031a15c409e25a8 differ diff --git a/cache/media/e49ecbb02049fad226450595720963edf5014b64 b/cache/media/e49ecbb02049fad226450595720963edf5014b64 new file mode 100644 index 000000000..1d0c9d5a2 Binary files /dev/null and b/cache/media/e49ecbb02049fad226450595720963edf5014b64 differ diff --git a/cache/media/e560c37404544085cfb26e66f88615b84343a263 b/cache/media/e560c37404544085cfb26e66f88615b84343a263 new file mode 100644 index 000000000..1b046819b Binary files /dev/null and b/cache/media/e560c37404544085cfb26e66f88615b84343a263 differ diff --git a/cache/media/e626496b2c84d4d0cce915b08b7368491dea6c34 b/cache/media/e626496b2c84d4d0cce915b08b7368491dea6c34 new file mode 100644 index 000000000..2c8721cf7 Binary files /dev/null and b/cache/media/e626496b2c84d4d0cce915b08b7368491dea6c34 differ diff --git a/cache/media/e65df1ad60f58345f609f10181a10dbfa035bb6a b/cache/media/e65df1ad60f58345f609f10181a10dbfa035bb6a new file mode 100644 index 000000000..c390941ce Binary files /dev/null and b/cache/media/e65df1ad60f58345f609f10181a10dbfa035bb6a differ diff --git a/cache/media/e72571529152e9e28844701d1b8330186d96470e b/cache/media/e72571529152e9e28844701d1b8330186d96470e new file mode 100644 index 000000000..d395d3a13 Binary files /dev/null and b/cache/media/e72571529152e9e28844701d1b8330186d96470e differ diff --git a/cache/media/e75ee74b71cd7c39a37a0a182f450a86430739c6 b/cache/media/e75ee74b71cd7c39a37a0a182f450a86430739c6 new file mode 100644 index 000000000..245572635 Binary files /dev/null and b/cache/media/e75ee74b71cd7c39a37a0a182f450a86430739c6 differ diff --git a/cache/media/e791f999bca7884d620acead79fde60858c4c311 b/cache/media/e791f999bca7884d620acead79fde60858c4c311 new file mode 100644 index 000000000..09325a504 Binary files /dev/null and b/cache/media/e791f999bca7884d620acead79fde60858c4c311 differ diff --git a/cache/media/e86c201089a7823535487ac8fc6e958c7f2ec377 b/cache/media/e86c201089a7823535487ac8fc6e958c7f2ec377 new file mode 100644 index 000000000..488b50fe9 Binary files /dev/null and b/cache/media/e86c201089a7823535487ac8fc6e958c7f2ec377 differ diff --git a/cache/media/e86d38421d33bb408c7a5da949fd3e062990a89e b/cache/media/e86d38421d33bb408c7a5da949fd3e062990a89e new file mode 100644 index 000000000..2802d11d7 Binary files /dev/null and b/cache/media/e86d38421d33bb408c7a5da949fd3e062990a89e differ diff --git a/cache/media/e8d1124ada1b17c0fef9358900d8b5e29bf5a5aa b/cache/media/e8d1124ada1b17c0fef9358900d8b5e29bf5a5aa new file mode 100644 index 000000000..9f209268f Binary files /dev/null and b/cache/media/e8d1124ada1b17c0fef9358900d8b5e29bf5a5aa differ diff --git a/cache/media/e8d3a9032639a9f9fb2c239cf1a10317053c7895 b/cache/media/e8d3a9032639a9f9fb2c239cf1a10317053c7895 new file mode 100644 index 000000000..3b973f34f Binary files /dev/null and b/cache/media/e8d3a9032639a9f9fb2c239cf1a10317053c7895 differ diff --git a/cache/media/e8d619f2f974b57f4715726362abb98a6c760290 b/cache/media/e8d619f2f974b57f4715726362abb98a6c760290 new file mode 100644 index 000000000..438002e40 Binary files /dev/null and b/cache/media/e8d619f2f974b57f4715726362abb98a6c760290 differ diff --git a/cache/media/e93ccd262e3a72dc719febda8753ebb926fedaf1 b/cache/media/e93ccd262e3a72dc719febda8753ebb926fedaf1 new file mode 100644 index 000000000..2d0aea62a Binary files /dev/null and b/cache/media/e93ccd262e3a72dc719febda8753ebb926fedaf1 differ diff --git a/cache/media/ea065d540f8f9e8da899a88f049b51c1d8adbd40 b/cache/media/ea065d540f8f9e8da899a88f049b51c1d8adbd40 new file mode 100644 index 000000000..0f21e47fd --- /dev/null +++ b/cache/media/ea065d540f8f9e8da899a88f049b51c1d8adbd40 @@ -0,0 +1,358 @@ +# Blender v2.76 (sub 11) OBJ File: 'boat.blend' +# www.blender.org +mtllib boat.mtl +o boats_boat +v -6.786140 -3.033999 -9.415440 +v -6.786140 -1.967150 -9.415440 +v -6.786140 -1.967150 8.793510 +v -6.786140 -3.033999 8.793510 +v 5.732520 -1.967150 -9.415440 +v 5.732520 -3.033999 -9.415440 +v 5.732520 -3.033999 8.793510 +v 5.732520 -1.967150 8.793510 +v -2.233900 -3.033999 -9.415440 +v -2.233900 -1.967150 -9.415440 +v -2.233900 -1.967150 8.793510 +v -2.233900 -3.033999 8.793510 +v 2.318340 -3.033999 -9.415440 +v 2.318340 -1.967150 -9.415440 +v 2.318340 -1.967150 8.793510 +v 2.318340 -3.033999 8.793510 +v -3.371960 -3.033999 8.793510 +v -3.371960 -1.967150 8.793510 +v -3.371960 -1.967150 -9.415440 +v -3.371960 -3.033999 -9.415440 +v 2.318340 0.276645 8.793510 +v 1.180280 -1.967150 8.793510 +v 5.732520 0.276645 8.793510 +v 5.732520 1.039180 8.793510 +v 6.870580 0.276645 8.793510 +v 6.870580 -1.967150 8.793510 +v 2.318340 1.039180 8.793510 +v 1.180280 0.276645 8.793510 +v 1.180280 1.039180 8.793510 +v 1.180280 -3.033999 8.793510 +v -2.233900 0.276645 8.793510 +v -3.371960 0.276645 8.793510 +v -2.233900 1.039180 8.793510 +v -3.371960 1.039180 8.793510 +v -6.786140 0.276645 8.793510 +v -7.786200 0.276645 8.793510 +v -7.786200 -1.967150 8.793510 +v -6.786140 1.039180 8.793510 +v 1.180280 -1.967150 -9.415440 +v 1.180280 -3.033999 -9.415440 +v 2.318340 0.276645 -9.415440 +v 1.180280 0.276645 -9.415440 +v 2.318340 1.039180 -9.415440 +v 5.732520 0.276645 -9.415440 +v 6.870580 -1.967150 -9.415440 +v 5.732520 1.039180 -9.415440 +v 6.870580 0.276645 -9.415440 +v 0.042220 1.039180 -9.415440 +v 1.180280 1.039180 -9.415440 +v 0.042220 -1.967150 -9.415440 +v -1.095840 -1.967150 -9.415440 +v -2.233900 0.276645 -9.415440 +v -3.371960 0.276645 -9.415440 +v -2.233900 1.039180 -9.415440 +v -1.095840 1.039180 -9.415440 +v -3.371960 1.039180 -9.415440 +v -6.786140 0.276645 -9.415440 +v -6.786140 1.039180 -9.415440 +v -7.786200 -1.967150 -9.415440 +v -7.786200 0.276645 -9.415440 +v -1.095840 0.156645 -12.044100 +v -1.095840 -4.601110 -9.415440 +v -1.095840 1.039181 -10.802900 +v -1.095840 2.868579 -10.802900 +v -1.095840 2.868580 -7.883420 +v -1.095840 3.746069 -12.034100 +v -1.095840 3.746070 -7.883420 +v -1.095840 0.156645 -14.294900 +v -1.095840 -4.601110 -14.284900 +v 0.042220 -4.601110 -14.284900 +v 0.042220 -4.601110 -9.415440 +v 0.042220 1.039181 -10.802900 +v 0.042220 0.156645 -12.044100 +v 0.042220 2.868579 -10.802900 +v 0.042220 0.156645 -14.294900 +v 0.042220 3.746069 -12.034100 +v 0.042220 3.746070 -7.883420 +v 0.042220 2.868580 -7.883420 +v -1.096322 -3.033999 -9.415440 +v 0.044046 -3.035397 -9.415440 +vt 1.000000 0.187500 +vt -1.000000 0.312500 +vt 1.000000 0.312500 +vt 0.687500 1.000000 +vt 0.500000 0.875000 +vt 0.500000 0.625000 +vt -1.000000 0.062500 +vt 1.000000 0.062500 +vt 1.000000 -0.000000 +vt -1.000000 0.125000 +vt 1.000000 0.125000 +vt 0.437500 0.125000 +vt 0.312500 0.500000 +vt 0.312500 0.125000 +vt 1.000000 0.625000 +vt -1.000000 0.500000 +vt 1.000000 0.500000 +vt 0.187500 0.687500 +vt -0.187500 0.687500 +vt -0.187500 0.312500 +vt 1.000000 0.812500 +vt -1.000000 0.937500 +vt -1.000000 0.812500 +vt 0.812500 0.687500 +vt 1.187500 0.687500 +vt 0.812500 0.312500 +vt 1.000000 0.562500 +vt 0.312500 0.437500 +vt 1.000000 0.437500 +vt 1.000000 0.750000 +vt -1.000000 0.875000 +vt -1.000000 0.750000 +vt -1.000000 1.000000 +vt 1.000000 1.000000 +vt 0.437500 0.625000 +vt 0.562500 0.437500 +vt 0.562500 0.625000 +vt -1.000000 0.437500 +vt -1.000000 0.000000 +vt 0.500000 0.062500 +vt 0.375000 0.750000 +vt 0.500000 0.750000 +vt -1.000000 0.250000 +vt -1.000000 0.687500 +vt 1.000000 0.687500 +vt 0.625000 0.375000 +vt 1.000000 0.375000 +vt 1.000000 0.250000 +vt 1.000000 0.937500 +vt 0.437500 0.812500 +vt 0.312500 0.312500 +vt 0.312500 0.812500 +vt 0.437500 0.312500 +vt 0.437500 0.437500 +vt 0.687500 0.812500 +vt 0.000000 0.687500 +vt 0.000000 0.812500 +vt -1.000000 0.562500 +vt 0.875000 0.812500 +vt 0.875000 0.687500 +vt 0.250000 0.312500 +vt 0.562500 0.187500 +vt 0.250000 0.187500 +vt -1.000000 0.187500 +vt 0.312500 0.625000 +vt 0.312500 0.187500 +vt 0.312500 -0.187500 +vt 1.000000 -0.187500 +vt 0.687500 0.500000 +vt -0.000000 1.000000 +vt 0.000000 0.875000 +vt 0.437500 0.500000 +vt -1.000000 0.625000 +vt 0.812500 0.187500 +vt 1.187500 0.187500 +vt 1.187500 0.312500 +vt 1.312500 0.312500 +vt 1.312500 0.687500 +vt 0.687500 0.187500 +vt 0.687500 0.312500 +vt 1.187500 0.812500 +vt 0.812500 0.812500 +vt 0.187500 0.312500 +vt 0.312500 0.687500 +vt 0.687500 0.687500 +vt -0.187500 0.187500 +vt 0.187500 0.187500 +vt -0.312500 0.687500 +vt -0.312500 0.312500 +vt 0.187500 0.812500 +vt -0.187500 0.812500 +vt 0.437500 0.687500 +vt 0.437500 0.187500 +vt 0.562500 0.812500 +vt 0.562500 0.687500 +vt 0.312500 0.562500 +vt 1.000000 0.875000 +vt 0.375000 0.062500 +vt -1.000000 0.375000 +vt 0.625000 0.500000 +vt 0.875000 0.562500 +vt 0.937500 0.812500 +vt 0.937500 0.687500 +vt 0.875000 0.937500 +vt 0.562500 0.312500 +vn -1.000000 0.000000 0.000000 +vn 1.000000 0.000000 0.000000 +vn 0.000000 0.000000 1.000000 +vn 0.000000 0.000000 -1.000000 +vn 0.000000 -1.000000 0.000000 +vn 0.000000 1.000000 0.000000 +vn 0.000000 -0.002100 -1.000000 +vn 0.001200 -1.000000 0.000000 +vn 0.000000 0.002800 -1.000000 +vn -0.001200 -1.000000 0.000200 +g boats_boat_boats_boat_None +usemtl None +s off +f 41/1/1 27/2/1 43/3/1 +f 76/4/2 74/5/2 72/6/2 +f 8/7/2 6/1/2 5/8/2 +f 15/9/1 13/10/1 16/11/1 +f 51/12/3 71/13/3 50/14/3 +f 56/15/2 32/16/2 53/17/2 +f 15/18/3 8/19/3 23/20/3 +f 22/21/2 40/22/2 39/23/2 +f 19/24/4 2/25/4 53/26/4 +f 70/27/5 62/28/5 69/29/5 +f 11/30/5 19/31/5 10/32/5 +f 4/15/5 20/33/5 17/34/5 +f 72/35/3 64/36/3 63/37/3 +f 13/8/5 7/38/5 16/7/5 +f 23/39/6 47/11/6 44/9/6 +f 68/40/7 70/41/7 69/42/7 +f 80/43/8 40/10/8 30/11/8 +f 3/15/1 1/32/1 4/30/1 +f 20/44/2 18/27/2 17/45/2 +f 74/17/5 65/46/5 64/47/5 +f 31/43/1 54/47/1 52/48/1 +f 22/47/5 14/43/5 15/48/5 +f 46/1/2 23/7/2 44/8/2 +f 57/21/1 38/22/1 58/49/1 +f 61/50/9 76/51/9 73/52/9 +f 37/45/5 2/23/5 3/21/5 +f 78/28/3 67/53/3 65/54/3 +f 64/5/1 66/4/1 63/6/1 +f 76/55/6 67/56/6 77/57/6 +f 47/17/2 26/10/2 45/11/2 +f 5/16/5 26/47/5 8/17/5 +f 33/58/6 48/59/6 55/60/6 +f 29/38/2 42/3/2 49/29/2 +f 32/44/6 52/21/6 53/45/6 +f 58/15/6 34/33/6 56/34/6 +f 27/7/6 46/29/6 43/8/6 +f 73/61/6 68/62/6 61/63/6 +f 21/58/6 42/29/6 28/38/6 +f 11/29/1 9/58/1 12/27/1 +f 59/45/1 36/2/1 60/3/1 +f 60/9/6 35/10/6 57/11/6 +f 41/1/1 21/64/1 27/2/1 +f 72/6/2 48/65/2 50/66/2 +f 50/66/2 71/67/2 70/68/2 +f 70/68/2 75/17/2 73/69/2 +f 76/4/2 77/70/2 74/5/2 +f 77/70/2 78/71/2 74/5/2 +f 50/66/2 70/68/2 73/69/2 +f 73/69/2 76/4/2 72/6/2 +f 72/6/2 50/66/2 73/69/2 +f 8/7/2 7/64/2 6/1/2 +f 15/9/1 14/39/1 13/10/1 +f 51/12/3 62/72/3 71/13/3 +f 56/15/2 34/73/2 32/16/2 +f 32/26/3 34/74/3 38/75/3 +f 35/76/3 36/77/3 37/78/3 +f 32/26/3 38/75/3 35/76/3 +f 29/66/3 33/79/3 31/80/3 +f 32/26/3 35/76/3 3/25/3 +f 28/51/3 29/66/3 31/80/3 +f 31/80/3 32/26/3 18/24/3 +f 3/25/3 4/81/3 17/82/3 +f 35/76/3 37/78/3 3/25/3 +f 21/83/3 28/51/3 22/84/3 +f 3/25/3 17/82/3 18/24/3 +f 11/85/3 12/55/3 30/52/3 +f 32/26/3 3/25/3 18/24/3 +f 11/85/3 30/52/3 22/84/3 +f 31/80/3 18/24/3 11/85/3 +f 24/86/3 27/87/3 21/83/3 +f 28/51/3 31/80/3 11/85/3 +f 11/85/3 22/84/3 28/51/3 +f 24/86/3 21/83/3 23/20/3 +f 26/88/3 25/89/3 23/20/3 +f 23/20/3 21/83/3 15/18/3 +f 15/18/3 16/90/3 7/91/3 +f 21/83/3 22/84/3 15/18/3 +f 8/19/3 26/88/3 23/20/3 +f 15/18/3 7/91/3 8/19/3 +f 22/21/2 30/49/2 40/22/2 +f 47/89/4 45/88/4 5/19/4 +f 5/19/4 6/91/4 13/90/4 +f 5/19/4 13/90/4 14/18/4 +f 44/20/4 47/89/4 5/19/4 +f 43/87/4 46/86/4 44/20/4 +f 41/83/4 43/87/4 44/20/4 +f 44/20/4 5/19/4 14/18/4 +f 39/84/4 40/52/4 80/50/4 +f 44/20/4 14/18/4 41/83/4 +f 42/51/4 41/83/4 39/84/4 +f 39/84/4 80/50/4 50/92/4 +f 41/83/4 14/18/4 39/84/4 +f 48/93/4 49/66/4 42/51/4 +f 50/92/4 48/93/4 42/51/4 +f 80/50/4 79/94/4 50/92/4 +f 50/92/4 42/51/4 39/84/4 +f 54/79/4 55/62/4 52/80/4 +f 50/92/4 79/94/4 51/95/4 +f 52/80/4 55/62/4 51/95/4 +f 51/95/4 79/94/4 10/85/4 +f 79/94/4 9/55/4 10/85/4 +f 53/26/4 52/80/4 10/85/4 +f 58/75/4 56/74/4 53/26/4 +f 59/78/4 60/77/4 57/76/4 +f 57/76/4 58/75/4 53/26/4 +f 52/80/4 51/95/4 10/85/4 +f 19/24/4 20/82/4 1/81/4 +f 53/26/4 10/85/4 19/24/4 +f 59/78/4 57/76/4 2/25/4 +f 19/24/4 1/81/4 2/25/4 +f 2/25/4 57/76/4 53/26/4 +f 70/27/5 71/96/5 62/28/5 +f 11/30/5 18/97/5 19/31/5 +f 4/15/5 1/73/5 20/33/5 +f 72/35/3 74/54/3 64/36/3 +f 13/8/5 6/29/5 7/38/5 +f 23/39/6 25/10/6 47/11/6 +f 68/40/7 75/98/7 70/41/7 +f 30/11/5 12/17/5 79/99/5 +f 79/99/10 80/43/10 30/11/10 +f 12/17/5 9/16/5 79/99/5 +f 3/15/1 2/73/1 1/32/1 +f 20/44/2 19/58/2 18/27/2 +f 74/17/5 78/100/5 65/46/5 +f 31/43/1 33/99/1 54/47/1 +f 22/47/5 39/99/5 14/43/5 +f 46/1/2 24/64/2 23/7/2 +f 57/21/1 35/23/1 38/22/1 +f 61/50/9 66/53/9 76/51/9 +f 37/45/5 59/44/5 2/23/5 +f 78/28/3 77/51/3 67/53/3 +f 62/67/1 51/66/1 69/68/1 +f 51/66/1 55/65/1 63/6/1 +f 68/17/1 69/68/1 61/69/1 +f 61/69/1 69/68/1 51/66/1 +f 61/69/1 51/66/1 63/6/1 +f 65/71/1 67/70/1 64/5/1 +f 61/69/1 63/6/1 66/4/1 +f 64/5/1 67/70/1 66/4/1 +f 76/55/6 66/85/6 67/56/6 +f 47/17/2 25/16/2 26/10/2 +f 5/16/5 45/99/5 26/47/5 +f 55/60/6 54/101/6 33/58/6 +f 33/58/6 29/22/6 48/59/6 +f 48/59/6 72/102/6 63/103/6 +f 29/22/6 49/104/6 48/59/6 +f 48/59/6 63/103/6 55/60/6 +f 29/38/2 28/2/2 42/3/2 +f 32/44/6 31/23/6 52/21/6 +f 58/15/6 38/73/6 34/33/6 +f 27/7/6 24/38/6 46/29/6 +f 73/61/6 75/105/6 68/62/6 +f 21/58/6 41/27/6 42/29/6 +f 11/29/1 10/38/1 9/58/1 +f 59/45/1 37/44/1 36/2/1 +f 60/9/6 36/39/6 35/10/6 diff --git a/cache/media/ea0d79ab7bd928595735c6a1a33da96f5b10186d b/cache/media/ea0d79ab7bd928595735c6a1a33da96f5b10186d new file mode 100644 index 000000000..f314b07b7 Binary files /dev/null and b/cache/media/ea0d79ab7bd928595735c6a1a33da96f5b10186d differ diff --git a/cache/media/eb246120427fc6bd465b6def80b57700298901ad b/cache/media/eb246120427fc6bd465b6def80b57700298901ad new file mode 100644 index 000000000..f1bcfb98f Binary files /dev/null and b/cache/media/eb246120427fc6bd465b6def80b57700298901ad differ diff --git a/cache/media/eb3025af9c53d4f939b48daa1ab354c1b2146f3e b/cache/media/eb3025af9c53d4f939b48daa1ab354c1b2146f3e new file mode 100644 index 000000000..51ecb9b32 Binary files /dev/null and b/cache/media/eb3025af9c53d4f939b48daa1ab354c1b2146f3e differ diff --git a/cache/media/eb49b0e80b806b05f2ca458f0683221fc160dc11 b/cache/media/eb49b0e80b806b05f2ca458f0683221fc160dc11 new file mode 100644 index 000000000..ce625d92b Binary files /dev/null and b/cache/media/eb49b0e80b806b05f2ca458f0683221fc160dc11 differ diff --git a/cache/media/eb561a4626a8debfd412d32a4d119c2140813813 b/cache/media/eb561a4626a8debfd412d32a4d119c2140813813 new file mode 100644 index 000000000..63cb7c4e0 Binary files /dev/null and b/cache/media/eb561a4626a8debfd412d32a4d119c2140813813 differ diff --git a/cache/media/ec0142f4c2cd0f969cf0f7ff31ef8feff58e287e b/cache/media/ec0142f4c2cd0f969cf0f7ff31ef8feff58e287e new file mode 100644 index 000000000..19cbd159b Binary files /dev/null and b/cache/media/ec0142f4c2cd0f969cf0f7ff31ef8feff58e287e differ diff --git a/cache/media/ec33b8f0eb43a04fe47cf47415be494b36a8faca b/cache/media/ec33b8f0eb43a04fe47cf47415be494b36a8faca new file mode 100644 index 000000000..d7d800e47 Binary files /dev/null and b/cache/media/ec33b8f0eb43a04fe47cf47415be494b36a8faca differ diff --git a/cache/media/eca3e09210d55b7beb4cd3d19e9c3c8c7a1f9ae6 b/cache/media/eca3e09210d55b7beb4cd3d19e9c3c8c7a1f9ae6 new file mode 100644 index 000000000..c070c57e3 Binary files /dev/null and b/cache/media/eca3e09210d55b7beb4cd3d19e9c3c8c7a1f9ae6 differ diff --git a/cache/media/ecc5175a3234ee7f42b93e4d5900c4260b7781d9 b/cache/media/ecc5175a3234ee7f42b93e4d5900c4260b7781d9 new file mode 100644 index 000000000..735ed7772 Binary files /dev/null and b/cache/media/ecc5175a3234ee7f42b93e4d5900c4260b7781d9 differ diff --git a/cache/media/ecc7d479731d339096912cd1df33faebff42e117 b/cache/media/ecc7d479731d339096912cd1df33faebff42e117 new file mode 100644 index 000000000..e8ee2fe5e Binary files /dev/null and b/cache/media/ecc7d479731d339096912cd1df33faebff42e117 differ diff --git a/cache/media/ecf3e9589cd8dd3e04a874bb03c5c5650e447771 b/cache/media/ecf3e9589cd8dd3e04a874bb03c5c5650e447771 new file mode 100644 index 000000000..be64c94c0 Binary files /dev/null and b/cache/media/ecf3e9589cd8dd3e04a874bb03c5c5650e447771 differ diff --git a/cache/media/ecf7b74ee6b31c09d25be7fb5648acf753bd0878 b/cache/media/ecf7b74ee6b31c09d25be7fb5648acf753bd0878 new file mode 100644 index 000000000..d5a1be79b Binary files /dev/null and b/cache/media/ecf7b74ee6b31c09d25be7fb5648acf753bd0878 differ diff --git a/cache/media/ed0e042cbbf9a9ecea9a1ed1637a84e3bd95915b b/cache/media/ed0e042cbbf9a9ecea9a1ed1637a84e3bd95915b new file mode 100644 index 000000000..99ff309fa Binary files /dev/null and b/cache/media/ed0e042cbbf9a9ecea9a1ed1637a84e3bd95915b differ diff --git a/cache/media/ed5b3290c4950249d535fba07a0f7dfc8d464259 b/cache/media/ed5b3290c4950249d535fba07a0f7dfc8d464259 new file mode 100644 index 000000000..8f4a49c4b Binary files /dev/null and b/cache/media/ed5b3290c4950249d535fba07a0f7dfc8d464259 differ diff --git a/cache/media/ee0708ea843fd8e27d205389d4e42aed1260301a b/cache/media/ee0708ea843fd8e27d205389d4e42aed1260301a new file mode 100644 index 000000000..5c0054c6c Binary files /dev/null and b/cache/media/ee0708ea843fd8e27d205389d4e42aed1260301a differ diff --git a/cache/media/ee1e10ea2ee806570209821f23882792409480db b/cache/media/ee1e10ea2ee806570209821f23882792409480db new file mode 100644 index 000000000..fede4af32 Binary files /dev/null and b/cache/media/ee1e10ea2ee806570209821f23882792409480db differ diff --git a/cache/media/ee2422be3b0ca9934b339907e812a017e5bbca87 b/cache/media/ee2422be3b0ca9934b339907e812a017e5bbca87 new file mode 100644 index 000000000..e81716a59 Binary files /dev/null and b/cache/media/ee2422be3b0ca9934b339907e812a017e5bbca87 differ diff --git a/cache/media/ee284616c4e00f678a2328c2c0353fddd19b5c56 b/cache/media/ee284616c4e00f678a2328c2c0353fddd19b5c56 new file mode 100644 index 000000000..a6ac2e209 Binary files /dev/null and b/cache/media/ee284616c4e00f678a2328c2c0353fddd19b5c56 differ diff --git a/cache/media/eee769041e4765926474c65715eb907a98a3342c b/cache/media/eee769041e4765926474c65715eb907a98a3342c new file mode 100644 index 000000000..f25a67a82 Binary files /dev/null and b/cache/media/eee769041e4765926474c65715eb907a98a3342c differ diff --git a/cache/media/ef6f53c33a5f0c11627c1b73f34671e3fef6d2d9 b/cache/media/ef6f53c33a5f0c11627c1b73f34671e3fef6d2d9 new file mode 100644 index 000000000..6d1386b90 Binary files /dev/null and b/cache/media/ef6f53c33a5f0c11627c1b73f34671e3fef6d2d9 differ diff --git a/cache/media/ef8f3e1d4d30995ae918638e58e3624b1c64e5cb b/cache/media/ef8f3e1d4d30995ae918638e58e3624b1c64e5cb new file mode 100644 index 000000000..5cd3e681c Binary files /dev/null and b/cache/media/ef8f3e1d4d30995ae918638e58e3624b1c64e5cb differ diff --git a/cache/media/efa3425ea5abef9139eaf421098122edd5aae7f2 b/cache/media/efa3425ea5abef9139eaf421098122edd5aae7f2 new file mode 100644 index 000000000..41e5a04a3 Binary files /dev/null and b/cache/media/efa3425ea5abef9139eaf421098122edd5aae7f2 differ diff --git a/cache/media/f0277c2d3ebd6cba799d1fb61342f13db27bc961 b/cache/media/f0277c2d3ebd6cba799d1fb61342f13db27bc961 new file mode 100644 index 000000000..93602322c Binary files /dev/null and b/cache/media/f0277c2d3ebd6cba799d1fb61342f13db27bc961 differ diff --git a/cache/media/f0eb691386287017343c1e3232217fcfe08c7dd2 b/cache/media/f0eb691386287017343c1e3232217fcfe08c7dd2 new file mode 100644 index 000000000..05048e32d Binary files /dev/null and b/cache/media/f0eb691386287017343c1e3232217fcfe08c7dd2 differ diff --git a/cache/media/f0f6484aa69cf635b0de8018fd9339694909d0ce b/cache/media/f0f6484aa69cf635b0de8018fd9339694909d0ce new file mode 100644 index 000000000..73fb3ca8f Binary files /dev/null and b/cache/media/f0f6484aa69cf635b0de8018fd9339694909d0ce differ diff --git a/cache/media/f17caa4459ead41e60ce1fd15dc25ee434f7505b b/cache/media/f17caa4459ead41e60ce1fd15dc25ee434f7505b new file mode 100644 index 000000000..3e6bd5262 Binary files /dev/null and b/cache/media/f17caa4459ead41e60ce1fd15dc25ee434f7505b differ diff --git a/cache/media/f2a4f9c047d36f754bfe77e5cfe487003bf6066b b/cache/media/f2a4f9c047d36f754bfe77e5cfe487003bf6066b new file mode 100644 index 000000000..777e10c00 Binary files /dev/null and b/cache/media/f2a4f9c047d36f754bfe77e5cfe487003bf6066b differ diff --git a/cache/media/f2a6399331dce44c39b2e84c2061a774bc2f37b2 b/cache/media/f2a6399331dce44c39b2e84c2061a774bc2f37b2 new file mode 100644 index 000000000..6952670a8 Binary files /dev/null and b/cache/media/f2a6399331dce44c39b2e84c2061a774bc2f37b2 differ diff --git a/cache/media/f2d1c276295b5364a9c64e46fbedf57a7ffee3c1 b/cache/media/f2d1c276295b5364a9c64e46fbedf57a7ffee3c1 new file mode 100644 index 000000000..a9e566bbd Binary files /dev/null and b/cache/media/f2d1c276295b5364a9c64e46fbedf57a7ffee3c1 differ diff --git a/cache/media/f3a7d8c62007f5ba3a92138d29f2b1851fa3b878 b/cache/media/f3a7d8c62007f5ba3a92138d29f2b1851fa3b878 new file mode 100644 index 000000000..b2807c5fa Binary files /dev/null and b/cache/media/f3a7d8c62007f5ba3a92138d29f2b1851fa3b878 differ diff --git a/cache/media/f40949b76e1dc4f2f8196aeb0edca1ba8cf19212 b/cache/media/f40949b76e1dc4f2f8196aeb0edca1ba8cf19212 new file mode 100644 index 000000000..30c67caa1 Binary files /dev/null and b/cache/media/f40949b76e1dc4f2f8196aeb0edca1ba8cf19212 differ diff --git a/cache/media/f4784512cba4197c2139177c2e812645143aa416 b/cache/media/f4784512cba4197c2139177c2e812645143aa416 new file mode 100644 index 000000000..379cc8ec2 Binary files /dev/null and b/cache/media/f4784512cba4197c2139177c2e812645143aa416 differ diff --git a/cache/media/f48d86f37d589e2c909da8792ffff0b30729ec62 b/cache/media/f48d86f37d589e2c909da8792ffff0b30729ec62 new file mode 100644 index 000000000..85337546f Binary files /dev/null and b/cache/media/f48d86f37d589e2c909da8792ffff0b30729ec62 differ diff --git a/cache/media/f4b0063e18420fb4ce14ebe7ac547d77b19e3620 b/cache/media/f4b0063e18420fb4ce14ebe7ac547d77b19e3620 new file mode 100644 index 000000000..100fe15fa Binary files /dev/null and b/cache/media/f4b0063e18420fb4ce14ebe7ac547d77b19e3620 differ diff --git a/cache/media/f4efc5076eafcf8b9401ae8553b8425edd11b14d b/cache/media/f4efc5076eafcf8b9401ae8553b8425edd11b14d new file mode 100644 index 000000000..a4c180d20 Binary files /dev/null and b/cache/media/f4efc5076eafcf8b9401ae8553b8425edd11b14d differ diff --git a/cache/media/f50fc4f7499cc6eaa8a58b74d28eb7363d8de1c9 b/cache/media/f50fc4f7499cc6eaa8a58b74d28eb7363d8de1c9 new file mode 100644 index 000000000..5aac595b9 Binary files /dev/null and b/cache/media/f50fc4f7499cc6eaa8a58b74d28eb7363d8de1c9 differ diff --git a/cache/media/f5265fb23f6dda96fc76d26acf157186625ae9d7 b/cache/media/f5265fb23f6dda96fc76d26acf157186625ae9d7 new file mode 100644 index 000000000..81a7b2157 Binary files /dev/null and b/cache/media/f5265fb23f6dda96fc76d26acf157186625ae9d7 differ diff --git a/cache/media/f5a5fd1a46e632a1862c459004411a3fd50c46b5 b/cache/media/f5a5fd1a46e632a1862c459004411a3fd50c46b5 new file mode 100644 index 000000000..058e04277 Binary files /dev/null and b/cache/media/f5a5fd1a46e632a1862c459004411a3fd50c46b5 differ diff --git a/cache/media/f5cb993de46f7447fb15ad851a0160c955b57369 b/cache/media/f5cb993de46f7447fb15ad851a0160c955b57369 new file mode 100644 index 000000000..7f5f96822 Binary files /dev/null and b/cache/media/f5cb993de46f7447fb15ad851a0160c955b57369 differ diff --git a/cache/media/f5e90a199ff358dba588289b30c352555c683a47 b/cache/media/f5e90a199ff358dba588289b30c352555c683a47 new file mode 100644 index 000000000..cb11321be Binary files /dev/null and b/cache/media/f5e90a199ff358dba588289b30c352555c683a47 differ diff --git a/cache/media/f669ebbc50b7a8724d015315a5adb71975a34e03 b/cache/media/f669ebbc50b7a8724d015315a5adb71975a34e03 new file mode 100644 index 000000000..fd665a40c Binary files /dev/null and b/cache/media/f669ebbc50b7a8724d015315a5adb71975a34e03 differ diff --git a/cache/media/f6aa265b34fc86b44d8f5f4c5dc74535c36e4015 b/cache/media/f6aa265b34fc86b44d8f5f4c5dc74535c36e4015 new file mode 100644 index 000000000..d52d8ccd7 Binary files /dev/null and b/cache/media/f6aa265b34fc86b44d8f5f4c5dc74535c36e4015 differ diff --git a/cache/media/f6c3b6e6c80e05c6712d26e507f4c420ef6c523b b/cache/media/f6c3b6e6c80e05c6712d26e507f4c420ef6c523b new file mode 100644 index 000000000..53cc9e78d Binary files /dev/null and b/cache/media/f6c3b6e6c80e05c6712d26e507f4c420ef6c523b differ diff --git a/cache/media/f6c49203c7da25fda8d62153a2b78cd3b2bab1d3 b/cache/media/f6c49203c7da25fda8d62153a2b78cd3b2bab1d3 new file mode 100644 index 000000000..062452547 Binary files /dev/null and b/cache/media/f6c49203c7da25fda8d62153a2b78cd3b2bab1d3 differ diff --git a/cache/media/f6c52928f62dd72a5cf7205f2d3327094709484b b/cache/media/f6c52928f62dd72a5cf7205f2d3327094709484b new file mode 100644 index 000000000..9084ac24d Binary files /dev/null and b/cache/media/f6c52928f62dd72a5cf7205f2d3327094709484b differ diff --git a/cache/media/f72f658c7896b34f7f70608300525b4c13242758 b/cache/media/f72f658c7896b34f7f70608300525b4c13242758 new file mode 100644 index 000000000..8100b0132 Binary files /dev/null and b/cache/media/f72f658c7896b34f7f70608300525b4c13242758 differ diff --git a/cache/media/f74b4efc2f4d9cc45edf674c3a1cd57f7e5d6912 b/cache/media/f74b4efc2f4d9cc45edf674c3a1cd57f7e5d6912 new file mode 100644 index 000000000..25fc47a4d Binary files /dev/null and b/cache/media/f74b4efc2f4d9cc45edf674c3a1cd57f7e5d6912 differ diff --git a/cache/media/f75b1b94dc0bcafbc3efb8f46fd8a7da58fc69d5 b/cache/media/f75b1b94dc0bcafbc3efb8f46fd8a7da58fc69d5 new file mode 100644 index 000000000..021d3dc79 Binary files /dev/null and b/cache/media/f75b1b94dc0bcafbc3efb8f46fd8a7da58fc69d5 differ diff --git a/cache/media/f7e6facca246851f83af3c39fb55a39432ce2218 b/cache/media/f7e6facca246851f83af3c39fb55a39432ce2218 new file mode 100644 index 000000000..5efb02807 Binary files /dev/null and b/cache/media/f7e6facca246851f83af3c39fb55a39432ce2218 differ diff --git a/cache/media/f7f67890233e10b4b4c3b6c885a26be655cc513d b/cache/media/f7f67890233e10b4b4c3b6c885a26be655cc513d new file mode 100644 index 000000000..434374f32 Binary files /dev/null and b/cache/media/f7f67890233e10b4b4c3b6c885a26be655cc513d differ diff --git a/cache/media/f8684d770e8d83585ca04f0271fc47faca05d4e5 b/cache/media/f8684d770e8d83585ca04f0271fc47faca05d4e5 new file mode 100644 index 000000000..a95bb3484 Binary files /dev/null and b/cache/media/f8684d770e8d83585ca04f0271fc47faca05d4e5 differ diff --git a/cache/media/f86deecbe7ceec67add59ceeb3442fa2bde2f7eb b/cache/media/f86deecbe7ceec67add59ceeb3442fa2bde2f7eb new file mode 100644 index 000000000..50bbf2050 Binary files /dev/null and b/cache/media/f86deecbe7ceec67add59ceeb3442fa2bde2f7eb differ diff --git a/cache/media/f97c933bb5ba5f24adb09d1276b12027500cc798 b/cache/media/f97c933bb5ba5f24adb09d1276b12027500cc798 new file mode 100644 index 000000000..25fa7a0bf Binary files /dev/null and b/cache/media/f97c933bb5ba5f24adb09d1276b12027500cc798 differ diff --git a/cache/media/f9d3569972fee9e2af839893374811deade52632 b/cache/media/f9d3569972fee9e2af839893374811deade52632 new file mode 100644 index 000000000..6d114e7a1 Binary files /dev/null and b/cache/media/f9d3569972fee9e2af839893374811deade52632 differ diff --git a/cache/media/f9ef235bc1af7af04b43184ad5394b2c7044a5d6 b/cache/media/f9ef235bc1af7af04b43184ad5394b2c7044a5d6 new file mode 100644 index 000000000..532e16fbc Binary files /dev/null and b/cache/media/f9ef235bc1af7af04b43184ad5394b2c7044a5d6 differ diff --git a/cache/media/fa596609e84fe537c87793a398fc79c643c17fe1 b/cache/media/fa596609e84fe537c87793a398fc79c643c17fe1 new file mode 100644 index 000000000..77286b53d Binary files /dev/null and b/cache/media/fa596609e84fe537c87793a398fc79c643c17fe1 differ diff --git a/cache/media/fa6f28b0373a059d80785cae3f68085de5b77227 b/cache/media/fa6f28b0373a059d80785cae3f68085de5b77227 new file mode 100644 index 000000000..def1cf0b1 Binary files /dev/null and b/cache/media/fa6f28b0373a059d80785cae3f68085de5b77227 differ diff --git a/cache/media/faaf862a22186c66231fdf713f25240135d57d85 b/cache/media/faaf862a22186c66231fdf713f25240135d57d85 new file mode 100644 index 000000000..c323e948c Binary files /dev/null and b/cache/media/faaf862a22186c66231fdf713f25240135d57d85 differ diff --git a/cache/media/faf3a87f7b1fc0e0ecd5c60993837fb0f537980e b/cache/media/faf3a87f7b1fc0e0ecd5c60993837fb0f537980e new file mode 100644 index 000000000..3e3ec851f Binary files /dev/null and b/cache/media/faf3a87f7b1fc0e0ecd5c60993837fb0f537980e differ diff --git a/cache/media/fbeb38a33f63b02e784e54856d3b6ee26ef854b3 b/cache/media/fbeb38a33f63b02e784e54856d3b6ee26ef854b3 new file mode 100644 index 000000000..3a71d940c Binary files /dev/null and b/cache/media/fbeb38a33f63b02e784e54856d3b6ee26ef854b3 differ diff --git a/cache/media/fc39722c13b7cf32cdf199efac517ce85f4a3f6f b/cache/media/fc39722c13b7cf32cdf199efac517ce85f4a3f6f new file mode 100644 index 000000000..4e4d84e43 Binary files /dev/null and b/cache/media/fc39722c13b7cf32cdf199efac517ce85f4a3f6f differ diff --git a/cache/media/fcb3f84724fffca9d6f7d20715059254f6694cc2 b/cache/media/fcb3f84724fffca9d6f7d20715059254f6694cc2 new file mode 100644 index 000000000..66f1042a4 Binary files /dev/null and b/cache/media/fcb3f84724fffca9d6f7d20715059254f6694cc2 differ diff --git a/cache/media/fd1f58227e26f7c789b2bf9145db1af2bfe76e95 b/cache/media/fd1f58227e26f7c789b2bf9145db1af2bfe76e95 new file mode 100644 index 000000000..105a2d257 Binary files /dev/null and b/cache/media/fd1f58227e26f7c789b2bf9145db1af2bfe76e95 differ diff --git a/cache/media/fd90fffce8afc55c4521d39f78b8435a7963245b b/cache/media/fd90fffce8afc55c4521d39f78b8435a7963245b new file mode 100644 index 000000000..32267a6bf Binary files /dev/null and b/cache/media/fd90fffce8afc55c4521d39f78b8435a7963245b differ diff --git a/cache/media/fde091cb7cac94614ed3422927fc15200fb15d6d b/cache/media/fde091cb7cac94614ed3422927fc15200fb15d6d new file mode 100644 index 000000000..e8fdf84bd Binary files /dev/null and b/cache/media/fde091cb7cac94614ed3422927fc15200fb15d6d differ diff --git a/cache/media/fde748b1834710e9b9bf69bf2c5884ac82a9bd60 b/cache/media/fde748b1834710e9b9bf69bf2c5884ac82a9bd60 new file mode 100644 index 000000000..6b515f66d Binary files /dev/null and b/cache/media/fde748b1834710e9b9bf69bf2c5884ac82a9bd60 differ diff --git a/cache/media/fe434e87df35cad3fefa3df9d955af0fef9ad8ed b/cache/media/fe434e87df35cad3fefa3df9d955af0fef9ad8ed new file mode 100644 index 000000000..8f05e770d Binary files /dev/null and b/cache/media/fe434e87df35cad3fefa3df9d955af0fef9ad8ed differ diff --git a/cache/media/fead5adde046be44775a2d9b444eeeb23f41a7a5 b/cache/media/fead5adde046be44775a2d9b444eeeb23f41a7a5 new file mode 100644 index 000000000..777bd606f Binary files /dev/null and b/cache/media/fead5adde046be44775a2d9b444eeeb23f41a7a5 differ diff --git a/cache/media/feef4dfd5c67dc1cc71657543542dcf1a0e3bb3f b/cache/media/feef4dfd5c67dc1cc71657543542dcf1a0e3bb3f new file mode 100644 index 000000000..89d6799b5 Binary files /dev/null and b/cache/media/feef4dfd5c67dc1cc71657543542dcf1a0e3bb3f differ diff --git a/cache/media/ff21e59def255637000aed8fc1c709a18d28875e b/cache/media/ff21e59def255637000aed8fc1c709a18d28875e new file mode 100644 index 000000000..f1d5b8ab7 Binary files /dev/null and b/cache/media/ff21e59def255637000aed8fc1c709a18d28875e differ diff --git a/cache/media/ff2433eeef53bdf55ec9f63f496d7ac24f947995 b/cache/media/ff2433eeef53bdf55ec9f63f496d7ac24f947995 new file mode 100644 index 000000000..eb99c4ea2 Binary files /dev/null and b/cache/media/ff2433eeef53bdf55ec9f63f496d7ac24f947995 differ diff --git a/cache/media/ff85e3456cb72ae0abe0107968ce0c2e054bd2b3 b/cache/media/ff85e3456cb72ae0abe0107968ce0c2e054bd2b3 new file mode 100644 index 000000000..f9883c669 Binary files /dev/null and b/cache/media/ff85e3456cb72ae0abe0107968ce0c2e054bd2b3 differ diff --git a/cache/media/ff949dcf2fe3f25b7896979a703c02c0585e3a86 b/cache/media/ff949dcf2fe3f25b7896979a703c02c0585e3a86 new file mode 100644 index 000000000..a7543a1f8 Binary files /dev/null and b/cache/media/ff949dcf2fe3f25b7896979a703c02c0585e3a86 differ diff --git a/cmake_install.cmake b/cmake_install.cmake new file mode 100644 index 000000000..ebaa4ce82 --- /dev/null +++ b/cmake_install.cmake @@ -0,0 +1,117 @@ +# Install script for directory: /home/foghrye4/minetest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE DIRECTORY FILES "/home/foghrye4/minetest/builtin") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE DIRECTORY FILES "/home/foghrye4/minetest/client") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE DIRECTORY FILES "/home/foghrye4/minetest/games" REGEX "/\\.git[^/]*$" EXCLUDE) +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./textures/base" TYPE DIRECTORY FILES "/home/foghrye4/minetest/textures/base/pack") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./mods" TYPE FILE FILES "/home/foghrye4/minetest/mods/mods_here.txt") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./textures" TYPE FILE FILES "/home/foghrye4/minetest/textures/texture_packs_here.txt") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE DIRECTORY FILES "/home/foghrye4/minetest/fonts") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/doc" TYPE FILE FILES "/home/foghrye4/minetest/README.txt") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/doc" TYPE FILE FILES "/home/foghrye4/minetest/doc/lua_api.txt") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/doc" TYPE FILE FILES "/home/foghrye4/minetest/doc/menu_lua_api.txt") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/doc" TYPE FILE FILES "/home/foghrye4/minetest/doc/world_format.txt") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE FILES "/home/foghrye4/minetest/minetest.conf.example") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/unix/man/man6" TYPE FILE FILES + "/home/foghrye4/minetest/doc/minetest.6" + "/home/foghrye4/minetest/doc/minetestserver.6" + ) +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/unix/applications" TYPE FILE FILES "/home/foghrye4/minetest/misc/minetest.desktop") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/unix/appdata" TYPE FILE FILES "/home/foghrye4/minetest/misc/minetest.appdata.xml") +endif() + +if(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/unix/icons/hicolor/scalable/apps" TYPE FILE FILES "/home/foghrye4/minetest/misc/minetest.svg") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/foghrye4/minetest/src/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/foghrye4/minetest/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/doc/Doxyfile b/doc/Doxyfile new file mode 100644 index 000000000..09f4e7020 --- /dev/null +++ b/doc/Doxyfile @@ -0,0 +1,53 @@ +# Project properties +PROJECT_NAME = Minetest +PROJECT_NUMBER = 0.4.13-dev +PROJECT_LOGO = /home/foghrye4/minetest/misc/minetest.svg + +# Parsing +JAVADOC_AUTOBRIEF = YES +EXTRACT_ALL = YES +EXTRACT_PRIVATE = YES +EXTRACT_STATIC = YES +SORT_MEMBERS_CTORS_1ST = YES +WARN_IF_UNDOCUMENTED = NO +BUILTIN_STL_SUPPORT = YES +PREDEFINED = "USE_SPATIAL=1" \ + "USE_LEVELDB=1" \ + "USE_REDIS=1" \ + "USE_SOUND=1" \ + "USE_CURL=1" \ + "USE_FREETYPE=1" \ + "USE_GETTEXT=1" + +# Input +RECURSIVE = NO +STRIP_FROM_PATH = /home/foghrye4/minetest/src +INPUT = /home/foghrye4/minetest/doc/main_page.dox \ + /home/foghrye4/minetest/src/ \ + /home/foghrye4/minetest/src/client \ + /home/foghrye4/minetest/src/network \ + /home/foghrye4/minetest/src/util \ + /home/foghrye4/minetest/src/script \ + /home/foghrye4/minetest/src/script/common \ + /home/foghrye4/minetest/src/script/cpp_api \ + /home/foghrye4/minetest/src/script/lua_api \ + /home/foghrye4/minetest/src/threading + +# Dot graphs +HAVE_DOT = NO +CALL_GRAPH = YES +CALLER_GRAPH = YES +MAX_DOT_GRAPH_DEPTH = 3 +DOT_MULTI_TARGETS = YES +DOT_IMAGE_FORMAT = svg + +# Output +GENERATE_LATEX = NO +REFERENCED_BY_RELATION = YES +REFERENCES_RELATION = YES +SEARCHENGINE = YES +DISABLE_INDEX = YES +GENERATE_TREEVIEW = YES +HTML_DYNAMIC_SECTIONS = YES +HTML_TIMESTAMP = YES + diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 3bb75ba04..840ac2c89 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -1816,14 +1816,6 @@ Call these functions only at load time! * `minetest.register_craftitem(name, item definition)` * `minetest.register_alias(name, convert_to)` * `minetest.register_craft(recipe)` - * Check recipe table syntax for different types below. -* `minetest.clear_craft(recipe)` - * Will erase existing craft based either on output item or on input recipe. - * Use a same recipe table syntax as for `minetest.register_craft(recipe)`, - but specify either output or input only. If you specify both, input will be ignored. - * If there is no erase candidate founded, Lua exception will be thrown. - * Warning! Type field ("shaped","cooking" or any other) will be ignored if recipe - contain output. Will be erased all possible crafting recipe independent from crafting method. * `minetest.register_ore(ore definition)` * `minetest.register_decoration(decoration definition)` * `minetest.override_item(name, redefinition)` diff --git a/doc/lua_api.txt~ b/doc/lua_api.txt~ new file mode 100644 index 000000000..3bb75ba04 --- /dev/null +++ b/doc/lua_api.txt~ @@ -0,0 +1,3974 @@ +Minetest Lua Modding API Reference 0.4.13 +========================================= +* More information at +* Developer Wiki: + +Introduction +------------ +Content and functionality can be added to Minetest 0.4 by using Lua +scripting in run-time loaded mods. + +A mod is a self-contained bunch of scripts, textures and other related +things that is loaded by and interfaces with Minetest. + +Mods are contained and ran solely on the server side. Definitions and media +files are automatically transferred to the client. + +If you see a deficiency in the API, feel free to attempt to add the +functionality in the engine and API. You can send such improvements as +source code patches to . + +Programming in Lua +------------------ +If you have any difficulty in understanding this, please read +[Programming in Lua](http://www.lua.org/pil/). + +Startup +------- +Mods are loaded during server startup from the mod load paths by running +the `init.lua` scripts in a shared environment. + +Paths +----- +* `RUN_IN_PLACE=1` (Windows release, local build) + * `$path_user`: + * Linux: `` + * Windows: `` + * `$path_share` + * Linux: `` + * Windows: `` +* `RUN_IN_PLACE=0`: (Linux release) + * `$path_share` + * Linux: `/usr/share/minetest` + * Windows: `/minetest-0.4.x` + * `$path_user`: + * Linux: `$HOME/.minetest` + * Windows: `C:/users//AppData/minetest` (maybe) + +Games +----- +Games are looked up from: + +* `$path_share/games/gameid/` +* `$path_user/games/gameid/` + +where `gameid` is unique to each game. + +The game directory contains the file `game.conf`, which contains these fields: + + name = + +e.g. + + name = Minetest + +The game directory can contain the file minetest.conf, which will be used +to set default settings when running the particular game. +It can also contain a settingtypes.txt in the same format as the one in builtin. +This settingtypes.txt will be parsed by the menu and the settings will be displayed in the "Games" category in the settings tab. + +### Menu images + +Games can provide custom main menu images. They are put inside a `menu` directory inside the game directory. + +The images are named `$identifier.png`, where `$identifier` is one of `overlay,background,footer,header`. +If you want to specify multiple images for one identifier, add additional images named like `$identifier.$n.png`, with an ascending number $n starting with 1, +and a random image will be chosen from the provided ones. + + +Mod load path +------------- +Generic: + +* `$path_share/games/gameid/mods/` +* `$path_share/mods/` +* `$path_user/games/gameid/mods/` +* `$path_user/mods/` (User-installed mods) +* `$worldpath/worldmods/` + +In a run-in-place version (e.g. the distributed windows version): + +* `minetest-0.4.x/games/gameid/mods/` +* `minetest-0.4.x/mods/` (User-installed mods) +* `minetest-0.4.x/worlds/worldname/worldmods/` + +On an installed version on Linux: + +* `/usr/share/minetest/games/gameid/mods/` +* `$HOME/.minetest/mods/` (User-installed mods) +* `$HOME/.minetest/worlds/worldname/worldmods` + +Mod load path for world-specific games +-------------------------------------- +It is possible to include a game in a world; in this case, no mods or +games are loaded or checked from anywhere else. + +This is useful for e.g. adventure worlds. + +This happens if the following directory exists: + + $world/game/ + +Mods should be then be placed in: + + $world/game/mods/ + +Modpack support +---------------- +Mods can be put in a subdirectory, if the parent directory, which otherwise +should be a mod, contains a file named `modpack.txt`. This file shall be +empty, except for lines starting with `#`, which are comments. + +Mod directory structure +------------------------ + + mods + |-- modname + | |-- depends.txt + | |-- screenshot.png + | |-- description.txt + | |-- settingtypes.txt + | |-- init.lua + | |-- models + | |-- textures + | | |-- modname_stuff.png + | | `-- modname_something_else.png + | |-- sounds + | |-- media + | `-- + `-- another + + +### modname +The location of this directory can be fetched by using +`minetest.get_modpath(modname)`. + +### `depends.txt` +List of mods that have to be loaded before loading this mod. + +A single line contains a single modname. + +Optional dependencies can be defined by appending a question mark +to a single modname. Their meaning is that if the specified mod +is missing, that does not prevent this mod from being loaded. + +### `screenshot.png` +A screenshot shown in modmanager within mainmenu. + +### `description.txt` +A File containing description to be shown within mainmenu. + +### `settingtypes.txt` +A file in the same format as the one in builtin. It will be parsed by the +settings menu and the settings will be displayed in the "Mods" category. + +### `init.lua` +The main Lua script. Running this script should register everything it +wants to register. Subsequent execution depends on minetest calling the +registered callbacks. + +`minetest.setting_get(name)` and `minetest.setting_getbool(name)` can be used +to read custom or existing settings at load time, if necessary. + +### `models` +Models for entities or meshnodes. + +### `textures`, `sounds`, `media` +Media files (textures, sounds, whatever) that will be transferred to the +client and will be available for use by the mod. + +Naming convention for registered textual names +---------------------------------------------- +Registered names should generally be in this format: + + "modname:" ( can have characters a-zA-Z0-9_) + +This is to prevent conflicting names from corrupting maps and is +enforced by the mod loader. + +### Example +In the mod `experimental`, there is the ideal item/node/entity name `tnt`. +So the name should be `experimental:tnt`. + +Enforcement can be overridden by prefixing the name with `:`. This can +be used for overriding the registrations of some other mod. + +Example: Any mod can redefine `experimental:tnt` by using the name + + :experimental:tnt + +when registering it. +(also that mod is required to have `experimental` as a dependency) + +The `:` prefix can also be used for maintaining backwards compatibility. + +### Aliases +Aliases can be added by using `minetest.register_alias(name, convert_to)`. + +This will make Minetest to convert things called name to things called +`convert_to`. + +This can be used for maintaining backwards compatibility. + +This can be also used for setting quick access names for things, e.g. if +you have an item called `epiclylongmodname:stuff`, you could do + + minetest.register_alias("stuff", "epiclylongmodname:stuff") + +and be able to use `/giveme stuff`. + +Textures +-------- +Mods should generally prefix their textures with `modname_`, e.g. given +the mod name `foomod`, a texture could be called: + + foomod_foothing.png + +Textures are referred to by their complete name, or alternatively by +stripping out the file extension: + +* e.g. `foomod_foothing.png` +* e.g. `foomod_foothing` + +Texture modifiers +----------------- +There are various texture modifiers that can be used +to generate textures on-the-fly. + +### Texture overlaying +Textures can be overlaid by putting a `^` between them. + +Example: + + default_dirt.png^default_grass_side.png + +`default_grass_side.png` is overlayed over `default_dirt.png`. + +### Texture grouping +Textures can be grouped together by enclosing them in `(` and `)`. + +Example: `cobble.png^(thing1.png^thing2.png)` + +A texture for `thing1.png^thing2.png` is created and the resulting +texture is overlaid over `cobble.png`. + +### Advanced texture modifiers + +#### `[crack::

` +* `` = animation frame count +* `

` = current animation frame + +Draw a step of the crack animation on the texture. + +Example: + + default_cobble.png^[crack:10:1 + +#### `[combine:x:,=:,=:...` +* `` = width +* `` = height +* `` = x position +* `` = y position +* `` = texture to combine + +Creates a texture of size `` times `` and blits the listed files to their +specified coordinates. + +Example: + + [combine:16x32:0,0=default_cobble.png:0,16=default_wood.png + +#### `[brighten` +Brightens the texture. + +Example: + + tnt_tnt_side.png^[brighten + +#### `[noalpha` +Makes the texture completely opaque. + +Example: + + default_leaves.png^[noalpha + +#### `[makealpha:,,` +Convert one color to transparency. + +Example: + + default_cobble.png^[makealpha:128,128,128 + +#### `[transform` +* `` = transformation(s) to apply + +Rotates and/or flips the image. + +`` can be a number (between 0 and 7) or a transform name. +Rotations are counter-clockwise. + + 0 I identity + 1 R90 rotate by 90 degrees + 2 R180 rotate by 180 degrees + 3 R270 rotate by 270 degrees + 4 FX flip X + 5 FXR90 flip X then rotate by 90 degrees + 6 FY flip Y + 7 FYR90 flip Y then rotate by 90 degrees + +Example: + + default_stone.png^[transformFXR90 + +#### `[inventorycube{{{` +`^` is replaced by `&` in texture names. + +Create an inventory cube texture using the side textures. + +Example: + + [inventorycube{grass.png{dirt.png&grass_side.png{dirt.png&grass_side.png + +Creates an inventorycube with `grass.png`, `dirt.png^grass_side.png` and +`dirt.png^grass_side.png` textures + +#### `[lowpart::` +Blit the lower ``% part of `` on the texture. + +Example: + + base.png^[lowpart:25:overlay.png + +#### `[verticalframe::` +* `` = animation frame count +* `` = current animation frame + +Crops the texture to a frame of a vertical animation. + +Example: + + default_torch_animated.png^[verticalframe:16:8 + +#### `[mask:` +Apply a mask to the base image. + +The mask is applied using binary AND. + +#### `[colorize::` +Colorize the textures with the given color. +`` is specified as a `ColorString`. +`` is an int ranging from 0 to 255 or the word "`alpha`". If +it is an int, then it specifies how far to interpolate between the +colors where 0 is only the texture color and 255 is only ``. If +omitted, the alpha of `` will be used as the ratio. If it is +the word "`alpha`", then each texture pixel will contain the RGB of +`` and the alpha of `` multiplied by the alpha of the +texture pixel. + +Sounds +------ +Only Ogg Vorbis files are supported. + +For positional playing of sounds, only single-channel (mono) files are +supported. Otherwise OpenAL will play them non-positionally. + +Mods should generally prefix their sounds with `modname_`, e.g. given +the mod name "`foomod`", a sound could be called: + + foomod_foosound.ogg + +Sounds are referred to by their name with a dot, a single digit and the +file extension stripped out. When a sound is played, the actual sound file +is chosen randomly from the matching sounds. + +When playing the sound `foomod_foosound`, the sound is chosen randomly +from the available ones of the following files: + +* `foomod_foosound.ogg` +* `foomod_foosound.0.ogg` +* `foomod_foosound.1.ogg` +* (...) +* `foomod_foosound.9.ogg` + +Examples of sound parameter tables: + + -- Play location-less on all clients + { + gain = 1.0, -- default + } + -- Play location-less to a player + { + to_player = name, + gain = 1.0, -- default + } + -- Play in a location + { + pos = {x=1,y=2,z=3}, + gain = 1.0, -- default + max_hear_distance = 32, -- default, uses an euclidean metric + } + -- Play connected to an object, looped + { + object = , + gain = 1.0, -- default + max_hear_distance = 32, -- default, uses an euclidean metric + loop = true, -- only sounds connected to objects can be looped + } + +### `SimpleSoundSpec` +* e.g. `""` +* e.g. `"default_place_node"` +* e.g. `{}` +* e.g. `{name="default_place_node"}` +* e.g. `{name="default_place_node", gain=1.0}` + +Registered definitions of stuff +------------------------------- +Anything added using certain `minetest.register_*` functions get added to +the global `minetest.registered_*` tables. + +* `minetest.register_entity(name, prototype table)` + * added to `minetest.registered_entities[name]` + +* `minetest.register_node(name, node definition)` + * added to `minetest.registered_items[name]` + * added to `minetest.registered_nodes[name]` + +* `minetest.register_tool(name, item definition)` + * added to `minetest.registered_items[name]` + +* `minetest.register_craftitem(name, item definition)` + * added to `minetest.registered_items[name]` + +* `minetest.register_biome(biome definition)` + * returns an integer uniquely identifying the registered biome + * added to `minetest.registered_biome` with the key of `biome.name` + * if `biome.name` is nil, the key is the returned ID + +* `minetest.register_ore(ore definition)` + * returns an integer uniquely identifying the registered ore + * added to `minetest.registered_ores` with the key of `ore.name` + * if `ore.name` is nil, the key is the returned ID + +* `minetest.register_decoration(decoration definition)` + * returns an integer uniquely identifying the registered decoration + * added to `minetest.registered_decorations` with the key of `decoration.name` + * if `decoration.name` is nil, the key is the returned ID + +* `minetest.register_schematic(schematic definition)` + * returns an integer uniquely identifying the registered schematic + * added to `minetest.registered_schematic` with the key of `schematic.name` + * if `schematic.name` is nil, the key is the returned ID + * if the schematic is loaded from a file, schematic.name is set to the filename + * if the function is called when loading the mod, and schematic.name is a relative path, + * then the current mod path will be prepended to the schematic filename + +* `minetest.clear_registered_biomes()` + * clears all biomes currently registered + +* `minetest.clear_registered_ores()` + * clears all ores currently registered + +* `minetest.clear_registered_decorations()` + * clears all decorations currently registered + +* `minetest.clear_registered_schematics()` + * clears all schematics currently registered + +Note that in some cases you will stumble upon things that are not contained +in these tables (e.g. when a mod has been removed). Always check for +existence before trying to access the fields. + +Example: If you want to check the drawtype of a node, you could do: + + local function get_nodedef_field(nodename, fieldname) + if not minetest.registered_nodes[nodename] then + return nil + end + return minetest.registered_nodes[nodename][fieldname] + end + local drawtype = get_nodedef_field(nodename, "drawtype") + +Example: `minetest.get_item_group(name, group)` has been implemented as: + + function minetest.get_item_group(name, group) + if not minetest.registered_items[name] or not + minetest.registered_items[name].groups[group] then + return 0 + end + return minetest.registered_items[name].groups[group] + end + +Nodes +----- +Nodes are the bulk data of the world: cubes and other things that take the +space of a cube. Huge amounts of them are handled efficiently, but they +are quite static. + +The definition of a node is stored and can be accessed by name in + + minetest.registered_nodes[node.name] + +See "Registered definitions of stuff". + +Nodes are passed by value between Lua and the engine. +They are represented by a table: + + {name="name", param1=num, param2=num} + +`param1` and `param2` are 8-bit integers. The engine uses them for certain +automated functions. If you don't use these functions, you can use them to +store arbitrary values. + +The functions of `param1` and `param2` are determined by certain fields in the +node definition: + +`param1` is reserved for the engine when `paramtype != "none"`: + + paramtype = "light" + ^ The value stores light with and without sun in its upper and lower 4 bits + respectively. Allows light to propagate from or through the node with + light value falling by 1 per node. This is essential for a light source + node to spread its light. + +`param2` is reserved for the engine when any of these are used: + + liquidtype == "flowing" + ^ The level and some flags of the liquid is stored in param2 + drawtype == "flowingliquid" + ^ The drawn liquid level is read from param2 + drawtype == "torchlike" + drawtype == "signlike" + paramtype2 == "wallmounted" + ^ The rotation of the node is stored in param2. You can make this value + by using minetest.dir_to_wallmounted(). + paramtype2 == "facedir" + ^ The rotation of the node is stored in param2. Furnaces and chests are + rotated this way. Can be made by using minetest.dir_to_facedir(). + Values range 0 - 23 + facedir modulo 4 = axisdir + 0 = y+ 1 = z+ 2 = z- 3 = x+ 4 = x- 5 = y- + facedir's two less significant bits are rotation around the axis + paramtype2 == "leveled" + paramtype2 == "degrotate" + ^ The rotation of this node is stored in param2. Plants are rotated this way. + Values range 0 - 179. The value stored in param2 is multiplied by two to + get the actual rotation of the node. + collision_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + }, + }, + ^ defines list of collision boxes for the node. If empty, collision boxes + will be the same as nodeboxes, in case of any other nodes will be full cube + as in the example above. + +Nodes can also contain extra data. See "Node Metadata". + +Node drawtypes +--------------- +There are a bunch of different looking node types. + +Look for examples in `games/minimal` or `games/minetest_game`. + +* `normal` +* `airlike` +* `liquid` +* `flowingliquid` +* `glasslike` +* `glasslike_framed` +* `glasslike_framed_optional` +* `allfaces` +* `allfaces_optional` +* `torchlike` +* `signlike` +* `plantlike` +* `firelike` +* `fencelike` +* `raillike` +* `nodebox` -- See below. (**Experimental!**) +* `mesh` -- use models for nodes + +`*_optional` drawtypes need less rendering time if deactivated (always client side). + +Node boxes +----------- +Node selection boxes are defined using "node boxes" + +The `nodebox` node drawtype allows defining visual of nodes consisting of +arbitrary number of boxes. It allows defining stuff like stairs. Only the +`fixed` and `leveled` box type is supported for these. + +Please note that this is still experimental, and may be incompatibly +changed in the future. + +A nodebox is defined as any of: + + { + -- A normal cube; the default in most things + type = "regular" + } + { + -- A fixed box (facedir param2 is used, if applicable) + type = "fixed", + fixed = box OR {box1, box2, ...} + } + { + -- A box like the selection box for torches + -- (wallmounted param2 is used, if applicable) + type = "wallmounted", + wall_top = box, + wall_bottom = box, + wall_side = box + } + { + -- A node that has optional boxes depending on neighbouring nodes' + -- presence and type. See also `connects_to`. + type = "connected", + fixed = box OR {box1, box2, ...} + connect_top = box OR {box1, box2, ...} + connect_bottom = box OR {box1, box2, ...} + connect_front = box OR {box1, box2, ...} + connect_left = box OR {box1, box2, ...} + connect_back = box OR {box1, box2, ...} + connect_right = box OR {box1, box2, ...} + } + +A `box` is defined as: + + {x1, y1, z1, x2, y2, z2} + +A box of a regular node would look like: + + {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + +`type = "leveled"` is same as `type = "fixed"`, but `y2` will be automatically +set to level from `param2`. + + +Meshes +------ +If drawtype `mesh` is used, tiles should hold model materials textures. +Only static meshes are implemented. +For supported model formats see Irrlicht engine documentation. + + +Noise Parameters +---------------- +Noise Parameters, or commonly called "`NoiseParams`", define the properties of +perlin noise. + +### `offset` +Offset that the noise is translated by (i.e. added) after calculation. + +### `scale` +Factor that the noise is scaled by (i.e. multiplied) after calculation. + +### `spread` +Vector containing values by which each coordinate is divided by before calculation. +Higher spread values result in larger noise features. + +A value of `{x=250, y=250, z=250}` is common. + +### `seed` +Random seed for the noise. Add the world seed to a seed offset for world-unique noise. +In the case of `minetest.get_perlin()`, this value has the world seed automatically added. + +### `octaves` +Number of times the noise gradient is accumulated into the noise. + +Increase this number to increase the amount of detail in the resulting noise. + +A value of `6` is common. + +### `persistence` +Factor by which the effect of the noise gradient function changes with each successive octave. + +Values less than `1` make the details of successive octaves' noise diminish, while values +greater than `1` make successive octaves stronger. + +A value of `0.6` is common. + +### `lacunarity` +Factor by which the noise feature sizes change with each successive octave. + +A value of `2.0` is common. + +### `flags` +Leave this field unset for no special handling. + +Currently supported are `defaults`, `eased` and `absvalue`. + +#### `defaults` +Specify this if you would like to keep auto-selection of eased/not-eased while specifying +some other flags. + +#### `eased` +Maps noise gradient values onto a quintic S-curve before performing interpolation. +This results in smooth, rolling noise. Disable this (`noeased`) for sharp-looking noise. +If no flags are specified (or defaults is), 2D noise is eased and 3D noise is not eased. + +#### `absvalue` +Accumulates the absolute value of each noise gradient result. + +Noise parameters format example for 2D or 3D perlin noise or perlin noise maps: + np_terrain = { + offset = 0, + scale = 1, + spread = {x=500, y=500, z=500}, + seed = 571347, + octaves = 5, + persist = 0.63, + lacunarity = 2.0, + flags = "defaults, absvalue" + } + ^ A single noise parameter table can be used to get 2D or 3D noise, + when getting 2D noise spread.z is ignored. + + +Ore types +--------- +These tell in what manner the ore is generated. + +All default ores are of the uniformly-distributed scatter type. + +### `scatter` +Randomly chooses a location and generates a cluster of ore. + +If `noise_params` is specified, the ore will be placed if the 3D perlin noise at +that point is greater than the `noise_threshold`, giving the ability to create +a non-equal distribution of ore. + +### `sheet` +Creates a sheet of ore in a blob shape according to the 2D perlin noise +described by `noise_params` and `noise_threshold`. This is essentially an +improved version of the so-called "stratus" ore seen in some unofficial mods. + +This sheet consists of vertical columns of uniform randomly distributed height, +varying between the inclusive range `column_height_min` and `column_height_max`. +If `column_height_min` is not specified, this parameter defaults to 1. +If `column_height_max` is not specified, this parameter defaults to `clust_size` +for reverse compatibility. New code should prefer `column_height_max`. + +The `column_midpoint_factor` parameter controls the position of the column at which +ore eminates from. If 1, columns grow upward. If 0, columns grow downward. If 0.5, +columns grow equally starting from each direction. `column_midpoint_factor` is a +decimal number ranging in value from 0 to 1. If this parameter is not specified, +the default is 0.5. + +The ore parameters `clust_scarcity` and `clust_num_ores` are ignored for this ore type. + +### `puff` +Creates a sheet of ore in a cloud-like puff shape. + +As with the `sheet` ore type, the size and shape of puffs are described by +`noise_params` and `noise_threshold` and are placed at random vertical positions +within the currently generated chunk. + +The vertical top and bottom displacement of each puff are determined by the noise +parameters `np_puff_top` and `np_puff_bottom`, respectively. + + +### `blob` +Creates a deformed sphere of ore according to 3d perlin noise described by +`noise_params`. The maximum size of the blob is `clust_size`, and +`clust_scarcity` has the same meaning as with the `scatter` type. + +### `vein` +Creates veins of ore varying in density by according to the intersection of two +instances of 3d perlin noise with diffferent seeds, both described by +`noise_params`. `random_factor` varies the influence random chance has on +placement of an ore inside the vein, which is `1` by default. Note that +modifying this parameter may require adjusting `noise_threshold`. +The parameters `clust_scarcity`, `clust_num_ores`, and `clust_size` are ignored +by this ore type. This ore type is difficult to control since it is sensitive +to small changes. The following is a decent set of parameters to work from: + + noise_params = { + offset = 0, + scale = 3, + spread = {x=200, y=200, z=200}, + seed = 5390, + octaves = 4, + persist = 0.5, + flags = "eased", + }, + noise_threshold = 1.6 + +WARNING: Use this ore type *very* sparingly since it is ~200x more +computationally expensive than any other ore. + +Ore attributes +-------------- +See section "Flag Specifier Format". + +Currently supported flags: `absheight` + +### `absheight` +Also produce this same ore between the height range of `-y_max` and `-y_min`. + +Useful for having ore in sky realms without having to duplicate ore entries. + +### `puff_cliffs` +If set, puff ore generation will not taper down large differences in displacement +when approaching the edge of a puff. This flag has no effect for ore types other +than `puff`. + +### `puff_additive_composition` +By default, when noise described by `np_puff_top` or `np_puff_bottom` results in a +negative displacement, the sub-column at that point is not generated. With this +attribute set, puff ore generation will instead generate the absolute difference in +noise displacement values. This flag has no effect for ore types other than `puff`. + +Decoration types +---------------- +The varying types of decorations that can be placed. + +### `simple` +Creates a 1 times `H` times 1 column of a specified node (or a random node from +a list, if a decoration list is specified). Can specify a certain node it must +spawn next to, such as water or lava, for example. Can also generate a +decoration of random height between a specified lower and upper bound. +This type of decoration is intended for placement of grass, flowers, cacti, +papyri, waterlilies and so on. + +### `schematic` +Copies a box of `MapNodes` from a specified schematic file (or raw description). +Can specify a probability of a node randomly appearing when placed. +This decoration type is intended to be used for multi-node sized discrete +structures, such as trees, cave spikes, rocks, and so on. + + +Schematic specifier +-------------------- +A schematic specifier identifies a schematic by either a filename to a +Minetest Schematic file (`.mts`) or through raw data supplied through Lua, +in the form of a table. This table specifies the following fields: + +* The `size` field is a 3D vector containing the dimensions of the provided schematic. (required) +* The `yslice_prob` field is a table of {ypos, prob} which sets the `ypos`th vertical slice + of the schematic to have a `prob / 256 * 100` chance of occuring. (default: 255) +* The `data` field is a flat table of MapNode tables making up the schematic, + in the order of `[z [y [x]]]`. (required) + Each MapNode table contains: + * `name`: the name of the map node to place (required) + * `prob` (alias `param1`): the probability of this node being placed (default: 255) + * `param2`: the raw param2 value of the node being placed onto the map (default: 0) + * `force_place`: boolean representing if the node should forcibly overwrite any + previous contents (default: false) + +About probability values: +* A probability value of `0` or `1` means that node will never appear (0% chance). +* A probability value of `254` or `255` means the node will always appear (100% chance). +* If the probability value `p` is greater than `1`, then there is a + `(p / 256 * 100)` percent chance that node will appear when the schematic is + placed on the map. + + +Schematic attributes +-------------------- +See section "Flag Specifier Format". + +Currently supported flags: `place_center_x`, `place_center_y`, `place_center_z`, + `force_placement`. + +* `place_center_x`: Placement of this decoration is centered along the X axis. +* `place_center_y`: Placement of this decoration is centered along the Y axis. +* `place_center_z`: Placement of this decoration is centered along the Z axis. +* `force_placement`: Schematic nodes other than "ignore" will replace existing nodes. + + +HUD element types +----------------- +The position field is used for all element types. + +To account for differing resolutions, the position coordinates are the percentage +of the screen, ranging in value from `0` to `1`. + +The name field is not yet used, but should contain a description of what the +HUD element represents. The direction field is the direction in which something +is drawn. + +`0` draws from left to right, `1` draws from right to left, `2` draws from +top to bottom, and `3` draws from bottom to top. + +The `alignment` field specifies how the item will be aligned. It ranges from `-1` to `1`, +with `0` being the center, `-1` is moved to the left/up, and `1` is to the right/down. +Fractional values can be used. + +The `offset` field specifies a pixel offset from the position. Contrary to position, +the offset is not scaled to screen size. This allows for some precisely-positioned +items in the HUD. + +**Note**: `offset` _will_ adapt to screen DPI as well as user defined scaling factor! + +Below are the specific uses for fields in each type; fields not listed for that type are ignored. + +**Note**: Future revisions to the HUD API may be incompatible; the HUD API is still +in the experimental stages. + +### `image` +Displays an image on the HUD. + +* `scale`: The scale of the image, with 1 being the original texture size. + Only the X coordinate scale is used (positive values). + Negative values represent that percentage of the screen it + should take; e.g. `x=-100` means 100% (width). +* `text`: The name of the texture that is displayed. +* `alignment`: The alignment of the image. +* `offset`: offset in pixels from position. + +### `text` +Displays text on the HUD. + +* `scale`: Defines the bounding rectangle of the text. + A value such as `{x=100, y=100}` should work. +* `text`: The text to be displayed in the HUD element. +* `number`: An integer containing the RGB value of the color used to draw the text. + Specify `0xFFFFFF` for white text, `0xFF0000` for red, and so on. +* `alignment`: The alignment of the text. +* `offset`: offset in pixels from position. + +### `statbar` +Displays a horizontal bar made up of half-images. + +* `text`: The name of the texture that is used. +* `number`: The number of half-textures that are displayed. + If odd, will end with a vertically center-split texture. +* `direction` +* `offset`: offset in pixels from position. +* `size`: If used, will force full-image size to this value (override texture pack image size) + +### `inventory` +* `text`: The name of the inventory list to be displayed. +* `number`: Number of items in the inventory to be displayed. +* `item`: Position of item that is selected. +* `direction` +* `offset`: offset in pixels from position. + +### `waypoint` +Displays distance to selected world position. + +* `name`: The name of the waypoint. +* `text`: Distance suffix. Can be blank. +* `number:` An integer containing the RGB value of the color used to draw the text. +* `world_pos`: World position of the waypoint. + +Representations of simple things +-------------------------------- + +### Position/vector + + {x=num, y=num, z=num} + +For helper functions see "Vector helpers". + +### `pointed_thing` +* `{type="nothing"}` +* `{type="node", under=pos, above=pos}` +* `{type="object", ref=ObjectRef}` + +Flag Specifier Format +--------------------- +Flags using the standardized flag specifier format can be specified in either of +two ways, by string or table. + +The string format is a comma-delimited set of flag names; whitespace and +unrecognized flag fields are ignored. Specifying a flag in the string sets the +flag, and specifying a flag prefixed by the string `"no"` explicitly +clears the flag from whatever the default may be. + +In addition to the standard string flag format, the schematic flags field can +also be a table of flag names to boolean values representing whether or not the +flag is set. Additionally, if a field with the flag name prefixed with `"no"` +is present, mapped to a boolean of any value, the specified flag is unset. + +E.g. A flag field of value + + {place_center_x = true, place_center_y=false, place_center_z=true} + +is equivalent to + + {place_center_x = true, noplace_center_y=true, place_center_z=true} + +which is equivalent to + + "place_center_x, noplace_center_y, place_center_z" + +or even + + "place_center_x, place_center_z" + +since, by default, no schematic attributes are set. + +Items +----- + +### Item types +There are three kinds of items: nodes, tools and craftitems. + +* Node (`register_node`): A node from the world. +* Tool (`register_tool`): A tool/weapon that can dig and damage + things according to `tool_capabilities`. +* Craftitem (`register_craftitem`): A miscellaneous item. + +### Item formats +Items and item stacks can exist in three formats: Serializes, table format +and `ItemStack`. + +#### Serialized +This is called "stackstring" or "itemstring": + +* e.g. `'default:dirt 5'` +* e.g. `'default:pick_wood 21323'` +* e.g. `'default:apple'` + +#### Table format +Examples: + +5 dirt nodes: + + {name="default:dirt", count=5, wear=0, metadata=""} + +A wooden pick about 1/3 worn out: + + {name="default:pick_wood", count=1, wear=21323, metadata=""} + +An apple: + + {name="default:apple", count=1, wear=0, metadata=""} + +#### `ItemStack` +A native C++ format with many helper methods. Useful for converting +between formats. See the Class reference section for details. + +When an item must be passed to a function, it can usually be in any of +these formats. + + +Groups +------ +In a number of places, there is a group table. Groups define the +properties of a thing (item, node, armor of entity, capabilities of +tool) in such a way that the engine and other mods can can interact with +the thing without actually knowing what the thing is. + +### Usage +Groups are stored in a table, having the group names with keys and the +group ratings as values. For example: + + groups = {crumbly=3, soil=1} + -- ^ Default dirt + + groups = {crumbly=2, soil=1, level=2, outerspace=1} + -- ^ A more special dirt-kind of thing + +Groups always have a rating associated with them. If there is no +useful meaning for a rating for an enabled group, it shall be `1`. + +When not defined, the rating of a group defaults to `0`. Thus when you +read groups, you must interpret `nil` and `0` as the same value, `0`. + +You can read the rating of a group for an item or a node by using + + minetest.get_item_group(itemname, groupname) + +### Groups of items +Groups of items can define what kind of an item it is (e.g. wool). + +### Groups of nodes +In addition to the general item things, groups are used to define whether +a node is destroyable and how long it takes to destroy by a tool. + +### Groups of entities +For entities, groups are, as of now, used only for calculating damage. +The rating is the percentage of damage caused by tools with this damage group. +See "Entity damage mechanism". + + object.get_armor_groups() --> a group-rating table (e.g. {fleshy=100}) + object.set_armor_groups({fleshy=30, cracky=80}) + +### Groups of tools +Groups in tools define which groups of nodes and entities they are +effective towards. + +### Groups in crafting recipes +An example: Make meat soup from any meat, any water and any bowl: + + { + output = 'food:meat_soup_raw', + recipe = { + {'group:meat'}, + {'group:water'}, + {'group:bowl'}, + }, + -- preserve = {'group:bowl'}, -- Not implemented yet (TODO) + } + +Another example: Make red wool from white wool and red dye: + + { + type = 'shapeless', + output = 'wool:red', + recipe = {'wool:white', 'group:dye,basecolor_red'}, + } + +### Special groups +* `immortal`: Disables the group damage system for an entity +* `level`: Can be used to give an additional sense of progression in the game. + * A larger level will cause e.g. a weapon of a lower level make much less + damage, and get worn out much faster, or not be able to get drops + from destroyed nodes. + * `0` is something that is directly accessible at the start of gameplay + * There is no upper limit +* `dig_immediate`: (player can always pick up node without tool wear) + * `2`: node is removed without tool wear after 0.5 seconds or so + (rail, sign) + * `3`: node is removed without tool wear immediately (torch) +* `disable_jump`: Player (and possibly other things) cannot jump from node +* `fall_damage_add_percent`: damage speed = `speed * (1 + value/100)` +* `bouncy`: value is bounce speed in percent +* `falling_node`: if there is no walkable block under the node it will fall +* `attached_node`: if the node under it is not a walkable block the node will be + dropped as an item. If the node is wallmounted the wallmounted direction is + checked. +* `soil`: saplings will grow on nodes in this group +* `connect_to_raillike`: makes nodes of raillike drawtype with same group value + connect to each other + +### Known damage and digging time defining groups +* `crumbly`: dirt, sand +* `cracky`: tough but crackable stuff like stone. +* `snappy`: something that can be cut using fine tools; e.g. leaves, small + plants, wire, sheets of metal +* `choppy`: something that can be cut using force; e.g. trees, wooden planks +* `fleshy`: Living things like animals and the player. This could imply + some blood effects when hitting. +* `explody`: Especially prone to explosions +* `oddly_breakable_by_hand`: + Can be added to nodes that shouldn't logically be breakable by the + hand but are. Somewhat similar to `dig_immediate`, but times are more + like `{[1]=3.50,[2]=2.00,[3]=0.70}` and this does not override the + speed of a tool if the tool can dig at a faster speed than this + suggests for the hand. + +### Examples of custom groups +Item groups are often used for defining, well, _groups of items_. +* `meat`: any meat-kind of a thing (rating might define the size or healing + ability or be irrelevant -- it is not defined as of yet) +* `eatable`: anything that can be eaten. Rating might define HP gain in half + hearts. +* `flammable`: can be set on fire. Rating might define the intensity of the + fire, affecting e.g. the speed of the spreading of an open fire. +* `wool`: any wool (any origin, any color) +* `metal`: any metal +* `weapon`: any weapon +* `heavy`: anything considerably heavy + +### Digging time calculation specifics +Groups such as `crumbly`, `cracky` and `snappy` are used for this +purpose. Rating is `1`, `2` or `3`. A higher rating for such a group implies +faster digging time. + +The `level` group is used to limit the toughness of nodes a tool can dig +and to scale the digging times / damage to a greater extent. + +**Please do understand this**, otherwise you cannot use the system to it's +full potential. + +Tools define their properties by a list of parameters for groups. They +cannot dig other groups; thus it is important to use a standard bunch of +groups to enable interaction with tools. + +#### Tools definition +Tools define: + +* Full punch interval +* Maximum drop level +* For an arbitrary list of groups: + * Uses (until the tool breaks) + * Maximum level (usually `0`, `1`, `2` or `3`) + * Digging times + * Damage groups + +#### Full punch interval +When used as a weapon, the tool will do full damage if this time is spent +between punches. If e.g. half the time is spent, the tool will do half +damage. + +#### Maximum drop level +Suggests the maximum level of node, when dug with the tool, that will drop +it's useful item. (e.g. iron ore to drop a lump of iron). + +This is not automated; it is the responsibility of the node definition +to implement this. + +#### Uses +Determines how many uses the tool has when it is used for digging a node, +of this group, of the maximum level. For lower leveled nodes, the use count +is multiplied by `3^leveldiff`. + +* `uses=10, leveldiff=0`: actual uses: 10 +* `uses=10, leveldiff=1`: actual uses: 30 +* `uses=10, leveldiff=2`: actual uses: 90 + +#### Maximum level +Tells what is the maximum level of a node of this group that the tool will +be able to dig. + +#### Digging times +List of digging times for different ratings of the group, for nodes of the +maximum level. + +For example, as a Lua table, `times={2=2.00, 3=0.70}`. This would +result in the tool to be able to dig nodes that have a rating of `2` or `3` +for this group, and unable to dig the rating `1`, which is the toughest. +Unless there is a matching group that enables digging otherwise. + +#### Damage groups +List of damage for groups of entities. See "Entity damage mechanism". + +#### Example definition of the capabilities of a tool + + tool_capabilities = { + full_punch_interval=1.5, + max_drop_level=1, + groupcaps={ + crumbly={maxlevel=2, uses=20, times={[1]=1.60, [2]=1.20, [3]=0.80}} + } + damage_groups = {fleshy=2}, + } + +This makes the tool be able to dig nodes that fulfil both of these: + +* Have the `crumbly` group +* Have a `level` group less or equal to `2` + +Table of resulting digging times: + + crumbly 0 1 2 3 4 <- level + -> 0 - - - - - + 1 0.80 1.60 1.60 - - + 2 0.60 1.20 1.20 - - + 3 0.40 0.80 0.80 - - + + level diff: 2 1 0 -1 -2 + +Table of resulting tool uses: + + -> 0 - - - - - + 1 180 60 20 - - + 2 180 60 20 - - + 3 180 60 20 - - + +**Notes**: + +* At `crumbly==0`, the node is not diggable. +* At `crumbly==3`, the level difference digging time divider kicks in and makes + easy nodes to be quickly breakable. +* At `level > 2`, the node is not diggable, because it's `level > maxlevel` + +Entity damage mechanism +----------------------- +Damage calculation: + + damage = 0 + foreach group in cap.damage_groups: + damage += cap.damage_groups[group] * limit(actual_interval / + cap.full_punch_interval, 0.0, 1.0) + * (object.armor_groups[group] / 100.0) + -- Where object.armor_groups[group] is 0 for inexistent values + return damage + +Client predicts damage based on damage groups. Because of this, it is able to +give an immediate response when an entity is damaged or dies; the response is +pre-defined somehow (e.g. by defining a sprite animation) (not implemented; +TODO). +Currently a smoke puff will appear when an entity dies. + +The group `immortal` completely disables normal damage. + +Entities can define a special armor group, which is `punch_operable`. This +group disables the regular damage mechanism for players punching it by hand or +a non-tool item, so that it can do something else than take damage. + +On the Lua side, every punch calls: + + entity:on_punch(puncher, time_from_last_punch, tool_capabilities, direction) + +This should never be called directly, because damage is usually not handled by +the entity itself. + +* `puncher` is the object performing the punch. Can be `nil`. Should never be + accessed unless absolutely required, to encourage interoperability. +* `time_from_last_punch` is time from last punch (by `puncher`) or `nil`. +* `tool_capabilities` can be `nil`. +* `direction` is a unit vector, pointing from the source of the punch to + the punched object. + +To punch an entity/object in Lua, call: + + object:punch(puncher, time_from_last_punch, tool_capabilities, direction) + +* Return value is tool wear. +* Parameters are equal to the above callback. +* If `direction` equals `nil` and `puncher` does not equal `nil`, + `direction` will be automatically filled in based on the location of `puncher`. + +Node Metadata +------------- +The instance of a node in the world normally only contains the three values +mentioned in "Nodes". However, it is possible to insert extra data into a +node. It is called "node metadata"; See "`NodeMetaRef`". + +Metadata contains two things: + +* A key-value store +* An inventory + +Some of the values in the key-value store are handled specially: + +* `formspec`: Defines a right-click inventory menu. See "Formspec". +* `infotext`: Text shown on the screen when the node is pointed at + +Example stuff: + + local meta = minetest.get_meta(pos) + meta:set_string("formspec", + "size[8,9]".. + "list[context;main;0,0;8,4;]".. + "list[current_player;main;0,5;8,4;]") + meta:set_string("infotext", "Chest"); + local inv = meta:get_inventory() + inv:set_size("main", 8*4) + print(dump(meta:to_table())) + meta:from_table({ + inventory = { + main = {[1] = "default:dirt", [2] = "", [3] = "", [4] = "", + [5] = "", [6] = "", [7] = "", [8] = "", [9] = "", + [10] = "", [11] = "", [12] = "", [13] = "", + [14] = "default:cobble", [15] = "", [16] = "", [17] = "", + [18] = "", [19] = "", [20] = "default:cobble", [21] = "", + [22] = "", [23] = "", [24] = "", [25] = "", [26] = "", + [27] = "", [28] = "", [29] = "", [30] = "", [31] = "", + [32] = ""} + }, + fields = { + formspec = "size[8,9]list[context;main;0,0;8,4;]list[current_player;main;0,5;8,4;]", + infotext = "Chest" + } + }) + +Formspec +-------- +Formspec defines a menu. Currently not much else than inventories are +supported. It is a string, with a somewhat strange format. + +Spaces and newlines can be inserted between the blocks, as is used in the +examples. + +### Examples + +#### Chest + + size[8,9] + list[context;main;0,0;8,4;] + list[current_player;main;0,5;8,4;] + +#### Furnace + + size[8,9] + list[context;fuel;2,3;1,1;] + list[context;src;2,1;1,1;] + list[context;dst;5,1;2,2;] + list[current_player;main;0,5;8,4;] + +#### Minecraft-like player inventory + + size[8,7.5] + image[1,0.6;1,2;player.png] + list[current_player;main;0,3.5;8,4;] + list[current_player;craft;3,0;3,3;] + list[current_player;craftpreview;7,1;1,1;] + +### Elements + +#### `size[,,]` +* Define the size of the menu in inventory slots +* `fixed_size`: `true`/`false` (optional) +* deprecated: `invsize[,;]` + +#### `list[;;,;,;]` +* Show an inventory list + +#### `list[;;,;,;]` +* Show an inventory list + +#### `listring[;]` +* Allows to create a ring of inventory lists +* Shift-clicking on items in one element of the ring +* will send them to the next inventory list inside the ring +* The first occurrence of an element inside the ring will +* determine the inventory where items will be sent to + +#### `listring[]` +* Shorthand for doing `listring[;]` +* for the last two inventory lists added by list[...] + +#### `listcolors[;]` +* Sets background color of slots as `ColorString` +* Sets background color of slots on mouse hovering + +#### `listcolors[;;]` +* Sets background color of slots as `ColorString` +* Sets background color of slots on mouse hovering +* Sets color of slots border + +#### `listcolors[;;;;]` +* Sets background color of slots as `ColorString` +* Sets background color of slots on mouse hovering +* Sets color of slots border +* Sets default background color of tooltips +* Sets default font color of tooltips + +#### `tooltip[;;,]` +* Adds tooltip for an element +* `` tooltip background color as `ColorString` (optional) +* `` tooltip font color as `ColorString` (optional) + +#### `image[,;,;]` +* Show an image +* Position and size units are inventory slots + +#### `item_image[,;,;]` +* Show an inventory image of registered item/node +* Position and size units are inventory slots + +#### `bgcolor[;]` +* Sets background color of formspec as `ColorString` +* If `true`, the background color is drawn fullscreen (does not effect the size of the formspec) + +#### `background[,;,;]` +* Use a background. Inventory rectangles are not drawn then. +* Position and size units are inventory slots +* Example for formspec 8x4 in 16x resolution: image shall be sized + 8 times 16px times 4 times 16px. + +#### `background[,;,;;]` +* Use a background. Inventory rectangles are not drawn then. +* Position and size units are inventory slots +* Example for formspec 8x4 in 16x resolution: + image shall be sized 8 times 16px times 4 times 16px +* If `true` the background is clipped to formspec size + (`x` and `y` are used as offset values, `w` and `h` are ignored) + +#### `pwdfield[,;,;;