koffi 0.9.5 → 0.9.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (882) hide show
  1. package/LICENSE.txt +661 -0
  2. package/README.md +74 -9
  3. package/package.json +27 -7
  4. package/src/call.hh +2 -1
  5. package/src/call_arm32.cc +525 -0
  6. package/src/call_arm32_fwd.S +108 -0
  7. package/src/call_arm64.cc +90 -63
  8. package/src/call_arm64_fwd.S +24 -29
  9. package/src/call_x64_sysv.cc +61 -48
  10. package/src/call_x64_win.cc +69 -43
  11. package/src/call_x86.cc +83 -62
  12. package/src/ffi.cc +166 -37
  13. package/src/ffi.hh +43 -12
  14. package/src/util.cc +72 -32
  15. package/src/util.hh +127 -18
  16. package/test/files/node32.cmd +6 -0
  17. package/test/files/node64.cmd +6 -0
  18. package/test/registry/machines.json +185 -0
  19. package/test/registry/sha256sum.txt +24 -0
  20. package/test/test.js +625 -0
  21. package/test/tests/misc.c +40 -0
  22. package/test/tests/misc.js +54 -0
  23. package/test/tests/raylib.js +167 -0
  24. package/vendor/dragonbox/include/dragonbox/dragonbox.h +6 -2
  25. package/vendor/dragonbox/other_files/Dragonbox.pdf +0 -0
  26. package/vendor/libcc/libcc.cc +36 -18
  27. package/vendor/libcc/libcc.hh +23 -1
  28. package/vendor/raylib/BINDINGS.md +123 -0
  29. package/vendor/raylib/CHANGELOG +1495 -0
  30. package/vendor/raylib/CMakeLists.txt +33 -0
  31. package/vendor/raylib/CMakeOptions.txt +87 -0
  32. package/vendor/raylib/CONTRIBUTING.md +76 -0
  33. package/vendor/raylib/CONTRIBUTORS.md +63 -0
  34. package/vendor/raylib/CONVENTIONS.md +95 -0
  35. package/vendor/raylib/HISTORY.md +364 -0
  36. package/vendor/raylib/LICENSE +16 -0
  37. package/vendor/raylib/README.md +141 -0
  38. package/vendor/raylib/ROADMAP.md +76 -0
  39. package/vendor/raylib/SPONSORS.md +68 -0
  40. package/vendor/raylib/cmake/AddIfFlagCompiles.cmake +12 -0
  41. package/vendor/raylib/cmake/BuildOptions.cmake +18 -0
  42. package/vendor/raylib/cmake/CompileDefinitions.cmake +110 -0
  43. package/vendor/raylib/cmake/CompilerFlags.cmake +79 -0
  44. package/vendor/raylib/cmake/EnumOption.cmake +9 -0
  45. package/vendor/raylib/cmake/GlfwImport.cmake +34 -0
  46. package/vendor/raylib/cmake/InstallConfigurations.cmake +29 -0
  47. package/vendor/raylib/cmake/JoinPaths.cmake +26 -0
  48. package/vendor/raylib/cmake/LibraryConfigurations.cmake +108 -0
  49. package/vendor/raylib/cmake/LibraryPathToLinkerFlags.cmake +24 -0
  50. package/vendor/raylib/cmake/PackConfigurations.cmake +13 -0
  51. package/vendor/raylib/cmake/PopulateConfigVariablesLocally.cmake +11 -0
  52. package/vendor/raylib/cmake/raylib-config-version.cmake +21 -0
  53. package/vendor/raylib/cmake/raylib-config.cmake +76 -0
  54. package/vendor/raylib/examples/CMakeLists.txt +139 -0
  55. package/vendor/raylib/examples/Makefile +565 -0
  56. package/vendor/raylib/examples/Makefile.Android +405 -0
  57. package/vendor/raylib/examples/Makefile.Web +1053 -0
  58. package/vendor/raylib/examples/README.md +203 -0
  59. package/vendor/raylib/examples/audio/audio_module_playing.c +146 -0
  60. package/vendor/raylib/examples/audio/audio_module_playing.png +0 -0
  61. package/vendor/raylib/examples/audio/audio_multichannel_sound.c +73 -0
  62. package/vendor/raylib/examples/audio/audio_multichannel_sound.png +0 -0
  63. package/vendor/raylib/examples/audio/audio_music_stream.c +93 -0
  64. package/vendor/raylib/examples/audio/audio_music_stream.png +0 -0
  65. package/vendor/raylib/examples/audio/audio_raw_stream.c +167 -0
  66. package/vendor/raylib/examples/audio/audio_raw_stream.png +0 -0
  67. package/vendor/raylib/examples/audio/audio_sound_loading.c +64 -0
  68. package/vendor/raylib/examples/audio/audio_sound_loading.png +0 -0
  69. package/vendor/raylib/examples/audio/resources/LICENSE.md +10 -0
  70. package/vendor/raylib/examples/audio/resources/coin.wav +0 -0
  71. package/vendor/raylib/examples/audio/resources/country.mp3 +0 -0
  72. package/vendor/raylib/examples/audio/resources/mini1111.xm +0 -0
  73. package/vendor/raylib/examples/audio/resources/sound.wav +0 -0
  74. package/vendor/raylib/examples/audio/resources/spring.wav +0 -0
  75. package/vendor/raylib/examples/audio/resources/target.flac +0 -0
  76. package/vendor/raylib/examples/audio/resources/target.ogg +0 -0
  77. package/vendor/raylib/examples/audio/resources/weird.wav +0 -0
  78. package/vendor/raylib/examples/build.zig +86 -0
  79. package/vendor/raylib/examples/core/core_2d_camera.c +132 -0
  80. package/vendor/raylib/examples/core/core_2d_camera.png +0 -0
  81. package/vendor/raylib/examples/core/core_2d_camera_platformer.c +293 -0
  82. package/vendor/raylib/examples/core/core_2d_camera_platformer.png +0 -0
  83. package/vendor/raylib/examples/core/core_2d_camera_smooth_pixelperfect.png +0 -0
  84. package/vendor/raylib/examples/core/core_3d_camera_first_person.c +97 -0
  85. package/vendor/raylib/examples/core/core_3d_camera_first_person.png +0 -0
  86. package/vendor/raylib/examples/core/core_3d_camera_free.c +83 -0
  87. package/vendor/raylib/examples/core/core_3d_camera_free.png +0 -0
  88. package/vendor/raylib/examples/core/core_3d_camera_mode.c +73 -0
  89. package/vendor/raylib/examples/core/core_3d_camera_mode.png +0 -0
  90. package/vendor/raylib/examples/core/core_3d_picking.c +107 -0
  91. package/vendor/raylib/examples/core/core_3d_picking.png +0 -0
  92. package/vendor/raylib/examples/core/core_basic_screen_manager.c +150 -0
  93. package/vendor/raylib/examples/core/core_basic_screen_manager.png +0 -0
  94. package/vendor/raylib/examples/core/core_basic_window.c +62 -0
  95. package/vendor/raylib/examples/core/core_basic_window.png +0 -0
  96. package/vendor/raylib/examples/core/core_basic_window_web.c +85 -0
  97. package/vendor/raylib/examples/core/core_custom_frame_control.c +125 -0
  98. package/vendor/raylib/examples/core/core_custom_frame_control.png +0 -0
  99. package/vendor/raylib/examples/core/core_custom_logging.c +84 -0
  100. package/vendor/raylib/examples/core/core_custom_logging.png +0 -0
  101. package/vendor/raylib/examples/core/core_drop_files.c +76 -0
  102. package/vendor/raylib/examples/core/core_drop_files.png +0 -0
  103. package/vendor/raylib/examples/core/core_input_gamepad.c +195 -0
  104. package/vendor/raylib/examples/core/core_input_gamepad.png +0 -0
  105. package/vendor/raylib/examples/core/core_input_gestures.c +115 -0
  106. package/vendor/raylib/examples/core/core_input_gestures.png +0 -0
  107. package/vendor/raylib/examples/core/core_input_keys.c +59 -0
  108. package/vendor/raylib/examples/core/core_input_keys.png +0 -0
  109. package/vendor/raylib/examples/core/core_input_mouse.c +65 -0
  110. package/vendor/raylib/examples/core/core_input_mouse.png +0 -0
  111. package/vendor/raylib/examples/core/core_input_mouse_wheel.c +58 -0
  112. package/vendor/raylib/examples/core/core_input_mouse_wheel.png +0 -0
  113. package/vendor/raylib/examples/core/core_input_multitouch.c +70 -0
  114. package/vendor/raylib/examples/core/core_input_multitouch.png +0 -0
  115. package/vendor/raylib/examples/core/core_loading_thread.c +147 -0
  116. package/vendor/raylib/examples/core/core_loading_thread.png +0 -0
  117. package/vendor/raylib/examples/core/core_quat_conversion.c +132 -0
  118. package/vendor/raylib/examples/core/core_quat_conversion.png +0 -0
  119. package/vendor/raylib/examples/core/core_random_values.c +67 -0
  120. package/vendor/raylib/examples/core/core_random_values.png +0 -0
  121. package/vendor/raylib/examples/core/core_scissor_test.c +71 -0
  122. package/vendor/raylib/examples/core/core_scissor_test.png +0 -0
  123. package/vendor/raylib/examples/core/core_smooth_pixelperfect.c +117 -0
  124. package/vendor/raylib/examples/core/core_smooth_pixelperfect.png +0 -0
  125. package/vendor/raylib/examples/core/core_split_screen.c +155 -0
  126. package/vendor/raylib/examples/core/core_split_screen.png +0 -0
  127. package/vendor/raylib/examples/core/core_storage_values.c +87 -0
  128. package/vendor/raylib/examples/core/core_storage_values.png +0 -0
  129. package/vendor/raylib/examples/core/core_vr_simulator.c +143 -0
  130. package/vendor/raylib/examples/core/core_vr_simulator.png +0 -0
  131. package/vendor/raylib/examples/core/core_window_flags.c +191 -0
  132. package/vendor/raylib/examples/core/core_window_flags.png +0 -0
  133. package/vendor/raylib/examples/core/core_window_letterbox.c +112 -0
  134. package/vendor/raylib/examples/core/core_window_letterbox.png +0 -0
  135. package/vendor/raylib/examples/core/core_world_screen.c +78 -0
  136. package/vendor/raylib/examples/core/core_world_screen.png +0 -0
  137. package/vendor/raylib/examples/core/resources/LICENSE.md +4 -0
  138. package/vendor/raylib/examples/core/resources/distortion100.fs +52 -0
  139. package/vendor/raylib/examples/core/resources/distortion330.fs +53 -0
  140. package/vendor/raylib/examples/core/resources/ps3.png +0 -0
  141. package/vendor/raylib/examples/core/resources/xbox.png +0 -0
  142. package/vendor/raylib/examples/examples_template.c +100 -0
  143. package/vendor/raylib/examples/models/models_animation.c +114 -0
  144. package/vendor/raylib/examples/models/models_animation.png +0 -0
  145. package/vendor/raylib/examples/models/models_billboard.c +75 -0
  146. package/vendor/raylib/examples/models/models_billboard.png +0 -0
  147. package/vendor/raylib/examples/models/models_box_collisions.c +121 -0
  148. package/vendor/raylib/examples/models/models_box_collisions.png +0 -0
  149. package/vendor/raylib/examples/models/models_cubicmap.c +87 -0
  150. package/vendor/raylib/examples/models/models_cubicmap.png +0 -0
  151. package/vendor/raylib/examples/models/models_first_person_maze.c +122 -0
  152. package/vendor/raylib/examples/models/models_first_person_maze.png +0 -0
  153. package/vendor/raylib/examples/models/models_geometric_shapes.c +80 -0
  154. package/vendor/raylib/examples/models/models_geometric_shapes.png +0 -0
  155. package/vendor/raylib/examples/models/models_heightmap.c +82 -0
  156. package/vendor/raylib/examples/models/models_heightmap.png +0 -0
  157. package/vendor/raylib/examples/models/models_loading.c +146 -0
  158. package/vendor/raylib/examples/models/models_loading.png +0 -0
  159. package/vendor/raylib/examples/models/models_loading_gltf.c +105 -0
  160. package/vendor/raylib/examples/models/models_loading_gltf.png +0 -0
  161. package/vendor/raylib/examples/models/models_loading_vox.c +130 -0
  162. package/vendor/raylib/examples/models/models_loading_vox.png +0 -0
  163. package/vendor/raylib/examples/models/models_mesh_generation.c +179 -0
  164. package/vendor/raylib/examples/models/models_mesh_generation.png +0 -0
  165. package/vendor/raylib/examples/models/models_mesh_picking.c +223 -0
  166. package/vendor/raylib/examples/models/models_mesh_picking.png +0 -0
  167. package/vendor/raylib/examples/models/models_orthographic_projection.c +99 -0
  168. package/vendor/raylib/examples/models/models_orthographic_projection.png +0 -0
  169. package/vendor/raylib/examples/models/models_rlgl_solar_system.c +172 -0
  170. package/vendor/raylib/examples/models/models_rlgl_solar_system.png +0 -0
  171. package/vendor/raylib/examples/models/models_skybox.c +262 -0
  172. package/vendor/raylib/examples/models/models_skybox.png +0 -0
  173. package/vendor/raylib/examples/models/models_waving_cubes.c +112 -0
  174. package/vendor/raylib/examples/models/models_waving_cubes.png +0 -0
  175. package/vendor/raylib/examples/models/models_yaw_pitch_roll.c +117 -0
  176. package/vendor/raylib/examples/models/models_yaw_pitch_roll.png +0 -0
  177. package/vendor/raylib/examples/models/resources/LICENSE.md +23 -0
  178. package/vendor/raylib/examples/models/resources/billboard.png +0 -0
  179. package/vendor/raylib/examples/models/resources/cubicmap.png +0 -0
  180. package/vendor/raylib/examples/models/resources/cubicmap_atlas.png +0 -0
  181. package/vendor/raylib/examples/models/resources/dresden_square_1k.hdr +0 -0
  182. package/vendor/raylib/examples/models/resources/dresden_square_2k.hdr +0 -0
  183. package/vendor/raylib/examples/models/resources/heightmap.png +0 -0
  184. package/vendor/raylib/examples/models/resources/models/gltf/AnimatedMorphCube.glb +0 -0
  185. package/vendor/raylib/examples/models/resources/models/gltf/AnimatedTriangle.gltf +118 -0
  186. package/vendor/raylib/examples/models/resources/models/gltf/BoxAnimated.glb +0 -0
  187. package/vendor/raylib/examples/models/resources/models/gltf/LICENSE +23 -0
  188. package/vendor/raylib/examples/models/resources/models/gltf/girl.glb +0 -0
  189. package/vendor/raylib/examples/models/resources/models/gltf/raylib_32x32.glb +0 -0
  190. package/vendor/raylib/examples/models/resources/models/gltf/rigged_figure.glb +0 -0
  191. package/vendor/raylib/examples/models/resources/models/gltf/vertex_colored_object.glb +0 -0
  192. package/vendor/raylib/examples/models/resources/models/iqm/guy.blend +0 -0
  193. package/vendor/raylib/examples/models/resources/models/iqm/guy.iqm +0 -0
  194. package/vendor/raylib/examples/models/resources/models/iqm/guyanim.iqm +0 -0
  195. package/vendor/raylib/examples/models/resources/models/iqm/guytex.png +0 -0
  196. package/vendor/raylib/examples/models/resources/models/iqm/vertex_colored_object.iqm +0 -0
  197. package/vendor/raylib/examples/models/resources/models/obj/bridge.obj +1725 -0
  198. package/vendor/raylib/examples/models/resources/models/obj/bridge_diffuse.png +0 -0
  199. package/vendor/raylib/examples/models/resources/models/obj/castle.obj +12919 -0
  200. package/vendor/raylib/examples/models/resources/models/obj/castle_diffuse.png +0 -0
  201. package/vendor/raylib/examples/models/resources/models/obj/cube.obj +68 -0
  202. package/vendor/raylib/examples/models/resources/models/obj/cube_diffuse.png +0 -0
  203. package/vendor/raylib/examples/models/resources/models/obj/house.obj +4564 -0
  204. package/vendor/raylib/examples/models/resources/models/obj/house_diffuse.png +0 -0
  205. package/vendor/raylib/examples/models/resources/models/obj/market.obj +7301 -0
  206. package/vendor/raylib/examples/models/resources/models/obj/market_diffuse.png +0 -0
  207. package/vendor/raylib/examples/models/resources/models/obj/plane.obj +10858 -0
  208. package/vendor/raylib/examples/models/resources/models/obj/plane_diffuse.png +0 -0
  209. package/vendor/raylib/examples/models/resources/models/obj/turret.obj +1888 -0
  210. package/vendor/raylib/examples/models/resources/models/obj/turret_diffuse.png +0 -0
  211. package/vendor/raylib/examples/models/resources/models/obj/well.obj +1030 -0
  212. package/vendor/raylib/examples/models/resources/models/obj/well_diffuse.png +0 -0
  213. package/vendor/raylib/examples/models/resources/models/vox/LICENSE +9 -0
  214. package/vendor/raylib/examples/models/resources/models/vox/chr_knight.vox +0 -0
  215. package/vendor/raylib/examples/models/resources/models/vox/chr_sword.vox +0 -0
  216. package/vendor/raylib/examples/models/resources/models/vox/monu9.vox +0 -0
  217. package/vendor/raylib/examples/models/resources/shaders/glsl100/cubemap.fs +29 -0
  218. package/vendor/raylib/examples/models/resources/shaders/glsl100/cubemap.vs +20 -0
  219. package/vendor/raylib/examples/models/resources/shaders/glsl100/skybox.fs +31 -0
  220. package/vendor/raylib/examples/models/resources/shaders/glsl100/skybox.vs +24 -0
  221. package/vendor/raylib/examples/models/resources/shaders/glsl330/cubemap.fs +30 -0
  222. package/vendor/raylib/examples/models/resources/shaders/glsl330/cubemap.vs +20 -0
  223. package/vendor/raylib/examples/models/resources/shaders/glsl330/skybox.fs +30 -0
  224. package/vendor/raylib/examples/models/resources/shaders/glsl330/skybox.vs +24 -0
  225. package/vendor/raylib/examples/models/resources/skybox.png +0 -0
  226. package/vendor/raylib/examples/models/rlights.h +183 -0
  227. package/vendor/raylib/examples/others/easings.h +263 -0
  228. package/vendor/raylib/examples/others/easings_testbed.c +227 -0
  229. package/vendor/raylib/examples/others/embedded_files_loading.c +103 -0
  230. package/vendor/raylib/examples/others/external/include/GLFW/glfw3.h +5538 -0
  231. package/vendor/raylib/examples/others/external/include/GLFW/glfw3native.h +572 -0
  232. package/vendor/raylib/examples/others/external/include/glad.h +5466 -0
  233. package/vendor/raylib/examples/others/external/lib/libglfw3.a +0 -0
  234. package/vendor/raylib/examples/others/raudio_standalone.c +152 -0
  235. package/vendor/raylib/examples/others/raylib_opengl_interop.c +152 -0
  236. package/vendor/raylib/examples/others/raylib_opengl_interop.png +0 -0
  237. package/vendor/raylib/examples/others/resources/audio/country.mp3 +0 -0
  238. package/vendor/raylib/examples/others/resources/audio/target.ogg +0 -0
  239. package/vendor/raylib/examples/others/resources/audio/weird.wav +0 -0
  240. package/vendor/raylib/examples/others/resources/audio_data.h +4893 -0
  241. package/vendor/raylib/examples/others/resources/image_data.h +9848 -0
  242. package/vendor/raylib/examples/others/resources/shaders/glsl100/point_particle.fs +16 -0
  243. package/vendor/raylib/examples/others/resources/shaders/glsl100/point_particle.vs +24 -0
  244. package/vendor/raylib/examples/others/resources/shaders/glsl330/point_particle.fs +17 -0
  245. package/vendor/raylib/examples/others/resources/shaders/glsl330/point_particle.vs +24 -0
  246. package/vendor/raylib/examples/others/resources/shaders/glsl430/gol.glsl +41 -0
  247. package/vendor/raylib/examples/others/resources/shaders/glsl430/gol_render.glsl +29 -0
  248. package/vendor/raylib/examples/others/resources/shaders/glsl430/gol_transfert.glsl +51 -0
  249. package/vendor/raylib/examples/others/rlgl_compute_shader.c +173 -0
  250. package/vendor/raylib/examples/others/rlgl_standalone.c +469 -0
  251. package/vendor/raylib/examples/physics/physics_demo.c +128 -0
  252. package/vendor/raylib/examples/physics/physics_demo.png +0 -0
  253. package/vendor/raylib/examples/physics/physics_friction.c +142 -0
  254. package/vendor/raylib/examples/physics/physics_friction.png +0 -0
  255. package/vendor/raylib/examples/physics/physics_movement.c +128 -0
  256. package/vendor/raylib/examples/physics/physics_movement.png +0 -0
  257. package/vendor/raylib/examples/physics/physics_restitution.c +129 -0
  258. package/vendor/raylib/examples/physics/physics_restitution.png +0 -0
  259. package/vendor/raylib/examples/physics/physics_shatter.c +111 -0
  260. package/vendor/raylib/examples/physics/physics_shatter.png +0 -0
  261. package/vendor/raylib/examples/raylib_compile_execute.bat +32 -0
  262. package/vendor/raylib/examples/raylib_makefile_example.bat +27 -0
  263. package/vendor/raylib/examples/shaders/resources/LICENSE.md +11 -0
  264. package/vendor/raylib/examples/shaders/resources/fudesumi.png +0 -0
  265. package/vendor/raylib/examples/shaders/resources/mask.png +0 -0
  266. package/vendor/raylib/examples/shaders/resources/models/barracks.obj +22251 -0
  267. package/vendor/raylib/examples/shaders/resources/models/barracks_diffuse.png +0 -0
  268. package/vendor/raylib/examples/shaders/resources/models/church.obj +5116 -0
  269. package/vendor/raylib/examples/shaders/resources/models/church_diffuse.png +0 -0
  270. package/vendor/raylib/examples/shaders/resources/models/watermill.obj +5316 -0
  271. package/vendor/raylib/examples/shaders/resources/models/watermill_diffuse.png +0 -0
  272. package/vendor/raylib/examples/shaders/resources/plasma.png +0 -0
  273. package/vendor/raylib/examples/shaders/resources/raysan.png +0 -0
  274. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base.fs +23 -0
  275. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base.vs +26 -0
  276. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base_lighting.vs +59 -0
  277. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base_lighting_instanced.vs +36 -0
  278. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/bloom.fs +39 -0
  279. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/blur.fs +34 -0
  280. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/color_mix.fs +26 -0
  281. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/cross_hatching.fs +47 -0
  282. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/cross_stitching.fs +57 -0
  283. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/cubes_panning.fs +60 -0
  284. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/depth.fs +26 -0
  285. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/distortion.fs +54 -0
  286. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/dream_vision.fs +37 -0
  287. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/eratosthenes.fs +60 -0
  288. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/fisheye.fs +43 -0
  289. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/fog.fs +94 -0
  290. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/grayscale.fs +25 -0
  291. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/julia_set.fs +83 -0
  292. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/lighting.fs +81 -0
  293. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/mask.fs +24 -0
  294. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/outline.fs +34 -0
  295. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/palette_switch.fs +41 -0
  296. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/pixelizer.fs +32 -0
  297. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/posterization.fs +29 -0
  298. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/predator.fs +31 -0
  299. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/raymarching.fs +431 -0
  300. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/reload.fs +39 -0
  301. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/scanlines.fs +44 -0
  302. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/sobel.fs +40 -0
  303. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/spotlight.fs +77 -0
  304. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/swirl.fs +46 -0
  305. package/vendor/raylib/examples/shaders/resources/shaders/glsl100/wave.fs +36 -0
  306. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/base.fs +22 -0
  307. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/base.vs +26 -0
  308. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/base_lighting.vs +59 -0
  309. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/bloom.fs +37 -0
  310. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/blur.fs +32 -0
  311. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/cross_hatching.fs +45 -0
  312. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/cross_stitching.fs +55 -0
  313. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/distortion.fs +52 -0
  314. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/dream_vision.fs +35 -0
  315. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/fisheye.fs +41 -0
  316. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/fog.fs +92 -0
  317. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/grayscale.fs +23 -0
  318. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/palette_switch.fs +27 -0
  319. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/pixelizer.fs +30 -0
  320. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/posterization.fs +27 -0
  321. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/predator.fs +29 -0
  322. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/scanlines.fs +42 -0
  323. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/sobel.fs +38 -0
  324. package/vendor/raylib/examples/shaders/resources/shaders/glsl120/swirl.fs +44 -0
  325. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base.fs +25 -0
  326. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base.vs +26 -0
  327. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base_lighting.vs +32 -0
  328. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base_lighting_instanced.vs +36 -0
  329. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/bloom.fs +40 -0
  330. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/blur.fs +35 -0
  331. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/color_mix.fs +27 -0
  332. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/cross_hatching.fs +48 -0
  333. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/cross_stitching.fs +59 -0
  334. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/cubes_panning.fs +61 -0
  335. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/depth.fs +27 -0
  336. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/distortion.fs +56 -0
  337. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/dream_vision.fs +34 -0
  338. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/eratosthenes.fs +59 -0
  339. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/fisheye.fs +40 -0
  340. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/fog.fs +95 -0
  341. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/grayscale.fs +26 -0
  342. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/julia_set.fs +81 -0
  343. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/lighting.fs +82 -0
  344. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/mask.fs +22 -0
  345. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/outline.fs +35 -0
  346. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/overdraw.fs +26 -0
  347. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/palette_switch.fs +30 -0
  348. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/pixelizer.fs +33 -0
  349. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/posterization.fs +31 -0
  350. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/predator.fs +32 -0
  351. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/raymarching.fs +430 -0
  352. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/reload.fs +40 -0
  353. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/scanlines.fs +49 -0
  354. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/sobel.fs +41 -0
  355. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/spotlight.fs +65 -0
  356. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/swirl.fs +47 -0
  357. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/wave.fs +37 -0
  358. package/vendor/raylib/examples/shaders/resources/space.png +0 -0
  359. package/vendor/raylib/examples/shaders/resources/texel_checker.png +0 -0
  360. package/vendor/raylib/examples/shaders/rlights.h +183 -0
  361. package/vendor/raylib/examples/shaders/shaders_basic_lighting.c +152 -0
  362. package/vendor/raylib/examples/shaders/shaders_basic_lighting.png +0 -0
  363. package/vendor/raylib/examples/shaders/shaders_custom_uniform.c +127 -0
  364. package/vendor/raylib/examples/shaders/shaders_custom_uniform.png +0 -0
  365. package/vendor/raylib/examples/shaders/shaders_eratosthenes.c +92 -0
  366. package/vendor/raylib/examples/shaders/shaders_eratosthenes.png +0 -0
  367. package/vendor/raylib/examples/shaders/shaders_fog.c +160 -0
  368. package/vendor/raylib/examples/shaders/shaders_fog.png +0 -0
  369. package/vendor/raylib/examples/shaders/shaders_hot_reloading.c +130 -0
  370. package/vendor/raylib/examples/shaders/shaders_hot_reloading.png +0 -0
  371. package/vendor/raylib/examples/shaders/shaders_julia_set.c +191 -0
  372. package/vendor/raylib/examples/shaders/shaders_julia_set.png +0 -0
  373. package/vendor/raylib/examples/shaders/shaders_mesh_instancing.c +224 -0
  374. package/vendor/raylib/examples/shaders/shaders_mesh_instancing.png +0 -0
  375. package/vendor/raylib/examples/shaders/shaders_model_shader.c +103 -0
  376. package/vendor/raylib/examples/shaders/shaders_model_shader.png +0 -0
  377. package/vendor/raylib/examples/shaders/shaders_multi_sample2d.c +105 -0
  378. package/vendor/raylib/examples/shaders/shaders_multi_sample2d.png +0 -0
  379. package/vendor/raylib/examples/shaders/shaders_palette_switch.c +147 -0
  380. package/vendor/raylib/examples/shaders/shaders_palette_switch.png +0 -0
  381. package/vendor/raylib/examples/shaders/shaders_postprocessing.c +170 -0
  382. package/vendor/raylib/examples/shaders/shaders_postprocessing.png +0 -0
  383. package/vendor/raylib/examples/shaders/shaders_raymarching.c +113 -0
  384. package/vendor/raylib/examples/shaders/shaders_raymarching.png +0 -0
  385. package/vendor/raylib/examples/shaders/shaders_shapes_textures.c +116 -0
  386. package/vendor/raylib/examples/shaders/shaders_shapes_textures.png +0 -0
  387. package/vendor/raylib/examples/shaders/shaders_simple_mask.c +144 -0
  388. package/vendor/raylib/examples/shaders/shaders_simple_mask.png +0 -0
  389. package/vendor/raylib/examples/shaders/shaders_spotlight.c +254 -0
  390. package/vendor/raylib/examples/shaders/shaders_spotlight.png +0 -0
  391. package/vendor/raylib/examples/shaders/shaders_texture_drawing.c +80 -0
  392. package/vendor/raylib/examples/shaders/shaders_texture_drawing.png +0 -0
  393. package/vendor/raylib/examples/shaders/shaders_texture_outline.c +97 -0
  394. package/vendor/raylib/examples/shaders/shaders_texture_outline.png +0 -0
  395. package/vendor/raylib/examples/shaders/shaders_texture_waves.c +110 -0
  396. package/vendor/raylib/examples/shaders/shaders_texture_waves.png +0 -0
  397. package/vendor/raylib/examples/shapes/shapes_basic_shapes.c +78 -0
  398. package/vendor/raylib/examples/shapes/shapes_basic_shapes.png +0 -0
  399. package/vendor/raylib/examples/shapes/shapes_bouncing_ball.c +76 -0
  400. package/vendor/raylib/examples/shapes/shapes_bouncing_ball.png +0 -0
  401. package/vendor/raylib/examples/shapes/shapes_collision_area.c +108 -0
  402. package/vendor/raylib/examples/shapes/shapes_collision_area.png +0 -0
  403. package/vendor/raylib/examples/shapes/shapes_colors_palette.c +99 -0
  404. package/vendor/raylib/examples/shapes/shapes_colors_palette.png +0 -0
  405. package/vendor/raylib/examples/shapes/shapes_draw_circle_sector.c +83 -0
  406. package/vendor/raylib/examples/shapes/shapes_draw_circle_sector.png +0 -0
  407. package/vendor/raylib/examples/shapes/shapes_draw_rectangle_rounded.c +89 -0
  408. package/vendor/raylib/examples/shapes/shapes_draw_rectangle_rounded.png +0 -0
  409. package/vendor/raylib/examples/shapes/shapes_draw_ring.c +96 -0
  410. package/vendor/raylib/examples/shapes/shapes_draw_ring.png +0 -0
  411. package/vendor/raylib/examples/shapes/shapes_easings_ball_anim.c +110 -0
  412. package/vendor/raylib/examples/shapes/shapes_easings_ball_anim.png +0 -0
  413. package/vendor/raylib/examples/shapes/shapes_easings_box_anim.c +136 -0
  414. package/vendor/raylib/examples/shapes/shapes_easings_box_anim.png +0 -0
  415. package/vendor/raylib/examples/shapes/shapes_easings_rectangle_array.c +118 -0
  416. package/vendor/raylib/examples/shapes/shapes_easings_rectangle_array.png +0 -0
  417. package/vendor/raylib/examples/shapes/shapes_following_eyes.c +104 -0
  418. package/vendor/raylib/examples/shapes/shapes_following_eyes.png +0 -0
  419. package/vendor/raylib/examples/shapes/shapes_lines_bezier.c +59 -0
  420. package/vendor/raylib/examples/shapes/shapes_lines_bezier.png +0 -0
  421. package/vendor/raylib/examples/shapes/shapes_logo_raylib.c +56 -0
  422. package/vendor/raylib/examples/shapes/shapes_logo_raylib.png +0 -0
  423. package/vendor/raylib/examples/shapes/shapes_logo_raylib_anim.c +160 -0
  424. package/vendor/raylib/examples/shapes/shapes_logo_raylib_anim.png +0 -0
  425. package/vendor/raylib/examples/shapes/shapes_rectangle_scaling.c +94 -0
  426. package/vendor/raylib/examples/shapes/shapes_rectangle_scaling.png +0 -0
  427. package/vendor/raylib/examples/text/resources/KAISG.ttf +0 -0
  428. package/vendor/raylib/examples/text/resources/LICENSE.md +20 -0
  429. package/vendor/raylib/examples/text/resources/anonymous_pro_bold.ttf +0 -0
  430. package/vendor/raylib/examples/text/resources/custom_alagard.png +0 -0
  431. package/vendor/raylib/examples/text/resources/custom_jupiter_crash.png +0 -0
  432. package/vendor/raylib/examples/text/resources/custom_mecha.png +0 -0
  433. package/vendor/raylib/examples/text/resources/dejavu.fnt +1115 -0
  434. package/vendor/raylib/examples/text/resources/dejavu.png +0 -0
  435. package/vendor/raylib/examples/text/resources/fonts/alagard.png +0 -0
  436. package/vendor/raylib/examples/text/resources/fonts/alpha_beta.png +0 -0
  437. package/vendor/raylib/examples/text/resources/fonts/jupiter_crash.png +0 -0
  438. package/vendor/raylib/examples/text/resources/fonts/mecha.png +0 -0
  439. package/vendor/raylib/examples/text/resources/fonts/pixantiqua.png +0 -0
  440. package/vendor/raylib/examples/text/resources/fonts/pixelplay.png +0 -0
  441. package/vendor/raylib/examples/text/resources/fonts/romulus.png +0 -0
  442. package/vendor/raylib/examples/text/resources/fonts/setback.png +0 -0
  443. package/vendor/raylib/examples/text/resources/noto_cjk.fnt +580 -0
  444. package/vendor/raylib/examples/text/resources/noto_cjk.png +0 -0
  445. package/vendor/raylib/examples/text/resources/pixantiqua.fnt +188 -0
  446. package/vendor/raylib/examples/text/resources/pixantiqua.png +0 -0
  447. package/vendor/raylib/examples/text/resources/pixantiqua.ttf +0 -0
  448. package/vendor/raylib/examples/text/resources/shaders/glsl100/alpha_discard.fs +20 -0
  449. package/vendor/raylib/examples/text/resources/shaders/glsl100/sdf.fs +25 -0
  450. package/vendor/raylib/examples/text/resources/shaders/glsl330/alpha_discard.fs +19 -0
  451. package/vendor/raylib/examples/text/resources/shaders/glsl330/sdf.fs +26 -0
  452. package/vendor/raylib/examples/text/resources/symbola.fnt +191 -0
  453. package/vendor/raylib/examples/text/resources/symbola.png +0 -0
  454. package/vendor/raylib/examples/text/text_draw_3d.c +739 -0
  455. package/vendor/raylib/examples/text/text_draw_3d.png +0 -0
  456. package/vendor/raylib/examples/text/text_font_filters.c +134 -0
  457. package/vendor/raylib/examples/text/text_font_filters.png +0 -0
  458. package/vendor/raylib/examples/text/text_font_loading.c +91 -0
  459. package/vendor/raylib/examples/text/text_font_loading.png +0 -0
  460. package/vendor/raylib/examples/text/text_font_sdf.c +141 -0
  461. package/vendor/raylib/examples/text/text_font_sdf.png +0 -0
  462. package/vendor/raylib/examples/text/text_font_spritefont.c +85 -0
  463. package/vendor/raylib/examples/text/text_font_spritefont.png +0 -0
  464. package/vendor/raylib/examples/text/text_format_text.c +62 -0
  465. package/vendor/raylib/examples/text/text_format_text.png +0 -0
  466. package/vendor/raylib/examples/text/text_input_box.c +127 -0
  467. package/vendor/raylib/examples/text/text_input_box.png +0 -0
  468. package/vendor/raylib/examples/text/text_raylib_fonts.c +105 -0
  469. package/vendor/raylib/examples/text/text_raylib_fonts.png +0 -0
  470. package/vendor/raylib/examples/text/text_rectangle_bounds.c +264 -0
  471. package/vendor/raylib/examples/text/text_rectangle_bounds.png +0 -0
  472. package/vendor/raylib/examples/text/text_unicode.c +465 -0
  473. package/vendor/raylib/examples/text/text_unicode.png +0 -0
  474. package/vendor/raylib/examples/text/text_writing_anim.c +62 -0
  475. package/vendor/raylib/examples/text/text_writing_anim.png +0 -0
  476. package/vendor/raylib/examples/textures/resources/KAISG.ttf +0 -0
  477. package/vendor/raylib/examples/textures/resources/LICENSE.md +18 -0
  478. package/vendor/raylib/examples/textures/resources/boom.wav +0 -0
  479. package/vendor/raylib/examples/textures/resources/button.png +0 -0
  480. package/vendor/raylib/examples/textures/resources/buttonfx.wav +0 -0
  481. package/vendor/raylib/examples/textures/resources/cat.png +0 -0
  482. package/vendor/raylib/examples/textures/resources/custom_jupiter_crash.png +0 -0
  483. package/vendor/raylib/examples/textures/resources/cyberpunk_street_background.png +0 -0
  484. package/vendor/raylib/examples/textures/resources/cyberpunk_street_foreground.png +0 -0
  485. package/vendor/raylib/examples/textures/resources/cyberpunk_street_midground.png +0 -0
  486. package/vendor/raylib/examples/textures/resources/explosion.png +0 -0
  487. package/vendor/raylib/examples/textures/resources/fudesumi.png +0 -0
  488. package/vendor/raylib/examples/textures/resources/fudesumi.raw +0 -0
  489. package/vendor/raylib/examples/textures/resources/ninepatch_button.png +0 -0
  490. package/vendor/raylib/examples/textures/resources/parrots.png +0 -0
  491. package/vendor/raylib/examples/textures/resources/patterns.png +0 -0
  492. package/vendor/raylib/examples/textures/resources/raylib_logo.png +0 -0
  493. package/vendor/raylib/examples/textures/resources/scarfy.png +0 -0
  494. package/vendor/raylib/examples/textures/resources/spark_flame.png +0 -0
  495. package/vendor/raylib/examples/textures/resources/wabbit_alpha.png +0 -0
  496. package/vendor/raylib/examples/textures/textures_background_scrolling.c +87 -0
  497. package/vendor/raylib/examples/textures/textures_background_scrolling.png +0 -0
  498. package/vendor/raylib/examples/textures/textures_blend_modes.c +93 -0
  499. package/vendor/raylib/examples/textures/textures_blend_modes.png +0 -0
  500. package/vendor/raylib/examples/textures/textures_bunnymark.c +120 -0
  501. package/vendor/raylib/examples/textures/textures_bunnymark.png +0 -0
  502. package/vendor/raylib/examples/textures/textures_draw_tiled.c +165 -0
  503. package/vendor/raylib/examples/textures/textures_draw_tiled.png +0 -0
  504. package/vendor/raylib/examples/textures/textures_image_drawing.c +91 -0
  505. package/vendor/raylib/examples/textures/textures_image_drawing.png +0 -0
  506. package/vendor/raylib/examples/textures/textures_image_generation.c +102 -0
  507. package/vendor/raylib/examples/textures/textures_image_generation.png +0 -0
  508. package/vendor/raylib/examples/textures/textures_image_loading.c +64 -0
  509. package/vendor/raylib/examples/textures/textures_image_loading.png +0 -0
  510. package/vendor/raylib/examples/textures/textures_image_processing.c +169 -0
  511. package/vendor/raylib/examples/textures/textures_image_processing.png +0 -0
  512. package/vendor/raylib/examples/textures/textures_image_text.c +83 -0
  513. package/vendor/raylib/examples/textures/textures_image_text.png +0 -0
  514. package/vendor/raylib/examples/textures/textures_logo_raylib.c +57 -0
  515. package/vendor/raylib/examples/textures/textures_logo_raylib.png +0 -0
  516. package/vendor/raylib/examples/textures/textures_mouse_painting.c +221 -0
  517. package/vendor/raylib/examples/textures/textures_mouse_painting.png +0 -0
  518. package/vendor/raylib/examples/textures/textures_npatch_drawing.c +109 -0
  519. package/vendor/raylib/examples/textures/textures_npatch_drawing.png +0 -0
  520. package/vendor/raylib/examples/textures/textures_particles_blending.c +135 -0
  521. package/vendor/raylib/examples/textures/textures_particles_blending.png +0 -0
  522. package/vendor/raylib/examples/textures/textures_polygon.c +100 -0
  523. package/vendor/raylib/examples/textures/textures_polygon.png +0 -0
  524. package/vendor/raylib/examples/textures/textures_raw_data.c +99 -0
  525. package/vendor/raylib/examples/textures/textures_raw_data.png +0 -0
  526. package/vendor/raylib/examples/textures/textures_rectangle.c +99 -0
  527. package/vendor/raylib/examples/textures/textures_rectangle.png +0 -0
  528. package/vendor/raylib/examples/textures/textures_sprite_button.c +97 -0
  529. package/vendor/raylib/examples/textures/textures_sprite_button.png +0 -0
  530. package/vendor/raylib/examples/textures/textures_sprite_explosion.c +120 -0
  531. package/vendor/raylib/examples/textures/textures_sprite_explosion.png +0 -0
  532. package/vendor/raylib/examples/textures/textures_srcrec_dstrec.c +82 -0
  533. package/vendor/raylib/examples/textures/textures_srcrec_dstrec.png +0 -0
  534. package/vendor/raylib/examples/textures/textures_to_image.c +68 -0
  535. package/vendor/raylib/examples/textures/textures_to_image.png +0 -0
  536. package/vendor/raylib/logo/raylib.ico +0 -0
  537. package/vendor/raylib/logo/raylib_128x128.png +0 -0
  538. package/vendor/raylib/logo/raylib_144x144.png +0 -0
  539. package/vendor/raylib/logo/raylib_16x16.png +0 -0
  540. package/vendor/raylib/logo/raylib_180x180.png +0 -0
  541. package/vendor/raylib/logo/raylib_24x24.png +0 -0
  542. package/vendor/raylib/logo/raylib_256x256.png +0 -0
  543. package/vendor/raylib/logo/raylib_32x32.png +0 -0
  544. package/vendor/raylib/logo/raylib_36x36.png +0 -0
  545. package/vendor/raylib/logo/raylib_48x48.png +0 -0
  546. package/vendor/raylib/logo/raylib_512x512.png +0 -0
  547. package/vendor/raylib/logo/raylib_64x64.png +0 -0
  548. package/vendor/raylib/logo/raylib_72x72.png +0 -0
  549. package/vendor/raylib/logo/raylib_96x96.png +0 -0
  550. package/vendor/raylib/logo/raylib_logo_animation.gif +0 -0
  551. package/vendor/raylib/parser/LICENSE +16 -0
  552. package/vendor/raylib/parser/README.md +63 -0
  553. package/vendor/raylib/parser/raylib_api.json +6668 -0
  554. package/vendor/raylib/parser/raylib_api.txt +3568 -0
  555. package/vendor/raylib/parser/raylib_api.xml +2509 -0
  556. package/vendor/raylib/parser/raylib_parser.c +1003 -0
  557. package/vendor/raylib/projects/4coder/Makefile +401 -0
  558. package/vendor/raylib/projects/4coder/Makefile.Android +300 -0
  559. package/vendor/raylib/projects/4coder/main.c +39 -0
  560. package/vendor/raylib/projects/4coder/project.4coder +54 -0
  561. package/vendor/raylib/projects/Builder/README.md +24 -0
  562. package/vendor/raylib/projects/Builder/examples/README.md +1 -0
  563. package/vendor/raylib/projects/Builder/examples/meson.build +25 -0
  564. package/vendor/raylib/projects/Builder/meson.build +25 -0
  565. package/vendor/raylib/projects/CMake/CMakeLists.txt +44 -0
  566. package/vendor/raylib/projects/CMake/core_basic_window.c +62 -0
  567. package/vendor/raylib/projects/CodeBlocks/README.md +22 -0
  568. package/vendor/raylib/projects/CodeBlocks/compiler_settings.png +0 -0
  569. package/vendor/raylib/projects/CodeBlocks/core_basic_window.c +58 -0
  570. package/vendor/raylib/projects/CodeBlocks/core_basic_window.cbp +137 -0
  571. package/vendor/raylib/projects/Geany/core_basic_window.c +52 -0
  572. package/vendor/raylib/projects/Geany/raylib.c.tags +452 -0
  573. package/vendor/raylib/projects/Geany/raylib_compile_execute.bat +21 -0
  574. package/vendor/raylib/projects/Geany/raylib_compile_sources.bat +42 -0
  575. package/vendor/raylib/projects/Geany/raylib_project.geany +41 -0
  576. package/vendor/raylib/projects/Notepad++/README.md +19 -0
  577. package/vendor/raylib/projects/Notepad++/c_raylib.xml +3104 -0
  578. package/vendor/raylib/projects/Notepad++/npes_saved_mingw.txt +0 -0
  579. package/vendor/raylib/projects/Notepad++/npes_saved_tcc.txt +0 -0
  580. package/vendor/raylib/projects/Notepad++/npes_saved_w64devkit.txt +0 -0
  581. package/vendor/raylib/projects/Notepad++/npes_saved_zig.txt +0 -0
  582. package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_npp.xml +3060 -0
  583. package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_npp_parser.c +150 -0
  584. package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h +631 -0
  585. package/vendor/raylib/projects/README.md +18 -0
  586. package/vendor/raylib/projects/SublimeText/README.md +13 -0
  587. package/vendor/raylib/projects/SublimeText/raylib.sublime-build +13 -0
  588. package/vendor/raylib/projects/SublimeText/raylib.sublime-project +8 -0
  589. package/vendor/raylib/projects/VS2019/examples/audio_module_playing.vcxproj +387 -0
  590. package/vendor/raylib/projects/VS2019/examples/audio_multichannel_sound.vcxproj +387 -0
  591. package/vendor/raylib/projects/VS2019/examples/audio_music_stream.vcxproj +387 -0
  592. package/vendor/raylib/projects/VS2019/examples/audio_raw_stream.vcxproj +387 -0
  593. package/vendor/raylib/projects/VS2019/examples/audio_sound_loading.vcxproj +387 -0
  594. package/vendor/raylib/projects/VS2019/examples/core_2d_camera.vcxproj +387 -0
  595. package/vendor/raylib/projects/VS2019/examples/core_2d_camera_platformer.vcxproj +387 -0
  596. package/vendor/raylib/projects/VS2019/examples/core_3d_camera_first_person.vcxproj +387 -0
  597. package/vendor/raylib/projects/VS2019/examples/core_3d_camera_free.vcxproj +387 -0
  598. package/vendor/raylib/projects/VS2019/examples/core_3d_camera_mode.vcxproj +387 -0
  599. package/vendor/raylib/projects/VS2019/examples/core_3d_picking.vcxproj +387 -0
  600. package/vendor/raylib/projects/VS2019/examples/core_basic_window.vcxproj +387 -0
  601. package/vendor/raylib/projects/VS2019/examples/core_custom_logging.vcxproj +387 -0
  602. package/vendor/raylib/projects/VS2019/examples/core_drop_files.vcxproj +387 -0
  603. package/vendor/raylib/projects/VS2019/examples/core_input_gamepad.vcxproj +387 -0
  604. package/vendor/raylib/projects/VS2019/examples/core_input_gestures.vcxproj +387 -0
  605. package/vendor/raylib/projects/VS2019/examples/core_input_keys.vcxproj +387 -0
  606. package/vendor/raylib/projects/VS2019/examples/core_input_mouse.vcxproj +387 -0
  607. package/vendor/raylib/projects/VS2019/examples/core_input_mouse_wheel.vcxproj +387 -0
  608. package/vendor/raylib/projects/VS2019/examples/core_input_multitouch.vcxproj +387 -0
  609. package/vendor/raylib/projects/VS2019/examples/core_loading_thread.vcxproj +387 -0
  610. package/vendor/raylib/projects/VS2019/examples/core_quat_conversion.vcxproj +387 -0
  611. package/vendor/raylib/projects/VS2019/examples/core_random_values.vcxproj +387 -0
  612. package/vendor/raylib/projects/VS2019/examples/core_scissor_test.vcxproj +387 -0
  613. package/vendor/raylib/projects/VS2019/examples/core_split_screen.vcxproj +387 -0
  614. package/vendor/raylib/projects/VS2019/examples/core_storage_values.vcxproj +387 -0
  615. package/vendor/raylib/projects/VS2019/examples/core_vr_simulator.vcxproj +387 -0
  616. package/vendor/raylib/projects/VS2019/examples/core_window_flags.vcxproj +387 -0
  617. package/vendor/raylib/projects/VS2019/examples/core_window_letterbox.vcxproj +387 -0
  618. package/vendor/raylib/projects/VS2019/examples/core_world_screen.vcxproj +387 -0
  619. package/vendor/raylib/projects/VS2019/examples/easings_testbed.vcxproj +387 -0
  620. package/vendor/raylib/projects/VS2019/examples/embedded_files_loading.vcxproj +387 -0
  621. package/vendor/raylib/projects/VS2019/examples/models_animation.vcxproj +387 -0
  622. package/vendor/raylib/projects/VS2019/examples/models_billboard.vcxproj +387 -0
  623. package/vendor/raylib/projects/VS2019/examples/models_box_collisions.vcxproj +387 -0
  624. package/vendor/raylib/projects/VS2019/examples/models_cubicmap.vcxproj +387 -0
  625. package/vendor/raylib/projects/VS2019/examples/models_first_person_maze.vcxproj +387 -0
  626. package/vendor/raylib/projects/VS2019/examples/models_geometric_shapes.vcxproj +387 -0
  627. package/vendor/raylib/projects/VS2019/examples/models_heightmap.vcxproj +387 -0
  628. package/vendor/raylib/projects/VS2019/examples/models_loading.vcxproj +387 -0
  629. package/vendor/raylib/projects/VS2019/examples/models_loading_gltf.vcxproj +387 -0
  630. package/vendor/raylib/projects/VS2019/examples/models_loading_vox.vcxproj +387 -0
  631. package/vendor/raylib/projects/VS2019/examples/models_mesh_generation.vcxproj +387 -0
  632. package/vendor/raylib/projects/VS2019/examples/models_mesh_picking.vcxproj +387 -0
  633. package/vendor/raylib/projects/VS2019/examples/models_orthographic_projection.vcxproj +387 -0
  634. package/vendor/raylib/projects/VS2019/examples/models_rlgl_solar_system.vcxproj +387 -0
  635. package/vendor/raylib/projects/VS2019/examples/models_skybox.vcxproj +387 -0
  636. package/vendor/raylib/projects/VS2019/examples/models_waving_cubes.vcxproj +387 -0
  637. package/vendor/raylib/projects/VS2019/examples/models_yaw_pitch_roll.vcxproj +387 -0
  638. package/vendor/raylib/projects/VS2019/examples/physics_demo.vcxproj +387 -0
  639. package/vendor/raylib/projects/VS2019/examples/physics_friction.vcxproj +387 -0
  640. package/vendor/raylib/projects/VS2019/examples/physics_movement.vcxproj +387 -0
  641. package/vendor/raylib/projects/VS2019/examples/physics_restitution.vcxproj +387 -0
  642. package/vendor/raylib/projects/VS2019/examples/physics_shatter.vcxproj +387 -0
  643. package/vendor/raylib/projects/VS2019/examples/raudio_standalone.vcxproj +387 -0
  644. package/vendor/raylib/projects/VS2019/examples/rlgl_standalone.vcxproj +391 -0
  645. package/vendor/raylib/projects/VS2019/examples/shaders_basic_lighting.vcxproj +387 -0
  646. package/vendor/raylib/projects/VS2019/examples/shaders_custom_uniform.vcxproj +387 -0
  647. package/vendor/raylib/projects/VS2019/examples/shaders_eratosthenes.vcxproj +387 -0
  648. package/vendor/raylib/projects/VS2019/examples/shaders_fog.vcxproj +387 -0
  649. package/vendor/raylib/projects/VS2019/examples/shaders_hot_reloading.vcxproj +387 -0
  650. package/vendor/raylib/projects/VS2019/examples/shaders_julia_set.vcxproj +387 -0
  651. package/vendor/raylib/projects/VS2019/examples/shaders_mesh_instancing.vcxproj +387 -0
  652. package/vendor/raylib/projects/VS2019/examples/shaders_model_shader.vcxproj +387 -0
  653. package/vendor/raylib/projects/VS2019/examples/shaders_multi_sample2d.vcxproj +387 -0
  654. package/vendor/raylib/projects/VS2019/examples/shaders_palette_switch.vcxproj +387 -0
  655. package/vendor/raylib/projects/VS2019/examples/shaders_postprocessing.vcxproj +387 -0
  656. package/vendor/raylib/projects/VS2019/examples/shaders_raymarching.vcxproj +387 -0
  657. package/vendor/raylib/projects/VS2019/examples/shaders_shapes_textures.vcxproj +387 -0
  658. package/vendor/raylib/projects/VS2019/examples/shaders_simple_mask.vcxproj +387 -0
  659. package/vendor/raylib/projects/VS2019/examples/shaders_spotlight.vcxproj +387 -0
  660. package/vendor/raylib/projects/VS2019/examples/shaders_texture_drawing.vcxproj +387 -0
  661. package/vendor/raylib/projects/VS2019/examples/shaders_texture_waves.vcxproj +387 -0
  662. package/vendor/raylib/projects/VS2019/examples/shapes_basic_shapes.vcxproj +387 -0
  663. package/vendor/raylib/projects/VS2019/examples/shapes_bouncing_ball.vcxproj +387 -0
  664. package/vendor/raylib/projects/VS2019/examples/shapes_collision_area.vcxproj +387 -0
  665. package/vendor/raylib/projects/VS2019/examples/shapes_colors_palette.vcxproj +387 -0
  666. package/vendor/raylib/projects/VS2019/examples/shapes_draw_circle_sector.vcxproj +387 -0
  667. package/vendor/raylib/projects/VS2019/examples/shapes_draw_rectangle_rounded.vcxproj +387 -0
  668. package/vendor/raylib/projects/VS2019/examples/shapes_draw_ring.vcxproj +387 -0
  669. package/vendor/raylib/projects/VS2019/examples/shapes_easings_ball_anim.vcxproj +387 -0
  670. package/vendor/raylib/projects/VS2019/examples/shapes_easings_box_anim.vcxproj +387 -0
  671. package/vendor/raylib/projects/VS2019/examples/shapes_easings_rectangle_array.vcxproj +387 -0
  672. package/vendor/raylib/projects/VS2019/examples/shapes_following_eyes.vcxproj +387 -0
  673. package/vendor/raylib/projects/VS2019/examples/shapes_lines_bezier.vcxproj +387 -0
  674. package/vendor/raylib/projects/VS2019/examples/shapes_logo_raylib.vcxproj +387 -0
  675. package/vendor/raylib/projects/VS2019/examples/shapes_logo_raylib_anim.vcxproj +387 -0
  676. package/vendor/raylib/projects/VS2019/examples/shapes_rectangle_scaling.vcxproj +387 -0
  677. package/vendor/raylib/projects/VS2019/examples/text_font_filters.vcxproj +387 -0
  678. package/vendor/raylib/projects/VS2019/examples/text_font_loading.vcxproj +387 -0
  679. package/vendor/raylib/projects/VS2019/examples/text_font_sdf.vcxproj +387 -0
  680. package/vendor/raylib/projects/VS2019/examples/text_font_spritefont.vcxproj +387 -0
  681. package/vendor/raylib/projects/VS2019/examples/text_format_text.vcxproj +387 -0
  682. package/vendor/raylib/projects/VS2019/examples/text_input_box.vcxproj +387 -0
  683. package/vendor/raylib/projects/VS2019/examples/text_raylib_fonts.vcxproj +387 -0
  684. package/vendor/raylib/projects/VS2019/examples/text_rectangle_bounds.vcxproj +387 -0
  685. package/vendor/raylib/projects/VS2019/examples/text_unicode.vcxproj +387 -0
  686. package/vendor/raylib/projects/VS2019/examples/text_writing_anim.vcxproj +387 -0
  687. package/vendor/raylib/projects/VS2019/examples/textures_background_scrolling.vcxproj +387 -0
  688. package/vendor/raylib/projects/VS2019/examples/textures_blend_modes.vcxproj +387 -0
  689. package/vendor/raylib/projects/VS2019/examples/textures_bunnymark.vcxproj +387 -0
  690. package/vendor/raylib/projects/VS2019/examples/textures_draw_tiled.vcxproj +387 -0
  691. package/vendor/raylib/projects/VS2019/examples/textures_image_drawing.vcxproj +387 -0
  692. package/vendor/raylib/projects/VS2019/examples/textures_image_generation.vcxproj +387 -0
  693. package/vendor/raylib/projects/VS2019/examples/textures_image_loading.vcxproj +387 -0
  694. package/vendor/raylib/projects/VS2019/examples/textures_image_processing.vcxproj +387 -0
  695. package/vendor/raylib/projects/VS2019/examples/textures_image_text.vcxproj +387 -0
  696. package/vendor/raylib/projects/VS2019/examples/textures_logo_raylib.vcxproj +387 -0
  697. package/vendor/raylib/projects/VS2019/examples/textures_mouse_painting.vcxproj +387 -0
  698. package/vendor/raylib/projects/VS2019/examples/textures_npatch_drawing.vcxproj +387 -0
  699. package/vendor/raylib/projects/VS2019/examples/textures_particles_blending.vcxproj +387 -0
  700. package/vendor/raylib/projects/VS2019/examples/textures_raw_data.vcxproj +387 -0
  701. package/vendor/raylib/projects/VS2019/examples/textures_rectangle.vcxproj +387 -0
  702. package/vendor/raylib/projects/VS2019/examples/textures_sprite_button.vcxproj +387 -0
  703. package/vendor/raylib/projects/VS2019/examples/textures_sprite_explosion.vcxproj +387 -0
  704. package/vendor/raylib/projects/VS2019/examples/textures_srcrec_dstrec.vcxproj +387 -0
  705. package/vendor/raylib/projects/VS2019/examples/textures_to_image.vcxproj +387 -0
  706. package/vendor/raylib/projects/VS2019/raylib/raylib.rc +0 -0
  707. package/vendor/raylib/projects/VS2019/raylib/raylib.vcxproj +341 -0
  708. package/vendor/raylib/projects/VS2019/raylib/resource.h +14 -0
  709. package/vendor/raylib/projects/VS2019/raylib.sln +2274 -0
  710. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/android_native_app_glue.c +437 -0
  711. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/android_native_app_glue.h +344 -0
  712. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/main.c +64 -0
  713. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/raylib_android.NativeActivity.vcxproj +226 -0
  714. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/raylib_android.NativeActivity.vcxproj.filters +10 -0
  715. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/raylib_android.NativeActivity.vcxproj.user +4 -0
  716. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/AndroidManifest.xml +22 -0
  717. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/build.xml +90 -0
  718. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/project.properties +3 -0
  719. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/raylib_android.Packaging.androidproj +134 -0
  720. package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/res/values/strings.xml +4 -0
  721. package/vendor/raylib/projects/VS2019-Android/raylib_android.sln +75 -0
  722. package/vendor/raylib/projects/VSCode/.vscode/c_cpp_properties.json +63 -0
  723. package/vendor/raylib/projects/VSCode/.vscode/launch.json +60 -0
  724. package/vendor/raylib/projects/VSCode/.vscode/settings.json +11 -0
  725. package/vendor/raylib/projects/VSCode/.vscode/tasks.json +71 -0
  726. package/vendor/raylib/projects/VSCode/Makefile +408 -0
  727. package/vendor/raylib/projects/VSCode/Makefile.Android +300 -0
  728. package/vendor/raylib/projects/VSCode/main.c +83 -0
  729. package/vendor/raylib/projects/VSCode/main.code-workspace +16 -0
  730. package/vendor/raylib/projects/scripts/README.md +68 -0
  731. package/vendor/raylib/projects/scripts/build-linux.sh +169 -0
  732. package/vendor/raylib/projects/scripts/build-osx.sh +171 -0
  733. package/vendor/raylib/projects/scripts/build-rpi.sh +169 -0
  734. package/vendor/raylib/projects/scripts/build-windows.bat +219 -0
  735. package/vendor/raylib/projects/scripts/core_basic_window.c +61 -0
  736. package/vendor/raylib/raylib.pc.in +13 -0
  737. package/vendor/raylib/src/CMakeLists.txt +121 -0
  738. package/vendor/raylib/src/Makefile +696 -0
  739. package/vendor/raylib/src/build.zig +60 -0
  740. package/vendor/raylib/src/config.h +230 -0
  741. package/vendor/raylib/src/external/cgltf.h +6501 -0
  742. package/vendor/raylib/src/external/dirent.h +183 -0
  743. package/vendor/raylib/src/external/dr_flac.h +12269 -0
  744. package/vendor/raylib/src/external/dr_mp3.h +4787 -0
  745. package/vendor/raylib/src/external/dr_wav.h +8019 -0
  746. package/vendor/raylib/src/external/glad.h +8640 -0
  747. package/vendor/raylib/src/external/glfw/.mailmap +10 -0
  748. package/vendor/raylib/src/external/glfw/CMake/GenerateMappings.cmake +33 -0
  749. package/vendor/raylib/src/external/glfw/CMake/Info.plist.in +38 -0
  750. package/vendor/raylib/src/external/glfw/CMake/MacOSXBundleInfo.plist.in +38 -0
  751. package/vendor/raylib/src/external/glfw/CMake/cmake_uninstall.cmake.in +29 -0
  752. package/vendor/raylib/src/external/glfw/CMake/glfw3.pc.in +13 -0
  753. package/vendor/raylib/src/external/glfw/CMake/glfw3Config.cmake.in +3 -0
  754. package/vendor/raylib/src/external/glfw/CMake/i686-w64-mingw32-clang.cmake +13 -0
  755. package/vendor/raylib/src/external/glfw/CMake/i686-w64-mingw32.cmake +13 -0
  756. package/vendor/raylib/src/external/glfw/CMake/modules/FindEpollShim.cmake +17 -0
  757. package/vendor/raylib/src/external/glfw/CMake/modules/FindOSMesa.cmake +18 -0
  758. package/vendor/raylib/src/external/glfw/CMake/modules/FindWaylandProtocols.cmake +26 -0
  759. package/vendor/raylib/src/external/glfw/CMake/modules/FindXKBCommon.cmake +34 -0
  760. package/vendor/raylib/src/external/glfw/CMake/x86_64-w64-mingw32-clang.cmake +13 -0
  761. package/vendor/raylib/src/external/glfw/CMake/x86_64-w64-mingw32.cmake +13 -0
  762. package/vendor/raylib/src/external/glfw/CMakeLists.txt +323 -0
  763. package/vendor/raylib/src/external/glfw/LICENSE.md +23 -0
  764. package/vendor/raylib/src/external/glfw/README.md +477 -0
  765. package/vendor/raylib/src/external/glfw/deps/getopt.c +230 -0
  766. package/vendor/raylib/src/external/glfw/deps/getopt.h +57 -0
  767. package/vendor/raylib/src/external/glfw/deps/glad/gl.h +3840 -0
  768. package/vendor/raylib/src/external/glfw/deps/glad/khrplatform.h +282 -0
  769. package/vendor/raylib/src/external/glfw/deps/glad/vk_platform.h +92 -0
  770. package/vendor/raylib/src/external/glfw/deps/glad/vulkan.h +3480 -0
  771. package/vendor/raylib/src/external/glfw/deps/glad_gl.c +1791 -0
  772. package/vendor/raylib/src/external/glfw/deps/glad_vulkan.c +593 -0
  773. package/vendor/raylib/src/external/glfw/deps/mingw/_mingw_dxhelper.h +117 -0
  774. package/vendor/raylib/src/external/glfw/deps/mingw/dinput.h +2467 -0
  775. package/vendor/raylib/src/external/glfw/deps/mingw/xinput.h +239 -0
  776. package/vendor/raylib/src/external/glfw/deps/vs2008/stdint.h +247 -0
  777. package/vendor/raylib/src/external/glfw/include/GLFW/glfw3.h +6075 -0
  778. package/vendor/raylib/src/external/glfw/include/GLFW/glfw3native.h +530 -0
  779. package/vendor/raylib/src/external/glfw/src/CMakeLists.txt +246 -0
  780. package/vendor/raylib/src/external/glfw/src/cocoa_init.m +620 -0
  781. package/vendor/raylib/src/external/glfw/src/cocoa_joystick.h +46 -0
  782. package/vendor/raylib/src/external/glfw/src/cocoa_joystick.m +483 -0
  783. package/vendor/raylib/src/external/glfw/src/cocoa_monitor.m +631 -0
  784. package/vendor/raylib/src/external/glfw/src/cocoa_platform.h +206 -0
  785. package/vendor/raylib/src/external/glfw/src/cocoa_time.c +62 -0
  786. package/vendor/raylib/src/external/glfw/src/cocoa_window.m +1923 -0
  787. package/vendor/raylib/src/external/glfw/src/context.c +756 -0
  788. package/vendor/raylib/src/external/glfw/src/egl_context.c +846 -0
  789. package/vendor/raylib/src/external/glfw/src/egl_context.h +229 -0
  790. package/vendor/raylib/src/external/glfw/src/glfw.rc.in +30 -0
  791. package/vendor/raylib/src/external/glfw/src/glfw_config.h.in +58 -0
  792. package/vendor/raylib/src/external/glfw/src/glx_context.c +699 -0
  793. package/vendor/raylib/src/external/glfw/src/glx_context.h +181 -0
  794. package/vendor/raylib/src/external/glfw/src/init.c +357 -0
  795. package/vendor/raylib/src/external/glfw/src/input.c +1406 -0
  796. package/vendor/raylib/src/external/glfw/src/internal.h +799 -0
  797. package/vendor/raylib/src/external/glfw/src/linux_joystick.c +428 -0
  798. package/vendor/raylib/src/external/glfw/src/linux_joystick.h +59 -0
  799. package/vendor/raylib/src/external/glfw/src/mappings.h +1550 -0
  800. package/vendor/raylib/src/external/glfw/src/mappings.h.in +73 -0
  801. package/vendor/raylib/src/external/glfw/src/monitor.c +542 -0
  802. package/vendor/raylib/src/external/glfw/src/nsgl_context.h +66 -0
  803. package/vendor/raylib/src/external/glfw/src/nsgl_context.m +369 -0
  804. package/vendor/raylib/src/external/glfw/src/null_init.c +57 -0
  805. package/vendor/raylib/src/external/glfw/src/null_joystick.c +53 -0
  806. package/vendor/raylib/src/external/glfw/src/null_joystick.h +31 -0
  807. package/vendor/raylib/src/external/glfw/src/null_monitor.c +159 -0
  808. package/vendor/raylib/src/external/glfw/src/null_platform.h +89 -0
  809. package/vendor/raylib/src/external/glfw/src/null_window.c +670 -0
  810. package/vendor/raylib/src/external/glfw/src/osmesa_context.c +372 -0
  811. package/vendor/raylib/src/external/glfw/src/osmesa_context.h +90 -0
  812. package/vendor/raylib/src/external/glfw/src/posix_thread.c +105 -0
  813. package/vendor/raylib/src/external/glfw/src/posix_thread.h +51 -0
  814. package/vendor/raylib/src/external/glfw/src/posix_time.c +90 -0
  815. package/vendor/raylib/src/external/glfw/src/posix_time.h +44 -0
  816. package/vendor/raylib/src/external/glfw/src/vulkan.c +332 -0
  817. package/vendor/raylib/src/external/glfw/src/wgl_context.c +798 -0
  818. package/vendor/raylib/src/external/glfw/src/wgl_context.h +160 -0
  819. package/vendor/raylib/src/external/glfw/src/win32_init.c +636 -0
  820. package/vendor/raylib/src/external/glfw/src/win32_joystick.c +753 -0
  821. package/vendor/raylib/src/external/glfw/src/win32_joystick.h +53 -0
  822. package/vendor/raylib/src/external/glfw/src/win32_monitor.c +537 -0
  823. package/vendor/raylib/src/external/glfw/src/win32_platform.h +462 -0
  824. package/vendor/raylib/src/external/glfw/src/win32_thread.c +99 -0
  825. package/vendor/raylib/src/external/glfw/src/win32_time.c +76 -0
  826. package/vendor/raylib/src/external/glfw/src/win32_window.c +2405 -0
  827. package/vendor/raylib/src/external/glfw/src/window.c +1114 -0
  828. package/vendor/raylib/src/external/glfw/src/wl_init.c +1310 -0
  829. package/vendor/raylib/src/external/glfw/src/wl_monitor.c +231 -0
  830. package/vendor/raylib/src/external/glfw/src/wl_platform.h +352 -0
  831. package/vendor/raylib/src/external/glfw/src/wl_window.c +1814 -0
  832. package/vendor/raylib/src/external/glfw/src/x11_init.c +1500 -0
  833. package/vendor/raylib/src/external/glfw/src/x11_monitor.c +614 -0
  834. package/vendor/raylib/src/external/glfw/src/x11_platform.h +798 -0
  835. package/vendor/raylib/src/external/glfw/src/x11_window.c +3310 -0
  836. package/vendor/raylib/src/external/glfw/src/xkb_unicode.c +942 -0
  837. package/vendor/raylib/src/external/glfw/src/xkb_unicode.h +28 -0
  838. package/vendor/raylib/src/external/jar_mod.h +1596 -0
  839. package/vendor/raylib/src/external/jar_xm.h +2470 -0
  840. package/vendor/raylib/src/external/miniaudio.h +70273 -0
  841. package/vendor/raylib/src/external/msf_gif.h +717 -0
  842. package/vendor/raylib/src/external/par_shapes.h +2155 -0
  843. package/vendor/raylib/src/external/sdefl.h +696 -0
  844. package/vendor/raylib/src/external/sinfl.h +584 -0
  845. package/vendor/raylib/src/external/stb_image.h +7897 -0
  846. package/vendor/raylib/src/external/stb_image_resize.h +2634 -0
  847. package/vendor/raylib/src/external/stb_image_write.h +1724 -0
  848. package/vendor/raylib/src/external/stb_rect_pack.h +623 -0
  849. package/vendor/raylib/src/external/stb_truetype.h +5077 -0
  850. package/vendor/raylib/src/external/stb_vorbis.h +5475 -0
  851. package/vendor/raylib/src/external/tinyobj_loader_c.h +1589 -0
  852. package/vendor/raylib/src/external/vox_loader.h +710 -0
  853. package/vendor/raylib/src/extras/easings.h +263 -0
  854. package/vendor/raylib/src/extras/physac.h +1977 -0
  855. package/vendor/raylib/src/extras/raygui.h +4342 -0
  856. package/vendor/raylib/src/extras/rmem.h +751 -0
  857. package/vendor/raylib/src/raudio.c +2380 -0
  858. package/vendor/raylib/src/raudio.h +198 -0
  859. package/vendor/raylib/src/raylib.dll.rc +27 -0
  860. package/vendor/raylib/src/raylib.dll.rc.data +0 -0
  861. package/vendor/raylib/src/raylib.h +1536 -0
  862. package/vendor/raylib/src/raylib.ico +0 -0
  863. package/vendor/raylib/src/raylib.rc +27 -0
  864. package/vendor/raylib/src/raylib.rc.data +0 -0
  865. package/vendor/raylib/src/raymath.h +1853 -0
  866. package/vendor/raylib/src/rcamera.h +567 -0
  867. package/vendor/raylib/src/rcore.c +6772 -0
  868. package/vendor/raylib/src/rgestures.h +566 -0
  869. package/vendor/raylib/src/rglfw.c +126 -0
  870. package/vendor/raylib/src/rlgl.h +4677 -0
  871. package/vendor/raylib/src/rmodels.c +5041 -0
  872. package/vendor/raylib/src/rshapes.c +1759 -0
  873. package/vendor/raylib/src/rtext.c +1790 -0
  874. package/vendor/raylib/src/rtextures.c +4761 -0
  875. package/vendor/raylib/src/shell.html +328 -0
  876. package/vendor/raylib/src/utils.c +433 -0
  877. package/vendor/raylib/src/utils.h +81 -0
  878. package/vendor/sqlite3/shell.c +23487 -0
  879. package/vendor/sqlite3/sqlite3.c +239246 -0
  880. package/vendor/sqlite3/sqlite3.h +12802 -0
  881. package/vendor/sqlite3/sqlite3ext.h +689 -0
  882. package/CMakeLists.txt +0 -60
@@ -0,0 +1,1888 @@
1
+ # (c) 2018 Medieval Assets Pack by Alberto Cano
2
+ # Licensed as Creative Commons Attribution-NonCommercial 4.0
3
+
4
+ #
5
+ # object turret
6
+ #
7
+
8
+ v 0.0000 13.3010 3.5973
9
+ v 0.0000 12.1596 2.3386
10
+ v 2.5639 12.1596 2.3386
11
+ v 3.4913 13.3010 3.5973
12
+ v 3.5203 14.0462 3.0738
13
+ v 3.9444 14.0450 3.1421
14
+ v 3.9444 14.0369 -0.0000
15
+ v 3.4351 14.0369 -0.0000
16
+ v 3.4352 14.0462 2.9719
17
+ v 3.3643 13.3303 2.9127
18
+ v 0.0000 13.3303 2.9127
19
+ v 0.0000 13.3010 2.9740
20
+ v 3.4352 13.3010 2.9740
21
+ v 0.0000 14.0462 2.9719
22
+ v 3.9444 13.2918 -0.0000
23
+ v 3.9444 13.2998 3.1441
24
+ v 3.4913 14.0462 3.5952
25
+ v 3.3643 13.3303 -0.0000
26
+ v 0.0000 13.3303 -0.0000
27
+ v 0.0000 14.0462 3.5952
28
+ v 2.5639 12.1504 -0.0000
29
+ v 3.4352 13.2918 -0.0000
30
+ v 3.5237 14.9316 3.0740
31
+ v 3.9478 14.9305 3.1422
32
+ v 3.4947 14.9316 3.5953
33
+ v 3.5271 16.4764 1.4274
34
+ v 3.9512 16.4752 1.4274
35
+ v 3.9512 15.9080 2.0774
36
+ v 3.5271 15.9092 2.0092
37
+ v 1.8327 16.4815 3.5953
38
+ v 1.8617 16.4815 3.0742
39
+ v 2.5117 15.9086 3.0742
40
+ v 2.4725 15.9086 3.5953
41
+ v 3.9512 16.4757 3.1424
42
+ v 3.4981 16.4769 3.5955
43
+ v 3.5271 16.4769 3.0742
44
+ v 2.5639 12.1596 -2.3386
45
+ v 0.0000 12.1596 -2.3386
46
+ v 0.0000 13.3010 -3.5973
47
+ v 3.4913 13.3010 -3.5973
48
+ v 3.5203 14.0462 -3.0738
49
+ v 3.4351 14.0462 -2.9720
50
+ v 3.9444 14.0450 -3.1421
51
+ v 0.0000 13.3010 -2.9740
52
+ v 0.0000 13.3303 -2.9127
53
+ v 3.3643 13.3303 -2.9127
54
+ v 3.4352 13.3010 -2.9740
55
+ v 0.0000 14.0462 -2.9719
56
+ v 3.9444 13.2998 -3.1441
57
+ v 3.4913 14.0462 -3.5952
58
+ v 0.0000 14.0462 -3.5952
59
+ v 3.9478 14.9305 -3.1422
60
+ v 3.5237 14.9316 -3.0740
61
+ v 3.4947 14.9316 -3.5953
62
+ v 3.9512 15.9080 -2.0774
63
+ v 3.9512 16.4752 -1.4274
64
+ v 3.5271 16.4764 -1.4274
65
+ v 3.5271 15.9092 -2.0092
66
+ v 2.5117 15.9086 -3.0742
67
+ v 1.8617 16.4815 -3.0742
68
+ v 1.8327 16.4815 -3.5954
69
+ v 2.4725 15.9086 -3.5953
70
+ v 3.4981 16.4769 -3.5955
71
+ v 3.9512 16.4757 -3.1424
72
+ v 3.5271 16.4769 -3.0742
73
+ v -2.5639 12.1596 2.3386
74
+ v -3.4913 13.3010 3.5973
75
+ v -3.5203 14.0462 3.0738
76
+ v -3.4351 14.0462 2.9720
77
+ v -3.4351 14.0369 0.0000
78
+ v -3.9444 14.0369 0.0000
79
+ v -3.9444 14.0450 3.1421
80
+ v -3.3643 13.3303 2.9127
81
+ v -3.4351 13.3010 2.9740
82
+ v -3.9444 13.2918 0.0000
83
+ v -3.9444 13.2998 3.1441
84
+ v -3.4913 14.0462 3.5952
85
+ v -3.3643 13.3303 0.0000
86
+ v -2.5639 12.1504 0.0000
87
+ v -3.4351 13.2918 0.0000
88
+ v -3.9478 14.9305 3.1422
89
+ v -3.5237 14.9316 3.0740
90
+ v -3.4947 14.9316 3.5954
91
+ v -3.9512 15.9080 2.0774
92
+ v -3.9512 16.4752 1.4274
93
+ v -3.5271 16.4764 1.4274
94
+ v -3.5271 15.9092 2.0092
95
+ v -2.5117 15.9086 3.0742
96
+ v -1.8617 16.4815 3.0742
97
+ v -1.8327 16.4815 3.5954
98
+ v -2.4725 15.9086 3.5953
99
+ v -3.4981 16.4769 3.5955
100
+ v -3.9512 16.4757 3.1424
101
+ v -3.5271 16.4769 3.0742
102
+ v -2.5639 12.1596 -2.3386
103
+ v -3.4913 13.3010 -3.5972
104
+ v -3.5203 14.0462 -3.0738
105
+ v -3.9444 14.0450 -3.1421
106
+ v -3.4351 14.0462 -2.9719
107
+ v -3.3643 13.3303 -2.9127
108
+ v -3.4351 13.3010 -2.9740
109
+ v -3.9444 13.2998 -3.1441
110
+ v -3.4913 14.0462 -3.5952
111
+ v -3.5237 14.9316 -3.0740
112
+ v -3.9478 14.9305 -3.1422
113
+ v -3.4947 14.9316 -3.5953
114
+ v -3.5271 16.4764 -1.4274
115
+ v -3.9512 16.4752 -1.4274
116
+ v -3.9512 15.9080 -2.0774
117
+ v -3.5271 15.9092 -2.0092
118
+ v -1.8327 16.4815 -3.5953
119
+ v -1.8617 16.4815 -3.0742
120
+ v -2.5117 15.9086 -3.0742
121
+ v -2.4725 15.9086 -3.5953
122
+ v -3.9512 16.4757 -3.1424
123
+ v -3.4981 16.4769 -3.5955
124
+ v -3.5271 16.4769 -3.0742
125
+ v 0.1550 14.0277 -3.1544
126
+ v 0.1550 14.0277 -3.5335
127
+ v 0.1550 16.9018 -3.5335
128
+ v 0.1550 16.9018 -3.1544
129
+ v -0.5341 14.0277 -3.5335
130
+ v -0.5341 16.9018 -3.5335
131
+ v -0.5341 14.0277 -3.1544
132
+ v -0.5341 16.9018 -3.1544
133
+ v -3.5170 14.0277 -0.3456
134
+ v -3.8961 14.0277 -0.3456
135
+ v -3.8961 16.9018 -0.3456
136
+ v -3.5170 16.9018 -0.3456
137
+ v -3.8961 14.0277 0.3435
138
+ v -3.8961 16.9018 0.3435
139
+ v -3.5170 14.0277 0.3435
140
+ v -3.5170 16.9018 0.3435
141
+ v -0.3446 14.0277 3.1662
142
+ v -0.3446 14.0277 3.5453
143
+ v -0.3446 16.9018 3.5453
144
+ v -0.3446 16.9018 3.1662
145
+ v 0.3445 14.0277 3.5453
146
+ v 0.3445 16.9018 3.5453
147
+ v 0.3445 14.0277 3.1662
148
+ v 0.3445 16.9018 3.1662
149
+ v 3.5160 14.0277 0.3435
150
+ v 3.8951 14.0277 0.3435
151
+ v 3.8951 16.9018 0.3435
152
+ v 3.5160 16.9018 0.3435
153
+ v 3.8951 14.0277 -0.3456
154
+ v 3.8951 16.9018 -0.3456
155
+ v 3.5160 14.0277 -0.3456
156
+ v 3.5160 16.9018 -0.3456
157
+ v 0.0000 8.6187 2.3766
158
+ v 0.4715 8.6467 2.3766
159
+ v 0.4598 9.7167 2.3896
160
+ v -0.0117 10.0591 2.3896
161
+ v 0.8403 8.5183 2.4160
162
+ v 0.8403 8.5183 2.3077
163
+ v 0.8403 8.6724 2.3077
164
+ v 0.8403 8.6724 2.4160
165
+ v 0.7068 9.8138 2.4290
166
+ v 0.7068 9.8138 2.3207
167
+ v -0.0117 10.3117 2.3207
168
+ v -0.0117 10.3117 2.4290
169
+ v -0.8403 8.6724 2.4160
170
+ v -0.8403 8.6724 2.3077
171
+ v -0.8403 8.5183 2.3077
172
+ v -0.8403 8.5183 2.4160
173
+ v -0.7186 8.5183 2.4160
174
+ v -0.7186 8.5183 2.3077
175
+ v -0.0000 8.4646 2.3077
176
+ v -0.0000 8.4646 2.4160
177
+ v 0.7185 8.5183 2.5347
178
+ v 0.7185 8.6724 2.5347
179
+ v 0.4715 8.6467 2.5347
180
+ v 0.4598 9.7167 2.4290
181
+ v -0.0117 10.0591 2.4290
182
+ v -0.7186 8.6724 2.5347
183
+ v -0.7186 8.5183 2.5347
184
+ v -0.4715 8.6567 2.5347
185
+ v -0.0000 8.4646 2.5347
186
+ v -0.0000 8.6187 2.5347
187
+ v -0.4833 9.7167 2.3896
188
+ v -0.4715 8.6567 2.3766
189
+ v -0.7303 9.8138 2.3207
190
+ v -0.7302 9.8138 2.4290
191
+ v 0.7185 8.5183 2.3077
192
+ v 0.7185 8.5183 2.4160
193
+ v -0.4832 9.7167 2.4290
194
+ v 0.4715 8.6467 2.4160
195
+ v -0.4716 8.6567 2.4160
196
+ v -0.0000 8.6187 2.4160
197
+ v -0.7186 8.6724 2.4160
198
+ v -0.7186 8.6724 2.3077
199
+ v 0.7185 8.6724 2.4160
200
+ v 0.7185 8.6724 2.3077
201
+ v 0.8403 8.5183 2.5347
202
+ v 0.8403 8.6724 2.5347
203
+ v -0.8403 8.6724 2.5347
204
+ v -0.8403 8.5183 2.5347
205
+ v 2.6080 8.6187 -0.0010
206
+ v 2.6080 8.6467 -0.4725
207
+ v 2.6210 9.7167 -0.4608
208
+ v 2.6210 10.0591 0.0107
209
+ v 2.6474 8.5183 -0.8413
210
+ v 2.5392 8.5183 -0.8413
211
+ v 2.5392 8.6724 -0.8413
212
+ v 2.6474 8.6724 -0.8413
213
+ v 2.6604 9.8138 -0.7079
214
+ v 2.5522 9.8138 -0.7078
215
+ v 2.5522 10.3117 0.0107
216
+ v 2.6604 10.3117 0.0107
217
+ v 2.6474 8.6724 0.8393
218
+ v 2.5392 8.6724 0.8393
219
+ v 2.5392 8.5183 0.8393
220
+ v 2.6474 8.5183 0.8393
221
+ v 2.6474 8.5183 0.7175
222
+ v 2.5392 8.5183 0.7175
223
+ v 2.5392 8.4646 -0.0010
224
+ v 2.6474 8.4646 -0.0010
225
+ v 2.7661 8.5183 -0.7195
226
+ v 2.7661 8.6724 -0.7195
227
+ v 2.7661 8.6467 -0.4725
228
+ v 2.6604 9.7167 -0.4609
229
+ v 2.6604 10.0591 0.0107
230
+ v 2.7661 8.6724 0.7175
231
+ v 2.7661 8.5183 0.7175
232
+ v 2.7661 8.6567 0.4705
233
+ v 2.7661 8.4646 -0.0010
234
+ v 2.7661 8.6187 -0.0010
235
+ v 2.6210 9.7167 0.4822
236
+ v 2.6080 8.6567 0.4705
237
+ v 2.5522 9.8138 0.7292
238
+ v 2.6604 9.8138 0.7292
239
+ v 2.5392 8.5183 -0.7196
240
+ v 2.6474 8.5183 -0.7195
241
+ v 2.6604 9.7167 0.4822
242
+ v 2.6474 8.6467 -0.4725
243
+ v 2.6474 8.6567 0.4705
244
+ v 2.6474 8.6187 -0.0010
245
+ v 2.6474 8.6724 0.7175
246
+ v 2.5392 8.6724 0.7175
247
+ v 2.6474 8.6724 -0.7195
248
+ v 2.5392 8.6724 -0.7196
249
+ v 2.7661 8.5183 -0.8413
250
+ v 2.7661 8.6724 -0.8413
251
+ v 2.7661 8.6724 0.8393
252
+ v 2.7661 8.5183 0.8393
253
+ v -2.6159 8.6187 -0.0010
254
+ v -2.6159 8.6467 0.4705
255
+ v -2.6289 9.7167 0.4588
256
+ v -2.6289 10.0591 -0.0127
257
+ v -2.6553 8.5183 0.8393
258
+ v -2.5470 8.5183 0.8393
259
+ v -2.5470 8.6724 0.8393
260
+ v -2.6553 8.6724 0.8393
261
+ v -2.6683 9.8138 0.7058
262
+ v -2.5600 9.8138 0.7058
263
+ v -2.5600 10.3117 -0.0127
264
+ v -2.6683 10.3117 -0.0127
265
+ v -2.6553 8.6724 -0.8413
266
+ v -2.5470 8.6724 -0.8413
267
+ v -2.5470 8.5183 -0.8413
268
+ v -2.6553 8.5183 -0.8413
269
+ v -2.6553 8.5183 -0.7195
270
+ v -2.5470 8.5183 -0.7195
271
+ v -2.5470 8.4646 -0.0010
272
+ v -2.6553 8.4646 -0.0010
273
+ v -2.7740 8.5183 0.7175
274
+ v -2.7740 8.6724 0.7175
275
+ v -2.7740 8.6467 0.4705
276
+ v -2.6683 9.7167 0.4589
277
+ v -2.6683 10.0591 -0.0127
278
+ v -2.7740 8.6724 -0.7195
279
+ v -2.7740 8.5183 -0.7195
280
+ v -2.7740 8.6567 -0.4725
281
+ v -2.7740 8.4646 -0.0010
282
+ v -2.7740 8.6187 -0.0010
283
+ v -2.6289 9.7167 -0.4843
284
+ v -2.6159 8.6567 -0.4725
285
+ v -2.5600 9.8138 -0.7312
286
+ v -2.6683 9.8138 -0.7312
287
+ v -2.5470 8.5183 0.7175
288
+ v -2.6553 8.5183 0.7175
289
+ v -2.6683 9.7167 -0.4842
290
+ v -2.6553 8.6467 0.4705
291
+ v -2.6553 8.6567 -0.4725
292
+ v -2.6553 8.6187 -0.0010
293
+ v -2.6553 8.6724 -0.7195
294
+ v -2.5470 8.6724 -0.7195
295
+ v -2.6553 8.6724 0.7175
296
+ v -2.5470 8.6724 0.7175
297
+ v -2.7740 8.5183 0.8393
298
+ v -2.7740 8.6724 0.8393
299
+ v -2.7740 8.6724 -0.8413
300
+ v -2.7740 8.5183 -0.8413
301
+ v -2.5639 0.0000 -2.3386
302
+ v -2.5639 0.0000 2.3365
303
+ v -2.5639 12.1411 2.3365
304
+ v 2.5639 -0.0000 2.3365
305
+ v 2.5639 12.1411 2.3365
306
+ v 2.5639 -0.0000 -2.3386
307
+ v -3.3222 12.8680 -0.0010
308
+ v -3.3222 12.8680 -2.9994
309
+ v -3.3222 11.9932 -2.9994
310
+ v -3.3222 11.8321 -0.0010
311
+ v -0.0000 12.8680 2.9974
312
+ v -3.3222 12.8680 2.9974
313
+ v -3.3222 11.9932 2.9974
314
+ v -0.0000 11.8320 2.9974
315
+ v 3.3221 12.8680 -0.0010
316
+ v 3.3221 12.8680 2.9974
317
+ v 3.3221 11.9932 2.9974
318
+ v 3.3221 11.8320 -0.0010
319
+ v -0.0000 12.8680 -2.9994
320
+ v 3.3221 12.8680 -2.9994
321
+ v 3.3221 11.9932 -2.9994
322
+ v -0.0000 11.8320 -2.9994
323
+ v -2.5639 11.9932 -2.3386
324
+ v -0.0000 11.8320 -2.3386
325
+ v 2.5639 11.9932 -2.3386
326
+ v 2.5639 11.8321 -0.0010
327
+ v 2.5639 11.9932 2.3365
328
+ v -0.0000 11.8321 2.3365
329
+ v -2.5639 11.9932 2.3365
330
+ v -2.5639 11.8321 -0.0010
331
+ v -2.5639 12.8680 -2.3386
332
+ v -2.5639 12.8680 -0.0010
333
+ v -2.5639 12.8680 2.3365
334
+ v -0.0000 12.8680 2.3365
335
+ v 2.5639 12.8680 2.3365
336
+ v 2.5639 12.8680 -0.0010
337
+ v 2.5639 12.8680 -2.3386
338
+ v -0.0000 12.8680 -2.3386
339
+ v -3.3222 6.6605 -0.0010
340
+ v -3.3222 6.6605 -2.9994
341
+ v -3.3222 5.7858 -2.9994
342
+ v -3.3222 5.6246 -0.0010
343
+ v -0.0000 6.6605 2.9974
344
+ v -3.3222 6.6605 2.9974
345
+ v -3.3222 5.7858 2.9974
346
+ v -0.0000 5.6246 2.9974
347
+ v 3.3221 6.6605 -0.0010
348
+ v 3.3221 6.6605 2.9974
349
+ v 3.3221 5.7858 2.9974
350
+ v 3.3221 5.6246 -0.0010
351
+ v -0.0000 6.6605 -2.9994
352
+ v 3.3221 6.6605 -2.9994
353
+ v 3.3221 5.7858 -2.9994
354
+ v -0.0000 5.6246 -2.9994
355
+ v -2.5639 5.7858 -2.3386
356
+ v -0.0000 5.6246 -2.3386
357
+ v 2.5639 5.7858 -2.3386
358
+ v 2.5639 5.6246 -0.0010
359
+ v 2.5639 5.7858 2.3365
360
+ v -0.0000 5.6246 2.3365
361
+ v -2.5639 5.7858 2.3365
362
+ v -2.5639 5.6246 -0.0010
363
+ v -2.5639 6.6605 -2.3386
364
+ v -2.5639 6.6605 -0.0010
365
+ v -2.5639 6.6605 2.3365
366
+ v -0.0000 6.6605 2.3365
367
+ v 2.5639 6.6605 2.3365
368
+ v 2.5639 6.6605 -0.0010
369
+ v 2.5639 6.6605 -2.3386
370
+ v -0.0000 6.6605 -2.3386
371
+ v -2.6103 9.3882 2.4561
372
+ v -2.6767 9.3882 1.9558
373
+ v -2.9138 6.4859 1.8341
374
+ v -2.9138 6.4859 2.7406
375
+ v -2.9138 12.2904 1.8341
376
+ v -2.9138 12.2904 2.7406
377
+ v -1.9967 6.4859 2.7406
378
+ v -2.0923 9.3882 2.4561
379
+ v -1.9967 11.6821 2.7406
380
+ v -1.9967 6.4859 1.8341
381
+ v -2.1587 9.3882 1.9558
382
+ v -1.9967 11.6821 1.8341
383
+ v -2.6103 9.4353 -2.4582
384
+ v -2.9138 6.5331 -2.7426
385
+ v -2.9138 6.5331 -1.8362
386
+ v -2.6767 9.4353 -1.9578
387
+ v -2.9138 12.3375 -1.8362
388
+ v -2.9138 12.3375 -2.7426
389
+ v -2.0923 9.4353 -2.4581
390
+ v -1.9967 6.5331 -2.7426
391
+ v -1.9967 11.7293 -2.7426
392
+ v -2.1587 9.4353 -1.9578
393
+ v -1.9967 6.5331 -1.8362
394
+ v -1.9967 11.7293 -1.8362
395
+ v -2.6103 2.9022 -2.4582
396
+ v -2.9138 0.0000 -2.7426
397
+ v -2.9138 0.0000 -1.8362
398
+ v -2.6767 2.9022 -1.9578
399
+ v -2.9138 5.8044 -1.8362
400
+ v -2.9138 5.8044 -2.7426
401
+ v -2.0923 2.9022 -2.4581
402
+ v -1.9967 0.0000 -2.7426
403
+ v -1.9967 6.4231 -2.7426
404
+ v -2.1587 2.9022 -1.9578
405
+ v -1.9967 0.0000 -1.8362
406
+ v -1.9967 6.4231 -1.8362
407
+ v 2.6103 9.4517 2.4561
408
+ v 2.9138 6.5495 2.7406
409
+ v 2.9138 6.5495 1.8341
410
+ v 2.6767 9.4517 1.9558
411
+ v 2.9138 12.3539 1.8341
412
+ v 2.9138 12.3539 2.7406
413
+ v 2.0923 9.4517 2.4561
414
+ v 1.9967 6.5495 2.7406
415
+ v 1.9967 11.7456 2.7406
416
+ v 2.1587 9.4517 1.9558
417
+ v 1.9967 6.5495 1.8341
418
+ v 1.9967 11.7456 1.8341
419
+ v 2.6103 2.9022 -2.4581
420
+ v 2.6767 2.9022 -1.9578
421
+ v 2.9138 -0.0000 -1.8362
422
+ v 2.9138 -0.0000 -2.7426
423
+ v 2.9138 5.8044 -1.8362
424
+ v 2.9138 5.8044 -2.7426
425
+ v 1.9967 -0.0000 -2.7426
426
+ v 2.0923 2.9022 -2.4581
427
+ v 1.9967 6.4231 -2.7426
428
+ v 1.9967 -0.0000 -1.8362
429
+ v 2.1587 2.9022 -1.9578
430
+ v 1.9967 6.4231 -1.8362
431
+ v 2.6103 9.4353 -2.4582
432
+ v 2.6767 9.4353 -1.9578
433
+ v 2.9138 6.5331 -1.8362
434
+ v 2.9138 6.5331 -2.7427
435
+ v 2.9138 12.3375 -1.8362
436
+ v 2.9138 12.3375 -2.7427
437
+ v 1.9967 6.5331 -2.7427
438
+ v 2.0923 9.4353 -2.4581
439
+ v 1.9967 11.7293 -2.7427
440
+ v 1.9967 6.5331 -1.8362
441
+ v 2.1587 9.4353 -1.9578
442
+ v 1.9967 11.7293 -1.8362
443
+ v 2.6103 2.9022 2.4561
444
+ v 2.9138 -0.0000 2.7406
445
+ v 2.9138 -0.0000 1.8341
446
+ v 2.6767 2.9022 1.9558
447
+ v 2.9138 5.8044 1.8341
448
+ v 2.9138 5.8044 2.7406
449
+ v 2.0923 2.9022 2.4561
450
+ v 1.9967 -0.0000 2.7406
451
+ v 1.9967 6.4231 2.7406
452
+ v 2.1587 2.9022 1.9558
453
+ v 1.9967 -0.0000 1.8341
454
+ v 1.9967 6.4231 1.8341
455
+ v -2.6103 2.9022 2.4561
456
+ v -2.6767 2.9022 1.9558
457
+ v -2.9138 0.0000 1.8341
458
+ v -2.9138 0.0000 2.7406
459
+ v -2.9138 5.8044 1.8341
460
+ v -2.9138 5.8044 2.7406
461
+ v -1.9967 0.0000 2.7406
462
+ v -2.0923 2.9022 2.4561
463
+ v -1.9967 6.4231 2.7406
464
+ v -1.9967 0.0000 1.8341
465
+ v -2.1587 2.9022 1.9558
466
+ v -1.9967 6.4231 1.8341
467
+ v -1.5453 5.6703 -3.5469
468
+ v -1.5453 7.5835 -3.4309
469
+ v -0.7727 7.5835 -3.4309
470
+ v -0.7727 4.7854 -3.5469
471
+ v -1.5453 9.4968 -3.2987
472
+ v -0.7727 9.4968 -3.2987
473
+ v -1.5453 11.4101 -3.3804
474
+ v -0.7727 11.4101 -3.3804
475
+ v -1.5453 13.3234 -3.5469
476
+ v -0.7727 13.3234 -3.5469
477
+ v -0.0000 7.5835 -3.4309
478
+ v -0.0000 4.2830 -3.5469
479
+ v -0.0000 9.4968 -3.2987
480
+ v -0.0000 11.4101 -3.3804
481
+ v -0.0000 13.3234 -3.5469
482
+ v 0.7726 7.5835 -3.4309
483
+ v 0.7726 4.7854 -3.5469
484
+ v 0.7726 9.4968 -3.2987
485
+ v 0.7726 11.4101 -3.3804
486
+ v 0.7726 13.3234 -3.5469
487
+ v 1.5453 7.5835 -3.4309
488
+ v 1.5453 5.6702 -3.5469
489
+ v 1.5453 9.4968 -3.2987
490
+ v 1.5453 11.4101 -3.3804
491
+ v 1.5453 13.3234 -3.5469
492
+ v 0.0000 23.5750 -0.0000
493
+ v -4.1897 16.4768 -3.9339
494
+ v -4.1897 16.4768 3.9339
495
+ v 4.1897 16.4768 3.9339
496
+ v 4.1897 16.4768 -3.9339
497
+ v -1.2971 3.7738 -2.1572
498
+ v -1.2971 3.7738 -2.6666
499
+ v -1.7173 3.6544 -2.6666
500
+ v -1.7173 3.6544 -2.1572
501
+ v -1.2971 -0.0000 -2.6666
502
+ v -1.2971 3.3171 -2.6666
503
+ v -1.2971 3.3171 -2.4156
504
+ v -1.2971 -0.0000 -2.4156
505
+ v -1.7173 -0.0000 -2.6666
506
+ v -1.7173 3.3171 -2.6666
507
+ v -1.7173 -0.0000 -2.1572
508
+ v -1.7173 3.3171 -2.1572
509
+ v 1.2970 3.7738 -2.6666
510
+ v 1.2970 3.7738 -2.1572
511
+ v 1.7173 3.6544 -2.1572
512
+ v 1.7173 3.6544 -2.6666
513
+ v 1.2970 -0.0000 -2.4156
514
+ v 1.2970 3.3171 -2.4156
515
+ v 1.2970 3.3171 -2.6666
516
+ v 1.2970 -0.0000 -2.6666
517
+ v 1.7173 -0.0000 -2.6666
518
+ v 1.7173 3.3171 -2.6666
519
+ v 1.7173 3.3171 -2.1572
520
+ v 1.7173 -0.0000 -2.1572
521
+ v -0.0000 4.3176 -2.6666
522
+ v -0.0000 4.3176 -2.1572
523
+ v -0.0000 3.7437 -2.6666
524
+ v -0.0000 3.7437 -2.4156
525
+ v -0.0000 -0.0000 -2.4156
526
+ # 518 vertices
527
+
528
+ vn 0.0000 -0.7408 0.6718
529
+ vn 0.0016 1.0000 -0.0028
530
+ vn -0.0000 0.9024 0.4309
531
+ vn 0.0000 -0.0028 -1.0000
532
+ vn 1.0000 0.0000 -0.0000
533
+ vn 0.4189 -0.8046 0.4210
534
+ vn 0.7071 0.0020 0.7071
535
+ vn -0.0000 1.0000 -0.0000
536
+ vn 0.0000 0.0028 1.0000
537
+ vn 0.6366 -0.7712 0.0024
538
+ vn 0.4322 0.9018 -0.0014
539
+ vn -1.0000 -0.0000 0.0000
540
+ vn 0.1589 -0.0004 -0.9873
541
+ vn -0.9985 0.0039 -0.0555
542
+ vn 0.7071 -0.0029 0.7071
543
+ vn 0.0524 -0.7346 -0.6765
544
+ vn -0.6635 -0.7469 -0.0434
545
+ vn 0.7071 -0.0016 0.7071
546
+ vn -1.0000 0.0014 -0.0007
547
+ vn 1.0000 -0.0014 0.0007
548
+ vn 0.1062 -0.7327 -0.6723
549
+ vn -0.0001 -0.0001 1.0000
550
+ vn -0.0000 0.0001 -1.0000
551
+ vn -0.6920 -0.7204 -0.0452
552
+ vn 0.0000 -0.7408 -0.6718
553
+ vn 0.0016 1.0000 0.0028
554
+ vn -0.0000 0.9024 -0.4309
555
+ vn 0.0000 -0.0028 1.0000
556
+ vn 0.4189 -0.8046 -0.4210
557
+ vn 0.7071 0.0020 -0.7071
558
+ vn -0.0000 1.0000 0.0000
559
+ vn -0.0000 0.0028 -1.0000
560
+ vn 0.6366 -0.7712 -0.0024
561
+ vn 0.4322 0.9018 0.0014
562
+ vn 0.1589 -0.0004 0.9873
563
+ vn -0.9985 0.0039 0.0555
564
+ vn 0.7071 -0.0029 -0.7071
565
+ vn 0.0524 -0.7346 0.6765
566
+ vn -0.6635 -0.7469 0.0434
567
+ vn 0.7071 -0.0016 -0.7071
568
+ vn -1.0000 0.0014 0.0007
569
+ vn 1.0000 -0.0014 -0.0007
570
+ vn 0.1062 -0.7327 0.6723
571
+ vn -0.0001 -0.0001 -1.0000
572
+ vn -0.0000 0.0001 1.0000
573
+ vn -0.6920 -0.7204 0.0452
574
+ vn -0.0000 -0.7408 0.6718
575
+ vn -0.0016 1.0000 -0.0028
576
+ vn 0.0000 0.9024 0.4309
577
+ vn -0.0000 -0.0028 -1.0000
578
+ vn -1.0000 0.0000 0.0000
579
+ vn -0.4189 -0.8046 0.4210
580
+ vn -0.7071 0.0020 0.7071
581
+ vn 0.0000 1.0000 -0.0000
582
+ vn -0.6366 -0.7712 0.0024
583
+ vn -0.4322 0.9018 -0.0014
584
+ vn -0.4321 0.9018 -0.0014
585
+ vn 1.0000 -0.0000 -0.0000
586
+ vn -0.1589 -0.0004 -0.9873
587
+ vn 0.9985 0.0039 -0.0555
588
+ vn -0.7071 -0.0029 0.7071
589
+ vn -0.0524 -0.7346 -0.6765
590
+ vn 0.6635 -0.7469 -0.0434
591
+ vn -0.7071 -0.0016 0.7071
592
+ vn 1.0000 0.0014 -0.0007
593
+ vn -1.0000 -0.0014 0.0007
594
+ vn -0.1062 -0.7327 -0.6723
595
+ vn 0.0001 -0.0001 1.0000
596
+ vn 0.0000 0.0001 -1.0000
597
+ vn 0.6920 -0.7204 -0.0452
598
+ vn -0.0000 -0.7408 -0.6718
599
+ vn -0.0016 1.0000 0.0028
600
+ vn 0.0000 0.9024 -0.4309
601
+ vn -0.0000 -0.0028 1.0000
602
+ vn -0.4189 -0.8046 -0.4210
603
+ vn -0.7071 0.0020 -0.7071
604
+ vn 0.0000 1.0000 0.0000
605
+ vn -0.6366 -0.7712 -0.0024
606
+ vn -0.4321 0.9018 0.0014
607
+ vn -0.4322 0.9018 0.0014
608
+ vn -0.1589 -0.0004 0.9873
609
+ vn 0.9985 0.0039 0.0555
610
+ vn -0.7071 -0.0029 -0.7071
611
+ vn -0.0524 -0.7346 0.6765
612
+ vn 0.6635 -0.7469 0.0434
613
+ vn -0.7071 -0.0016 -0.7071
614
+ vn 1.0000 0.0014 0.0007
615
+ vn -1.0000 -0.0014 -0.0007
616
+ vn -0.1062 -0.7327 0.6723
617
+ vn 0.0001 -0.0001 -1.0000
618
+ vn 0.0000 0.0001 1.0000
619
+ vn 0.6920 -0.7204 0.0452
620
+ vn -0.0000 0.0000 -1.0000
621
+ vn 0.0000 0.0000 1.0000
622
+ vn -0.0035 -0.0104 0.9999
623
+ vn 1.0000 -0.0000 -0.0002
624
+ vn 0.5696 0.8219 -0.0001
625
+ vn -0.0745 -0.9972 0.0000
626
+ vn -0.0000 -0.0000 1.0000
627
+ vn -0.0000 0.0000 1.0000
628
+ vn 0.0033 -0.0104 0.9999
629
+ vn -0.5696 0.8219 0.0001
630
+ vn 0.0745 -0.9972 0.0000
631
+ vn 0.0000 -0.0000 1.0000
632
+ vn -0.9999 -0.0109 0.0008
633
+ vn -0.5875 -0.8092 0.0009
634
+ vn 0.5875 -0.8092 -0.0008
635
+ vn 0.9999 0.0111 -0.0004
636
+ vn 0.0803 0.9968 0.0001
637
+ vn -0.0593 0.9982 -0.0000
638
+ vn -0.0027 -0.0118 0.9999
639
+ vn -0.9999 -0.0102 0.0001
640
+ vn 0.9999 0.0103 -0.0002
641
+ vn 0.0029 -0.0117 0.9999
642
+ vn 1.0000 -0.0000 0.0001
643
+ vn -0.1034 0.9946 0.0000
644
+ vn -0.0593 0.9982 0.0000
645
+ vn 0.0803 0.9968 -0.0000
646
+ vn 0.0634 0.9980 -0.0000
647
+ vn -1.0000 0.0000 0.0001
648
+ vn -0.0000 -1.0000 0.0000
649
+ vn 0.0000 -1.0000 0.0000
650
+ vn 0.0000 -1.0000 -0.0000
651
+ vn -0.0001 0.0000 1.0000
652
+ vn 0.9999 -0.0104 0.0035
653
+ vn -0.0001 0.0000 -1.0000
654
+ vn -0.0001 0.8219 -0.5696
655
+ vn -0.0000 -0.9972 0.0745
656
+ vn 1.0000 -0.0000 0.0000
657
+ vn 0.9999 -0.0104 -0.0034
658
+ vn 0.0001 0.8219 0.5696
659
+ vn 0.0000 -0.9972 -0.0745
660
+ vn 0.0008 -0.0109 0.9999
661
+ vn 0.0008 -0.8092 0.5875
662
+ vn -0.0008 -0.8092 -0.5875
663
+ vn -0.0004 0.0111 -0.9999
664
+ vn 0.0000 0.9968 -0.0803
665
+ vn -0.0000 0.9982 0.0593
666
+ vn 0.9999 -0.0118 0.0027
667
+ vn 0.0001 -0.0102 0.9999
668
+ vn -0.0002 0.0103 -0.9999
669
+ vn 0.9999 -0.0117 -0.0029
670
+ vn 0.0001 -0.0000 -1.0000
671
+ vn 0.0000 0.9946 0.1034
672
+ vn 0.0000 0.9982 0.0593
673
+ vn 0.0000 0.9968 -0.0804
674
+ vn 0.0000 0.9980 -0.0634
675
+ vn 0.0001 -0.0000 1.0000
676
+ vn -0.0000 -0.9972 -0.0745
677
+ vn -0.0000 -1.0000 -0.0000
678
+ vn -0.9999 -0.0104 -0.0035
679
+ vn 0.0002 -0.0000 1.0000
680
+ vn -1.0000 0.0000 -0.0000
681
+ vn -0.9999 -0.0104 0.0033
682
+ vn -0.0008 -0.0109 -0.9999
683
+ vn -0.0009 -0.8092 -0.5875
684
+ vn 0.0007 -0.8092 0.5875
685
+ vn 0.0004 0.0111 0.9999
686
+ vn -0.0001 0.9968 0.0803
687
+ vn 0.0000 0.9982 -0.0593
688
+ vn -0.9999 -0.0118 -0.0027
689
+ vn -0.0001 -0.0102 -0.9999
690
+ vn 0.0002 0.0103 0.9999
691
+ vn -0.9999 -0.0117 0.0029
692
+ vn -0.0001 -0.0000 1.0000
693
+ vn 0.0000 0.9946 -0.1034
694
+ vn 0.0000 0.9968 0.0803
695
+ vn 0.0000 0.9980 0.0634
696
+ vn -1.0000 0.0000 -0.0001
697
+ vn 0.0000 -0.0000 -1.0000
698
+ vn -0.0547 -0.9980 0.0314
699
+ vn -0.0263 -0.9978 -0.0603
700
+ vn 0.0547 -0.9980 -0.0314
701
+ vn 0.0263 -0.9978 0.0603
702
+ vn 0.0547 -0.9980 0.0314
703
+ vn -0.0263 -0.9978 0.0603
704
+ vn -0.0547 -0.9980 -0.0314
705
+ vn 0.0263 -0.9978 -0.0603
706
+ vn -0.9945 0.0939 0.0469
707
+ vn -0.9945 -0.0939 0.0469
708
+ vn 0.0000 0.0976 0.9952
709
+ vn -0.0469 -0.1106 0.9928
710
+ vn 0.9980 0.0430 -0.0471
711
+ vn 0.9974 -0.0543 -0.0471
712
+ vn -0.0000 0.0419 -0.9991
713
+ vn -0.0199 -0.0471 -0.9987
714
+ vn -0.9945 0.0939 -0.0469
715
+ vn -0.9945 -0.0939 -0.0469
716
+ vn 0.0000 0.0976 -0.9952
717
+ vn -0.0469 -0.1106 -0.9928
718
+ vn 0.9980 0.0430 0.0471
719
+ vn 0.9974 -0.0543 0.0471
720
+ vn 0.0000 0.0419 0.9991
721
+ vn -0.0199 -0.0471 0.9987
722
+ vn 0.0375 -0.0870 -0.9955
723
+ vn 0.9983 -0.0354 0.0471
724
+ vn 0.0162 -0.0377 0.9992
725
+ vn 0.9945 0.0939 0.0469
726
+ vn 0.9945 -0.0939 0.0469
727
+ vn -0.0000 0.0976 0.9952
728
+ vn 0.0469 -0.1106 0.9928
729
+ vn -0.9980 0.0430 -0.0471
730
+ vn -0.9974 -0.0543 -0.0471
731
+ vn 0.0199 -0.0471 -0.9987
732
+ vn 0.9945 0.0939 -0.0469
733
+ vn 0.9945 -0.0939 -0.0469
734
+ vn -0.0000 0.0976 -0.9952
735
+ vn -0.0375 -0.0870 -0.9955
736
+ vn -0.9980 0.0430 0.0471
737
+ vn -0.9983 -0.0354 0.0471
738
+ vn -0.0162 -0.0377 0.9992
739
+ vn 0.0469 -0.1106 -0.9928
740
+ vn -0.9974 -0.0543 0.0471
741
+ vn 0.0199 -0.0471 0.9987
742
+ vn -0.0375 -0.0870 0.9955
743
+ vn -0.9983 -0.0354 -0.0471
744
+ vn -0.0162 -0.0377 -0.9992
745
+ vn 0.0375 -0.0870 0.9955
746
+ vn 0.9983 -0.0354 -0.0471
747
+ vn 0.0162 -0.0377 -0.9992
748
+ vn 0.0281 0.0492 -0.9984
749
+ vn 0.0141 0.0591 -0.9982
750
+ vn 0.0101 0.0563 -0.9984
751
+ vn 0.0163 0.0408 -0.9990
752
+ vn -0.0000 0.0132 -0.9999
753
+ vn -0.0000 -0.0647 -0.9979
754
+ vn -0.0000 -0.0867 -0.9962
755
+ vn -0.0000 0.0535 -0.9986
756
+ vn -0.0000 0.0380 -0.9993
757
+ vn -0.0101 0.0563 -0.9984
758
+ vn -0.0163 0.0408 -0.9990
759
+ vn -0.0141 0.0591 -0.9982
760
+ vn -0.0281 0.0492 -0.9984
761
+ vn -0.8612 0.5083 0.0000
762
+ vn 0.0000 0.4847 0.8747
763
+ vn 0.8612 0.5083 -0.0000
764
+ vn -0.0000 0.4847 -0.8747
765
+ vn -0.2731 0.9620 0.0000
766
+ vn 0.2731 0.9620 0.0000
767
+ vn 0.3867 0.9222 0.0000
768
+ vn -0.0000 -0.0000 -1.0000
769
+ vn 0.3124 -0.9499 -0.0000
770
+ vn -0.3867 0.9222 0.0000
771
+ vn -0.3124 -0.9499 0.0000
772
+ # 244 vertex normals
773
+
774
+ vt 0.4672 0.7287 0.0000
775
+ vt 0.4672 0.6812 0.0000
776
+ vt 0.5381 0.6812 0.0000
777
+ vt 0.5637 0.7287 0.0000
778
+ vt 0.4511 0.6743 0.0000
779
+ vt 0.4498 0.6669 0.0000
780
+ vt 0.5101 0.6669 0.0000
781
+ vt 0.5101 0.6758 0.0000
782
+ vt 0.4531 0.6758 0.0000
783
+ vt 0.6996 0.8663 0.0000
784
+ vt 0.6083 0.8663 0.0000
785
+ vt 0.6083 0.8881 0.0000
786
+ vt 0.6996 0.8881 0.0000
787
+ vt 0.6083 0.9203 0.0000
788
+ vt 0.6996 0.9203 0.0000
789
+ vt 0.6348 0.6259 0.0000
790
+ vt 0.6348 0.6557 0.0000
791
+ vt 0.5033 0.6557 0.0000
792
+ vt 0.5033 0.6259 0.0000
793
+ vt 0.4860 0.7374 0.0000
794
+ vt 0.4587 0.8045 0.0000
795
+ vt 0.4433 0.8046 0.0000
796
+ vt 0.7663 0.6259 0.0000
797
+ vt 0.7905 0.6258 0.0000
798
+ vt 0.7905 0.6557 0.0000
799
+ vt 0.7664 0.6557 0.0000
800
+ vt 0.5578 0.5104 0.0000
801
+ vt 0.6319 0.5104 0.0000
802
+ vt 0.6319 0.6024 0.0000
803
+ vt 0.5578 0.6024 0.0000
804
+ vt 0.4411 0.6748 0.0000
805
+ vt 0.4531 0.7357 0.0000
806
+ vt 0.4411 0.7357 0.0000
807
+ vt 0.5654 0.8042 0.0000
808
+ vt 0.5654 0.7371 0.0000
809
+ vt 0.5169 0.8663 0.0000
810
+ vt 0.5169 0.8881 0.0000
811
+ vt 0.5169 0.9203 0.0000
812
+ vt 0.7344 0.2540 0.0000
813
+ vt 0.7344 0.2807 0.0000
814
+ vt 0.7215 0.2807 0.0000
815
+ vt 0.7215 0.2540 0.0000
816
+ vt 0.7532 0.2524 0.0000
817
+ vt 0.7532 0.2800 0.0000
818
+ vt 0.7370 0.2800 0.0000
819
+ vt 0.7370 0.2524 0.0000
820
+ vt 0.8440 0.5063 0.0000
821
+ vt 0.8440 0.5248 0.0000
822
+ vt 0.8307 0.5248 0.0000
823
+ vt 0.8307 0.5063 0.0000
824
+ vt 0.7344 0.3486 0.0000
825
+ vt 0.7215 0.3486 0.0000
826
+ vt 0.7215 0.3237 0.0000
827
+ vt 0.7344 0.3237 0.0000
828
+ vt 0.7532 0.3506 0.0000
829
+ vt 0.7370 0.3506 0.0000
830
+ vt 0.7370 0.3238 0.0000
831
+ vt 0.7532 0.3238 0.0000
832
+ vt 0.8440 0.5570 0.0000
833
+ vt 0.8307 0.5570 0.0000
834
+ vt 0.8364 0.5997 0.0000
835
+ vt 0.7950 0.5997 0.0000
836
+ vt 0.8096 0.5854 0.0000
837
+ vt 0.8364 0.5608 0.0000
838
+ vt 0.8663 0.5452 0.0000
839
+ vt 0.8798 0.5570 0.0000
840
+ vt 0.8093 0.5451 0.0000
841
+ vt 0.7959 0.5570 0.0000
842
+ vt 0.8620 0.5854 0.0000
843
+ vt 0.8784 0.5997 0.0000
844
+ vt 0.6756 0.2660 0.0000
845
+ vt 0.6505 0.2660 0.0000
846
+ vt 0.6505 0.4622 0.0000
847
+ vt 0.6756 0.4622 0.0000
848
+ vt 0.6058 0.3002 0.0000
849
+ vt 0.6440 0.3002 0.0000
850
+ vt 0.6440 0.4741 0.0000
851
+ vt 0.6058 0.4741 0.0000
852
+ vt 0.6280 0.0055 0.0000
853
+ vt 0.6545 0.0069 0.0000
854
+ vt 0.6548 0.0671 0.0000
855
+ vt 0.6284 0.0865 0.0000
856
+ vt 0.6000 0.2239 0.0000
857
+ vt 0.6163 0.2239 0.0000
858
+ vt 0.6163 0.2472 0.0000
859
+ vt 0.6000 0.2472 0.0000
860
+ vt 0.6822 0.1033 0.0000
861
+ vt 0.6903 0.1033 0.0000
862
+ vt 0.6903 0.1767 0.0000
863
+ vt 0.6822 0.1767 0.0000
864
+ vt 0.5852 0.2472 0.0000
865
+ vt 0.5852 0.2239 0.0000
866
+ vt 0.6098 0.1405 0.0000
867
+ vt 0.6145 0.1405 0.0000
868
+ vt 0.6140 0.1724 0.0000
869
+ vt 0.6093 0.1724 0.0000
870
+ vt 0.6552 0.1246 0.0000
871
+ vt 0.6681 0.1246 0.0000
872
+ vt 0.6659 0.1454 0.0000
873
+ vt 0.6571 0.0825 0.0000
874
+ vt 0.6723 0.0885 0.0000
875
+ vt 0.6279 0.1193 0.0000
876
+ vt 0.6279 0.1037 0.0000
877
+ vt 0.6681 0.2453 0.0000
878
+ vt 0.6552 0.2453 0.0000
879
+ vt 0.6668 0.2246 0.0000
880
+ vt 0.6507 0.1850 0.0000
881
+ vt 0.6636 0.1850 0.0000
882
+ vt 0.6018 0.0674 0.0000
883
+ vt 0.6015 0.0077 0.0000
884
+ vt 0.6903 0.2501 0.0000
885
+ vt 0.6822 0.2501 0.0000
886
+ vt 0.6135 0.2044 0.0000
887
+ vt 0.6089 0.2043 0.0000
888
+ vt 0.5834 0.0885 0.0000
889
+ vt 0.5987 0.0825 0.0000
890
+ vt 0.6955 0.1208 0.0000
891
+ vt 0.6955 0.0105 0.0000
892
+ vt 0.7028 0.0105 0.0000
893
+ vt 0.7028 0.1208 0.0000
894
+ vt 0.7028 0.1808 0.0000
895
+ vt 0.6955 0.1808 0.0000
896
+ vt 0.7028 0.2409 0.0000
897
+ vt 0.6955 0.2409 0.0000
898
+ vt 0.7028 0.3501 0.0000
899
+ vt 0.6955 0.3501 0.0000
900
+ vt 0.6375 0.2580 0.0000
901
+ vt 0.6331 0.2581 0.0000
902
+ vt 0.6322 0.2120 0.0000
903
+ vt 0.6366 0.2119 0.0000
904
+ vt 0.6312 0.1659 0.0000
905
+ vt 0.6356 0.1658 0.0000
906
+ vt 0.5834 0.0179 0.0000
907
+ vt 0.5987 0.0169 0.0000
908
+ vt 0.6903 0.3459 0.0000
909
+ vt 0.6822 0.3459 0.0000
910
+ vt 0.6822 0.0075 0.0000
911
+ vt 0.6903 0.0075 0.0000
912
+ vt 0.6571 0.0163 0.0000
913
+ vt 0.6723 0.0179 0.0000
914
+ vt 0.6242 0.1418 0.0000
915
+ vt 0.6307 0.1417 0.0000
916
+ vt 0.6247 0.1661 0.0000
917
+ vt 0.6256 0.2121 0.0000
918
+ vt 0.6265 0.2583 0.0000
919
+ vt 0.6335 0.2823 0.0000
920
+ vt 0.6270 0.2824 0.0000
921
+ vt 0.6047 0.1405 0.0000
922
+ vt 0.6042 0.1724 0.0000
923
+ vt 0.6038 0.2043 0.0000
924
+ vt 0.6365 0.1297 0.0000
925
+ vt 0.6367 0.1416 0.0000
926
+ vt 0.6305 0.1298 0.0000
927
+ vt 0.6240 0.1300 0.0000
928
+ vt 0.6681 0.1144 0.0000
929
+ vt 0.6552 0.1144 0.0000
930
+ vt 0.6037 0.2097 0.0000
931
+ vt 0.6088 0.2097 0.0000
932
+ vt 0.6135 0.2098 0.0000
933
+ vt 0.6145 0.1351 0.0000
934
+ vt 0.6099 0.1351 0.0000
935
+ vt 0.6048 0.1351 0.0000
936
+ vt 0.6552 0.2555 0.0000
937
+ vt 0.6681 0.2555 0.0000
938
+ vt 0.6272 0.2943 0.0000
939
+ vt 0.6337 0.2942 0.0000
940
+ vt 0.6395 0.2822 0.0000
941
+ vt 0.6397 0.2940 0.0000
942
+ vt 0.1601 0.2593 0.0000
943
+ vt 0.1601 0.0045 0.0000
944
+ vt 0.2454 0.0045 0.0000
945
+ vt 0.2454 0.2590 0.0000
946
+ vt 0.2838 0.5470 0.0000
947
+ vt 0.2838 0.2690 0.0000
948
+ vt 0.1765 0.2690 0.0000
949
+ vt 0.1765 0.5470 0.0000
950
+ vt 0.1150 0.3564 0.0000
951
+ vt 0.1150 0.0538 0.0000
952
+ vt 0.0116 0.0538 0.0000
953
+ vt 0.0116 0.3569 0.0000
954
+ vt 0.0100 0.6667 0.0000
955
+ vt 0.0100 0.3673 0.0000
956
+ vt 0.1291 0.3673 0.0000
957
+ vt 0.1291 0.6667 0.0000
958
+ vt 0.9942 0.1083 0.0000
959
+ vt 0.9942 0.2099 0.0000
960
+ vt 0.9659 0.2099 0.0000
961
+ vt 0.9607 0.1083 0.0000
962
+ vt 0.9942 0.0068 0.0000
963
+ vt 0.9659 0.0068 0.0000
964
+ vt 0.3004 0.5798 0.0000
965
+ vt 0.2911 0.5701 0.0000
966
+ vt 0.2911 0.6124 0.0000
967
+ vt 0.3004 0.6124 0.0000
968
+ vt 0.3004 0.6450 0.0000
969
+ vt 0.2911 0.6547 0.0000
970
+ vt 0.3334 0.6547 0.0000
971
+ vt 0.3334 0.6450 0.0000
972
+ vt 0.3663 0.6450 0.0000
973
+ vt 0.3757 0.6547 0.0000
974
+ vt 0.3757 0.6124 0.0000
975
+ vt 0.3663 0.6124 0.0000
976
+ vt 0.3663 0.5798 0.0000
977
+ vt 0.3757 0.5701 0.0000
978
+ vt 0.3334 0.5701 0.0000
979
+ vt 0.3334 0.5798 0.0000
980
+ vt 0.2876 0.5671 0.0000
981
+ vt 0.2747 0.5537 0.0000
982
+ vt 0.3334 0.5537 0.0000
983
+ vt 0.3334 0.5671 0.0000
984
+ vt 0.3793 0.5671 0.0000
985
+ vt 0.3922 0.5537 0.0000
986
+ vt 0.3922 0.6125 0.0000
987
+ vt 0.3793 0.6125 0.0000
988
+ vt 0.3793 0.6578 0.0000
989
+ vt 0.3922 0.6712 0.0000
990
+ vt 0.3334 0.6712 0.0000
991
+ vt 0.3334 0.6578 0.0000
992
+ vt 0.2876 0.6578 0.0000
993
+ vt 0.2747 0.6712 0.0000
994
+ vt 0.2747 0.6125 0.0000
995
+ vt 0.2876 0.6125 0.0000
996
+ vt 0.9513 0.1060 0.0000
997
+ vt 0.9513 0.0044 0.0000
998
+ vt 0.9230 0.0044 0.0000
999
+ vt 0.9178 0.1060 0.0000
1000
+ vt 0.9097 0.1060 0.0000
1001
+ vt 0.9097 0.0044 0.0000
1002
+ vt 0.8814 0.0044 0.0000
1003
+ vt 0.8762 0.1060 0.0000
1004
+ vt 0.8814 0.2076 0.0000
1005
+ vt 0.9097 0.2076 0.0000
1006
+ vt 0.9230 0.2075 0.0000
1007
+ vt 0.9513 0.2075 0.0000
1008
+ vt 0.8658 0.1132 0.0000
1009
+ vt 0.8487 0.1132 0.0000
1010
+ vt 0.8445 0.0044 0.0000
1011
+ vt 0.8755 0.0044 0.0000
1012
+ vt 0.8445 0.2221 0.0000
1013
+ vt 0.8755 0.2221 0.0000
1014
+ vt 0.7801 0.1104 0.0000
1015
+ vt 0.7912 0.0058 0.0000
1016
+ vt 0.7576 0.0058 0.0000
1017
+ vt 0.7611 0.1104 0.0000
1018
+ vt 0.7912 0.2151 0.0000
1019
+ vt 0.7576 0.2374 0.0000
1020
+ vt 0.7362 0.1124 0.0000
1021
+ vt 0.7464 0.0064 0.0000
1022
+ vt 0.7139 0.0064 0.0000
1023
+ vt 0.7182 0.1124 0.0000
1024
+ vt 0.7139 0.2409 0.0000
1025
+ vt 0.7464 0.2409 0.0000
1026
+ vt 0.8231 0.1080 0.0000
1027
+ vt 0.8044 0.1080 0.0000
1028
+ vt 0.7986 0.0056 0.0000
1029
+ vt 0.8316 0.0056 0.0000
1030
+ vt 0.8316 0.2103 0.0000
1031
+ vt 0.7986 0.2321 0.0000
1032
+ vt 0.3996 0.1076 0.0000
1033
+ vt 0.3999 0.1680 0.0000
1034
+ vt 0.3755 0.1681 0.0000
1035
+ vt 0.3751 0.0799 0.0000
1036
+ vt 0.4002 0.2285 0.0000
1037
+ vt 0.3758 0.2286 0.0000
1038
+ vt 0.4005 0.2888 0.0000
1039
+ vt 0.3761 0.2890 0.0000
1040
+ vt 0.4008 0.3494 0.0000
1041
+ vt 0.3764 0.3495 0.0000
1042
+ vt 0.3512 0.1683 0.0000
1043
+ vt 0.3507 0.0641 0.0000
1044
+ vt 0.3515 0.2287 0.0000
1045
+ vt 0.3518 0.2891 0.0000
1046
+ vt 0.3521 0.3496 0.0000
1047
+ vt 0.3268 0.1684 0.0000
1048
+ vt 0.3264 0.0801 0.0000
1049
+ vt 0.3271 0.2288 0.0000
1050
+ vt 0.3274 0.2892 0.0000
1051
+ vt 0.3277 0.3497 0.0000
1052
+ vt 0.3025 0.1685 0.0000
1053
+ vt 0.3022 0.1081 0.0000
1054
+ vt 0.3028 0.2289 0.0000
1055
+ vt 0.3031 0.2893 0.0000
1056
+ vt 0.3033 0.3498 0.0000
1057
+ vt 0.1505 0.9738 0.0000
1058
+ vt 0.0042 0.6813 0.0000
1059
+ vt 0.2968 0.6813 0.0000
1060
+ vt 0.9446 0.3902 0.0000
1061
+ vt 0.9268 0.3902 0.0000
1062
+ vt 0.9268 0.3744 0.0000
1063
+ vt 0.9446 0.3744 0.0000
1064
+ vt 0.8974 0.3747 0.0000
1065
+ vt 0.8974 0.4922 0.0000
1066
+ vt 0.9065 0.4922 0.0000
1067
+ vt 0.9065 0.3747 0.0000
1068
+ vt 0.9924 0.3882 0.0000
1069
+ vt 0.9924 0.5080 0.0000
1070
+ vt 0.9766 0.5080 0.0000
1071
+ vt 0.9766 0.3882 0.0000
1072
+ vt 0.9160 0.3747 0.0000
1073
+ vt 0.9160 0.4922 0.0000
1074
+ vt 0.9924 0.5202 0.0000
1075
+ vt 0.9766 0.5245 0.0000
1076
+ vt 0.9160 0.5041 0.0000
1077
+ vt 0.8974 0.5041 0.0000
1078
+ vt 0.9268 0.4879 0.0000
1079
+ vt 0.9446 0.4879 0.0000
1080
+ vt 0.9446 0.5038 0.0000
1081
+ vt 0.9268 0.5038 0.0000
1082
+ vt 0.8789 0.3882 0.0000
1083
+ vt 0.8789 0.5080 0.0000
1084
+ vt 0.8630 0.5080 0.0000
1085
+ vt 0.8630 0.3882 0.0000
1086
+ vt 0.8789 0.5245 0.0000
1087
+ vt 0.8630 0.5202 0.0000
1088
+ vt 0.9268 0.4391 0.0000
1089
+ vt 0.9446 0.4391 0.0000
1090
+ vt 0.9277 0.5235 0.0000
1091
+ vt 0.9277 0.5442 0.0000
1092
+ vt 0.9356 0.4391 0.0000
1093
+ vt 0.9356 0.3902 0.0000
1094
+ vt 0.9356 0.4879 0.0000
1095
+ vt 0.4150 0.4926 0.0000
1096
+ vt 0.3619 0.5102 0.0000
1097
+ vt 0.3617 0.3568 0.0000
1098
+ vt 0.4148 0.3567 0.0000
1099
+ vt 0.3087 0.4928 0.0000
1100
+ vt 0.3085 0.3569 0.0000
1101
+ # 327 texture coords
1102
+
1103
+ o turret
1104
+ g turret
1105
+ f 1/1/1 2/2/1 3/3/1
1106
+ f 3/3/1 4/4/1 1/1/1
1107
+ f 5/5/2 6/6/2 7/7/2
1108
+ f 5/5/2 7/7/2 8/8/2
1109
+ f 5/5/2 8/8/2 9/9/2
1110
+ f 10/10/3 11/11/3 12/12/3
1111
+ f 12/12/3 13/13/3 10/10/3
1112
+ f 12/12/4 14/14/4 9/15/4
1113
+ f 9/15/4 13/13/4 12/12/4
1114
+ f 15/16/5 7/17/5 6/18/5
1115
+ f 6/18/5 16/19/5 15/16/5
1116
+ f 3/20/6 16/21/6 4/22/6
1117
+ f 4/23/7 16/24/7 6/25/7
1118
+ f 6/25/7 17/26/7 4/23/7
1119
+ f 10/27/8 18/28/8 19/29/8
1120
+ f 19/29/8 11/30/8 10/27/8
1121
+ f 17/31/8 5/5/8 9/9/8
1122
+ f 17/31/8 9/9/8 14/32/8
1123
+ f 17/31/8 14/32/8 20/33/8
1124
+ f 4/23/9 17/26/9 20/17/9
1125
+ f 20/17/9 1/16/9 4/23/9
1126
+ f 15/34/10 16/21/10 3/20/10
1127
+ f 3/20/10 21/35/10 15/34/10
1128
+ f 10/36/11 13/37/11 22/12/11
1129
+ f 22/12/11 18/11/11 10/36/11
1130
+ f 13/37/12 9/38/12 8/14/12
1131
+ f 8/14/12 22/12/12 13/37/12
1132
+ f 5/39/13 23/40/13 24/41/13
1133
+ f 24/41/13 6/42/13 5/39/13
1134
+ f 17/43/14 25/44/14 23/45/14
1135
+ f 23/45/14 5/46/14 17/43/14
1136
+ f 6/47/15 24/48/15 25/49/15
1137
+ f 25/49/15 17/50/15 6/47/15
1138
+ f 26/51/16 27/52/16 28/53/16
1139
+ f 28/53/16 29/54/16 26/51/16
1140
+ f 30/55/17 31/56/17 32/57/17
1141
+ f 32/57/17 33/58/17 30/55/17
1142
+ f 34/59/18 35/60/18 25/49/18
1143
+ f 25/49/18 24/48/18 34/59/18
1144
+ f 36/61/19 26/62/19 29/63/19
1145
+ f 29/63/19 23/64/19 36/61/19
1146
+ f 28/65/20 27/66/20 34/59/20
1147
+ f 34/59/20 24/48/20 28/65/20
1148
+ f 24/41/21 23/40/21 29/54/21
1149
+ f 29/54/21 28/53/21 24/41/21
1150
+ f 33/67/22 25/49/22 35/60/22
1151
+ f 35/60/22 30/68/22 33/67/22
1152
+ f 32/69/23 31/70/23 36/61/23
1153
+ f 36/61/23 23/64/23 32/69/23
1154
+ f 23/45/24 25/44/24 33/58/24
1155
+ f 33/58/24 32/57/24 23/45/24
1156
+ f 37/3/25 38/2/25 39/1/25
1157
+ f 39/1/25 40/4/25 37/3/25
1158
+ f 41/5/26 42/9/26 8/8/26
1159
+ f 41/5/26 8/8/26 7/7/26
1160
+ f 41/5/26 7/7/26 43/6/26
1161
+ f 44/12/27 45/11/27 46/10/27
1162
+ f 46/10/27 47/13/27 44/12/27
1163
+ f 42/15/28 48/14/28 44/12/28
1164
+ f 44/12/28 47/13/28 42/15/28
1165
+ f 43/18/5 7/17/5 15/16/5
1166
+ f 15/16/5 49/19/5 43/18/5
1167
+ f 37/20/29 40/22/29 49/21/29
1168
+ f 40/23/30 50/26/30 43/25/30
1169
+ f 43/25/30 49/24/30 40/23/30
1170
+ f 19/29/31 18/28/31 46/27/31
1171
+ f 46/27/31 45/30/31 19/29/31
1172
+ f 50/31/31 51/33/31 48/32/31
1173
+ f 50/31/31 48/32/31 42/9/31
1174
+ f 50/31/31 42/9/31 41/5/31
1175
+ f 51/17/32 50/26/32 40/23/32
1176
+ f 40/23/32 39/16/32 51/17/32
1177
+ f 15/34/33 21/35/33 37/20/33
1178
+ f 37/20/33 49/21/33 15/34/33
1179
+ f 22/12/34 47/37/34 46/36/34
1180
+ f 46/36/34 18/11/34 22/12/34
1181
+ f 8/14/12 42/38/12 47/37/12
1182
+ f 47/37/12 22/12/12 8/14/12
1183
+ f 52/41/35 53/40/35 41/39/35
1184
+ f 41/39/35 43/42/35 52/41/35
1185
+ f 53/45/36 54/44/36 50/43/36
1186
+ f 50/43/36 41/46/36 53/45/36
1187
+ f 54/49/37 52/48/37 43/47/37
1188
+ f 43/47/37 50/50/37 54/49/37
1189
+ f 55/53/38 56/52/38 57/51/38
1190
+ f 57/51/38 58/54/38 55/53/38
1191
+ f 59/57/39 60/56/39 61/55/39
1192
+ f 61/55/39 62/58/39 59/57/39
1193
+ f 54/49/40 63/60/40 64/59/40
1194
+ f 64/59/40 52/48/40 54/49/40
1195
+ f 58/63/41 57/62/41 65/61/41
1196
+ f 65/61/41 53/64/41 58/63/41
1197
+ f 55/65/42 52/48/42 64/59/42
1198
+ f 64/59/42 56/66/42 55/65/42
1199
+ f 52/41/43 55/53/43 58/54/43
1200
+ f 58/54/43 53/40/43 52/41/43
1201
+ f 63/60/44 54/49/44 62/67/44
1202
+ f 62/67/44 61/68/44 63/60/44
1203
+ f 59/69/45 53/64/45 65/61/45
1204
+ f 65/61/45 60/70/45 59/69/45
1205
+ f 53/45/46 59/57/46 62/58/46
1206
+ f 62/58/46 54/44/46 53/45/46
1207
+ f 66/3/47 2/2/47 1/1/47
1208
+ f 1/1/47 67/4/47 66/3/47
1209
+ f 68/5/48 69/9/48 70/8/48
1210
+ f 68/5/48 70/8/48 71/7/48
1211
+ f 68/5/48 71/7/48 72/6/48
1212
+ f 12/12/49 11/11/49 73/10/49
1213
+ f 73/10/49 74/13/49 12/12/49
1214
+ f 69/15/50 14/14/50 12/12/50
1215
+ f 12/12/50 74/13/50 69/15/50
1216
+ f 72/18/51 71/17/51 75/16/51
1217
+ f 75/16/51 76/19/51 72/18/51
1218
+ f 66/20/52 67/22/52 76/21/52
1219
+ f 67/23/53 77/26/53 72/25/53
1220
+ f 72/25/53 76/24/53 67/23/53
1221
+ f 19/29/54 78/28/54 73/27/54
1222
+ f 73/27/54 11/30/54 19/29/54
1223
+ f 77/31/54 20/33/54 14/32/54
1224
+ f 77/31/54 14/32/54 69/9/54
1225
+ f 77/31/54 69/9/54 68/5/54
1226
+ f 20/17/9 77/26/9 67/23/9
1227
+ f 67/23/9 1/16/9 20/17/9
1228
+ f 75/34/55 79/35/55 66/20/55
1229
+ f 66/20/55 76/21/55 75/34/55
1230
+ f 80/12/56 74/37/57 73/36/57
1231
+ f 73/36/57 78/11/56 80/12/56
1232
+ f 70/14/58 69/38/58 74/37/58
1233
+ f 74/37/58 80/12/58 70/14/58
1234
+ f 81/41/59 82/40/59 68/39/59
1235
+ f 68/39/59 72/42/59 81/41/59
1236
+ f 82/45/60 83/44/60 77/43/60
1237
+ f 77/43/60 68/46/60 82/45/60
1238
+ f 83/49/61 81/48/61 72/47/61
1239
+ f 72/47/61 77/50/61 83/49/61
1240
+ f 84/53/62 85/52/62 86/51/62
1241
+ f 86/51/62 87/54/62 84/53/62
1242
+ f 88/57/63 89/56/63 90/55/63
1243
+ f 90/55/63 91/58/63 88/57/63
1244
+ f 83/49/64 92/60/64 93/59/64
1245
+ f 93/59/64 81/48/64 83/49/64
1246
+ f 87/63/65 86/62/65 94/61/65
1247
+ f 94/61/65 82/64/65 87/63/65
1248
+ f 84/65/66 81/48/66 93/59/66
1249
+ f 93/59/66 85/66/66 84/65/66
1250
+ f 81/41/67 84/53/67 87/54/67
1251
+ f 87/54/67 82/40/67 81/41/67
1252
+ f 92/60/68 83/49/68 91/67/68
1253
+ f 91/67/68 90/68/68 92/60/68
1254
+ f 88/69/69 82/64/69 94/61/69
1255
+ f 94/61/69 89/70/69 88/69/69
1256
+ f 82/45/70 88/57/70 91/58/70
1257
+ f 91/58/70 83/44/70 82/45/70
1258
+ f 39/1/71 38/2/71 95/3/71
1259
+ f 95/3/71 96/4/71 39/1/71
1260
+ f 97/5/72 98/6/72 71/7/72
1261
+ f 97/5/72 71/7/72 70/8/72
1262
+ f 97/5/72 70/8/72 99/9/72
1263
+ f 100/10/73 45/11/73 44/12/73
1264
+ f 44/12/73 101/13/73 100/10/73
1265
+ f 44/12/74 48/14/74 99/15/74
1266
+ f 99/15/74 101/13/74 44/12/74
1267
+ f 75/16/51 71/17/51 98/18/51
1268
+ f 98/18/51 102/19/51 75/16/51
1269
+ f 95/20/75 102/21/75 96/22/75
1270
+ f 96/23/76 102/24/76 98/25/76
1271
+ f 98/25/76 103/26/76 96/23/76
1272
+ f 100/27/77 78/28/77 19/29/77
1273
+ f 19/29/77 45/30/77 100/27/77
1274
+ f 103/31/77 97/5/77 99/9/77
1275
+ f 103/31/77 99/9/77 48/32/77
1276
+ f 103/31/77 48/32/77 51/33/77
1277
+ f 96/23/32 103/26/32 51/17/32
1278
+ f 51/17/32 39/16/32 96/23/32
1279
+ f 75/34/78 102/21/78 95/20/78
1280
+ f 95/20/78 79/35/78 75/34/78
1281
+ f 100/36/79 101/37/79 80/12/80
1282
+ f 80/12/80 78/11/80 100/36/79
1283
+ f 101/37/58 99/38/58 70/14/58
1284
+ f 70/14/58 80/12/58 101/37/58
1285
+ f 97/39/81 104/40/81 105/41/81
1286
+ f 105/41/81 98/42/81 97/39/81
1287
+ f 103/43/82 106/44/82 104/45/82
1288
+ f 104/45/82 97/46/82 103/43/82
1289
+ f 98/47/83 105/48/83 106/49/83
1290
+ f 106/49/83 103/50/83 98/47/83
1291
+ f 107/51/84 108/52/84 109/53/84
1292
+ f 109/53/84 110/54/84 107/51/84
1293
+ f 111/55/85 112/56/85 113/57/85
1294
+ f 113/57/85 114/58/85 111/55/85
1295
+ f 115/59/86 116/60/86 106/49/86
1296
+ f 106/49/86 105/48/86 115/59/86
1297
+ f 117/61/87 107/62/87 110/63/87
1298
+ f 110/63/87 104/64/87 117/61/87
1299
+ f 109/65/88 108/66/88 115/59/88
1300
+ f 115/59/88 105/48/88 109/65/88
1301
+ f 105/41/89 104/40/89 110/54/89
1302
+ f 110/54/89 109/53/89 105/41/89
1303
+ f 114/67/90 106/49/90 116/60/90
1304
+ f 116/60/90 111/68/90 114/67/90
1305
+ f 113/69/91 112/70/91 117/61/91
1306
+ f 117/61/91 104/64/91 113/69/91
1307
+ f 104/45/92 106/44/92 114/58/92
1308
+ f 114/58/92 113/57/92 104/45/92
1309
+ f 118/71/58 119/72/58 120/73/58
1310
+ f 120/73/58 121/74/58 118/71/58
1311
+ f 119/75/93 122/76/93 123/77/93
1312
+ f 123/77/93 120/78/93 119/75/93
1313
+ f 122/72/51 124/71/51 125/74/51
1314
+ f 125/74/51 123/73/51 122/72/51
1315
+ f 126/71/93 127/72/93 128/73/93
1316
+ f 128/73/93 129/74/93 126/71/93
1317
+ f 127/75/51 130/76/51 131/77/51
1318
+ f 131/77/51 128/78/51 127/75/51
1319
+ f 130/72/94 132/71/94 133/74/94
1320
+ f 133/74/94 131/73/94 130/72/94
1321
+ f 134/71/51 135/72/51 136/73/51
1322
+ f 136/73/51 137/74/51 134/71/51
1323
+ f 135/75/94 138/76/94 139/77/94
1324
+ f 139/77/94 136/78/94 135/75/94
1325
+ f 138/72/58 140/71/58 141/74/58
1326
+ f 141/74/58 139/73/58 138/72/58
1327
+ f 142/71/94 143/72/94 144/73/94
1328
+ f 144/73/94 145/74/94 142/71/94
1329
+ f 143/75/58 146/76/58 147/77/58
1330
+ f 147/77/58 144/78/58 143/75/58
1331
+ f 146/72/93 148/71/93 149/74/93
1332
+ f 149/74/93 147/73/93 146/72/93
1333
+ f 150/79/95 151/80/95 152/81/95
1334
+ f 152/81/95 153/82/95 150/79/95
1335
+ f 154/83/96 155/84/96 156/85/96
1336
+ f 156/85/96 157/86/96 154/83/96
1337
+ f 158/87/97 159/88/97 160/89/97
1338
+ f 160/89/97 161/90/97 158/87/97
1339
+ f 162/86/51 163/91/51 164/92/51
1340
+ f 164/92/51 165/83/51 162/86/51
1341
+ f 166/93/98 167/94/98 168/95/98
1342
+ f 168/95/98 169/96/98 166/93/98
1343
+ f 170/97/99 171/98/99 172/99/99
1344
+ f 173/100/99 158/101/99 161/102/99
1345
+ f 161/102/99 174/103/99 173/100/99
1346
+ f 175/104/100 176/105/100 177/106/100
1347
+ f 177/106/99 176/105/99 178/107/99
1348
+ f 178/107/99 179/108/99 177/106/99
1349
+ f 150/79/101 153/82/101 180/109/101
1350
+ f 180/109/101 181/110/101 150/79/101
1351
+ f 161/90/102 160/89/102 182/111/102
1352
+ f 182/111/102 183/112/102 161/90/102
1353
+ f 169/96/103 168/95/103 184/113/103
1354
+ f 184/113/103 185/114/103 169/96/103
1355
+ f 174/103/100 161/102/100 183/115/100
1356
+ f 183/115/100 186/116/100 174/103/100
1357
+ f 172/99/104 179/108/104 178/107/104
1358
+ f 178/107/104 170/97/104 172/99/104
1359
+ f 152/117/105 151/118/105 187/119/105
1360
+ f 187/119/105 173/120/105 152/117/105
1361
+ f 152/117/106 173/120/106 174/121/106
1362
+ f 174/121/106 153/122/106 152/117/106
1363
+ f 153/122/107 174/121/107 186/123/107
1364
+ f 186/123/107 180/124/107 153/122/107
1365
+ f 180/124/108 186/123/108 188/125/108
1366
+ f 188/125/108 181/126/108 180/124/108
1367
+ f 181/127/109 188/128/109 189/129/109
1368
+ f 189/129/109 150/130/109 181/127/109
1369
+ f 150/130/110 189/129/110 187/131/110
1370
+ f 187/131/110 151/132/110 150/130/110
1371
+ f 190/133/111 188/134/111 186/116/111
1372
+ f 186/116/111 183/115/111 190/133/111
1373
+ f 182/111/112 191/135/112 190/136/112
1374
+ f 190/136/112 183/112/112 182/111/112
1375
+ f 192/137/113 193/138/113 159/88/113
1376
+ f 159/88/113 158/87/113 192/137/113
1377
+ f 173/100/114 187/139/114 192/140/114
1378
+ f 192/140/114 158/101/114 173/100/114
1379
+ f 194/92/115 154/83/115 157/86/115
1380
+ f 157/86/115 195/91/115 194/92/115
1381
+ f 171/141/116 192/142/116 187/131/116
1382
+ f 187/131/116 172/143/116 171/141/116
1383
+ f 172/143/117 187/131/117 189/129/117
1384
+ f 189/129/117 179/144/117 172/143/117
1385
+ f 179/144/118 189/129/118 188/128/118
1386
+ f 188/128/118 177/145/118 179/144/118
1387
+ f 177/145/119 188/128/119 190/146/119
1388
+ f 190/146/119 175/147/119 177/145/119
1389
+ f 196/85/120 162/86/120 165/83/120
1390
+ f 165/83/120 197/84/120 196/85/120
1391
+ f 176/148/98 166/93/98 169/96/98
1392
+ f 169/96/98 178/149/98 176/148/98
1393
+ f 178/149/103 169/96/103 185/114/103
1394
+ f 185/114/103 170/150/103 178/149/103
1395
+ f 156/151/54 193/152/54 192/142/54
1396
+ f 192/142/54 157/153/54 156/151/54
1397
+ f 157/153/8 192/142/8 171/141/8
1398
+ f 171/141/8 195/154/8 157/153/8
1399
+ f 195/155/104 171/98/104 170/97/104
1400
+ f 170/97/104 194/156/104 195/155/104
1401
+ f 194/157/121 170/150/121 185/114/121
1402
+ f 185/114/121 154/158/121 194/157/121
1403
+ f 154/158/121 185/114/121 184/113/121
1404
+ f 184/113/121 155/159/121 154/158/121
1405
+ f 164/160/122 167/94/122 166/93/122
1406
+ f 166/93/122 165/161/122 164/160/122
1407
+ f 165/161/123 166/93/123 176/148/123
1408
+ f 176/148/123 197/162/123 165/161/123
1409
+ f 197/163/124 176/105/124 175/104/124
1410
+ f 175/104/124 196/164/124 197/163/124
1411
+ f 196/165/54 175/147/54 190/146/54
1412
+ f 190/146/54 162/166/54 196/165/54
1413
+ f 162/166/54 190/146/54 191/167/54
1414
+ f 191/167/54 163/168/54 162/166/54
1415
+ f 198/79/125 199/80/125 200/81/125
1416
+ f 200/81/125 201/82/125 198/79/125
1417
+ f 202/83/126 203/84/126 204/85/126
1418
+ f 204/85/126 205/86/126 202/83/126
1419
+ f 206/87/127 207/88/127 208/89/127
1420
+ f 208/89/127 209/90/127 206/87/127
1421
+ f 210/86/104 211/91/104 212/92/104
1422
+ f 212/92/104 213/83/104 210/86/104
1423
+ f 214/93/128 215/94/128 216/95/128
1424
+ f 216/95/128 217/96/128 214/93/128
1425
+ f 218/97/58 219/98/58 220/99/58
1426
+ f 221/100/129 206/101/129 209/102/129
1427
+ f 209/102/129 222/103/129 221/100/129
1428
+ f 223/104/129 224/105/129 225/106/129
1429
+ f 225/106/58 224/105/58 226/107/58
1430
+ f 226/107/58 227/108/58 225/106/58
1431
+ f 198/79/130 201/82/130 228/109/130
1432
+ f 228/109/130 229/110/130 198/79/130
1433
+ f 209/90/131 208/89/131 230/111/131
1434
+ f 230/111/131 231/112/131 209/90/131
1435
+ f 217/96/132 216/95/132 232/113/132
1436
+ f 232/113/132 233/114/132 217/96/132
1437
+ f 222/103/58 209/102/58 231/115/58
1438
+ f 231/115/58 234/116/58 222/103/58
1439
+ f 220/99/5 227/108/5 226/107/5
1440
+ f 226/107/5 218/97/5 220/99/5
1441
+ f 200/117/133 199/118/133 235/119/133
1442
+ f 235/119/133 221/120/133 200/117/133
1443
+ f 200/117/134 221/120/134 222/121/134
1444
+ f 222/121/134 201/122/134 200/117/134
1445
+ f 201/122/135 222/121/135 234/123/135
1446
+ f 234/123/135 228/124/135 201/122/135
1447
+ f 228/124/136 234/123/136 236/125/136
1448
+ f 236/125/136 229/126/136 228/124/136
1449
+ f 229/127/137 236/128/137 237/129/137
1450
+ f 237/129/137 198/130/137 229/127/137
1451
+ f 198/130/138 237/129/138 235/131/138
1452
+ f 235/131/138 199/132/138 198/130/138
1453
+ f 238/133/139 236/134/139 234/116/139
1454
+ f 234/116/139 231/115/139 238/133/139
1455
+ f 230/111/140 239/135/140 238/136/140
1456
+ f 238/136/140 231/112/140 230/111/140
1457
+ f 240/137/141 241/138/141 207/88/141
1458
+ f 207/88/141 206/87/141 240/137/141
1459
+ f 221/100/142 235/139/142 240/140/142
1460
+ f 240/140/142 206/101/142 221/100/142
1461
+ f 242/92/143 202/83/143 205/86/143
1462
+ f 205/86/143 243/91/143 242/92/143
1463
+ f 219/141/144 240/142/144 235/131/144
1464
+ f 235/131/144 220/143/144 219/141/144
1465
+ f 220/143/145 235/131/145 237/129/145
1466
+ f 237/129/145 227/144/145 220/143/145
1467
+ f 227/144/146 237/129/146 236/128/146
1468
+ f 236/128/146 225/145/146 227/144/146
1469
+ f 225/145/147 236/128/147 238/146/147
1470
+ f 238/146/147 223/147/147 225/145/147
1471
+ f 244/85/148 210/86/148 213/83/148
1472
+ f 213/83/148 245/84/148 244/85/148
1473
+ f 224/148/128 214/93/128 217/96/128
1474
+ f 217/96/128 226/149/128 224/148/128
1475
+ f 226/149/149 217/96/149 233/114/149
1476
+ f 233/114/149 218/150/149 226/149/149
1477
+ f 204/151/8 241/152/8 240/142/8
1478
+ f 240/142/8 205/153/8 204/151/8
1479
+ f 205/153/8 240/142/8 219/141/8
1480
+ f 219/141/8 243/154/8 205/153/8
1481
+ f 243/155/58 219/98/58 218/97/58
1482
+ f 218/97/58 242/156/58 243/155/58
1483
+ f 242/157/121 218/150/121 233/114/121
1484
+ f 233/114/121 202/158/121 242/157/121
1485
+ f 202/158/122 233/114/122 232/113/122
1486
+ f 232/113/122 203/159/122 202/158/122
1487
+ f 212/160/121 215/94/121 214/93/121
1488
+ f 214/93/121 213/161/121 212/160/121
1489
+ f 213/161/150 214/93/150 224/148/150
1490
+ f 224/148/150 245/162/150 213/161/150
1491
+ f 245/163/115 224/105/115 223/104/115
1492
+ f 223/104/115 244/164/115 245/163/115
1493
+ f 244/165/54 223/147/54 238/146/54
1494
+ f 238/146/54 210/166/54 244/165/54
1495
+ f 210/166/54 238/146/54 239/167/54
1496
+ f 239/167/54 211/168/54 210/166/54
1497
+ f 246/79/151 247/80/151 248/81/151
1498
+ f 248/81/151 249/82/151 246/79/151
1499
+ f 250/83/152 251/84/152 252/85/152
1500
+ f 252/85/152 253/86/152 250/83/152
1501
+ f 254/87/131 255/88/131 256/89/131
1502
+ f 256/89/131 257/90/131 254/87/131
1503
+ f 258/86/93 259/91/93 260/92/93
1504
+ f 260/92/93 261/83/93 258/86/93
1505
+ f 262/93/149 263/94/149 264/95/149
1506
+ f 264/95/149 265/96/149 262/93/149
1507
+ f 266/97/51 267/98/51 268/99/51
1508
+ f 269/100/12 254/101/12 257/102/12
1509
+ f 257/102/12 270/103/12 269/100/12
1510
+ f 271/104/153 272/105/153 273/106/153
1511
+ f 273/106/12 272/105/12 274/107/12
1512
+ f 274/107/12 275/108/12 273/106/12
1513
+ f 246/79/154 249/82/154 276/109/154
1514
+ f 276/109/154 277/110/154 246/79/154
1515
+ f 257/90/127 256/89/127 278/111/127
1516
+ f 278/111/127 279/112/127 257/90/127
1517
+ f 265/96/128 264/95/128 280/113/128
1518
+ f 280/113/128 281/114/128 265/96/128
1519
+ f 270/103/12 257/102/12 279/115/12
1520
+ f 279/115/12 282/116/12 270/103/12
1521
+ f 268/99/51 275/108/51 274/107/51
1522
+ f 274/107/51 266/97/51 268/99/51
1523
+ f 248/117/155 247/118/155 283/119/155
1524
+ f 283/119/155 269/120/155 248/117/155
1525
+ f 248/117/156 269/120/156 270/121/156
1526
+ f 270/121/156 249/122/156 248/117/156
1527
+ f 249/122/157 270/121/157 282/123/157
1528
+ f 282/123/157 276/124/157 249/122/157
1529
+ f 276/124/158 282/123/158 284/125/158
1530
+ f 284/125/158 277/126/158 276/124/158
1531
+ f 277/127/159 284/128/159 285/129/159
1532
+ f 285/129/159 246/130/159 277/127/159
1533
+ f 246/130/160 285/129/160 283/131/160
1534
+ f 283/131/160 247/132/160 246/130/160
1535
+ f 286/133/161 284/134/161 282/116/161
1536
+ f 282/116/161 279/115/161 286/133/161
1537
+ f 278/111/162 287/135/162 286/136/162
1538
+ f 286/136/162 279/112/162 278/111/162
1539
+ f 288/137/163 289/138/163 255/88/163
1540
+ f 255/88/163 254/87/163 288/137/163
1541
+ f 269/100/164 283/139/164 288/140/164
1542
+ f 288/140/164 254/101/164 269/100/164
1543
+ f 290/92/165 250/83/165 253/86/165
1544
+ f 253/86/165 291/91/165 290/92/165
1545
+ f 267/141/166 288/142/166 283/131/166
1546
+ f 283/131/166 268/143/166 267/141/166
1547
+ f 268/143/160 283/131/160 285/129/160
1548
+ f 285/129/160 275/144/160 268/143/160
1549
+ f 275/144/167 285/129/167 284/128/167
1550
+ f 284/128/167 273/145/167 275/144/167
1551
+ f 273/145/168 284/128/168 286/146/168
1552
+ f 286/146/168 271/147/168 273/145/168
1553
+ f 292/85/126 258/86/126 261/83/126
1554
+ f 261/83/126 293/84/126 292/85/126
1555
+ f 272/148/149 262/93/149 265/96/149
1556
+ f 265/96/149 274/149/149 272/148/149
1557
+ f 274/149/128 265/96/128 281/114/128
1558
+ f 281/114/128 266/150/128 274/149/128
1559
+ f 252/151/54 289/152/54 288/142/54
1560
+ f 288/142/54 253/153/54 252/151/54
1561
+ f 253/153/54 288/142/54 267/141/54
1562
+ f 267/141/54 291/154/54 253/153/54
1563
+ f 291/155/51 267/98/51 266/97/51
1564
+ f 266/97/51 290/156/51 291/155/51
1565
+ f 290/157/123 266/150/123 281/114/123
1566
+ f 281/114/123 250/158/123 290/157/123
1567
+ f 250/158/121 281/114/121 280/113/121
1568
+ f 280/113/121 251/159/121 250/158/121
1569
+ f 260/160/121 263/94/121 262/93/121
1570
+ f 262/93/121 261/161/121 260/160/121
1571
+ f 261/161/121 262/93/121 272/148/121
1572
+ f 272/148/121 293/162/121 261/161/121
1573
+ f 293/163/169 272/105/169 271/104/169
1574
+ f 271/104/169 292/164/169 293/163/169
1575
+ f 292/165/54 271/147/54 286/146/54
1576
+ f 286/146/54 258/166/54 292/165/54
1577
+ f 258/166/54 286/146/54 287/167/54
1578
+ f 287/167/54 259/168/54 258/166/54
1579
+ f 95/169/51 294/170/51 295/171/51
1580
+ f 295/171/51 296/172/51 95/169/51
1581
+ f 296/173/94 295/174/94 297/175/94
1582
+ f 297/175/94 298/176/94 296/173/94
1583
+ f 298/177/58 297/178/58 299/179/58
1584
+ f 299/179/58 37/180/58 298/177/58
1585
+ f 37/181/170 299/182/170 294/183/170
1586
+ f 294/183/170 95/184/170 37/181/170
1587
+ f 300/185/51 301/186/51 302/187/51
1588
+ f 302/187/51 303/188/51 300/185/51
1589
+ f 304/185/100 305/189/100 306/190/100
1590
+ f 306/190/100 307/188/100 304/185/100
1591
+ f 308/185/58 309/189/58 310/190/58
1592
+ f 310/190/58 311/188/58 308/185/58
1593
+ f 312/185/93 313/186/93 314/187/93
1594
+ f 314/187/93 315/188/93 312/185/93
1595
+ f 316/191/171 302/192/171 315/193/171
1596
+ f 315/193/171 317/194/171 316/191/171
1597
+ f 318/195/172 314/196/172 311/197/172
1598
+ f 311/197/172 319/198/172 318/195/172
1599
+ f 320/199/173 310/200/173 307/201/173
1600
+ f 307/201/173 321/202/173 320/199/173
1601
+ f 322/203/174 306/204/174 303/205/174
1602
+ f 303/205/174 323/206/174 322/203/174
1603
+ f 324/207/54 301/208/54 300/209/54
1604
+ f 300/209/54 325/210/54 324/207/54
1605
+ f 326/211/8 305/212/8 304/213/8
1606
+ f 304/213/8 327/214/8 326/211/8
1607
+ f 328/215/77 309/216/77 308/217/77
1608
+ f 308/217/77 329/218/77 328/215/77
1609
+ f 330/219/77 313/220/77 312/221/77
1610
+ f 312/221/77 331/222/77 330/219/77
1611
+ f 308/185/58 311/188/58 314/187/58
1612
+ f 314/187/58 313/186/58 308/185/58
1613
+ f 312/185/93 315/188/93 302/190/93
1614
+ f 302/190/93 301/189/93 312/185/93
1615
+ f 318/195/175 317/194/175 315/193/175
1616
+ f 315/193/175 314/196/175 318/195/175
1617
+ f 320/199/176 319/198/176 311/197/176
1618
+ f 311/197/176 310/200/176 320/199/176
1619
+ f 322/203/177 321/202/177 307/201/177
1620
+ f 307/201/177 306/204/177 322/203/177
1621
+ f 330/219/54 329/218/54 308/217/54
1622
+ f 308/217/54 313/220/54 330/219/54
1623
+ f 324/207/31 331/222/31 312/221/31
1624
+ f 312/221/31 301/208/31 324/207/31
1625
+ f 300/185/51 303/188/51 306/190/51
1626
+ f 306/190/51 305/189/51 300/185/51
1627
+ f 304/185/94 307/188/94 310/187/94
1628
+ f 310/187/94 309/186/94 304/185/94
1629
+ f 316/191/178 323/206/178 303/205/178
1630
+ f 303/205/178 302/192/178 316/191/178
1631
+ f 326/211/77 325/210/77 300/209/77
1632
+ f 300/209/77 305/212/77 326/211/77
1633
+ f 328/215/77 327/214/77 304/213/77
1634
+ f 304/213/77 309/216/77 328/215/77
1635
+ f 332/185/51 333/186/51 334/187/51
1636
+ f 334/187/51 335/188/51 332/185/51
1637
+ f 336/223/94 337/224/94 338/225/94
1638
+ f 338/225/94 339/226/94 336/223/94
1639
+ f 340/227/58 341/228/58 342/229/58
1640
+ f 342/229/58 343/230/58 340/227/58
1641
+ f 344/185/93 345/186/93 346/187/93
1642
+ f 346/187/93 347/188/93 344/185/93
1643
+ f 348/191/171 334/192/171 347/193/171
1644
+ f 347/193/171 349/194/171 348/191/171
1645
+ f 350/195/172 346/196/172 343/197/172
1646
+ f 343/197/172 351/198/172 350/195/172
1647
+ f 352/199/173 342/200/173 339/201/173
1648
+ f 339/201/173 353/202/173 352/199/173
1649
+ f 354/203/174 338/204/174 335/205/174
1650
+ f 335/205/174 355/206/174 354/203/174
1651
+ f 356/207/54 333/208/54 332/209/54
1652
+ f 332/209/54 357/210/54 356/207/54
1653
+ f 358/211/8 337/212/8 336/213/8
1654
+ f 336/213/8 359/214/8 358/211/8
1655
+ f 360/215/54 341/216/54 340/217/54
1656
+ f 340/217/54 361/218/54 360/215/54
1657
+ f 362/219/77 345/220/77 344/221/77
1658
+ f 344/221/77 363/222/77 362/219/77
1659
+ f 340/227/58 343/230/58 346/231/58
1660
+ f 346/231/58 345/232/58 340/227/58
1661
+ f 344/185/93 347/188/93 334/190/93
1662
+ f 334/190/93 333/189/93 344/185/93
1663
+ f 350/195/175 349/194/175 347/193/175
1664
+ f 347/193/175 346/196/175 350/195/175
1665
+ f 352/199/176 351/198/176 343/197/176
1666
+ f 343/197/176 342/200/176 352/199/176
1667
+ f 354/203/177 353/202/177 339/201/177
1668
+ f 339/201/177 338/204/177 354/203/177
1669
+ f 362/219/54 361/218/54 340/217/54
1670
+ f 340/217/54 345/220/54 362/219/54
1671
+ f 356/207/31 363/222/31 344/221/31
1672
+ f 344/221/31 333/208/31 356/207/31
1673
+ f 332/185/51 335/188/51 338/190/51
1674
+ f 338/190/51 337/189/51 332/185/51
1675
+ f 336/223/94 339/226/94 342/233/94
1676
+ f 342/233/94 341/234/94 336/223/94
1677
+ f 348/191/178 355/206/178 335/205/178
1678
+ f 335/205/178 334/192/178 348/191/178
1679
+ f 358/211/77 357/210/77 332/209/77
1680
+ f 332/209/77 337/212/77 358/211/77
1681
+ f 360/215/54 359/214/54 336/213/54
1682
+ f 336/213/54 341/216/54 360/215/54
1683
+ f 364/235/179 365/236/179 366/237/179
1684
+ f 366/237/179 367/238/179 364/235/179
1685
+ f 368/239/180 365/236/180 364/235/180
1686
+ f 364/235/180 369/240/180 368/239/180
1687
+ f 364/241/181 367/242/181 370/243/181
1688
+ f 370/243/181 371/244/181 364/241/181
1689
+ f 369/245/182 364/241/182 371/244/182
1690
+ f 371/244/182 372/246/182 369/245/182
1691
+ f 371/247/183 370/248/183 373/249/183
1692
+ f 373/249/183 374/250/183 371/247/183
1693
+ f 375/251/184 372/252/184 371/247/184
1694
+ f 371/247/184 374/250/184 375/251/184
1695
+ f 365/253/185 374/254/185 373/255/185
1696
+ f 373/255/185 366/256/185 365/253/185
1697
+ f 368/257/186 375/258/186 374/254/186
1698
+ f 374/254/186 365/253/186 368/257/186
1699
+ f 376/235/187 377/238/187 378/237/187
1700
+ f 378/237/187 379/236/187 376/235/187
1701
+ f 380/239/188 381/240/188 376/235/188
1702
+ f 376/235/188 379/236/188 380/239/188
1703
+ f 376/241/189 382/244/189 383/243/189
1704
+ f 383/243/189 377/242/189 376/241/189
1705
+ f 381/245/190 384/246/190 382/244/190
1706
+ f 382/244/190 376/241/190 381/245/190
1707
+ f 382/247/191 385/250/191 386/249/191
1708
+ f 386/249/191 383/248/191 382/247/191
1709
+ f 387/251/192 385/250/192 382/247/192
1710
+ f 382/247/192 384/252/192 387/251/192
1711
+ f 379/253/193 378/256/193 386/255/193
1712
+ f 386/255/193 385/254/193 379/253/193
1713
+ f 380/257/194 379/253/194 385/254/194
1714
+ f 385/254/194 387/258/194 380/257/194
1715
+ f 388/235/187 389/238/187 390/237/187
1716
+ f 390/237/187 391/236/187 388/235/187
1717
+ f 392/239/188 393/240/188 388/235/188
1718
+ f 388/235/188 391/236/188 392/239/188
1719
+ f 388/241/189 394/244/189 395/243/189
1720
+ f 395/243/189 389/242/189 388/241/189
1721
+ f 393/245/195 396/246/195 394/244/195
1722
+ f 394/244/195 388/241/195 393/245/195
1723
+ f 394/247/191 397/250/191 398/249/191
1724
+ f 398/249/191 395/248/191 394/247/191
1725
+ f 399/251/196 397/250/196 394/247/196
1726
+ f 394/247/196 396/252/196 399/251/196
1727
+ f 391/253/193 390/256/193 398/255/193
1728
+ f 398/255/193 397/254/193 391/253/193
1729
+ f 392/257/197 391/253/197 397/254/197
1730
+ f 397/254/197 399/258/197 392/257/197
1731
+ f 400/235/198 401/238/198 402/237/198
1732
+ f 402/237/198 403/236/198 400/235/198
1733
+ f 404/239/199 405/240/199 400/235/199
1734
+ f 400/235/199 403/236/199 404/239/199
1735
+ f 400/241/200 406/244/200 407/243/200
1736
+ f 407/243/200 401/242/200 400/241/200
1737
+ f 405/245/201 408/246/201 406/244/201
1738
+ f 406/244/201 400/241/201 405/245/201
1739
+ f 406/247/202 409/250/202 410/249/202
1740
+ f 410/249/202 407/248/202 406/247/202
1741
+ f 411/251/203 409/250/203 406/247/203
1742
+ f 406/247/203 408/252/203 411/251/203
1743
+ f 403/253/185 402/256/185 410/255/185
1744
+ f 410/255/185 409/254/185 403/253/185
1745
+ f 404/257/204 403/253/204 409/254/204
1746
+ f 409/254/204 411/258/204 404/257/204
1747
+ f 412/235/205 413/236/205 414/237/205
1748
+ f 414/237/205 415/238/205 412/235/205
1749
+ f 416/239/206 413/236/206 412/235/206
1750
+ f 412/235/206 417/240/206 416/239/206
1751
+ f 412/241/207 415/242/207 418/243/207
1752
+ f 418/243/207 419/244/207 412/241/207
1753
+ f 417/245/208 412/241/208 419/244/208
1754
+ f 419/244/208 420/246/208 417/245/208
1755
+ f 419/247/209 418/248/209 421/249/209
1756
+ f 421/249/209 422/250/209 419/247/209
1757
+ f 423/251/210 420/252/210 419/247/210
1758
+ f 419/247/210 422/250/210 423/251/210
1759
+ f 413/253/193 422/254/193 421/255/193
1760
+ f 421/255/193 414/256/193 413/253/193
1761
+ f 416/257/211 423/258/211 422/254/211
1762
+ f 422/254/211 413/253/211 416/257/211
1763
+ f 424/235/205 425/236/205 426/237/205
1764
+ f 426/237/205 427/238/205 424/235/205
1765
+ f 428/239/206 425/236/206 424/235/206
1766
+ f 424/235/206 429/240/206 428/239/206
1767
+ f 424/241/207 427/242/207 430/243/207
1768
+ f 430/243/207 431/244/207 424/241/207
1769
+ f 429/245/212 424/241/212 431/244/212
1770
+ f 431/244/212 432/246/212 429/245/212
1771
+ f 431/247/209 430/248/209 433/249/209
1772
+ f 433/249/209 434/250/209 431/247/209
1773
+ f 435/251/213 432/252/213 431/247/213
1774
+ f 431/247/213 434/250/213 435/251/213
1775
+ f 425/253/193 434/254/193 433/255/193
1776
+ f 433/255/193 426/256/193 425/253/193
1777
+ f 428/257/214 435/258/214 434/254/214
1778
+ f 434/254/214 425/253/214 428/257/214
1779
+ f 436/235/198 437/238/198 438/237/198
1780
+ f 438/237/198 439/236/198 436/235/198
1781
+ f 440/239/199 441/240/199 436/235/199
1782
+ f 436/235/199 439/236/199 440/239/199
1783
+ f 436/241/200 442/244/200 443/243/200
1784
+ f 443/243/200 437/242/200 436/241/200
1785
+ f 441/245/215 444/246/215 442/244/215
1786
+ f 442/244/215 436/241/215 441/245/215
1787
+ f 442/247/202 445/250/202 446/249/202
1788
+ f 446/249/202 443/248/202 442/247/202
1789
+ f 447/251/216 445/250/216 442/247/216
1790
+ f 442/247/216 444/252/216 447/251/216
1791
+ f 439/253/185 438/256/185 446/255/185
1792
+ f 446/255/185 445/254/185 439/253/185
1793
+ f 440/257/217 439/253/217 445/254/217
1794
+ f 445/254/217 447/258/217 440/257/217
1795
+ f 448/235/179 449/236/179 450/237/179
1796
+ f 450/237/179 451/238/179 448/235/179
1797
+ f 452/239/180 449/236/180 448/235/180
1798
+ f 448/235/180 453/240/180 452/239/180
1799
+ f 448/241/181 451/242/181 454/243/181
1800
+ f 454/243/181 455/244/181 448/241/181
1801
+ f 453/245/218 448/241/218 455/244/218
1802
+ f 455/244/218 456/246/218 453/245/218
1803
+ f 455/247/183 454/248/183 457/249/183
1804
+ f 457/249/183 458/250/183 455/247/183
1805
+ f 459/251/219 456/252/219 455/247/219
1806
+ f 455/247/219 458/250/219 459/251/219
1807
+ f 449/253/185 458/254/185 457/255/185
1808
+ f 457/255/185 450/256/185 449/253/185
1809
+ f 452/257/220 459/258/220 458/254/220
1810
+ f 458/254/220 449/253/220 452/257/220
1811
+ f 460/259/221 461/260/222 462/261/223
1812
+ f 462/261/223 463/262/224 460/259/221
1813
+ f 461/260/222 464/263/225 465/264/225
1814
+ f 465/264/225 462/261/223 461/260/222
1815
+ f 464/263/225 466/265/226 467/266/226
1816
+ f 467/266/226 465/264/225 464/263/225
1817
+ f 466/265/226 468/267/227 469/268/227
1818
+ f 469/268/227 467/266/226 466/265/226
1819
+ f 463/262/224 462/261/223 470/269/228
1820
+ f 470/269/228 471/270/229 463/262/224
1821
+ f 462/261/223 465/264/225 472/271/225
1822
+ f 472/271/225 470/269/228 462/261/223
1823
+ f 465/264/225 467/266/226 473/272/226
1824
+ f 473/272/226 472/271/225 465/264/225
1825
+ f 467/266/226 469/268/227 474/273/227
1826
+ f 474/273/227 473/272/226 467/266/226
1827
+ f 471/270/229 470/269/228 475/274/230
1828
+ f 475/274/230 476/275/231 471/270/229
1829
+ f 470/269/228 472/271/225 477/276/225
1830
+ f 477/276/225 475/274/230 470/269/228
1831
+ f 472/271/225 473/272/226 478/277/226
1832
+ f 478/277/226 477/276/225 472/271/225
1833
+ f 473/272/226 474/273/227 479/278/227
1834
+ f 479/278/227 478/277/226 473/272/226
1835
+ f 476/275/231 475/274/230 480/279/232
1836
+ f 480/279/232 481/280/233 476/275/231
1837
+ f 475/274/230 477/276/225 482/281/225
1838
+ f 482/281/225 480/279/232 475/274/230
1839
+ f 477/276/225 478/277/226 483/282/226
1840
+ f 483/282/226 482/281/225 477/276/225
1841
+ f 478/277/226 479/278/227 484/283/227
1842
+ f 484/283/227 483/282/226 478/277/226
1843
+ f 485/284/234 486/285/234 487/286/234
1844
+ f 485/284/235 487/285/235 488/286/235
1845
+ f 485/284/236 488/285/236 489/286/236
1846
+ f 485/284/237 489/285/237 486/286/237
1847
+ f 490/287/238 491/288/238 492/289/238
1848
+ f 492/289/238 493/290/238 490/287/238
1849
+ f 494/291/58 495/292/58 496/293/58
1850
+ f 496/293/58 497/294/58 494/291/58
1851
+ f 498/295/93 499/296/93 495/297/93
1852
+ f 495/297/93 494/298/93 498/295/93
1853
+ f 500/299/153 501/300/153 499/292/153
1854
+ f 499/292/153 498/291/153 500/299/153
1855
+ f 492/301/93 491/302/93 495/297/93
1856
+ f 495/297/93 499/296/93 492/301/93
1857
+ f 493/303/153 492/304/153 499/292/153
1858
+ f 499/292/153 501/300/153 493/303/153
1859
+ f 502/305/239 503/306/239 504/307/239
1860
+ f 504/307/239 505/308/239 502/305/239
1861
+ f 506/294/153 507/293/153 508/292/153
1862
+ f 508/292/153 509/291/153 506/294/153
1863
+ f 510/291/129 511/292/129 512/300/129
1864
+ f 512/300/129 513/299/129 510/291/129
1865
+ f 509/309/93 508/310/93 511/311/93
1866
+ f 511/311/93 510/312/93 509/309/93
1867
+ f 505/304/129 504/303/129 512/300/129
1868
+ f 512/300/129 511/292/129 505/304/129
1869
+ f 502/313/93 505/314/93 511/311/93
1870
+ f 511/311/93 508/310/93 502/313/93
1871
+ f 502/305/240 514/315/77 515/316/77
1872
+ f 515/316/77 503/306/240 502/305/240
1873
+ f 508/310/93 516/317/241 514/318/241
1874
+ f 514/318/241 502/313/93 508/310/93
1875
+ f 516/315/242 517/319/242 496/320/242
1876
+ f 496/320/242 495/288/242 516/315/242
1877
+ f 491/288/243 490/287/243 515/316/77
1878
+ f 515/316/77 514/315/77 491/288/243
1879
+ f 495/297/170 491/302/170 514/318/241
1880
+ f 514/318/241 516/317/241 495/297/170
1881
+ f 508/305/244 507/321/244 517/319/244
1882
+ f 517/319/244 516/315/244 508/305/244
1883
+ f 496/322/170 517/323/170 518/324/170
1884
+ f 518/324/170 497/325/170 496/322/170
1885
+ f 517/323/93 507/326/93 506/327/93
1886
+ f 506/327/93 518/324/93 517/323/93
1887
+ # 782 faces
1888
+