passenger 6.0.8 → 6.0.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1905) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG +288 -0
  3. data/CONTRIBUTORS +15 -0
  4. data/bin/passenger-install-nginx-module +2 -1
  5. data/bin/passenger-status +29 -4
  6. data/build/common_library.rb +2 -1
  7. data/build/integration_tests.rb +8 -7
  8. data/build/ruby_tests.rb +1 -1
  9. data/build/test_basics.rb +8 -5
  10. data/dev/copy_boost_headers +119 -71
  11. data/dev/index_cxx_dependencies.rb +1 -1
  12. data/dev/webpacketpp.patch +39 -0
  13. data/doc/templates/markdown.html.erb +2 -6
  14. data/package.json +20 -18
  15. data/resources/mime.types +1 -0
  16. data/resources/templates/error_renderer/with_details/dist/bundle.js +2 -33
  17. data/resources/templates/error_renderer/with_details/dist/styles.css +2 -2
  18. data/resources/templates/error_renderer/with_details/src/index.html.template +0 -2
  19. data/resources/templates/error_renderer/with_details/webpack.config.js +13 -16
  20. data/resources/templates/error_renderer/without_details/dist/bundle.js +0 -1
  21. data/resources/templates/error_renderer/without_details/dist/styles.css +1 -1
  22. data/resources/templates/error_renderer/without_details/webpack.config.js +13 -16
  23. data/resources/templates/standalone/server.erb +1 -0
  24. data/src/agent/Core/ApiServer.h +35 -0
  25. data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +1 -0
  26. data/src/agent/Core/ApplicationPool/Options.h +5 -0
  27. data/src/agent/Core/ApplicationPool/Pool.h +9 -1
  28. data/src/agent/Core/Config.h +2 -1
  29. data/src/agent/Core/Controller/CheckoutSession.cpp +24 -13
  30. data/src/agent/Core/Controller/Config.h +6 -2
  31. data/src/agent/Core/Controller/InitRequest.cpp +2 -0
  32. data/src/agent/Core/Controller/InternalUtils.cpp +32 -6
  33. data/src/agent/Core/Controller.h +4 -1
  34. data/src/agent/Core/OptionParser.h +4 -0
  35. data/src/agent/Core/SecurityUpdateChecker.h +4 -4
  36. data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h +7 -0
  37. data/src/agent/Core/SpawningKit/Config.h +13 -0
  38. data/src/agent/Core/SpawningKit/Handshake/Prepare.h +4 -0
  39. data/src/agent/Core/SpawningKit/PipeWatcher.h +18 -3
  40. data/src/agent/Core/SpawningKit/Spawner.h +1 -0
  41. data/src/agent/Shared/ApplicationPoolApiKey.h +2 -0
  42. data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +27 -1
  43. data/src/agent/Watchdog/Config.h +2 -1
  44. data/src/agent/Watchdog/WatchdogMain.cpp +4 -0
  45. data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +32 -27
  46. data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +5 -0
  47. data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +19 -1
  48. data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +3 -0
  49. data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +3 -0
  50. data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +11 -0
  51. data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +7 -0
  52. data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +19 -2
  53. data/src/apache2_module/Hooks.cpp +1 -0
  54. data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +19 -19
  55. data/src/cxx_supportlib/BackgroundEventLoop.cpp +4 -0
  56. data/src/cxx_supportlib/Constants.h +1 -1
  57. data/src/cxx_supportlib/DataStructures/HashedStaticString.h +2 -0
  58. data/src/cxx_supportlib/FileDescriptor.h +8 -0
  59. data/src/cxx_supportlib/IOTools/IOUtils.cpp +4 -4
  60. data/src/cxx_supportlib/LoggingKit/Context.h +1 -1
  61. data/src/cxx_supportlib/SafeLibev.h +2 -0
  62. data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +3 -0
  63. data/src/cxx_supportlib/ServerKit/http_parser.cpp +740 -430
  64. data/src/cxx_supportlib/ServerKit/http_parser.h +156 -34
  65. data/src/cxx_supportlib/StaticString.h +2 -0
  66. data/src/cxx_supportlib/Utils/HttpConstants.h +1 -1
  67. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/case_conv.hpp +3 -0
  68. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/classification.hpp +2 -0
  69. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_format_all.hpp +2 -0
  70. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_iterator.hpp +11 -3
  71. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_iterator.hpp +27 -1
  72. data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +47 -0
  73. data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_posix.hpp +41 -0
  74. data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_sunos.hpp +34 -0
  75. data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +28 -0
  76. data/src/cxx_supportlib/vendor-modified/boost/array.hpp +1 -1
  77. data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_executor.hpp +344 -0
  78. data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_handler.hpp +825 -0
  79. data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +299 -11
  80. data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +80 -0
  81. data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +141 -0
  82. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +129 -21
  83. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +240 -0
  84. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +103 -16
  85. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_immediate_executor.hpp +299 -0
  86. data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +37 -0
  87. data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +1209 -120
  88. data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +11 -2
  89. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +306 -125
  90. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +50 -28
  91. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +831 -0
  92. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +1 -1
  93. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +703 -0
  94. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +308 -127
  95. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +637 -0
  96. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +130 -56
  97. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +143 -50
  98. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +120 -37
  99. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +102 -49
  100. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +461 -207
  101. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +1 -1
  102. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +1 -1
  103. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +756 -0
  104. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +229 -93
  105. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +1 -1
  106. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +1 -1
  107. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +55 -33
  108. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +633 -0
  109. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +751 -0
  110. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +754 -0
  111. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +230 -24
  112. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_immediate_executor.hpp +753 -0
  113. data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +479 -66
  114. data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +330 -0
  115. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +43 -10
  116. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +1 -1
  117. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +39 -10
  118. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +1 -1
  119. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +43 -10
  120. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +1 -1
  121. data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +1 -1
  122. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +307 -0
  123. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +237 -0
  124. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +176 -0
  125. data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +73 -21
  126. data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +1 -1
  127. data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +415 -13
  128. data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +206 -75
  129. data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +85 -0
  130. data/src/cxx_supportlib/vendor-modified/boost/asio/consign.hpp +90 -0
  131. data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +1 -1
  132. data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
  133. data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +139 -47
  134. data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +804 -0
  135. data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +8 -7
  136. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +1 -1
  137. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +1 -1
  138. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +1 -1
  139. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +4 -1
  140. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +165 -0
  141. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +1 -1
  142. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +276 -65
  143. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +2 -1
  144. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +1 -1
  145. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +192 -1
  146. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +1 -1
  147. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bulk_executor_op.hpp +2 -1
  148. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +1 -1
  149. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +1 -1
  150. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +1 -1
  151. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +1 -1
  152. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/composed_work.hpp +330 -0
  153. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +1 -1
  154. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +1 -1
  155. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +1 -1
  156. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +578 -81
  157. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +38 -1
  158. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -1
  159. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +3 -1
  160. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +1 -1
  161. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +41 -1
  162. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +1 -1
  163. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +42 -2
  164. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +41 -1
  165. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +40 -1
  166. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +36 -7
  167. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +36 -7
  168. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +1 -1
  169. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +1 -1
  170. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +42 -0
  171. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +3 -2
  172. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +2 -1
  173. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +1 -1
  174. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +1 -1
  175. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +7 -1
  176. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +1 -1
  177. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +1 -1
  178. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +1 -1
  179. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +1 -1
  180. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +2 -2
  181. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +1 -1
  182. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +16 -12
  183. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +1 -1
  184. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +1 -1
  185. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +1 -1
  186. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +22 -19
  187. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +155 -28
  188. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +1 -1
  189. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
  190. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +367 -5
  191. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +21 -1
  192. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +27 -4
  193. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +21 -1
  194. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +47 -8
  195. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +10 -8
  196. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +4 -2
  197. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +207 -0
  198. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +142 -0
  199. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +114 -0
  200. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +916 -0
  201. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +251 -0
  202. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +21 -1
  203. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +44 -6
  204. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +1 -1
  205. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +1 -1
  206. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +8 -4
  207. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +1 -1
  208. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/{reactive_serial_port_service.ipp → posix_serial_port_service.ipp} +38 -19
  209. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +1 -1
  210. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +1 -1
  211. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +16 -9
  212. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +29 -19
  213. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +1 -1
  214. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +25 -4
  215. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +25 -1
  216. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +67 -5
  217. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +1 -1
  218. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +1 -1
  219. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +164 -6
  220. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +147 -132
  221. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +4 -4
  222. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +24 -42
  223. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +25 -1
  224. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +3 -33
  225. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +29 -5
  226. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +37 -0
  227. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +10 -6
  228. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +7 -1
  229. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +1 -1
  230. data/src/cxx_supportlib/vendor-modified/boost/asio/{impl/defer.hpp → detail/initiate_defer.hpp} +52 -48
  231. data/src/cxx_supportlib/vendor-modified/boost/asio/{impl/dispatch.hpp → detail/initiate_dispatch.hpp} +43 -57
  232. data/src/cxx_supportlib/vendor-modified/boost/asio/{impl/post.hpp → detail/initiate_post.hpp} +52 -48
  233. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +1 -1
  234. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +14 -8
  235. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +197 -0
  236. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +192 -0
  237. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +689 -0
  238. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +191 -0
  239. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +187 -0
  240. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +263 -0
  241. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +117 -0
  242. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +86 -0
  243. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +321 -0
  244. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +287 -0
  245. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +143 -0
  246. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +207 -0
  247. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +208 -0
  248. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +194 -0
  249. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +193 -0
  250. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +196 -0
  251. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +633 -0
  252. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +665 -0
  253. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +115 -0
  254. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +27 -1
  255. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +1 -1
  256. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +1 -1
  257. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +37 -8
  258. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +1 -1
  259. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +1 -1
  260. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +97 -1
  261. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +1 -1
  262. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +1 -1
  263. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +1 -1
  264. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +1 -1
  265. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +1 -1
  266. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +1 -1
  267. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +1 -5
  268. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +19 -4
  269. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +1 -1
  270. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +1 -1
  271. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +1 -1
  272. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +1 -1
  273. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +1 -1
  274. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +1 -1
  275. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +1 -1
  276. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +1 -1
  277. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +1 -1
  278. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +1 -1
  279. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +17 -1
  280. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +1 -1
  281. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +1 -1
  282. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +1 -1
  283. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +1 -1
  284. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/{reactive_serial_port_service.hpp → posix_serial_port_service.hpp} +30 -18
  285. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +1 -1
  286. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +1 -1
  287. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +1 -1
  288. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +1 -1
  289. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +45 -2
  290. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +176 -26
  291. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +35 -1
  292. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +87 -1
  293. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +41 -1
  294. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +40 -1
  295. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +41 -1
  296. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +41 -1
  297. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +41 -1
  298. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +40 -1
  299. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +127 -20
  300. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +239 -30
  301. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +35 -1
  302. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +29 -5
  303. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +5 -1
  304. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +45 -1
  305. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +4 -5
  306. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +11 -2
  307. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +4 -3
  308. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +1 -1
  309. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +4 -3
  310. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +9 -7
  311. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +16 -1
  312. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +17 -8
  313. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +1 -1
  314. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +51 -0
  315. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +1 -1
  316. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +1 -1
  317. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +1 -1
  318. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +1 -1
  319. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +59 -6
  320. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +1 -1
  321. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +1 -1
  322. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +1 -1
  323. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +1 -1
  324. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +5 -1
  325. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +67 -4
  326. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +1 -1
  327. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +37 -45
  328. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +1 -1
  329. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +1 -1
  330. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +12 -1
  331. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +1 -1
  332. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +1 -1
  333. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +1 -1
  334. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +2 -2
  335. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -1
  336. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -1
  337. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -1
  338. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -1
  339. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -1
  340. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +8 -1
  341. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +4 -5
  342. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +1 -1
  343. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +5 -5
  344. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +10 -1
  345. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +5 -1
  346. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +102 -25
  347. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +18 -9
  348. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +7 -3
  349. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +31 -2
  350. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +1 -1
  351. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +5 -1
  352. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +1 -1
  353. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +3 -1
  354. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +3 -1
  355. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +1 -1
  356. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +17 -1
  357. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +85 -0
  358. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +1 -1
  359. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +1 -1
  360. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +6 -2
  361. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +1 -1
  362. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +15 -6
  363. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +1 -1
  364. data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +125 -44
  365. data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +30 -1
  366. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +126 -19
  367. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +708 -249
  368. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +1 -1
  369. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +332 -83
  370. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +263 -70
  371. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +62 -50
  372. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +324 -90
  373. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +52 -44
  374. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +73 -14
  375. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +40 -9
  376. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_invocable.hpp +1 -1
  377. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +5 -1
  378. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_receiver.hpp +1 -1
  379. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/bulk_sender.hpp +1 -1
  380. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/submit_receiver.hpp +1 -1
  381. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/void_receiver.hpp +1 -1
  382. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +80 -54
  383. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +50 -26
  384. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +1 -1
  385. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/receiver_invocation_error.ipp +1 -1
  386. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +1 -1
  387. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +325 -82
  388. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +73 -14
  389. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +6 -1
  390. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +249 -70
  391. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +7 -3
  392. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +6 -1
  393. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver_invocation_error.hpp +1 -1
  394. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +248 -70
  395. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +26 -24
  396. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +6 -1
  397. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +6 -1
  398. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +19 -17
  399. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +19 -17
  400. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +25 -23
  401. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +19 -17
  402. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +34 -29
  403. data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +1 -1
  404. data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +1 -1
  405. data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +1 -1
  406. data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +130 -50
  407. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +38 -0
  408. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +138 -0
  409. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +38 -0
  410. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +538 -0
  411. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +493 -0
  412. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +493 -0
  413. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +157 -0
  414. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +72 -0
  415. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +88 -0
  416. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +303 -0
  417. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_composed.hpp +147 -0
  418. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +189 -0
  419. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +72 -0
  420. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +295 -0
  421. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro_traits.hpp +230 -0
  422. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +38 -0
  423. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_handler.hpp +82 -0
  424. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_message.hpp +131 -0
  425. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +286 -0
  426. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_payload.hpp +141 -0
  427. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +122 -0
  428. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +146 -0
  429. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +150 -0
  430. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +679 -0
  431. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_completion_handler.hpp +171 -0
  432. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +143 -0
  433. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +56 -0
  434. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +614 -0
  435. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +201 -0
  436. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +241 -0
  437. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +63 -0
  438. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/co_composed.hpp +1177 -0
  439. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +1224 -0
  440. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +794 -0
  441. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +256 -0
  442. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +216 -0
  443. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_promise.hpp +68 -0
  444. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +463 -0
  445. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +38 -0
  446. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +226 -0
  447. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +197 -0
  448. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_promise.hpp +113 -0
  449. data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +168 -0
  450. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +1 -1
  451. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +1 -1
  452. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +1 -1
  453. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +1 -1
  454. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +1 -1
  455. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +1 -1
  456. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +1 -1
  457. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +1 -1
  458. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
  459. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +1 -1
  460. data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -1
  461. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_completion_executor.ipp +132 -0
  462. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +143 -0
  463. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/append.hpp +227 -0
  464. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/as_tuple.hpp +322 -0
  465. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +785 -26
  466. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +50 -50
  467. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +50 -50
  468. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +98 -0
  469. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +193 -50
  470. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +170 -127
  471. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +75 -0
  472. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +151 -0
  473. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/consign.hpp +204 -0
  474. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/deferred.hpp +158 -0
  475. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +1 -1
  476. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +1 -1
  477. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +1 -1
  478. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +1 -1
  479. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +1 -2
  480. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +1 -1
  481. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +6 -5
  482. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +57 -47
  483. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +2 -1
  484. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +1 -1
  485. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/prepend.hpp +227 -0
  486. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +275 -201
  487. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +141 -111
  488. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +498 -378
  489. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +302 -58
  490. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +1 -1
  491. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +1 -1
  492. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +1375 -285
  493. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +13 -2
  494. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +1 -1
  495. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +1 -1
  496. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +1 -2
  497. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +6 -2
  498. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +5 -4
  499. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +43 -21
  500. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +28 -3
  501. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +235 -186
  502. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +117 -96
  503. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +126 -122
  504. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +15 -3
  505. data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +1 -1
  506. data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +1 -1
  507. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +23 -1
  508. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +98 -3
  509. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +1 -1
  510. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +1 -1
  511. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +81 -6
  512. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +1 -1
  513. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +1 -1
  514. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +11 -1
  515. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +32 -5
  516. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +180 -68
  517. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +1 -1
  518. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +1 -1
  519. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +1 -1
  520. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +1 -1
  521. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +1 -1
  522. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +1 -1
  523. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +1 -1
  524. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +1 -1
  525. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +1 -1
  526. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +1 -1
  527. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +1 -1
  528. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +1 -1
  529. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +1 -1
  530. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +1 -1
  531. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +2 -2
  532. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +1 -1
  533. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +1 -1
  534. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +1 -1
  535. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +4 -2
  536. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +1 -1
  537. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +4 -2
  538. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +1 -1
  539. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +2 -2
  540. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +1 -1
  541. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +1 -1
  542. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +1 -1
  543. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +1 -1
  544. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +1 -1
  545. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +1 -1
  546. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +2 -2
  547. data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +1 -1
  548. data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +47 -0
  549. data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +1 -1
  550. data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +1 -1
  551. data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +1 -1
  552. data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +1 -1
  553. data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +1 -1
  554. data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +1 -1
  555. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +1 -1
  556. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +3 -8
  557. data/src/cxx_supportlib/vendor-modified/boost/asio/local/seq_packet_protocol.hpp +86 -0
  558. data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +1 -1
  559. data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +1 -1
  560. data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +1 -1
  561. data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +1 -1
  562. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +111 -27
  563. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +136 -37
  564. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +1 -1
  565. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +1 -1
  566. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +1 -1
  567. data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +139 -47
  568. data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +243 -165
  569. data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +80 -0
  570. data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +85 -57
  571. data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +37 -0
  572. data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +381 -189
  573. data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +154 -53
  574. data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +529 -226
  575. data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +37 -0
  576. data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +140 -0
  577. data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +3 -3
  578. data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +358 -0
  579. data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +147 -100
  580. data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +105 -63
  581. data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +1 -1
  582. data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +1 -1
  583. data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +1 -1
  584. data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_base.hpp +184 -0
  585. data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +1 -1
  586. data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +655 -93
  587. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +4 -1
  588. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +24 -24
  589. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +2 -2
  590. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +9 -1
  591. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +2 -2
  592. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +33 -1
  593. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +7 -3
  594. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +44 -24
  595. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +1 -1
  596. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +1 -1
  597. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +1 -1
  598. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +2 -2
  599. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +3 -3
  600. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +53 -1
  601. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +1 -1
  602. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +2 -2
  603. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +1 -1
  604. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +1 -1
  605. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +1 -1
  606. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +154 -71
  607. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +25 -3
  608. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +1 -1
  609. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +1 -1
  610. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +1 -1
  611. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +1 -1
  612. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +227 -54
  613. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +1 -1
  614. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +1 -1
  615. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +1 -1
  616. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +1 -1
  617. data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +1 -1
  618. data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -1
  619. data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +77 -30
  620. data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +37 -0
  621. data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
  622. data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +1 -1
  623. data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +18 -9
  624. data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -1
  625. data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +236 -1
  626. data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +48 -14
  627. data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
  628. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_free.hpp +1 -1
  629. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_member.hpp +1 -1
  630. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_free.hpp +1 -1
  631. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_member.hpp +1 -1
  632. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +7 -3
  633. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_free.hpp +1 -1
  634. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +1 -1
  635. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +1 -1
  636. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +1 -1
  637. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +1 -1
  638. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +1 -1
  639. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +1 -1
  640. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +1 -1
  641. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +1 -1
  642. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +1 -1
  643. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +1 -1
  644. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_free.hpp +1 -1
  645. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_member.hpp +1 -1
  646. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_free.hpp +1 -1
  647. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_member.hpp +1 -1
  648. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_free.hpp +1 -1
  649. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_member.hpp +1 -1
  650. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_free.hpp +1 -1
  651. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_member.hpp +1 -1
  652. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_free.hpp +1 -1
  653. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_member.hpp +1 -1
  654. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +1 -1
  655. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +1 -1
  656. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +3 -2
  657. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_free.hpp +1 -1
  658. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_member.hpp +1 -1
  659. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
  660. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +1 -1
  661. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +1 -1
  662. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +1 -1
  663. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +1 -1
  664. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +3 -11
  665. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +1 -1
  666. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +1 -1
  667. data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +1 -1
  668. data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +13 -15
  669. data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +10 -7
  670. data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +1 -1
  671. data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +2 -2
  672. data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +1 -1
  673. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +81 -23
  674. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +110 -11
  675. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +125 -36
  676. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +122 -35
  677. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +1 -1
  678. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +1 -1
  679. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +9 -9
  680. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +1 -1
  681. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +1 -1
  682. data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +37 -0
  683. data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +378 -186
  684. data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +156 -53
  685. data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
  686. data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +35 -1
  687. data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +120 -21
  688. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +8 -15
  689. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +14 -1
  690. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/addressof.hpp +5 -1
  691. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_impl.hpp +183 -64
  692. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +169 -67
  693. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +83 -12
  694. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_fp_cast.hpp +40 -11
  695. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch32.hpp +8 -1
  696. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch64.hpp +8 -1
  697. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_arm.hpp +8 -1
  698. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/classify.hpp +19 -10
  699. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +29 -60
  700. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp +6 -6
  701. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_ppc.hpp +105 -100
  702. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_x86.hpp +107 -40
  703. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_msvc_arm.hpp +4 -4
  704. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_msvc_x86.hpp +32 -5
  705. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_generic.hpp +1 -1
  706. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch32.hpp +32 -32
  707. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch64.hpp +15 -15
  708. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_ppc.hpp +73 -72
  709. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/futex.hpp +8 -1
  710. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_arm_asm_common.hpp +4 -0
  711. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_ppc_asm_common.hpp +33 -0
  712. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/int_sizes.hpp +25 -1
  713. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +15 -6
  714. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/alignment_of.hpp +3 -3
  715. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/has_unique_object_representations.hpp +143 -0
  716. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_enum.hpp +42 -0
  717. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_nothrow_default_constructible.hpp +46 -0
  718. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/remove_cv.hpp +42 -0
  719. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_darwin_ulock.hpp +58 -0
  720. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_windows.hpp +3 -1
  721. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_on_address.hpp +65 -0
  722. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_darwin_ulock.hpp +158 -0
  723. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_windows.hpp +55 -26
  724. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +8 -2
  725. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +14 -1
  726. data/src/cxx_supportlib/vendor-modified/boost/bind/apply.hpp +14 -0
  727. data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +9 -28
  728. data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf2_cc.hpp +18 -18
  729. data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf_cc.hpp +18 -18
  730. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/is_same.hpp +36 -0
  731. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/requires_cxx11.hpp +22 -0
  732. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/result_traits.hpp +165 -0
  733. data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn.hpp +3 -2
  734. data/src/cxx_supportlib/vendor-modified/boost/bind/placeholders.hpp +12 -0
  735. data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +53 -8
  736. data/src/cxx_supportlib/vendor-modified/boost/bind/std_placeholders.hpp +40 -0
  737. data/src/cxx_supportlib/vendor-modified/boost/bind/storage.hpp +1 -0
  738. data/src/cxx_supportlib/vendor-modified/boost/cerrno.hpp +4 -320
  739. data/src/cxx_supportlib/vendor-modified/boost/chrono/config.hpp +2 -0
  740. data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/chrono.hpp +4 -4
  741. data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/requires_cxx11.hpp +23 -0
  742. data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/scan_keyword.hpp +4 -2
  743. data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +9 -6
  744. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_get.hpp +1 -1
  745. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +4 -4
  746. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_put.hpp +5 -5
  747. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_style.hpp +1 -1
  748. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +2 -2
  749. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +3 -3
  750. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/timezone.hpp +2 -1
  751. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/ios_base_state_ptr.hpp +7 -7
  752. data/src/cxx_supportlib/vendor-modified/boost/chrono/io_v1/chrono_io.hpp +3 -3
  753. data/src/cxx_supportlib/vendor-modified/boost/chrono/time_point.hpp +1 -1
  754. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/base.hpp +6 -6
  755. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/details.hpp +5 -1
  756. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/space_optimized.hpp +2 -2
  757. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer.hpp +1 -1
  758. data/src/cxx_supportlib/vendor-modified/boost/concept/detail/general.hpp +21 -0
  759. data/src/cxx_supportlib/vendor-modified/boost/concept/usage.hpp +7 -0
  760. data/src/cxx_supportlib/vendor-modified/boost/concept_check.hpp +1 -1
  761. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +211 -0
  762. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +209 -0
  763. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +47 -0
  764. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +62 -0
  765. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +59 -0
  766. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx98.hpp +23 -0
  767. data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +7 -6
  768. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +1 -0
  769. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +16 -3
  770. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +83 -0
  771. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +1 -0
  772. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +32 -11
  773. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +1 -0
  774. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +1 -0
  775. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +14 -6
  776. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +1 -0
  777. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +1 -0
  778. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +1 -0
  779. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +1 -0
  780. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +1 -0
  781. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +3 -0
  782. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +1 -0
  783. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +7 -0
  784. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +1 -0
  785. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +27 -3
  786. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +9 -0
  787. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp_zos.hpp +1 -0
  788. data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +203 -0
  789. data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_platform_config.hpp +5 -0
  790. data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +184 -3
  791. data/src/cxx_supportlib/vendor-modified/boost/config/header_deprecated.hpp +1 -1
  792. data/src/cxx_supportlib/vendor-modified/boost/config/platform/bsd.hpp +5 -8
  793. data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +23 -0
  794. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +66 -6
  795. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +36 -1
  796. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +132 -7
  797. data/src/cxx_supportlib/vendor-modified/boost/config/workaround.hpp +11 -0
  798. data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +22 -8
  799. data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +20 -12
  800. data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +9 -0
  801. data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +7 -3
  802. data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +237 -175
  803. data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +2 -2
  804. data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool_impl.hpp +14 -13
  805. data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +2 -10
  806. data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +182 -135
  807. data/src/cxx_supportlib/vendor-modified/boost/container/detail/algorithm.hpp +28 -0
  808. data/src/cxx_supportlib/vendor-modified/boost/container/detail/allocator_version_traits.hpp +14 -15
  809. data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +14 -10
  810. data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +11 -3
  811. data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_end.hpp +3 -0
  812. data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +17 -15
  813. data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_rebind.hpp +3 -3
  814. data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +961 -151
  815. data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +181 -57
  816. data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +59 -59
  817. data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +218 -143
  818. data/src/cxx_supportlib/vendor-modified/boost/container/detail/guards_dended.hpp +198 -0
  819. data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_container.hpp +10 -0
  820. data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_contiguous_container.hpp +35 -0
  821. data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_pair.hpp +91 -0
  822. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator.hpp +8 -0
  823. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +88 -69
  824. data/src/cxx_supportlib/vendor-modified/boost/container/detail/multiallocation_chain.hpp +14 -10
  825. data/src/cxx_supportlib/vendor-modified/boost/container/detail/mutex.hpp +48 -23
  826. data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +24 -3
  827. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +252 -119
  828. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +2 -2
  829. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool_impl.hpp +12 -12
  830. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +19 -91
  831. data/src/cxx_supportlib/vendor-modified/boost/container/detail/placement_new.hpp +1 -7
  832. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_common_alloc.hpp +1 -1
  833. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_resource.hpp +3 -7
  834. data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +3 -0
  835. data/src/cxx_supportlib/vendor-modified/boost/container/detail/transform_iterator.hpp +28 -28
  836. data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +249 -342
  837. data/src/cxx_supportlib/vendor-modified/boost/container/detail/type_traits.hpp +3 -0
  838. data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_functors.hpp +4 -14
  839. data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +67 -10
  840. data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +2961 -0
  841. data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +265 -180
  842. data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +36 -35
  843. data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +72 -100
  844. data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +95 -89
  845. data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +10 -3
  846. data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +3 -3
  847. data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +14 -12
  848. data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +159 -9
  849. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/devector.hpp +51 -0
  850. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +8 -3
  851. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/monotonic_buffer_resource.hpp +3 -3
  852. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +9 -9
  853. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +3 -3
  854. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/synchronized_pool_resource.hpp +3 -3
  855. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/unsynchronized_pool_resource.hpp +3 -3
  856. data/src/cxx_supportlib/vendor-modified/boost/container/scoped_allocator.hpp +0 -2
  857. data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +32 -43
  858. data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +83 -115
  859. data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +134 -162
  860. data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +159 -101
  861. data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +81 -50
  862. data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +413 -293
  863. data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +140 -26
  864. data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +512 -725
  865. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_mix.hpp +113 -0
  866. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_range.hpp +410 -0
  867. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_tuple_like.hpp +156 -0
  868. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/mulx.hpp +79 -0
  869. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/requires_cxx11.hpp +22 -0
  870. data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +486 -571
  871. data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash_fwd.hpp +25 -24
  872. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_contiguous_range.hpp +92 -0
  873. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_described_class.hpp +38 -0
  874. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_range.hpp +74 -0
  875. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_tuple_like.hpp +42 -0
  876. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_unordered_range.hpp +39 -0
  877. data/src/cxx_supportlib/vendor-modified/boost/core/alignof.hpp +57 -0
  878. data/src/cxx_supportlib/vendor-modified/boost/core/alloc_construct.hpp +7 -81
  879. data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +472 -285
  880. data/src/cxx_supportlib/vendor-modified/boost/core/allocator_traits.hpp +112 -0
  881. data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +936 -0
  882. data/src/cxx_supportlib/vendor-modified/boost/core/checked_delete.hpp +20 -3
  883. data/src/cxx_supportlib/vendor-modified/boost/core/cmath.hpp +298 -0
  884. data/src/cxx_supportlib/vendor-modified/boost/core/data.hpp +46 -0
  885. data/src/cxx_supportlib/vendor-modified/boost/core/default_allocator.hpp +19 -9
  886. data/src/cxx_supportlib/vendor-modified/boost/core/detail/is_same.hpp +39 -0
  887. data/src/cxx_supportlib/vendor-modified/boost/core/detail/lwt_unattended.hpp +66 -0
  888. data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_pause.hpp +71 -0
  889. data/src/cxx_supportlib/vendor-modified/boost/{smart_ptr → core}/detail/sp_thread_sleep.hpp +39 -21
  890. data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_yield.hpp +100 -0
  891. data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_win32_sleep.hpp +54 -0
  892. data/src/cxx_supportlib/vendor-modified/boost/core/detail/splitmix64.hpp +54 -0
  893. data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +1272 -0
  894. data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +25 -16
  895. data/src/cxx_supportlib/vendor-modified/boost/core/fclose_deleter.hpp +46 -0
  896. data/src/cxx_supportlib/vendor-modified/boost/core/identity.hpp +61 -0
  897. data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +32 -2
  898. data/src/cxx_supportlib/vendor-modified/boost/core/is_same.hpp +10 -15
  899. data/src/cxx_supportlib/vendor-modified/boost/core/launder.hpp +55 -0
  900. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +67 -22
  901. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +8 -54
  902. data/src/cxx_supportlib/vendor-modified/boost/core/make_span.hpp +59 -0
  903. data/src/cxx_supportlib/vendor-modified/boost/core/max_align.hpp +82 -0
  904. data/src/cxx_supportlib/vendor-modified/boost/core/memory_resource.hpp +108 -0
  905. data/src/cxx_supportlib/vendor-modified/boost/core/noinit_adaptor.hpp +3 -0
  906. data/src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp +1 -1
  907. data/src/cxx_supportlib/vendor-modified/boost/core/pointer_traits.hpp +111 -60
  908. data/src/cxx_supportlib/vendor-modified/boost/core/quick_exit.hpp +1 -1
  909. data/src/cxx_supportlib/vendor-modified/boost/core/ref.hpp +58 -15
  910. data/src/cxx_supportlib/vendor-modified/boost/core/serialization.hpp +131 -0
  911. data/src/cxx_supportlib/vendor-modified/boost/core/size.hpp +31 -0
  912. data/src/cxx_supportlib/vendor-modified/boost/core/snprintf.hpp +173 -0
  913. data/src/cxx_supportlib/vendor-modified/boost/core/span.hpp +399 -0
  914. data/src/cxx_supportlib/vendor-modified/boost/core/swap.hpp +27 -8
  915. data/src/cxx_supportlib/vendor-modified/boost/core/type_name.hpp +1181 -0
  916. data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +7 -7
  917. data/src/cxx_supportlib/vendor-modified/boost/core/verbose_terminate_handler.hpp +88 -0
  918. data/src/cxx_supportlib/vendor-modified/boost/core/yield_primitives.hpp +12 -0
  919. data/src/cxx_supportlib/vendor-modified/boost/cregex.hpp +4 -0
  920. data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +0 -24
  921. data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +1 -1
  922. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_iterator.hpp +8 -8
  923. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters.hpp +3 -3
  924. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters_limited.hpp +3 -3
  925. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +12 -13
  926. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/parsers.hpp +2 -2
  927. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +3 -3
  928. data/src/cxx_supportlib/vendor-modified/boost/date_time/iso_format.hpp +13 -13
  929. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_date_time.hpp +2 -2
  930. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/conversion.hpp +1 -1
  931. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_io.hpp +1 -1
  932. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters.hpp +4 -4
  933. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters_limited.hpp +2 -2
  934. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
  935. data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_parser.hpp +1 -1
  936. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +1 -1
  937. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_iterator.hpp +8 -8
  938. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_parsing.hpp +2 -2
  939. data/src/cxx_supportlib/vendor-modified/boost/describe/bases.hpp +50 -0
  940. data/src/cxx_supportlib/vendor-modified/boost/describe/detail/config.hpp +40 -0
  941. data/src/cxx_supportlib/vendor-modified/boost/describe/detail/cx_streq.hpp +30 -0
  942. data/src/cxx_supportlib/vendor-modified/boost/describe/detail/void_t.hpp +32 -0
  943. data/src/cxx_supportlib/vendor-modified/boost/describe/members.hpp +161 -0
  944. data/src/cxx_supportlib/vendor-modified/boost/describe/modifiers.hpp +33 -0
  945. data/src/cxx_supportlib/vendor-modified/boost/detail/atomic_count.hpp +21 -0
  946. data/src/cxx_supportlib/vendor-modified/boost/detail/workaround.hpp +3 -3
  947. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +108 -62
  948. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/type_info.hpp +2 -1
  949. data/src/cxx_supportlib/vendor-modified/boost/exception/diagnostic_information.hpp +3 -3
  950. data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +84 -2
  951. data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +1 -4
  952. data/src/cxx_supportlib/vendor-modified/boost/exception/to_string.hpp +1 -1
  953. data/src/cxx_supportlib/vendor-modified/boost/foreach.hpp +3 -3
  954. data/src/cxx_supportlib/vendor-modified/boost/function/detail/epilogue.hpp +39 -0
  955. data/src/cxx_supportlib/vendor-modified/boost/function/detail/prologue.hpp +1 -0
  956. data/src/cxx_supportlib/vendor-modified/boost/function/detail/requires_cxx11.hpp +22 -0
  957. data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +37 -32
  958. data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +24 -0
  959. data/src/cxx_supportlib/vendor-modified/boost/function.hpp +2 -0
  960. data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor.hpp +2 -2
  961. data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_ct.hpp +2 -2
  962. data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +1 -1
  963. data/src/cxx_supportlib/vendor-modified/boost/integer/extended_euclidean.hpp +1 -1
  964. data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +86 -81
  965. data/src/cxx_supportlib/vendor-modified/boost/integer/integer_mask.hpp +2 -2
  966. data/src/cxx_supportlib/vendor-modified/boost/integer/mod_inverse.hpp +1 -1
  967. data/src/cxx_supportlib/vendor-modified/boost/integer/static_log2.hpp +2 -2
  968. data/src/cxx_supportlib/vendor-modified/boost/integer/static_min_max.hpp +2 -2
  969. data/src/cxx_supportlib/vendor-modified/boost/integer.hpp +2 -2
  970. data/src/cxx_supportlib/vendor-modified/boost/integer_fwd.hpp +2 -2
  971. data/src/cxx_supportlib/vendor-modified/boost/integer_traits.hpp +2 -2
  972. data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -4
  973. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +83 -83
  974. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +43 -43
  975. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +63 -63
  976. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +85 -85
  977. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +101 -109
  978. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +134 -128
  979. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +35 -27
  980. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +88 -19
  981. data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +4 -4
  982. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +30 -30
  983. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/array_initializer.hpp +10 -8
  984. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +14 -14
  985. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +38 -40
  986. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +84 -15
  987. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +1 -0
  988. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +1 -1
  989. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/empty_node_checker.hpp +1 -1
  990. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +0 -31
  991. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +8 -8
  992. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +92 -0
  993. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +182 -102
  994. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +9 -8
  995. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +115 -69
  996. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +3 -3
  997. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +4 -4
  998. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +7 -55
  999. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +1 -1
  1000. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +4 -4
  1001. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_to_value.hpp +1 -1
  1002. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +18 -18
  1003. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +3 -140
  1004. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +3 -1
  1005. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +12 -4
  1006. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +2 -2
  1007. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +2 -2
  1008. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +6 -6
  1009. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/twin.hpp +49 -0
  1010. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/value_functors.hpp +52 -0
  1011. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +29 -3
  1012. data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +1668 -969
  1013. data/src/cxx_supportlib/vendor-modified/boost/intrusive/intrusive_fwd.hpp +2 -0
  1014. data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +97 -17
  1015. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +97 -94
  1016. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +10 -10
  1017. data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +4 -4
  1018. data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +17 -3
  1019. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +12 -8
  1020. data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +2 -2
  1021. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
  1022. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +30 -22
  1023. data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +9 -2
  1024. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +43 -43
  1025. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +51 -51
  1026. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +85 -85
  1027. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +12 -12
  1028. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +93 -93
  1029. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +58 -66
  1030. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +40 -40
  1031. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +152 -159
  1032. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +8 -6
  1033. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +91 -91
  1034. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +46 -46
  1035. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +59 -57
  1036. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +51 -51
  1037. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +37 -39
  1038. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +97 -97
  1039. data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +6 -4
  1040. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +90 -83
  1041. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +17 -17
  1042. data/src/cxx_supportlib/vendor-modified/boost/iterator/advance.hpp +11 -0
  1043. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_def.hpp +6 -6
  1044. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_undef.hpp +1 -1
  1045. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/enable_if.hpp +5 -5
  1046. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/facade_iterator_category.hpp +10 -11
  1047. data/src/cxx_supportlib/vendor-modified/boost/iterator/is_iterator.hpp +148 -0
  1048. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_concepts.hpp +2 -2
  1049. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_facade.hpp +106 -25
  1050. data/src/cxx_supportlib/vendor-modified/boost/iterator/transform_iterator.hpp +8 -4
  1051. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +7 -7
  1052. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +1 -1
  1053. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +40 -51
  1054. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +13 -7
  1055. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +13 -16
  1056. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +1 -1
  1057. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.hpp +2 -2
  1058. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +11 -11
  1059. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +1 -1
  1060. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +5 -5
  1061. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +20 -2
  1062. data/src/cxx_supportlib/vendor-modified/boost/libs/random/src/random_device.cpp +1 -1
  1063. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +13 -25
  1064. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex.cpp +10 -121
  1065. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/static_mutex.cpp +5 -1
  1066. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wide_posix_api.cpp +17 -22
  1067. data/src/cxx_supportlib/vendor-modified/boost/limits.hpp +12 -12
  1068. data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +48 -36
  1069. data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +91 -74
  1070. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +225 -163
  1071. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/basic_op.hpp +1 -0
  1072. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/heap_sort.hpp +21 -10
  1073. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/insertion_sort.hpp +9 -0
  1074. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +125 -209
  1075. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +24 -15
  1076. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/pdqsort.hpp +16 -5
  1077. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/search.hpp +79 -0
  1078. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/set_difference.hpp +8 -2
  1079. data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +8 -5
  1080. data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +11 -11
  1081. data/src/cxx_supportlib/vendor-modified/boost/move/algorithm.hpp +0 -1
  1082. data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +21 -0
  1083. data/src/cxx_supportlib/vendor-modified/boost/move/default_delete.hpp +32 -6
  1084. data/src/cxx_supportlib/vendor-modified/boost/move/detail/addressof.hpp +61 -0
  1085. data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +1 -0
  1086. data/src/cxx_supportlib/vendor-modified/boost/move/detail/force_ptr.hpp +36 -0
  1087. data/src/cxx_supportlib/vendor-modified/boost/move/detail/fwd_macros.hpp +12 -0
  1088. data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +109 -9
  1089. data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +8 -32
  1090. data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +268 -0
  1091. data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +40 -33
  1092. data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_begin.hpp +5 -1
  1093. data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_end.hpp +2 -0
  1094. data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +263 -51
  1095. data/src/cxx_supportlib/vendor-modified/boost/move/detail/unique_ptr_meta_utils.hpp +0 -26
  1096. data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +82 -3
  1097. data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +10 -0
  1098. data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +17 -18
  1099. data/src/cxx_supportlib/vendor-modified/boost/move/utility.hpp +2 -2
  1100. data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +38 -33
  1101. data/src/cxx_supportlib/vendor-modified/boost/mp11/algorithm.hpp +1327 -0
  1102. data/src/cxx_supportlib/vendor-modified/boost/mp11/bind.hpp +111 -0
  1103. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/config.hpp +149 -0
  1104. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_append.hpp +321 -0
  1105. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_copy_if.hpp +48 -0
  1106. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_count.hpp +147 -0
  1107. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_defer.hpp +119 -0
  1108. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_fold.hpp +164 -0
  1109. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_front.hpp +50 -0
  1110. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_list.hpp +39 -0
  1111. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_value_list.hpp +41 -0
  1112. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list.hpp +24 -0
  1113. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list_v.hpp +27 -0
  1114. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_map_find.hpp +87 -0
  1115. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_min_element.hpp +51 -0
  1116. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_plus.hpp +84 -0
  1117. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_remove_if.hpp +48 -0
  1118. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_rename.hpp +54 -0
  1119. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_value.hpp +25 -0
  1120. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_void.hpp +32 -0
  1121. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_with_index.hpp +385 -0
  1122. data/src/cxx_supportlib/vendor-modified/boost/mp11/function.hpp +222 -0
  1123. data/src/cxx_supportlib/vendor-modified/boost/mp11/integer_sequence.hpp +112 -0
  1124. data/src/cxx_supportlib/vendor-modified/boost/mp11/integral.hpp +42 -0
  1125. data/src/cxx_supportlib/vendor-modified/boost/mp11/list.hpp +472 -0
  1126. data/src/cxx_supportlib/vendor-modified/boost/mp11/set.hpp +188 -0
  1127. data/src/cxx_supportlib/vendor-modified/boost/mp11/utility.hpp +169 -0
  1128. data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +16 -0
  1129. data/src/cxx_supportlib/vendor-modified/boost/mpl/and.hpp +1 -1
  1130. data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +6 -6
  1131. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +1 -1
  1132. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/enum.hpp +12 -0
  1133. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/params.hpp +12 -0
  1134. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/template_arity.hpp +1 -1
  1135. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/yes_no.hpp +2 -1
  1136. data/src/cxx_supportlib/vendor-modified/boost/mpl/bitand.hpp +1 -1
  1137. data/src/cxx_supportlib/vendor-modified/boost/mpl/bitor.hpp +1 -1
  1138. data/src/cxx_supportlib/vendor-modified/boost/mpl/has_xxx.hpp +2 -2
  1139. data/src/cxx_supportlib/vendor-modified/boost/mpl/or.hpp +1 -1
  1140. data/src/cxx_supportlib/vendor-modified/boost/mpl/string.hpp +6 -6
  1141. data/src/cxx_supportlib/vendor-modified/boost/next_prior.hpp +3 -44
  1142. data/src/cxx_supportlib/vendor-modified/boost/nondet_random.hpp +22 -0
  1143. data/src/cxx_supportlib/vendor-modified/boost/none.hpp +3 -4
  1144. data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +3 -1
  1145. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/cast.hpp +1 -1
  1146. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/converter_policies.hpp +4 -5
  1147. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/converter.hpp +1 -1
  1148. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/int_float_mixture.hpp +5 -5
  1149. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/meta.hpp +1 -1
  1150. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/sign_mixture.hpp +5 -5
  1151. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +5 -5
  1152. data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +2 -0
  1153. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +5 -5
  1154. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +1 -1
  1155. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +4 -4
  1156. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_hash.hpp +49 -0
  1157. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +10 -3
  1158. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_relops.hpp +1 -1
  1159. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +37 -26
  1160. data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +87 -26
  1161. data/src/cxx_supportlib/vendor-modified/boost/optional/optional_io.hpp +3 -2
  1162. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/arg_list.hpp +5 -5
  1163. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/default.hpp +11 -0
  1164. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/maybe.hpp +2 -2
  1165. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/name.hpp +1 -1
  1166. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/item.hpp +2 -2
  1167. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_arg_list.hpp +4 -4
  1168. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg_ref.hpp +4 -4
  1169. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/unmatched_argument.hpp +1 -1
  1170. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_cast.hpp +1 -1
  1171. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_forward_match.hpp +1 -1
  1172. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/specification.hpp +2 -2
  1173. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_binary.hpp +1 -1
  1174. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_nullary.hpp +1 -1
  1175. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/overloads.hpp +1 -1
  1176. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/set.hpp +1 -1
  1177. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tag.hpp +6 -6
  1178. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument.hpp +12 -3
  1179. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/unwrap_cv_reference.hpp +4 -4
  1180. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/void.hpp +1 -1
  1181. data/src/cxx_supportlib/vendor-modified/boost/parameter/binding.hpp +3 -3
  1182. data/src/cxx_supportlib/vendor-modified/boost/parameter/config.hpp +1 -1
  1183. data/src/cxx_supportlib/vendor-modified/boost/parameter/macros.hpp +1 -1
  1184. data/src/cxx_supportlib/vendor-modified/boost/parameter/match.hpp +2 -2
  1185. data/src/cxx_supportlib/vendor-modified/boost/parameter/parameters.hpp +6 -6
  1186. data/src/cxx_supportlib/vendor-modified/boost/parameter/template_keyword.hpp +1 -1
  1187. data/src/cxx_supportlib/vendor-modified/boost/parameter/value_type.hpp +3 -3
  1188. data/src/cxx_supportlib/vendor-modified/boost/pool/object_pool.hpp +2 -2
  1189. data/src/cxx_supportlib/vendor-modified/boost/pool/pool.hpp +22 -9
  1190. data/src/cxx_supportlib/vendor-modified/boost/pool/pool_alloc.hpp +1 -1
  1191. data/src/cxx_supportlib/vendor-modified/boost/pool/simple_segregated_storage.hpp +13 -0
  1192. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/alpha.h +5 -0
  1193. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/arm.h +10 -0
  1194. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/blackfin.h +5 -0
  1195. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/convex.h +5 -0
  1196. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/e2k.h +54 -0
  1197. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ia64.h +5 -0
  1198. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/loongarch.h +41 -0
  1199. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/m68k.h +5 -0
  1200. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/mips.h +10 -0
  1201. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/parisc.h +5 -0
  1202. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ppc.h +55 -4
  1203. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ptx.h +5 -0
  1204. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/pyramid.h +5 -0
  1205. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/riscv.h +5 -0
  1206. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/rs6k.h +10 -0
  1207. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sparc.h +14 -2
  1208. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/superh.h +13 -0
  1209. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys370.h +5 -0
  1210. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys390.h +5 -0
  1211. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/32.h +5 -0
  1212. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/64.h +7 -2
  1213. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/z.h +5 -0
  1214. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture.h +2 -1
  1215. data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdc.h +1 -1
  1216. data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdcpp.h +2 -2
  1217. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/cxx.h +1 -1
  1218. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stdcpp3.h +1 -1
  1219. data/src/cxx_supportlib/vendor-modified/boost/predef/make.h +4 -0
  1220. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/bsdi.h +1 -0
  1221. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/dragonfly.h +1 -0
  1222. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/free.h +1 -0
  1223. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/net.h +1 -0
  1224. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/open.h +1 -0
  1225. data/src/cxx_supportlib/vendor-modified/boost/predef/other/endian.h +8 -10
  1226. data/src/cxx_supportlib/vendor-modified/boost/predef/other/wordsize.h +73 -0
  1227. data/src/cxx_supportlib/vendor-modified/boost/predef/other.h +3 -2
  1228. data/src/cxx_supportlib/vendor-modified/boost/predef/platform.h +0 -1
  1229. data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
  1230. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/add.hpp +54 -1
  1231. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/dec.hpp +33 -0
  1232. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_1_number.hpp +21 -0
  1233. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_maximum_number.hpp +22 -0
  1234. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_minimum_number.hpp +21 -0
  1235. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/maximum_number.hpp +19 -0
  1236. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/div.hpp +37 -1
  1237. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/inc.hpp +33 -0
  1238. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_1024.hpp +531 -0
  1239. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_256.hpp +276 -0
  1240. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_512.hpp +275 -0
  1241. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_1024.hpp +536 -0
  1242. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_256.hpp +275 -0
  1243. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_512.hpp +280 -0
  1244. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/mod.hpp +37 -1
  1245. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/mul.hpp +60 -1
  1246. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/sub.hpp +51 -1
  1247. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/detail/get_data.hpp +1 -1
  1248. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/enum.hpp +17 -1
  1249. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/insert.hpp +71 -0
  1250. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/remove.hpp +66 -0
  1251. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/replace.hpp +58 -0
  1252. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_1024.hpp +1044 -0
  1253. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_256.hpp +793 -0
  1254. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_512.hpp +532 -0
  1255. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/not_equal.hpp +44 -1
  1256. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/config.hpp +16 -33
  1257. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/limits.hpp +136 -3
  1258. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/deduce_d.hpp +27 -0
  1259. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/dmc/while.hpp +2 -3
  1260. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_1024.hpp +1044 -0
  1261. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_256.hpp +533 -0
  1262. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_512.hpp +532 -0
  1263. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/while.hpp +27 -0
  1264. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_1024.hpp +1044 -0
  1265. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_256.hpp +533 -0
  1266. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_512.hpp +532 -0
  1267. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/while.hpp +27 -0
  1268. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_1024.hpp +531 -0
  1269. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_256.hpp +275 -0
  1270. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_512.hpp +275 -0
  1271. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/while.hpp +75 -0
  1272. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/auto_rec.hpp +41 -0
  1273. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/dmc/auto_rec.hpp +2 -2
  1274. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_1024.hpp +532 -0
  1275. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_256.hpp +280 -0
  1276. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_512.hpp +276 -0
  1277. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/intercept.hpp +29 -0
  1278. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty.hpp +0 -37
  1279. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty_variadic.hpp +0 -4
  1280. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_1024.hpp +530 -0
  1281. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_256.hpp +273 -0
  1282. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_512.hpp +274 -0
  1283. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/overload.hpp +1 -3
  1284. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward1.hpp +27 -0
  1285. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward2.hpp +27 -0
  1286. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward3.hpp +27 -0
  1287. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward4.hpp +27 -0
  1288. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward5.hpp +27 -0
  1289. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_1024.hpp +2573 -0
  1290. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_256.hpp +1296 -0
  1291. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_512.hpp +1293 -0
  1292. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_1024.hpp +2573 -0
  1293. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_256.hpp +1296 -0
  1294. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_512.hpp +1293 -0
  1295. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_1024.hpp +2573 -0
  1296. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_256.hpp +1296 -0
  1297. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_512.hpp +1293 -0
  1298. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_1024.hpp +2573 -0
  1299. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_256.hpp +1296 -0
  1300. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_512.hpp +1293 -0
  1301. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_1024.hpp +2573 -0
  1302. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_256.hpp +1296 -0
  1303. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_512.hpp +1293 -0
  1304. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_1024.hpp +2571 -0
  1305. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_256.hpp +1296 -0
  1306. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_512.hpp +1291 -0
  1307. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_1024.hpp +2571 -0
  1308. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp +1296 -0
  1309. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp +1293 -0
  1310. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_1024.hpp +2571 -0
  1311. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_256.hpp +1296 -0
  1312. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_512.hpp +1293 -0
  1313. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_1024.hpp +2571 -0
  1314. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_256.hpp +1296 -0
  1315. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_512.hpp +1293 -0
  1316. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_1024.hpp +2571 -0
  1317. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_256.hpp +1296 -0
  1318. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_512.hpp +1293 -0
  1319. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse1.hpp +25 -0
  1320. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse2.hpp +25 -0
  1321. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse3.hpp +25 -0
  1322. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse4.hpp +25 -0
  1323. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse5.hpp +25 -0
  1324. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_1024.hpp +1549 -0
  1325. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_256.hpp +782 -0
  1326. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_512.hpp +781 -0
  1327. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_1024.hpp +1549 -0
  1328. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_256.hpp +782 -0
  1329. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_512.hpp +781 -0
  1330. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/local.hpp +27 -0
  1331. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/rlocal.hpp +25 -0
  1332. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/dmc/fold_left.hpp +3 -2
  1333. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/fold_left.hpp +28 -0
  1334. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/fold_right.hpp +29 -0
  1335. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_1024.hpp +1044 -0
  1336. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_256.hpp +533 -0
  1337. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_512.hpp +532 -0
  1338. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_1024.hpp +1557 -0
  1339. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_256.hpp +791 -0
  1340. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_512.hpp +789 -0
  1341. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/fold_left.hpp +28 -0
  1342. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/fold_right.hpp +26 -0
  1343. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_1024.hpp +532 -0
  1344. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_256.hpp +275 -0
  1345. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_512.hpp +276 -0
  1346. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_1024.hpp +532 -0
  1347. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_256.hpp +275 -0
  1348. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_512.hpp +276 -0
  1349. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/enum.hpp +13 -1
  1350. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/fold_left.hpp +60 -0
  1351. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/fold_right.hpp +44 -0
  1352. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/for_each_product.hpp +25 -6
  1353. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_1024.hpp +531 -0
  1354. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_256.hpp +275 -0
  1355. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_512.hpp +275 -0
  1356. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/reverse.hpp +35 -0
  1357. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/size.hpp +56 -1
  1358. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_array.hpp +5 -72
  1359. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/bool.hpp +22 -0
  1360. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_1024.hpp +531 -0
  1361. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_256.hpp +275 -0
  1362. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_512.hpp +275 -0
  1363. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/is_begin_parens.hpp +1 -5
  1364. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/remove_parens.hpp +0 -4
  1365. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/deduce_r.hpp +27 -0
  1366. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/dmc/for.hpp +3 -2
  1367. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/for.hpp +26 -0
  1368. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_1024.hpp +1044 -0
  1369. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_256.hpp +533 -0
  1370. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_512.hpp +532 -0
  1371. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/for.hpp +28 -0
  1372. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_1024.hpp +1044 -0
  1373. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_256.hpp +533 -0
  1374. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_512.hpp +532 -0
  1375. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/msvc/for.hpp +1 -0
  1376. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/for.hpp +114 -0
  1377. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_1024.hpp +531 -0
  1378. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_256.hpp +275 -0
  1379. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_512.hpp +275 -0
  1380. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_1024.hpp +1557 -0
  1381. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_256.hpp +791 -0
  1382. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_512.hpp +789 -0
  1383. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/repeat.hpp +22 -0
  1384. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/repeat_from_to.hpp +27 -0
  1385. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/binary_transform.hpp +6 -11
  1386. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_1024.hpp +530 -0
  1387. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_256.hpp +272 -0
  1388. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_512.hpp +274 -0
  1389. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/split.hpp +23 -0
  1390. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/elem.hpp +23 -0
  1391. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/enum.hpp +23 -0
  1392. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/fold_left.hpp +52 -0
  1393. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/fold_right.hpp +37 -0
  1394. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_1024.hpp +530 -0
  1395. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_256.hpp +272 -0
  1396. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_512.hpp +274 -0
  1397. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_1024.hpp +530 -0
  1398. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_256.hpp +272 -0
  1399. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_512.hpp +274 -0
  1400. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_1024.hpp +1556 -0
  1401. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_256.hpp +1053 -0
  1402. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_512.hpp +788 -0
  1403. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_1024.hpp +530 -0
  1404. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_256.hpp +273 -0
  1405. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_512.hpp +274 -0
  1406. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_1024.hpp +1043 -0
  1407. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_256.hpp +532 -0
  1408. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_512.hpp +531 -0
  1409. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/rest_n.hpp +9 -3
  1410. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/size.hpp +23 -0
  1411. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/variadic_seq_to_seq.hpp +0 -2
  1412. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/stringize.hpp +0 -4
  1413. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/detail/is_single_return.hpp +2 -2
  1414. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/eat.hpp +4 -18
  1415. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/elem.hpp +11 -157
  1416. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/insert.hpp +0 -5
  1417. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_128.hpp +403 -0
  1418. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_256.hpp +1171 -0
  1419. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_64.hpp +83 -0
  1420. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_128.hpp +595 -0
  1421. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_256.hpp +1747 -0
  1422. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_64.hpp +83 -0
  1423. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_128.hpp +403 -0
  1424. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_256.hpp +1171 -0
  1425. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_64.hpp +84 -0
  1426. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_back.hpp +0 -5
  1427. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_front.hpp +0 -5
  1428. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_back.hpp +0 -5
  1429. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_front.hpp +0 -6
  1430. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/rem.hpp +17 -39
  1431. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/remove.hpp +0 -5
  1432. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/replace.hpp +0 -5
  1433. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/reverse.hpp +38 -25
  1434. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/size.hpp +13 -6
  1435. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_array.hpp +15 -12
  1436. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_list.hpp +37 -25
  1437. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_seq.hpp +38 -24
  1438. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/has_opt.hpp +1 -1
  1439. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/is_single_return.hpp +2 -2
  1440. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/elem.hpp +93 -71
  1441. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/has_opt.hpp +7 -3
  1442. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_128.hpp +275 -0
  1443. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_256.hpp +723 -0
  1444. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_64.hpp +81 -0
  1445. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_128.hpp +47 -0
  1446. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_256.hpp +53 -0
  1447. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_64.hpp +23 -0
  1448. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/size.hpp +39 -4
  1449. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_array.hpp +15 -9
  1450. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_list.hpp +9 -2
  1451. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_seq.hpp +1 -3
  1452. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_tuple.hpp +1 -3
  1453. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/wstringize.hpp +0 -4
  1454. data/src/cxx_supportlib/vendor-modified/boost/random/additive_combine.hpp +2 -2
  1455. data/src/cxx_supportlib/vendor-modified/boost/random/detail/gray_coded_qrng.hpp +29 -5
  1456. data/src/cxx_supportlib/vendor-modified/boost/random/detail/int_float_pair.hpp +3 -4
  1457. data/src/cxx_supportlib/vendor-modified/boost/random/detail/mixmax_skip_N17.ipp +287 -0
  1458. data/src/cxx_supportlib/vendor-modified/boost/random/detail/niederreiter_base2_table.hpp +1 -0
  1459. data/src/cxx_supportlib/vendor-modified/boost/random/detail/operators.hpp +1 -1
  1460. data/src/cxx_supportlib/vendor-modified/boost/random/detail/qrng_base.hpp +5 -5
  1461. data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed.hpp +9 -11
  1462. data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed_impl.hpp +13 -14
  1463. data/src/cxx_supportlib/vendor-modified/boost/random/detail/sobol_table.hpp +1 -0
  1464. data/src/cxx_supportlib/vendor-modified/boost/random/discard_block.hpp +2 -2
  1465. data/src/cxx_supportlib/vendor-modified/boost/random/generate_canonical.hpp +2 -3
  1466. data/src/cxx_supportlib/vendor-modified/boost/random/hyperexponential_distribution.hpp +3 -3
  1467. data/src/cxx_supportlib/vendor-modified/boost/random/independent_bits.hpp +3 -3
  1468. data/src/cxx_supportlib/vendor-modified/boost/random/inversive_congruential.hpp +2 -3
  1469. data/src/cxx_supportlib/vendor-modified/boost/random/lagged_fibonacci.hpp +4 -4
  1470. data/src/cxx_supportlib/vendor-modified/boost/random/linear_congruential.hpp +5 -7
  1471. data/src/cxx_supportlib/vendor-modified/boost/random/linear_feedback_shift.hpp +3 -3
  1472. data/src/cxx_supportlib/vendor-modified/boost/random/mersenne_twister.hpp +2 -2
  1473. data/src/cxx_supportlib/vendor-modified/boost/random/mixmax.hpp +313 -0
  1474. data/src/cxx_supportlib/vendor-modified/boost/random/niederreiter_base2.hpp +2 -2
  1475. data/src/cxx_supportlib/vendor-modified/boost/random/random_device.hpp +2 -2
  1476. data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_order.hpp +2 -2
  1477. data/src/cxx_supportlib/vendor-modified/boost/random/sobol.hpp +3 -2
  1478. data/src/cxx_supportlib/vendor-modified/boost/random/subtract_with_carry.hpp +4 -4
  1479. data/src/cxx_supportlib/vendor-modified/boost/random/traits.hpp +3 -3
  1480. data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int_distribution.hpp +7 -7
  1481. data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real_distribution.hpp +2 -3
  1482. data/src/cxx_supportlib/vendor-modified/boost/random/uniform_smallint.hpp +4 -5
  1483. data/src/cxx_supportlib/vendor-modified/boost/random/xor_combine.hpp +4 -2
  1484. data/src/cxx_supportlib/vendor-modified/boost/random.hpp +1 -0
  1485. data/src/cxx_supportlib/vendor-modified/boost/ratio/config.hpp +7 -2
  1486. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/requires_cxx11.hpp +22 -0
  1487. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/plus.hpp +1 -1
  1488. data/src/cxx_supportlib/vendor-modified/boost/rational.hpp +7 -7
  1489. data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +79 -74
  1490. data/src/cxx_supportlib/vendor-modified/boost/regex/config.hpp +97 -113
  1491. data/src/cxx_supportlib/vendor-modified/boost/regex/pattern_except.hpp +4 -75
  1492. data/src/cxx_supportlib/vendor-modified/boost/regex/pending/object_cache.hpp +4 -147
  1493. data/src/cxx_supportlib/vendor-modified/boost/regex/pending/unicode_iterator.hpp +8 -761
  1494. data/src/cxx_supportlib/vendor-modified/boost/regex/regex_traits.hpp +4 -0
  1495. data/src/cxx_supportlib/vendor-modified/boost/regex/user.hpp +2 -0
  1496. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex.hpp +8 -9
  1497. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_creator.hpp +20 -19
  1498. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +23 -13
  1499. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/c_regex_traits.hpp +342 -42
  1500. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cpp_regex_traits.hpp +107 -24
  1501. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cregex.hpp +0 -117
  1502. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/icu.hpp +1516 -0
  1503. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_flags.hpp +5 -5
  1504. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_results.hpp +8 -8
  1505. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/mem_block_cache.hpp +39 -1
  1506. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/object_cache.hpp +171 -0
  1507. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/pattern_except.hpp +128 -0
  1508. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher.hpp +13 -4
  1509. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_common.hpp +1 -1
  1510. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +40 -41
  1511. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_recursive.hpp +6 -6
  1512. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/primary_transform.hpp +1 -1
  1513. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/protected_call.hpp +3 -1
  1514. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex.hpp +0 -36
  1515. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_format.hpp +3 -3
  1516. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_raw_buffer.hpp +35 -4
  1517. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_token_iterator.hpp +2 -0
  1518. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits_defaults.hpp +638 -22
  1519. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_workaround.hpp +7 -7
  1520. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/states.hpp +1 -1
  1521. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +871 -0
  1522. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/w32_regex_traits.hpp +521 -37
  1523. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex.hpp +734 -0
  1524. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_creator.hpp +1576 -0
  1525. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3130 -0
  1526. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/c_regex_traits.hpp +474 -0
  1527. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/char_regex_traits.hpp +59 -0
  1528. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/cpp_regex_traits.hpp +1040 -0
  1529. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/cregex.hpp +195 -0
  1530. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/error_type.hpp +59 -0
  1531. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/icu.hpp +1402 -0
  1532. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/iterator_category.hpp +84 -0
  1533. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/iterator_traits.hpp +32 -0
  1534. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/match_flags.hpp +156 -0
  1535. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/match_results.hpp +667 -0
  1536. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +173 -0
  1537. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/object_cache.hpp +160 -0
  1538. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/pattern_except.hpp +106 -0
  1539. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher.hpp +576 -0
  1540. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_common.hpp +921 -0
  1541. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_non_recursive.hpp +1874 -0
  1542. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/primary_transform.hpp +120 -0
  1543. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regbase.hpp +158 -0
  1544. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex.hpp +106 -0
  1545. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_format.hpp +1124 -0
  1546. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_fwd.hpp +73 -0
  1547. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_grep.hpp +98 -0
  1548. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_iterator.hpp +173 -0
  1549. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_match.hpp +92 -0
  1550. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_merge.hpp +71 -0
  1551. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_raw_buffer.hpp +213 -0
  1552. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_replace.hpp +77 -0
  1553. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_search.hpp +103 -0
  1554. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_split.hpp +152 -0
  1555. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_token_iterator.hpp +255 -0
  1556. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_traits.hpp +130 -0
  1557. data/src/cxx_supportlib/vendor-modified/boost/{libs/regex/src/regex_traits_defaults.cpp → regex/v5/regex_traits_defaults.hpp} +719 -415
  1558. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_workaround.hpp +159 -0
  1559. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/states.hpp +299 -0
  1560. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/sub_match.hpp +382 -0
  1561. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/syntax_type.hpp +105 -0
  1562. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/u32regex_iterator.hpp +177 -0
  1563. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/u32regex_token_iterator.hpp +312 -0
  1564. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +862 -0
  1565. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +1311 -0
  1566. data/src/cxx_supportlib/vendor-modified/boost/regex.hpp +4 -0
  1567. data/src/cxx_supportlib/vendor-modified/boost/regex_fwd.hpp +4 -0
  1568. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +1 -0
  1569. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/requires_cxx11.hpp +23 -0
  1570. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +2 -2
  1571. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +4 -2
  1572. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp +1 -1
  1573. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +23 -3
  1574. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp +11 -2
  1575. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/yield_k.hpp +4 -6
  1576. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +1 -0
  1577. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +3 -1
  1578. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared.hpp +1 -0
  1579. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +1 -0
  1580. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +1 -0
  1581. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +2 -1
  1582. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +2 -1
  1583. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +3 -1
  1584. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +63 -7
  1585. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +1 -0
  1586. data/src/cxx_supportlib/vendor-modified/boost/static_assert.hpp +3 -2
  1587. data/src/cxx_supportlib/vendor-modified/boost/system/detail/append_int.hpp +32 -0
  1588. data/src/cxx_supportlib/vendor-modified/boost/system/detail/cerrno.hpp +329 -0
  1589. data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +51 -12
  1590. data/src/cxx_supportlib/vendor-modified/boost/system/detail/enable_if.hpp +32 -0
  1591. data/src/cxx_supportlib/vendor-modified/boost/system/detail/errc.hpp +126 -0
  1592. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +227 -0
  1593. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +190 -0
  1594. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +732 -0
  1595. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +349 -0
  1596. data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category.hpp +80 -58
  1597. data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category_message.hpp +108 -0
  1598. data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +107 -0
  1599. data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +33 -0
  1600. data/src/cxx_supportlib/vendor-modified/boost/system/detail/mutex.hpp +121 -0
  1601. data/src/cxx_supportlib/vendor-modified/boost/system/detail/requires_cxx11.hpp +21 -0
  1602. data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +73 -0
  1603. data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category.hpp +88 -0
  1604. data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category_impl.hpp +97 -0
  1605. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category.hpp +110 -0
  1606. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +61 -0
  1607. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_message.hpp +71 -0
  1608. data/src/cxx_supportlib/vendor-modified/boost/system/detail/throws.hpp +59 -0
  1609. data/src/cxx_supportlib/vendor-modified/boost/system/errc.hpp +57 -0
  1610. data/src/cxx_supportlib/vendor-modified/boost/system/error_category.hpp +13 -0
  1611. data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +7 -958
  1612. data/src/cxx_supportlib/vendor-modified/boost/system/error_condition.hpp +13 -0
  1613. data/src/cxx_supportlib/vendor-modified/boost/system/generic_category.hpp +13 -0
  1614. data/src/cxx_supportlib/vendor-modified/boost/system/is_error_code_enum.hpp +30 -0
  1615. data/src/cxx_supportlib/vendor-modified/boost/system/is_error_condition_enum.hpp +30 -0
  1616. data/src/cxx_supportlib/vendor-modified/boost/system/system_category.hpp +14 -0
  1617. data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +30 -59
  1618. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/config.hpp +1 -1
  1619. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp +26 -0
  1620. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +1 -1
  1621. data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +9 -0
  1622. data/src/cxx_supportlib/vendor-modified/boost/thread/thread_guard.hpp +5 -0
  1623. data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +141 -45
  1624. data/src/cxx_supportlib/vendor-modified/boost/token_functions.hpp +2 -2
  1625. data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +22 -21
  1626. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/config.hpp +4 -1
  1627. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_cxx_11.hpp +247 -168
  1628. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_helper.hpp +27 -27
  1629. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_tester.hpp +27 -27
  1630. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_likely_lambda.hpp +1 -1
  1631. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +27 -27
  1632. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +27 -27
  1633. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp +242 -217
  1634. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_swappable_cxx_11.hpp +70 -0
  1635. data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +22 -8
  1636. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_complete.hpp +2 -1
  1637. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_convertible.hpp +1 -1
  1638. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_empty.hpp +1 -1
  1639. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_function.hpp +1 -1
  1640. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_integral.hpp +3 -0
  1641. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_function_pointer.hpp +1 -1
  1642. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_swappable.hpp +4 -24
  1643. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_swappable.hpp +92 -0
  1644. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_trivially_copyable.hpp +4 -0
  1645. data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_with_alignment.hpp +1 -1
  1646. data/src/cxx_supportlib/vendor-modified/boost/typeof/detail/requires_cxx11.hpp +18 -0
  1647. data/src/cxx_supportlib/vendor-modified/boost/typeof/modifiers.hpp +3 -3
  1648. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_fundamental.hpp +2 -2
  1649. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/functional.hpp +6 -1
  1650. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/memory.hpp +6 -1
  1651. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/string.hpp +1 -1
  1652. data/src/cxx_supportlib/vendor-modified/boost/typeof/template_encoding.hpp +1 -1
  1653. data/src/cxx_supportlib/vendor-modified/boost/typeof/template_template_param.hpp +1 -1
  1654. data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof.hpp +5 -4
  1655. data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof_impl.hpp +1 -1
  1656. data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map.hpp +818 -0
  1657. data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map_fwd.hpp +54 -0
  1658. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +849 -0
  1659. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/concurrent_table.hpp +1324 -0
  1660. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/core.hpp +2119 -0
  1661. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/element_type.hpp +60 -0
  1662. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_map_types.hpp +73 -0
  1663. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_set_types.hpp +44 -0
  1664. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/ignore_wshadow.hpp +35 -0
  1665. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_handle.hpp +210 -0
  1666. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_map_types.hpp +132 -0
  1667. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_set_types.hpp +95 -0
  1668. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/restore_wshadow.hpp +11 -0
  1669. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/rw_spinlock.hpp +179 -0
  1670. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/table.hpp +556 -0
  1671. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/tuple_rotate_right.hpp +52 -0
  1672. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +88 -1
  1673. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +1645 -2992
  1674. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +8 -14
  1675. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/mulx.hpp +129 -0
  1676. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/narrow_cast.hpp +44 -0
  1677. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +263 -0
  1678. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/requires_cxx11.hpp +21 -0
  1679. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +8 -13
  1680. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/type_traits.hpp +122 -0
  1681. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/xmx.hpp +75 -0
  1682. data/src/cxx_supportlib/vendor-modified/boost/unordered/hash_traits.hpp +45 -0
  1683. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map.hpp +781 -0
  1684. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map_fwd.hpp +48 -0
  1685. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set.hpp +592 -0
  1686. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set_fwd.hpp +48 -0
  1687. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +666 -227
  1688. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +10 -2
  1689. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map.hpp +884 -0
  1690. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map_fwd.hpp +48 -0
  1691. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set.hpp +688 -0
  1692. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set_fwd.hpp +48 -0
  1693. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +387 -112
  1694. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +10 -2
  1695. data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +2 -1
  1696. data/src/cxx_supportlib/vendor-modified/boost/utility/binary.hpp +3 -2
  1697. data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_variadic.hpp +190 -0
  1698. data/src/cxx_supportlib/vendor-modified/boost/utility/in_place_factory.hpp +6 -0
  1699. data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +33 -11
  1700. data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +6 -2
  1701. data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +27 -4
  1702. data/src/cxx_supportlib/vendor-modified/boost/utility/typed_in_place_factory.hpp +6 -1
  1703. data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +5 -1
  1704. data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
  1705. data/src/cxx_supportlib/vendor-modified/modp_b64_strict_aliasing.cpp +1 -1
  1706. data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/functional.hpp +2 -7
  1707. data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/md5.hpp +1 -1
  1708. data/src/helper-scripts/wsgi-loader.py +34 -17
  1709. data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +16 -0
  1710. data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +12 -0
  1711. data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +24 -0
  1712. data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +10 -0
  1713. data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +39 -0
  1714. data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +26 -0
  1715. data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +6 -0
  1716. data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +8 -0
  1717. data/src/nginx_module/ngx_http_passenger_module.c +1 -0
  1718. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/common.js +50 -29
  1719. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/cli-config.js +20 -20
  1720. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/npm-config.js +11 -11
  1721. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/syslog-config.js +3 -3
  1722. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config.js +8 -2
  1723. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/container.js +2 -1
  1724. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/logger.js +174 -146
  1725. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/console.js +4 -2
  1726. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/file.js +15 -5
  1727. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/http.js +14 -4
  1728. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports.js +26 -24
  1729. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston.js +5 -5
  1730. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/async/package.json +4 -13
  1731. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/colors/package.json +19 -33
  1732. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/cycle/package.json +11 -29
  1733. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/eyes/package.json +12 -40
  1734. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/isstream/package.json +3 -12
  1735. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/stack-trace/lib/stack-trace.js +49 -24
  1736. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/stack-trace/package.json +4 -16
  1737. data/src/nodejs_supportlib/vendor-copy/winston/package.json +11 -55
  1738. data/src/ruby_native_extension/extconf.rb +1 -1
  1739. data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +3 -2
  1740. data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +6 -0
  1741. data/src/ruby_supportlib/phusion_passenger/config/nginx_engine_compiler.rb +3 -2
  1742. data/src/ruby_supportlib/phusion_passenger/config/restart_app_command.rb +16 -12
  1743. data/src/ruby_supportlib/phusion_passenger/console_text_template.rb +7 -2
  1744. data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +11 -2
  1745. data/src/ruby_supportlib/phusion_passenger/native_support.rb +4 -2
  1746. data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +12 -0
  1747. data/src/ruby_supportlib/phusion_passenger/packaging.rb +3 -1
  1748. data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +6 -3
  1749. data/src/ruby_supportlib/phusion_passenger/platform_info/binary_compatibility.rb +23 -19
  1750. data/src/ruby_supportlib/phusion_passenger/platform_info/curl.rb +3 -0
  1751. data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +1 -1
  1752. data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/libs.rb +6 -2
  1753. data/src/ruby_supportlib/phusion_passenger/platform_info/linux.rb +2 -1
  1754. data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +5 -0
  1755. data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +47 -28
  1756. data/src/ruby_supportlib/phusion_passenger/platform_info/pcre.rb +65 -0
  1757. data/src/ruby_supportlib/phusion_passenger/platform_info/ruby.rb +2 -2
  1758. data/src/ruby_supportlib/phusion_passenger/public_api.rb +3 -0
  1759. data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +12 -1
  1760. data/src/ruby_supportlib/phusion_passenger/request_handler/thread_handler.rb +18 -18
  1761. data/src/ruby_supportlib/phusion_passenger/request_handler.rb +4 -1
  1762. data/src/ruby_supportlib/phusion_passenger/ruby_core_enhancements.rb +5 -0
  1763. data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +7 -1
  1764. data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +1 -0
  1765. data/src/ruby_supportlib/phusion_passenger/standalone/start_command/nginx_engine.rb +28 -17
  1766. data/src/ruby_supportlib/phusion_passenger/utils.rb +1 -0
  1767. data/src/ruby_supportlib/phusion_passenger.rb +7 -7
  1768. metadata +577 -150
  1769. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +0 -42
  1770. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +0 -637
  1771. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.cpp +0 -25
  1772. data/src/cxx_supportlib/vendor-modified/boost/bind.hpp +0 -60
  1773. data/src/cxx_supportlib/vendor-modified/boost/checked_delete.hpp +0 -17
  1774. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/float_functions.hpp +0 -336
  1775. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_float.hpp +0 -271
  1776. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/limits.hpp +0 -62
  1777. data/src/cxx_supportlib/vendor-modified/boost/container_hash/extensions.hpp +0 -363
  1778. data/src/cxx_supportlib/vendor-modified/boost/detail/container_fwd.hpp +0 -157
  1779. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/c_regex_traits.cpp +0 -206
  1780. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cpp_regex_traits.cpp +0 -117
  1781. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cregex.cpp +0 -667
  1782. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/instances.cpp +0 -32
  1783. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex_raw_buffer.cpp +0 -72
  1784. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wc_regex_traits.cpp +0 -314
  1785. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/winstances.cpp +0 -35
  1786. data/src/cxx_supportlib/vendor-modified/boost/math/policies/policy.hpp +0 -1038
  1787. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/detail/fp_traits.hpp +0 -581
  1788. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/detail/round_fwd.hpp +0 -93
  1789. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp +0 -640
  1790. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/math_fwd.hpp +0 -1712
  1791. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/sign.hpp +0 -194
  1792. data/src/cxx_supportlib/vendor-modified/boost/math/tools/config.hpp +0 -489
  1793. data/src/cxx_supportlib/vendor-modified/boost/math/tools/promotion.hpp +0 -182
  1794. data/src/cxx_supportlib/vendor-modified/boost/math/tools/real_cast.hpp +0 -31
  1795. data/src/cxx_supportlib/vendor-modified/boost/math/tools/user.hpp +0 -105
  1796. data/src/cxx_supportlib/vendor-modified/boost/pointer_to_other.hpp +0 -55
  1797. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/fileiter.hpp +0 -557
  1798. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/instances.hpp +0 -236
  1799. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_thread_pause.hpp +0 -51
  1800. data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_interoperability.hpp +0 -182
  1801. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_posix.hpp +0 -132
  1802. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp.orig +0 -841
  1803. data/src/cxx_supportlib/vendor-modified/boost/thread/once.hpp.orig +0 -54
  1804. data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +0 -278
  1805. data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +0 -297
  1806. data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +0 -265
  1807. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/daily-rotate-file.js +0 -601
  1808. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/webhook.js +0 -146
  1809. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/LICENSE +0 -19
  1810. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/lib/pkginfo.js +0 -136
  1811. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/package.json +0 -56
  1812. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/COPYING +0 -0
  1813. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/changelog.md +0 -0
  1814. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/readme.md +0 -0
  1815. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/base64/base64.hpp +0 -0
  1816. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/client.hpp +0 -0
  1817. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/close.hpp +0 -0
  1818. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/asio.hpp +0 -0
  1819. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/asio_ssl.hpp +0 -0
  1820. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/chrono.hpp +0 -0
  1821. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/connection_hdl.hpp +0 -0
  1822. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/cpp11.hpp +0 -0
  1823. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/memory.hpp +0 -0
  1824. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/network.hpp +0 -0
  1825. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/platforms.hpp +0 -0
  1826. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/random.hpp +0 -0
  1827. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/regex.hpp +0 -0
  1828. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/stdint.hpp +0 -0
  1829. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/system_error.hpp +0 -0
  1830. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/thread.hpp +0 -0
  1831. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/time.hpp +0 -0
  1832. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/type_traits.hpp +0 -0
  1833. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/concurrency/basic.hpp +0 -0
  1834. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/concurrency/none.hpp +0 -0
  1835. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio.hpp +0 -0
  1836. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio_client.hpp +0 -0
  1837. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio_no_tls.hpp +0 -0
  1838. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio_no_tls_client.hpp +0 -0
  1839. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/boost_config.hpp +0 -0
  1840. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/core.hpp +0 -0
  1841. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/core_client.hpp +0 -0
  1842. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/debug.hpp +0 -0
  1843. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/debug_asio.hpp +0 -0
  1844. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/debug_asio_no_tls.hpp +0 -0
  1845. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/minimal_client.hpp +0 -0
  1846. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/minimal_server.hpp +0 -0
  1847. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/connection.hpp +0 -0
  1848. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/connection_base.hpp +0 -0
  1849. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/endpoint.hpp +0 -0
  1850. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/endpoint_base.hpp +0 -0
  1851. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/error.hpp +0 -0
  1852. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/extensions/extension.hpp +0 -0
  1853. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +0 -0
  1854. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +0 -0
  1855. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/frame.hpp +0 -0
  1856. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/constants.hpp +0 -0
  1857. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/impl/parser.hpp +0 -0
  1858. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/impl/request.hpp +0 -0
  1859. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/impl/response.hpp +0 -0
  1860. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/parser.hpp +0 -0
  1861. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/request.hpp +0 -0
  1862. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/response.hpp +0 -0
  1863. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/impl/connection_impl.hpp +0 -0
  1864. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/impl/endpoint_impl.hpp +0 -0
  1865. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/impl/utilities_impl.hpp +0 -0
  1866. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/basic.hpp +0 -0
  1867. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/levels.hpp +0 -0
  1868. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/stub.hpp +0 -0
  1869. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/syslog.hpp +0 -0
  1870. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/message_buffer/alloc.hpp +0 -0
  1871. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/message_buffer/message.hpp +0 -0
  1872. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/message_buffer/pool.hpp +0 -0
  1873. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/base.hpp +0 -0
  1874. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi00.hpp +0 -0
  1875. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi07.hpp +0 -0
  1876. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi08.hpp +0 -0
  1877. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi13.hpp +0 -0
  1878. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/processor.hpp +0 -0
  1879. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/random/none.hpp +0 -0
  1880. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/random/random_device.hpp +0 -0
  1881. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/roles/client_endpoint.hpp +0 -0
  1882. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/roles/server_endpoint.hpp +0 -0
  1883. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/server.hpp +0 -0
  1884. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/sha1/sha1.hpp +0 -0
  1885. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/base.hpp +0 -0
  1886. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/connection.hpp +0 -0
  1887. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/endpoint.hpp +0 -0
  1888. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/security/base.hpp +0 -0
  1889. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/security/none.hpp +0 -0
  1890. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/security/tls.hpp +0 -0
  1891. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/base/connection.hpp +0 -0
  1892. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/base/endpoint.hpp +0 -0
  1893. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/debug/base.hpp +0 -0
  1894. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/debug/connection.hpp +0 -0
  1895. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/debug/endpoint.hpp +0 -0
  1896. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/iostream/base.hpp +0 -0
  1897. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/iostream/connection.hpp +0 -0
  1898. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/iostream/endpoint.hpp +0 -0
  1899. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/stub/base.hpp +0 -0
  1900. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/stub/connection.hpp +0 -0
  1901. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/stub/endpoint.hpp +0 -0
  1902. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/uri.hpp +0 -0
  1903. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/utf8_validator.hpp +0 -0
  1904. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/utilities.hpp +0 -0
  1905. /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/version.hpp +0 -0
@@ -1,33 +1,2 @@
1
- !function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};t.m=e,t.c=n,t.i=function(e){return e},t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=23)}([function(e,t,n){"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(){function t(){}function n(e,n){var r,o,i,s,a=j;for(s=arguments.length;s-- >2;)R.push(arguments[s]);for(n&&null!=n.children&&(R.length||R.push(n.children),delete n.children);R.length;)if((o=R.pop())&&void 0!==o.pop)for(s=o.length;s--;)R.push(o[s]);else!0!==o&&!1!==o||(o=null),(i="function"!=typeof e)&&(null==o?o="":"number"==typeof o?o=String(o):"string"!=typeof o&&(i=!1)),i&&r?a[a.length-1]+=o:a===j?a=[o]:a.push(o),r=i;var l=new t;return l.nodeName=e,l.children=a,l.attributes=null==n?void 0:n,l.key=null==n?void 0:n.key,void 0!==A.vnode&&A.vnode(l),l}function o(e,t){for(var n in t)e[n]=t[n];return e}function i(e,t){return n(e.nodeName,o(o({},e.attributes),t),arguments.length>2?[].slice.call(arguments,2):e.children)}function s(e){!e.__d&&(e.__d=!0)&&1==F.push(e)&&(A.debounceRendering||setTimeout)(a)}function a(){var e,t=F;for(F=[];e=t.pop();)e.__d&&T(e)}function l(e,t,n){return"string"==typeof t||"number"==typeof t?void 0!==e.splitText:"string"==typeof t.nodeName?!e._componentConstructor&&u(e,t.nodeName):n||e._componentConstructor===t.nodeName}function u(e,t){return e.__n===t||e.nodeName.toLowerCase()===t.toLowerCase()}function c(e){var t=o({},e.attributes);t.children=e.children;var n=e.nodeName.defaultProps;if(void 0!==n)for(var r in n)void 0===t[r]&&(t[r]=n[r]);return t}function p(e,t){var n=t?document.createElementNS("http://www.w3.org/2000/svg",e):document.createElement(e);return n.__n=e,n}function f(e){e.parentNode&&e.parentNode.removeChild(e)}function d(e,t,n,o,i){if("className"===t&&(t="class"),"key"===t);else if("ref"===t)n&&n(null),o&&o(e);else if("class"!==t||i)if("style"===t){if(o&&"string"!=typeof o&&"string"!=typeof n||(e.style.cssText=o||""),o&&"object"==(void 0===o?"undefined":r(o))){if("string"!=typeof n)for(var s in n)s in o||(e.style[s]="");for(var s in o)e.style[s]="number"==typeof o[s]&&!1===D.test(s)?o[s]+"px":o[s]}}else if("dangerouslySetInnerHTML"===t)o&&(e.innerHTML=o.__html||"");else if("o"==t[0]&&"n"==t[1]){var a=t!==(t=t.replace(/Capture$/,""));t=t.toLowerCase().substring(2),o?n||e.addEventListener(t,y,a):e.removeEventListener(t,y,a),(e.__l||(e.__l={}))[t]=o}else if("list"!==t&&"type"!==t&&!i&&t in e)h(e,t,null==o?"":o),null!=o&&!1!==o||e.removeAttribute(t);else{var l=i&&t!==(t=t.replace(/^xlink\:?/,""));null==o||!1===o?l?e.removeAttributeNS("http://www.w3.org/1999/xlink",t.toLowerCase()):e.removeAttribute(t):"function"!=typeof o&&(l?e.setAttributeNS("http://www.w3.org/1999/xlink",t.toLowerCase(),o):e.setAttribute(t,o))}else e.className=o||""}function h(e,t,n){try{e[t]=n}catch(e){}}function y(e){return this.__l[e.type](A.event&&A.event(e)||e)}function m(){for(var e;e=I.pop();)A.afterMount&&A.afterMount(e),e.componentDidMount&&e.componentDidMount()}function v(e,t,n,r,o,i){M++||(H=null!=o&&void 0!==o.ownerSVGElement,q=null!=e&&!("__preactattr_"in e));var s=g(e,t,n,r,i);return o&&s.parentNode!==o&&o.appendChild(s),--M||(q=!1,i||m()),s}function g(e,t,n,r,o){var i=e,s=H;if(null==t&&(t=""),"string"==typeof t)return e&&void 0!==e.splitText&&e.parentNode&&(!e._component||o)?e.nodeValue!=t&&(e.nodeValue=t):(i=document.createTextNode(t),e&&(e.parentNode&&e.parentNode.replaceChild(i,e),C(e,!0))),i.__preactattr_=!0,i;if("function"==typeof t.nodeName)return L(e,t,n,r);if(H="svg"===t.nodeName||"foreignObject"!==t.nodeName&&H,(!e||!u(e,String(t.nodeName)))&&(i=p(String(t.nodeName),H),e)){for(;e.firstChild;)i.appendChild(e.firstChild);e.parentNode&&e.parentNode.replaceChild(i,e),C(e,!0)}var a=i.firstChild,l=i.__preactattr_||(i.__preactattr_={}),c=t.children;return!q&&c&&1===c.length&&"string"==typeof c[0]&&null!=a&&void 0!==a.splitText&&null==a.nextSibling?a.nodeValue!=c[0]&&(a.nodeValue=c[0]):(c&&c.length||null!=a)&&b(i,c,n,r,q||null!=l.dangerouslySetInnerHTML),w(i,t.attributes,l),H=s,i}function b(e,t,n,r,o){var i,s,a,u,c=e.childNodes,p=[],d={},h=0,y=0,m=c.length,v=0,b=t?t.length:0;if(0!==m)for(var _=0;_<m;_++){var w=c[_],x=w.__preactattr_,S=b&&x?w._component?w._component.__k:x.key:null;null!=S?(h++,d[S]=w):(x||(void 0!==w.splitText?!o||w.nodeValue.trim():o))&&(p[v++]=w)}if(0!==b)for(var _=0;_<b;_++){a=t[_],u=null;var S=a.key;if(null!=S)h&&void 0!==d[S]&&(u=d[S],d[S]=void 0,h--);else if(!u&&y<v)for(i=y;i<v;i++)if(void 0!==p[i]&&l(s=p[i],a,o)){u=s,p[i]=void 0,i===v-1&&v--,i===y&&y++;break}u=g(u,a,n,r),u&&u!==e&&(_>=m?e.appendChild(u):u!==c[_]&&(u===c[_+1]?f(c[_]):e.insertBefore(u,c[_]||null)))}if(h)for(var _ in d)void 0!==d[_]&&C(d[_],!1);for(;y<=v;)void 0!==(u=p[v--])&&C(u,!1)}function C(e,t){var n=e._component;n?k(n):(null!=e.__preactattr_&&e.__preactattr_.ref&&e.__preactattr_.ref(null),!1!==t&&null!=e.__preactattr_||f(e),_(e))}function _(e){for(e=e.lastChild;e;){var t=e.previousSibling;C(e,!0),e=t}}function w(e,t,n){var r;for(r in n)t&&null!=t[r]||null==n[r]||d(e,r,n[r],n[r]=void 0,H);for(r in t)"children"===r||"innerHTML"===r||r in n&&t[r]===("value"===r||"checked"===r?e[r]:n[r])||d(e,r,n[r],n[r]=t[r],H)}function x(e){var t=e.constructor.name;(B[t]||(B[t]=[])).push(e)}function S(e,t,n){var r,o=B[e.name];if(e.prototype&&e.prototype.render?(r=new e(t,n),P.call(r,t,n)):(r=new P(t,n),r.constructor=e,r.render=E),o)for(var i=o.length;i--;)if(o[i].constructor===e){r.__b=o[i].__b,o.splice(i,1);break}return r}function E(e,t,n){return this.constructor(e,n)}function N(e,t,n,r,o){e.__x||(e.__x=!0,(e.__r=t.ref)&&delete t.ref,(e.__k=t.key)&&delete t.key,!e.base||o?e.componentWillMount&&e.componentWillMount():e.componentWillReceiveProps&&e.componentWillReceiveProps(t,r),r&&r!==e.context&&(e.__c||(e.__c=e.context),e.context=r),e.__p||(e.__p=e.props),e.props=t,e.__x=!1,0!==n&&(1!==n&&!1===A.syncComponentUpdates&&e.base?s(e):T(e,1,o)),e.__r&&e.__r(e))}function T(e,t,n,r){if(!e.__x){var i,s,a,l=e.props,u=e.state,p=e.context,f=e.__p||l,d=e.__s||u,h=e.__c||p,y=e.base,g=e.__b,b=y||g,_=e._component,w=!1;if(y&&(e.props=f,e.state=d,e.context=h,2!==t&&e.shouldComponentUpdate&&!1===e.shouldComponentUpdate(l,u,p)?w=!0:e.componentWillUpdate&&e.componentWillUpdate(l,u,p),e.props=l,e.state=u,e.context=p),e.__p=e.__s=e.__c=e.__b=null,e.__d=!1,!w){i=e.render(l,u,p),e.getChildContext&&(p=o(o({},p),e.getChildContext()));var x,E,L=i&&i.nodeName;if("function"==typeof L){var P=c(i);s=_,s&&s.constructor===L&&P.key==s.__k?N(s,P,1,p,!1):(x=s,e._component=s=S(L,P,p),s.__b=s.__b||g,s.__u=e,N(s,P,0,p,!1),T(s,1,n,!0)),E=s.base}else a=b,x=_,x&&(a=e._component=null),(b||1===t)&&(a&&(a._component=null),E=v(a,i,p,n||!y,b&&b.parentNode,!0));if(b&&E!==b&&s!==_){var O=b.parentNode;O&&E!==O&&(O.replaceChild(E,b),x||(b._component=null,C(b,!1)))}if(x&&k(x),e.base=E,E&&!r){for(var R=e,j=e;j=j.__u;)(R=j).base=E;E._component=R,E._componentConstructor=R.constructor}}if(!y||n?I.unshift(e):w||(m(),e.componentDidUpdate&&e.componentDidUpdate(f,d,h),A.afterUpdate&&A.afterUpdate(e)),null!=e.__h)for(;e.__h.length;)e.__h.pop().call(e);M||r||m()}}function L(e,t,n,r){for(var o=e&&e._component,i=o,s=e,a=o&&e._componentConstructor===t.nodeName,l=a,u=c(t);o&&!l&&(o=o.__u);)l=o.constructor===t.nodeName;return o&&l&&(!r||o._component)?(N(o,u,3,n,r),e=o.base):(i&&!a&&(k(i),e=s=null),o=S(t.nodeName,u,n),e&&!o.__b&&(o.__b=e,s=null),N(o,u,1,n,r),e=o.base,s&&e!==s&&(s._component=null,C(s,!1))),e}function k(e){A.beforeUnmount&&A.beforeUnmount(e);var t=e.base;e.__x=!0,e.componentWillUnmount&&e.componentWillUnmount(),e.base=null;var n=e._component;n?k(n):t&&(t.__preactattr_&&t.__preactattr_.ref&&t.__preactattr_.ref(null),e.__b=t,f(t),x(e),_(t)),e.__r&&e.__r(null)}function P(e,t){this.__d=!0,this.context=t,this.props=e,this.state=this.state||{}}function O(e,t,n){return v(n,e,{},!1,t,!1)}var A={},R=[],j=[],D=/acit|ex(?:s|g|n|p|$)|rph|ows|mnc|ntw|ine[ch]|zoo|^ord/i,F=[],I=[],M=0,H=!1,q=!1,B={};o(P.prototype,{setState:function(e,t){var n=this.state;this.__s||(this.__s=o({},n)),o(n,"function"==typeof e?e(n,this.props):e),t&&(this.__h=this.__h||[]).push(t),s(this)},forceUpdate:function(e){e&&(this.__h=this.__h||[]).push(e),T(this,2)},render:function(){}});var W={h:n,createElement:n,cloneElement:i,Component:P,render:O,rerender:a,options:A};e.exports=W}()},function(e,t,n){"use strict";(function(e){var n,r,o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};/*!
2
- * jQuery JavaScript Library v3.2.1
3
- * https://jquery.com/
4
- *
5
- * Includes Sizzle.js
6
- * https://sizzlejs.com/
7
- *
8
- * Copyright JS Foundation and other contributors
9
- * Released under the MIT license
10
- * https://jquery.org/license
11
- *
12
- * Date: 2017-03-20T18:59Z
13
- */
14
- !function(t,n){"object"===o(e)&&"object"===o(e.exports)?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:void 0,function(i,s){function a(e,t){t=t||ae;var n=t.createElement("script");n.text=e,t.head.appendChild(n).parentNode.removeChild(n)}function l(e){var t=!!e&&"length"in e&&e.length,n=be.type(e);return"function"!==n&&!be.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}function u(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}function c(e,t,n){return be.isFunction(t)?be.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?be.grep(e,function(e){return e===t!==n}):"string"!=typeof t?be.grep(e,function(e){return fe.call(t,e)>-1!==n}):ke.test(t)?be.filter(t,e,n):(t=be.filter(t,e),be.grep(e,function(e){return fe.call(t,e)>-1!==n&&1===e.nodeType}))}function p(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function f(e){var t={};return be.each(e.match(je)||[],function(e,n){t[n]=!0}),t}function d(e){return e}function h(e){throw e}function y(e,t,n,r){var o;try{e&&be.isFunction(o=e.promise)?o.call(e).done(t).fail(n):e&&be.isFunction(o=e.then)?o.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}function m(){ae.removeEventListener("DOMContentLoaded",m),i.removeEventListener("load",m),be.ready()}function v(){this.expando=be.expando+v.uid++}function g(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Be.test(e)?JSON.parse(e):e)}function b(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(We,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=g(n)}catch(e){}qe.set(e,t,n)}else n=void 0;return n}function C(e,t,n,r){var o,i=1,s=20,a=r?function(){return r.cur()}:function(){return be.css(e,t,"")},l=a(),u=n&&n[3]||(be.cssNumber[t]?"":"px"),c=(be.cssNumber[t]||"px"!==u&&+l)&&$e.exec(be.css(e,t));if(c&&c[3]!==u){u=u||c[3],n=n||[],c=+l||1;do{i=i||".5",c/=i,be.style(e,t,c+u)}while(i!==(i=a()/l)&&1!==i&&--s)}return n&&(c=+c||+l||0,o=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=u,r.start=c,r.end=o)),o}function _(e){var t,n=e.ownerDocument,r=e.nodeName,o=Xe[r];return o||(t=n.body.appendChild(n.createElement(r)),o=be.css(t,"display"),t.parentNode.removeChild(t),"none"===o&&(o="block"),Xe[r]=o,o)}function w(e,t){for(var n,r,o=[],i=0,s=e.length;i<s;i++)r=e[i],r.style&&(n=r.style.display,t?("none"===n&&(o[i]=He.get(r,"display")||null,o[i]||(r.style.display="")),""===r.style.display&&Ge(r)&&(o[i]=_(r))):"none"!==n&&(o[i]="none",He.set(r,"display",n)));for(i=0;i<s;i++)null!=o[i]&&(e[i].style.display=o[i]);return e}function x(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&u(e,t)?be.merge([e],n):n}function S(e,t){for(var n=0,r=e.length;n<r;n++)He.set(e[n],"globalEval",!t||He.get(t[n],"globalEval"))}function E(e,t,n,r,o){for(var i,s,a,l,u,c,p=t.createDocumentFragment(),f=[],d=0,h=e.length;d<h;d++)if((i=e[d])||0===i)if("object"===be.type(i))be.merge(f,i.nodeType?[i]:i);else if(Qe.test(i)){for(s=s||p.appendChild(t.createElement("div")),a=(Ze.exec(i)||["",""])[1].toLowerCase(),l=Ye[a]||Ye._default,s.innerHTML=l[1]+be.htmlPrefilter(i)+l[2],c=l[0];c--;)s=s.lastChild;be.merge(f,s.childNodes),s=p.firstChild,s.textContent=""}else f.push(t.createTextNode(i));for(p.textContent="",d=0;i=f[d++];)if(r&&be.inArray(i,r)>-1)o&&o.push(i);else if(u=be.contains(i.ownerDocument,i),s=x(p.appendChild(i),"script"),u&&S(s),n)for(c=0;i=s[c++];)Je.test(i.type||"")&&n.push(i);return p}function N(){return!0}function T(){return!1}function L(){try{return ae.activeElement}catch(e){}}function k(e,t,n,r,i,s){var a,l;if("object"===(void 0===t?"undefined":o(t))){"string"!=typeof n&&(r=r||n,n=void 0);for(l in t)k(e,l,n,r,t[l],s);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=T;else if(!i)return e;return 1===s&&(a=i,i=function(e){return be().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=be.guid++)),e.each(function(){be.event.add(this,t,i,r,n)})}function P(e,t){return u(e,"table")&&u(11!==t.nodeType?t:t.firstChild,"tr")?be(">tbody",e)[0]||e:e}function O(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function A(e){var t=at.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function R(e,t){var n,r,o,i,s,a,l,u;if(1===t.nodeType){if(He.hasData(e)&&(i=He.access(e),s=He.set(t,i),u=i.events)){delete s.handle,s.events={};for(o in u)for(n=0,r=u[o].length;n<r;n++)be.event.add(t,o,u[o][n])}qe.hasData(e)&&(a=qe.access(e),l=be.extend({},a),qe.set(t,l))}}function j(e,t){var n=t.nodeName.toLowerCase();"input"===n&&ze.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function D(e,t,n,r){t=ce.apply([],t);var o,i,s,l,u,c,p=0,f=e.length,d=f-1,h=t[0],y=be.isFunction(h);if(y||f>1&&"string"==typeof h&&!ge.checkClone&&st.test(h))return e.each(function(o){var i=e.eq(o);y&&(t[0]=h.call(this,o,i.html())),D(i,t,n,r)});if(f&&(o=E(t,e[0].ownerDocument,!1,e,r),i=o.firstChild,1===o.childNodes.length&&(o=i),i||r)){for(s=be.map(x(o,"script"),O),l=s.length;p<f;p++)u=o,p!==d&&(u=be.clone(u,!0,!0),l&&be.merge(s,x(u,"script"))),n.call(e[p],u,p);if(l)for(c=s[s.length-1].ownerDocument,be.map(s,A),p=0;p<l;p++)u=s[p],Je.test(u.type||"")&&!He.access(u,"globalEval")&&be.contains(c,u)&&(u.src?be._evalUrl&&be._evalUrl(u.src):a(u.textContent.replace(lt,""),c))}return e}function F(e,t,n){for(var r,o=t?be.filter(t,e):e,i=0;null!=(r=o[i]);i++)n||1!==r.nodeType||be.cleanData(x(r)),r.parentNode&&(n&&be.contains(r.ownerDocument,r)&&S(x(r,"script")),r.parentNode.removeChild(r));return e}function I(e,t,n){var r,o,i,s,a=e.style;return n=n||pt(e),n&&(s=n.getPropertyValue(t)||n[t],""!==s||be.contains(e.ownerDocument,e)||(s=be.style(e,t)),!ge.pixelMarginRight()&&ct.test(s)&&ut.test(t)&&(r=a.width,o=a.minWidth,i=a.maxWidth,a.minWidth=a.maxWidth=a.width=s,s=n.width,a.width=r,a.minWidth=o,a.maxWidth=i)),void 0!==s?s+"":s}function M(e,t){return{get:function(){return e()?void delete this.get:(this.get=t).apply(this,arguments)}}}function H(e){if(e in vt)return e;for(var t=e[0].toUpperCase()+e.slice(1),n=mt.length;n--;)if((e=mt[n]+t)in vt)return e}function q(e){var t=be.cssProps[e];return t||(t=be.cssProps[e]=H(e)||e),t}function B(e,t,n){var r=$e.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function W(e,t,n,r,o){var i,s=0;for(i=n===(r?"border":"content")?4:"width"===t?1:0;i<4;i+=2)"margin"===n&&(s+=be.css(e,n+Ke[i],!0,o)),r?("content"===n&&(s-=be.css(e,"padding"+Ke[i],!0,o)),"margin"!==n&&(s-=be.css(e,"border"+Ke[i]+"Width",!0,o))):(s+=be.css(e,"padding"+Ke[i],!0,o),"padding"!==n&&(s+=be.css(e,"border"+Ke[i]+"Width",!0,o)));return s}function U(e,t,n){var r,o=pt(e),i=I(e,t,o),s="border-box"===be.css(e,"boxSizing",!1,o);return ct.test(i)?i:(r=s&&(ge.boxSizingReliable()||i===e.style[t]),"auto"===i&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)]),(i=parseFloat(i)||0)+W(e,t,n||(s?"border":"content"),r,o)+"px")}function $(e,t,n,r,o){return new $.prototype.init(e,t,n,r,o)}function K(){bt&&(!1===ae.hidden&&i.requestAnimationFrame?i.requestAnimationFrame(K):i.setTimeout(K,be.fx.interval),be.fx.tick())}function G(){return i.setTimeout(function(){gt=void 0}),gt=be.now()}function V(e,t){var n,r=0,o={height:e};for(t=t?1:0;r<4;r+=2-t)n=Ke[r],o["margin"+n]=o["padding"+n]=e;return t&&(o.opacity=o.width=e),o}function X(e,t,n){for(var r,o=(J.tweeners[t]||[]).concat(J.tweeners["*"]),i=0,s=o.length;i<s;i++)if(r=o[i].call(n,t,e))return r}function z(e,t,n){var r,o,i,s,a,l,u,c,p="width"in t||"height"in t,f=this,d={},h=e.style,y=e.nodeType&&Ge(e),m=He.get(e,"fxshow");n.queue||(s=be._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,a=s.empty.fire,s.empty.fire=function(){s.unqueued||a()}),s.unqueued++,f.always(function(){f.always(function(){s.unqueued--,be.queue(e,"fx").length||s.empty.fire()})}));for(r in t)if(o=t[r],Ct.test(o)){if(delete t[r],i=i||"toggle"===o,o===(y?"hide":"show")){if("show"!==o||!m||void 0===m[r])continue;y=!0}d[r]=m&&m[r]||be.style(e,r)}if((l=!be.isEmptyObject(t))||!be.isEmptyObject(d)){p&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],u=m&&m.display,null==u&&(u=He.get(e,"display")),c=be.css(e,"display"),"none"===c&&(u?c=u:(w([e],!0),u=e.style.display||u,c=be.css(e,"display"),w([e]))),("inline"===c||"inline-block"===c&&null!=u)&&"none"===be.css(e,"float")&&(l||(f.done(function(){h.display=u}),null==u&&(c=h.display,u="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",f.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),l=!1;for(r in d)l||(m?"hidden"in m&&(y=m.hidden):m=He.access(e,"fxshow",{display:u}),i&&(m.hidden=!y),y&&w([e],!0),f.done(function(){y||w([e]),He.remove(e,"fxshow");for(r in d)be.style(e,r,d[r])})),l=X(y?m[r]:0,r,f),r in m||(m[r]=l.start,y&&(l.end=l.start,l.start=0))}}function Z(e,t){var n,r,o,i,s;for(n in e)if(r=be.camelCase(n),o=t[r],i=e[n],Array.isArray(i)&&(o=i[1],i=e[n]=i[0]),n!==r&&(e[r]=i,delete e[n]),(s=be.cssHooks[r])&&"expand"in s){i=s.expand(i),delete e[r];for(n in i)n in e||(e[n]=i[n],t[n]=o)}else t[r]=o}function J(e,t,n){var r,o,i=0,s=J.prefilters.length,a=be.Deferred().always(function(){delete l.elem}),l=function(){if(o)return!1;for(var t=gt||G(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,i=1-r,s=0,l=u.tweens.length;s<l;s++)u.tweens[s].run(i);return a.notifyWith(e,[u,i,n]),i<1&&l?n:(l||a.notifyWith(e,[u,1,0]),a.resolveWith(e,[u]),!1)},u=a.promise({elem:e,props:be.extend({},t),opts:be.extend(!0,{specialEasing:{},easing:be.easing._default},n),originalProperties:t,originalOptions:n,startTime:gt||G(),duration:n.duration,tweens:[],createTween:function(t,n){var r=be.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(o)return this;for(o=!0;n<r;n++)u.tweens[n].run(1);return t?(a.notifyWith(e,[u,1,0]),a.resolveWith(e,[u,t])):a.rejectWith(e,[u,t]),this}}),c=u.props;for(Z(c,u.opts.specialEasing);i<s;i++)if(r=J.prefilters[i].call(u,e,c,u.opts))return be.isFunction(r.stop)&&(be._queueHooks(u.elem,u.opts.queue).stop=be.proxy(r.stop,r)),r;return be.map(c,X,u),be.isFunction(u.opts.start)&&u.opts.start.call(e,u),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always),be.fx.timer(be.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u}function Y(e){return(e.match(je)||[]).join(" ")}function Q(e){return e.getAttribute&&e.getAttribute("class")||""}function ee(e,t,n,r){var i;if(Array.isArray(t))be.each(t,function(t,i){n||Ot.test(e)?r(e,i):ee(e+"["+("object"===(void 0===i?"undefined":o(i))&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==be.type(t))r(e,t);else for(i in t)ee(e+"["+i+"]",t[i],n,r)}function te(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,o=0,i=t.toLowerCase().match(je)||[];if(be.isFunction(n))for(;r=i[o++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function ne(e,t,n,r){function o(a){var l;return i[a]=!0,be.each(e[a]||[],function(e,a){var u=a(t,n,r);return"string"!=typeof u||s||i[u]?s?!(l=u):void 0:(t.dataTypes.unshift(u),o(u),!1)}),l}var i={},s=e===Ut;return o(t.dataTypes[0])||!i["*"]&&o("*")}function re(e,t){var n,r,o=be.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((o[n]?e:r||(r={}))[n]=t[n]);return r&&be.extend(!0,e,r),e}function oe(e,t,n){for(var r,o,i,s,a=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(o in a)if(a[o]&&a[o].test(r)){l.unshift(o);break}if(l[0]in n)i=l[0];else{for(o in n){if(!l[0]||e.converters[o+" "+l[0]]){i=o;break}s||(s=o)}i=i||s}if(i)return i!==l[0]&&l.unshift(i),n[i]}function ie(e,t,n,r){var o,i,s,a,l,u={},c=e.dataTypes.slice();if(c[1])for(s in e.converters)u[s.toLowerCase()]=e.converters[s];for(i=c.shift();i;)if(e.responseFields[i]&&(n[e.responseFields[i]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=i,i=c.shift())if("*"===i)i=l;else if("*"!==l&&l!==i){if(!(s=u[l+" "+i]||u["* "+i]))for(o in u)if(a=o.split(" "),a[1]===i&&(s=u[l+" "+a[0]]||u["* "+a[0]])){!0===s?s=u[o]:!0!==u[o]&&(i=a[0],c.unshift(a[1]));break}if(!0!==s)if(s&&e.throws)t=s(t);else try{t=s(t)}catch(e){return{state:"parsererror",error:s?e:"No conversion from "+l+" to "+i}}}return{state:"success",data:t}}var se=[],ae=i.document,le=Object.getPrototypeOf,ue=se.slice,ce=se.concat,pe=se.push,fe=se.indexOf,de={},he=de.toString,ye=de.hasOwnProperty,me=ye.toString,ve=me.call(Object),ge={},be=function e(t,n){return new e.fn.init(t,n)},Ce=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,_e=/^-ms-/,we=/-([a-z])/g,xe=function(e,t){return t.toUpperCase()};be.fn=be.prototype={jquery:"3.2.1",constructor:be,length:0,toArray:function(){return ue.call(this)},get:function(e){return null==e?ue.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=be.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return be.each(this,e)},map:function(e){return this.pushStack(be.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(ue.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:pe,sort:se.sort,splice:se.splice},be.extend=be.fn.extend=function(){var e,t,n,r,i,s,a=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof a&&(c=a,a=arguments[l]||{},l++),"object"===(void 0===a?"undefined":o(a))||be.isFunction(a)||(a={}),l===u&&(a=this,l--);l<u;l++)if(null!=(e=arguments[l]))for(t in e)n=a[t],r=e[t],a!==r&&(c&&r&&(be.isPlainObject(r)||(i=Array.isArray(r)))?(i?(i=!1,s=n&&Array.isArray(n)?n:[]):s=n&&be.isPlainObject(n)?n:{},a[t]=be.extend(c,s,r)):void 0!==r&&(a[t]=r));return a},be.extend({expando:"jQuery"+("3.2.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isFunction:function(e){return"function"===be.type(e)},isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){var t=be.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==he.call(e))&&(!(t=le(e))||"function"==typeof(n=ye.call(t,"constructor")&&t.constructor)&&me.call(n)===ve)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return null==e?e+"":"object"===(void 0===e?"undefined":o(e))||"function"==typeof e?de[he.call(e)]||"object":void 0===e?"undefined":o(e)},globalEval:function(e){a(e)},camelCase:function(e){return e.replace(_e,"ms-").replace(we,xe)},each:function(e,t){var n,r=0;if(l(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(Ce,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(l(Object(e))?be.merge(n,"string"==typeof e?[e]:e):pe.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:fe.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,o=e.length;r<n;r++)e[o++]=t[r];return e.length=o,e},grep:function(e,t,n){for(var r=[],o=0,i=e.length,s=!n;o<i;o++)!t(e[o],o)!==s&&r.push(e[o]);return r},map:function(e,t,n){var r,o,i=0,s=[];if(l(e))for(r=e.length;i<r;i++)null!=(o=t(e[i],i,n))&&s.push(o);else for(i in e)null!=(o=t(e[i],i,n))&&s.push(o);return ce.apply([],s)},guid:1,proxy:function(e,t){var n,r,o;if("string"==typeof t&&(n=e[t],t=e,e=n),be.isFunction(e))return r=ue.call(arguments,2),o=function(){return e.apply(t||this,r.concat(ue.call(arguments)))},o.guid=e.guid=e.guid||be.guid++,o},now:Date.now,support:ge}),"function"==typeof Symbol&&(be.fn[Symbol.iterator]=se[Symbol.iterator]),be.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){de["[object "+t+"]"]=t.toLowerCase()});var Se=/*!
15
- * Sizzle CSS Selector Engine v2.3.3
16
- * https://sizzlejs.com/
17
- *
18
- * Copyright jQuery Foundation and other contributors
19
- * Released under the MIT license
20
- * http://jquery.org/license
21
- *
22
- * Date: 2016-08-08
23
- */
24
- function(e){function t(e,t,n,r){var o,i,s,a,l,c,f,d=t&&t.ownerDocument,h=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==h&&9!==h&&11!==h)return n;if(!r&&((t?t.ownerDocument||t:H)!==O&&P(t),t=t||O,R)){if(11!==h&&(l=ye.exec(e)))if(o=l[1]){if(9===h){if(!(s=t.getElementById(o)))return n;if(s.id===o)return n.push(s),n}else if(d&&(s=d.getElementById(o))&&I(t,s)&&s.id===o)return n.push(s),n}else{if(l[2])return Z.apply(n,t.getElementsByTagName(e)),n;if((o=l[3])&&C.getElementsByClassName&&t.getElementsByClassName)return Z.apply(n,t.getElementsByClassName(o)),n}if(C.qsa&&!$[e+" "]&&(!j||!j.test(e))){if(1!==h)d=t,f=e;else if("object"!==t.nodeName.toLowerCase()){for((a=t.getAttribute("id"))?a=a.replace(be,Ce):t.setAttribute("id",a=M),c=S(e),i=c.length;i--;)c[i]="#"+a+" "+p(c[i]);f=c.join(","),d=me.test(e)&&u(t.parentNode)||t}if(f)try{return Z.apply(n,d.querySelectorAll(f)),n}catch(e){}finally{a===M&&t.removeAttribute("id")}}}return N(e.replace(ie,"$1"),t,n,r)}function n(){function e(n,r){return t.push(n+" ")>_.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[M]=!0,e}function o(e){var t=O.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function i(e,t){for(var n=e.split("|"),r=n.length;r--;)_.attrHandle[n[r]]=t}function s(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function a(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&we(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function l(e){return r(function(t){return t=+t,r(function(n,r){for(var o,i=e([],n.length,t),s=i.length;s--;)n[o=i[s]]&&(n[o]=!(r[o]=n[o]))})})}function u(e){return e&&void 0!==e.getElementsByTagName&&e}function c(){}function p(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function f(e,t,n){var r=t.dir,o=t.next,i=o||r,s=n&&"parentNode"===i,a=B++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||s)return e(t,n,o);return!1}:function(t,n,l){var u,c,p,f=[q,a];if(l){for(;t=t[r];)if((1===t.nodeType||s)&&e(t,n,l))return!0}else for(;t=t[r];)if(1===t.nodeType||s)if(p=t[M]||(t[M]={}),c=p[t.uniqueID]||(p[t.uniqueID]={}),o&&o===t.nodeName.toLowerCase())t=t[r]||t;else{if((u=c[i])&&u[0]===q&&u[1]===a)return f[2]=u[2];if(c[i]=f,f[2]=e(t,n,l))return!0}return!1}}function d(e){return e.length>1?function(t,n,r){for(var o=e.length;o--;)if(!e[o](t,n,r))return!1;return!0}:e[0]}function h(e,n,r){for(var o=0,i=n.length;o<i;o++)t(e,n[o],r);return r}function y(e,t,n,r,o){for(var i,s=[],a=0,l=e.length,u=null!=t;a<l;a++)(i=e[a])&&(n&&!n(i,r,o)||(s.push(i),u&&t.push(a)));return s}function m(e,t,n,o,i,s){return o&&!o[M]&&(o=m(o)),i&&!i[M]&&(i=m(i,s)),r(function(r,s,a,l){var u,c,p,f=[],d=[],m=s.length,v=r||h(t||"*",a.nodeType?[a]:a,[]),g=!e||!r&&t?v:y(v,f,e,a,l),b=n?i||(r?e:m||o)?[]:s:g;if(n&&n(g,b,a,l),o)for(u=y(b,d),o(u,[],a,l),c=u.length;c--;)(p=u[c])&&(b[d[c]]=!(g[d[c]]=p));if(r){if(i||e){if(i){for(u=[],c=b.length;c--;)(p=b[c])&&u.push(g[c]=p);i(null,b=[],u,l)}for(c=b.length;c--;)(p=b[c])&&(u=i?Y(r,p):f[c])>-1&&(r[u]=!(s[u]=p))}}else b=y(b===s?b.splice(m,b.length):b),i?i(null,s,b,l):Z.apply(s,b)})}function v(e){for(var t,n,r,o=e.length,i=_.relative[e[0].type],s=i||_.relative[" "],a=i?1:0,l=f(function(e){return e===t},s,!0),u=f(function(e){return Y(t,e)>-1},s,!0),c=[function(e,n,r){var o=!i&&(r||n!==T)||((t=n).nodeType?l(e,n,r):u(e,n,r));return t=null,o}];a<o;a++)if(n=_.relative[e[a].type])c=[f(d(c),n)];else{if(n=_.filter[e[a].type].apply(null,e[a].matches),n[M]){for(r=++a;r<o&&!_.relative[e[r].type];r++);return m(a>1&&d(c),a>1&&p(e.slice(0,a-1).concat({value:" "===e[a-2].type?"*":""})).replace(ie,"$1"),n,a<r&&v(e.slice(a,r)),r<o&&v(e=e.slice(r)),r<o&&p(e))}c.push(n)}return d(c)}function g(e,n){var o=n.length>0,i=e.length>0,s=function(r,s,a,l,u){var c,p,f,d=0,h="0",m=r&&[],v=[],g=T,b=r||i&&_.find.TAG("*",u),C=q+=null==g?1:Math.random()||.1,w=b.length;for(u&&(T=s===O||s||u);h!==w&&null!=(c=b[h]);h++){if(i&&c){for(p=0,s||c.ownerDocument===O||(P(c),a=!R);f=e[p++];)if(f(c,s||O,a)){l.push(c);break}u&&(q=C)}o&&((c=!f&&c)&&d--,r&&m.push(c))}if(d+=h,o&&h!==d){for(p=0;f=n[p++];)f(m,v,s,a);if(r){if(d>0)for(;h--;)m[h]||v[h]||(v[h]=X.call(l));v=y(v)}Z.apply(l,v),u&&!r&&v.length>0&&d+n.length>1&&t.uniqueSort(l)}return u&&(q=C,T=g),m};return o?r(s):s}var b,C,_,w,x,S,E,N,T,L,k,P,O,A,R,j,D,F,I,M="sizzle"+1*new Date,H=e.document,q=0,B=0,W=n(),U=n(),$=n(),K=function(e,t){return e===t&&(k=!0),0},G={}.hasOwnProperty,V=[],X=V.pop,z=V.push,Z=V.push,J=V.slice,Y=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},Q="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",ee="[\\x20\\t\\r\\n\\f]",te="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",ne="\\["+ee+"*("+te+")(?:"+ee+"*([*^$|!~]?=)"+ee+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+te+"))|)"+ee+"*\\]",re=":("+te+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+ne+")*)|.*)\\)|)",oe=new RegExp(ee+"+","g"),ie=new RegExp("^"+ee+"+|((?:^|[^\\\\])(?:\\\\.)*)"+ee+"+$","g"),se=new RegExp("^"+ee+"*,"+ee+"*"),ae=new RegExp("^"+ee+"*([>+~]|"+ee+")"+ee+"*"),le=new RegExp("="+ee+"*([^\\]'\"]*?)"+ee+"*\\]","g"),ue=new RegExp(re),ce=new RegExp("^"+te+"$"),pe={ID:new RegExp("^#("+te+")"),CLASS:new RegExp("^\\.("+te+")"),TAG:new RegExp("^("+te+"|[*])"),ATTR:new RegExp("^"+ne),PSEUDO:new RegExp("^"+re),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ee+"*(even|odd|(([+-]|)(\\d*)n|)"+ee+"*(?:([+-]|)"+ee+"*(\\d+)|))"+ee+"*\\)|)","i"),bool:new RegExp("^(?:"+Q+")$","i"),needsContext:new RegExp("^"+ee+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ee+"*((?:-\\d)?\\d*)"+ee+"*\\)|)(?=[^-]|$)","i")},fe=/^(?:input|select|textarea|button)$/i,de=/^h\d$/i,he=/^[^{]+\{\s*\[native \w/,ye=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,me=/[+~]/,ve=new RegExp("\\\\([\\da-f]{1,6}"+ee+"?|("+ee+")|.)","ig"),ge=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},be=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,Ce=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},_e=function(){P()},we=f(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{Z.apply(V=J.call(H.childNodes),H.childNodes),V[H.childNodes.length].nodeType}catch(e){Z={apply:V.length?function(e,t){z.apply(e,J.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}C=t.support={},x=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},P=t.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:H;return r!==O&&9===r.nodeType&&r.documentElement?(O=r,A=O.documentElement,R=!x(O),H!==O&&(n=O.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",_e,!1):n.attachEvent&&n.attachEvent("onunload",_e)),C.attributes=o(function(e){return e.className="i",!e.getAttribute("className")}),C.getElementsByTagName=o(function(e){return e.appendChild(O.createComment("")),!e.getElementsByTagName("*").length}),C.getElementsByClassName=he.test(O.getElementsByClassName),C.getById=o(function(e){return A.appendChild(e).id=M,!O.getElementsByName||!O.getElementsByName(M).length}),C.getById?(_.filter.ID=function(e){var t=e.replace(ve,ge);return function(e){return e.getAttribute("id")===t}},_.find.ID=function(e,t){if(void 0!==t.getElementById&&R){var n=t.getElementById(e);return n?[n]:[]}}):(_.filter.ID=function(e){var t=e.replace(ve,ge);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},_.find.ID=function(e,t){if(void 0!==t.getElementById&&R){var n,r,o,i=t.getElementById(e);if(i){if((n=i.getAttributeNode("id"))&&n.value===e)return[i];for(o=t.getElementsByName(e),r=0;i=o[r++];)if((n=i.getAttributeNode("id"))&&n.value===e)return[i]}return[]}}),_.find.TAG=C.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):C.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],o=0,i=t.getElementsByTagName(e);if("*"===e){for(;n=i[o++];)1===n.nodeType&&r.push(n);return r}return i},_.find.CLASS=C.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&R)return t.getElementsByClassName(e)},D=[],j=[],(C.qsa=he.test(O.querySelectorAll))&&(o(function(e){A.appendChild(e).innerHTML="<a id='"+M+"'></a><select id='"+M+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&j.push("[*^$]="+ee+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||j.push("\\["+ee+"*(?:value|"+Q+")"),e.querySelectorAll("[id~="+M+"-]").length||j.push("~="),e.querySelectorAll(":checked").length||j.push(":checked"),e.querySelectorAll("a#"+M+"+*").length||j.push(".#.+[+~]")}),o(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=O.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&j.push("name"+ee+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&j.push(":enabled",":disabled"),A.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&j.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),j.push(",.*:")})),(C.matchesSelector=he.test(F=A.matches||A.webkitMatchesSelector||A.mozMatchesSelector||A.oMatchesSelector||A.msMatchesSelector))&&o(function(e){C.disconnectedMatch=F.call(e,"*"),F.call(e,"[s!='']:x"),D.push("!=",re)}),j=j.length&&new RegExp(j.join("|")),D=D.length&&new RegExp(D.join("|")),t=he.test(A.compareDocumentPosition),I=t||he.test(A.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},K=t?function(e,t){if(e===t)return k=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&n||!C.sortDetached&&t.compareDocumentPosition(e)===n?e===O||e.ownerDocument===H&&I(H,e)?-1:t===O||t.ownerDocument===H&&I(H,t)?1:L?Y(L,e)-Y(L,t):0:4&n?-1:1)}:function(e,t){if(e===t)return k=!0,0;var n,r=0,o=e.parentNode,i=t.parentNode,a=[e],l=[t];if(!o||!i)return e===O?-1:t===O?1:o?-1:i?1:L?Y(L,e)-Y(L,t):0;if(o===i)return s(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)l.unshift(n);for(;a[r]===l[r];)r++;return r?s(a[r],l[r]):a[r]===H?-1:l[r]===H?1:0},O):O},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==O&&P(e),n=n.replace(le,"='$1']"),C.matchesSelector&&R&&!$[n+" "]&&(!D||!D.test(n))&&(!j||!j.test(n)))try{var r=F.call(e,n);if(r||C.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return t(n,O,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==O&&P(e),I(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==O&&P(e);var n=_.attrHandle[t.toLowerCase()],r=n&&G.call(_.attrHandle,t.toLowerCase())?n(e,t,!R):void 0;return void 0!==r?r:C.attributes||!R?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.escape=function(e){return(e+"").replace(be,Ce)},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,o=0;if(k=!C.detectDuplicates,L=!C.sortStable&&e.slice(0),e.sort(K),k){for(;t=e[o++];)t===e[o]&&(r=n.push(o));for(;r--;)e.splice(n[r],1)}return L=null,e},w=t.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=w(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=w(t);return n},_=t.selectors={cacheLength:50,createPseudo:r,match:pe,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(ve,ge),e[3]=(e[3]||e[4]||e[5]||"").replace(ve,ge),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return pe.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&ue.test(n)&&(t=S(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(ve,ge).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=W[e+" "];return t||(t=new RegExp("(^|"+ee+")"+e+"("+ee+"|$)"))&&W(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(o){var i=t.attr(o,e);return null==i?"!="===n:!n||(i+="","="===n?i===r:"!="===n?i!==r:"^="===n?r&&0===i.indexOf(r):"*="===n?r&&i.indexOf(r)>-1:"$="===n?r&&i.slice(-r.length)===r:"~="===n?(" "+i.replace(oe," ")+" ").indexOf(r)>-1:"|="===n&&(i===r||i.slice(0,r.length+1)===r+"-"))}},CHILD:function(e,t,n,r,o){var i="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===o?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,y=i!==s?"nextSibling":"previousSibling",m=t.parentNode,v=a&&t.nodeName.toLowerCase(),g=!l&&!a,b=!1;if(m){if(i){for(;y;){for(f=t;f=f[y];)if(a?f.nodeName.toLowerCase()===v:1===f.nodeType)return!1;h=y="only"===e&&!h&&"nextSibling"}return!0}if(h=[s?m.firstChild:m.lastChild],s&&g){for(f=m,p=f[M]||(f[M]={}),c=p[f.uniqueID]||(p[f.uniqueID]={}),u=c[e]||[],d=u[0]===q&&u[1],b=d&&u[2],f=d&&m.childNodes[d];f=++d&&f&&f[y]||(b=d=0)||h.pop();)if(1===f.nodeType&&++b&&f===t){c[e]=[q,d,b];break}}else if(g&&(f=t,p=f[M]||(f[M]={}),c=p[f.uniqueID]||(p[f.uniqueID]={}),u=c[e]||[],d=u[0]===q&&u[1],b=d),!1===b)for(;(f=++d&&f&&f[y]||(b=d=0)||h.pop())&&((a?f.nodeName.toLowerCase()!==v:1!==f.nodeType)||!++b||(g&&(p=f[M]||(f[M]={}),c=p[f.uniqueID]||(p[f.uniqueID]={}),c[e]=[q,b]),f!==t)););return(b-=o)===r||b%r==0&&b/r>=0}}},PSEUDO:function(e,n){var o,i=_.pseudos[e]||_.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return i[M]?i(n):i.length>1?(o=[e,e,"",n],_.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,o=i(e,n),s=o.length;s--;)r=Y(e,o[s]),e[r]=!(t[r]=o[s])}):function(e){return i(e,0,o)}):i}},pseudos:{not:r(function(e){var t=[],n=[],o=E(e.replace(ie,"$1"));return o[M]?r(function(e,t,n,r){for(var i,s=o(e,null,r,[]),a=e.length;a--;)(i=s[a])&&(e[a]=!(t[a]=i))}):function(e,r,i){return t[0]=e,o(t,null,i,n),t[0]=null,!n.pop()}}),has:r(function(e){return function(n){return t(e,n).length>0}}),contains:r(function(e){return e=e.replace(ve,ge),function(t){return(t.textContent||t.innerText||w(t)).indexOf(e)>-1}}),lang:r(function(e){return ce.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(ve,ge).toLowerCase(),function(t){var n;do{if(n=R?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===A},focus:function(e){return e===O.activeElement&&(!O.hasFocus||O.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:a(!1),disabled:a(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!_.pseudos.empty(e)},header:function(e){return de.test(e.nodeName)},input:function(e){return fe.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:l(function(){return[0]}),last:l(function(e,t){return[t-1]}),eq:l(function(e,t,n){return[n<0?n+t:n]}),even:l(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:l(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:l(function(e,t,n){for(var r=n<0?n+t:n;--r>=0;)e.push(r);return e}),gt:l(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}},_.pseudos.nth=_.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})_.pseudos[b]=function(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}(b);for(b in{submit:!0,reset:!0})_.pseudos[b]=function(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}(b);return c.prototype=_.filters=_.pseudos,_.setFilters=new c,S=t.tokenize=function(e,n){var r,o,i,s,a,l,u,c=U[e+" "];if(c)return n?0:c.slice(0);for(a=e,l=[],u=_.preFilter;a;){r&&!(o=se.exec(a))||(o&&(a=a.slice(o[0].length)||a),l.push(i=[])),r=!1,(o=ae.exec(a))&&(r=o.shift(),i.push({value:r,type:o[0].replace(ie," ")}),a=a.slice(r.length));for(s in _.filter)!(o=pe[s].exec(a))||u[s]&&!(o=u[s](o))||(r=o.shift(),i.push({value:r,type:s,matches:o}),a=a.slice(r.length));if(!r)break}return n?a.length:a?t.error(e):U(e,l).slice(0)},E=t.compile=function(e,t){var n,r=[],o=[],i=$[e+" "];if(!i){for(t||(t=S(e)),n=t.length;n--;)i=v(t[n]),i[M]?r.push(i):o.push(i);i=$(e,g(o,r)),i.selector=e}return i},N=t.select=function(e,t,n,r){var o,i,s,a,l,c="function"==typeof e&&e,f=!r&&S(e=c.selector||e);if(n=n||[],1===f.length){if(i=f[0]=f[0].slice(0),i.length>2&&"ID"===(s=i[0]).type&&9===t.nodeType&&R&&_.relative[i[1].type]){if(!(t=(_.find.ID(s.matches[0].replace(ve,ge),t)||[])[0]))return n;c&&(t=t.parentNode),e=e.slice(i.shift().value.length)}for(o=pe.needsContext.test(e)?0:i.length;o--&&(s=i[o],!_.relative[a=s.type]);)if((l=_.find[a])&&(r=l(s.matches[0].replace(ve,ge),me.test(i[0].type)&&u(t.parentNode)||t))){if(i.splice(o,1),!(e=r.length&&p(i)))return Z.apply(n,r),n;break}}return(c||E(e,f))(r,t,!R,n,!t||me.test(e)&&u(t.parentNode)||t),n},C.sortStable=M.split("").sort(K).join("")===M,C.detectDuplicates=!!k,P(),C.sortDetached=o(function(e){return 1&e.compareDocumentPosition(O.createElement("fieldset"))}),o(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||i("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),C.attributes&&o(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||i("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),o(function(e){return null==e.getAttribute("disabled")})||i(Q,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(i);be.find=Se,be.expr=Se.selectors,be.expr[":"]=be.expr.pseudos,be.uniqueSort=be.unique=Se.uniqueSort,be.text=Se.getText,be.isXMLDoc=Se.isXML,be.contains=Se.contains,be.escapeSelector=Se.escape;var Ee=function(e,t,n){for(var r=[],o=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(o&&be(e).is(n))break;r.push(e)}return r},Ne=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},Te=be.expr.match.needsContext,Le=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,ke=/^.[^:#\[\.,]*$/;be.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?be.find.matchesSelector(r,e)?[r]:[]:be.find.matches(e,be.grep(t,function(e){return 1===e.nodeType}))},be.fn.extend({find:function(e){var t,n,r=this.length,o=this;if("string"!=typeof e)return this.pushStack(be(e).filter(function(){for(t=0;t<r;t++)if(be.contains(o[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)be.find(e,o[t],n);return r>1?be.uniqueSort(n):n},filter:function(e){return this.pushStack(c(this,e||[],!1))},not:function(e){return this.pushStack(c(this,e||[],!0))},is:function(e){return!!c(this,"string"==typeof e&&Te.test(e)?be(e):e||[],!1).length}});var Pe,Oe=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(be.fn.init=function(e,t,n){var r,o;if(!e)return this;if(n=n||Pe,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:Oe.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof be?t[0]:t,be.merge(this,be.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:ae,!0)),Le.test(r[1])&&be.isPlainObject(t))for(r in t)be.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return o=ae.getElementById(r[2]),o&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):be.isFunction(e)?void 0!==n.ready?n.ready(e):e(be):be.makeArray(e,this)}).prototype=be.fn,Pe=be(ae);var Ae=/^(?:parents|prev(?:Until|All))/,Re={children:!0,contents:!0,next:!0,prev:!0};be.fn.extend({has:function(e){var t=be(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(be.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,o=this.length,i=[],s="string"!=typeof e&&be(e);if(!Te.test(e))for(;r<o;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(s?s.index(n)>-1:1===n.nodeType&&be.find.matchesSelector(n,e))){i.push(n);break}return this.pushStack(i.length>1?be.uniqueSort(i):i)},index:function(e){return e?"string"==typeof e?fe.call(be(e),this[0]):fe.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(be.uniqueSort(be.merge(this.get(),be(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),be.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return Ee(e,"parentNode")},parentsUntil:function(e,t,n){return Ee(e,"parentNode",n)},next:function(e){return p(e,"nextSibling")},prev:function(e){return p(e,"previousSibling")},nextAll:function(e){return Ee(e,"nextSibling")},prevAll:function(e){return Ee(e,"previousSibling")},nextUntil:function(e,t,n){return Ee(e,"nextSibling",n)},prevUntil:function(e,t,n){return Ee(e,"previousSibling",n)},siblings:function(e){return Ne((e.parentNode||{}).firstChild,e)},children:function(e){return Ne(e.firstChild)},contents:function(e){return u(e,"iframe")?e.contentDocument:(u(e,"template")&&(e=e.content||e),be.merge([],e.childNodes))}},function(e,t){be.fn[e]=function(n,r){var o=be.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(o=be.filter(r,o)),this.length>1&&(Re[e]||be.uniqueSort(o),Ae.test(e)&&o.reverse()),this.pushStack(o)}});var je=/[^\x20\t\r\n\f]+/g;be.Callbacks=function(e){e="string"==typeof e?f(e):be.extend({},e);var t,n,r,o,i=[],s=[],a=-1,l=function(){for(o=o||e.once,r=t=!0;s.length;a=-1)for(n=s.shift();++a<i.length;)!1===i[a].apply(n[0],n[1])&&e.stopOnFalse&&(a=i.length,n=!1);e.memory||(n=!1),t=!1,o&&(i=n?[]:"")},u={add:function(){return i&&(n&&!t&&(a=i.length-1,s.push(n)),function t(n){be.each(n,function(n,r){be.isFunction(r)?e.unique&&u.has(r)||i.push(r):r&&r.length&&"string"!==be.type(r)&&t(r)})}(arguments),n&&!t&&l()),this},remove:function(){return be.each(arguments,function(e,t){for(var n;(n=be.inArray(t,i,n))>-1;)i.splice(n,1),n<=a&&a--}),this},has:function(e){return e?be.inArray(e,i)>-1:i.length>0},empty:function(){return i&&(i=[]),this},disable:function(){return o=s=[],i=n="",this},disabled:function(){return!i},lock:function(){return o=s=[],n||t||(i=n=""),this},locked:function(){return!!o},fireWith:function(e,n){return o||(n=n||[],n=[e,n.slice?n.slice():n],s.push(n),t||l()),this},fire:function(){return u.fireWith(this,arguments),this},fired:function(){return!!r}};return u},be.extend({Deferred:function(e){var t=[["notify","progress",be.Callbacks("memory"),be.Callbacks("memory"),2],["resolve","done",be.Callbacks("once memory"),be.Callbacks("once memory"),0,"resolved"],["reject","fail",be.Callbacks("once memory"),be.Callbacks("once memory"),1,"rejected"]],n="pending",r={state:function(){return n},always:function(){return s.done(arguments).fail(arguments),this},catch:function(e){return r.then(null,e)},pipe:function(){var e=arguments;return be.Deferred(function(n){be.each(t,function(t,r){var o=be.isFunction(e[r[4]])&&e[r[4]];s[r[1]](function(){var e=o&&o.apply(this,arguments);e&&be.isFunction(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,o?[e]:arguments)})}),e=null}).promise()},then:function(e,n,r){function s(e,t,n,r){return function(){var l=this,u=arguments,c=function(){var i,c;if(!(e<a)){if((i=n.apply(l,u))===t.promise())throw new TypeError("Thenable self-resolution");c=i&&("object"===(void 0===i?"undefined":o(i))||"function"==typeof i)&&i.then,be.isFunction(c)?r?c.call(i,s(a,t,d,r),s(a,t,h,r)):(a++,c.call(i,s(a,t,d,r),s(a,t,h,r),s(a,t,d,t.notifyWith))):(n!==d&&(l=void 0,u=[i]),(r||t.resolveWith)(l,u))}},p=r?c:function(){try{c()}catch(r){be.Deferred.exceptionHook&&be.Deferred.exceptionHook(r,p.stackTrace),e+1>=a&&(n!==h&&(l=void 0,u=[r]),t.rejectWith(l,u))}};e?p():(be.Deferred.getStackHook&&(p.stackTrace=be.Deferred.getStackHook()),i.setTimeout(p))}}var a=0;return be.Deferred(function(o){t[0][3].add(s(0,o,be.isFunction(r)?r:d,o.notifyWith)),t[1][3].add(s(0,o,be.isFunction(e)?e:d)),t[2][3].add(s(0,o,be.isFunction(n)?n:h))}).promise()},promise:function(e){return null!=e?be.extend(e,r):r}},s={};return be.each(t,function(e,o){var i=o[2],a=o[5];r[o[1]]=i.add,a&&i.add(function(){n=a},t[3-e][2].disable,t[0][2].lock),i.add(o[3].fire),s[o[0]]=function(){return s[o[0]+"With"](this===s?void 0:this,arguments),this},s[o[0]+"With"]=i.fireWith}),r.promise(s),e&&e.call(s,s),s},when:function(e){var t=arguments.length,n=t,r=Array(n),o=ue.call(arguments),i=be.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?ue.call(arguments):n,--t||i.resolveWith(r,o)}};if(t<=1&&(y(e,i.done(s(n)).resolve,i.reject,!t),"pending"===i.state()||be.isFunction(o[n]&&o[n].then)))return i.then();for(;n--;)y(o[n],s(n),i.reject);return i.promise()}});var De=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;be.Deferred.exceptionHook=function(e,t){i.console&&i.console.warn&&e&&De.test(e.name)&&i.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},be.readyException=function(e){i.setTimeout(function(){throw e})};var Fe=be.Deferred();be.fn.ready=function(e){return Fe.then(e).catch(function(e){be.readyException(e)}),this},be.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--be.readyWait:be.isReady)||(be.isReady=!0,!0!==e&&--be.readyWait>0||Fe.resolveWith(ae,[be]))}}),be.ready.then=Fe.then,"complete"===ae.readyState||"loading"!==ae.readyState&&!ae.documentElement.doScroll?i.setTimeout(be.ready):(ae.addEventListener("DOMContentLoaded",m),i.addEventListener("load",m));var Ie=function e(t,n,r,o,i,s,a){var l=0,u=t.length,c=null==r;if("object"===be.type(r)){i=!0;for(l in r)e(t,n,l,r[l],!0,s,a)}else if(void 0!==o&&(i=!0,be.isFunction(o)||(a=!0),c&&(a?(n.call(t,o),n=null):(c=n,n=function(e,t,n){return c.call(be(e),n)})),n))for(;l<u;l++)n(t[l],r,a?o:o.call(t[l],l,n(t[l],r)));return i?t:c?n.call(t):u?n(t[0],r):s},Me=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};v.uid=1,v.prototype={cache:function(e){var t=e[this.expando];return t||(t={},Me(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,o=this.cache(e);if("string"==typeof t)o[be.camelCase(t)]=n;else for(r in t)o[be.camelCase(r)]=t[r];return o},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][be.camelCase(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){Array.isArray(t)?t=t.map(be.camelCase):(t=be.camelCase(t),t=t in r?[t]:t.match(je)||[]),n=t.length;for(;n--;)delete r[t[n]]}(void 0===t||be.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!be.isEmptyObject(t)}};var He=new v,qe=new v,Be=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,We=/[A-Z]/g;be.extend({hasData:function(e){return qe.hasData(e)||He.hasData(e)},data:function(e,t,n){return qe.access(e,t,n)},removeData:function(e,t){qe.remove(e,t)},_data:function(e,t,n){return He.access(e,t,n)},_removeData:function(e,t){He.remove(e,t)}}),be.fn.extend({data:function(e,t){var n,r,i,s=this[0],a=s&&s.attributes;if(void 0===e){if(this.length&&(i=qe.get(s),1===s.nodeType&&!He.get(s,"hasDataAttrs"))){for(n=a.length;n--;)a[n]&&(r=a[n].name,0===r.indexOf("data-")&&(r=be.camelCase(r.slice(5)),b(s,r,i[r])));He.set(s,"hasDataAttrs",!0)}return i}return"object"===(void 0===e?"undefined":o(e))?this.each(function(){qe.set(this,e)}):Ie(this,function(t){var n;if(s&&void 0===t){if(void 0!==(n=qe.get(s,e)))return n;if(void 0!==(n=b(s,e)))return n}else this.each(function(){qe.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){qe.remove(this,e)})}}),be.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=He.get(e,t),n&&(!r||Array.isArray(n)?r=He.access(e,t,be.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=be.queue(e,t),r=n.length,o=n.shift(),i=be._queueHooks(e,t),s=function(){be.dequeue(e,t)};"inprogress"===o&&(o=n.shift(),r--),o&&("fx"===t&&n.unshift("inprogress"),delete i.stop,o.call(e,s,i)),!r&&i&&i.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return He.get(e,n)||He.access(e,n,{empty:be.Callbacks("once memory").add(function(){He.remove(e,[t+"queue",n])})})}}),be.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?be.queue(this[0],e):void 0===t?this:this.each(function(){var n=be.queue(this,e,t);be._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&be.dequeue(this,e)})},dequeue:function(e){return this.each(function(){be.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,o=be.Deferred(),i=this,s=this.length,a=function(){--r||o.resolveWith(i,[i])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";s--;)(n=He.get(i[s],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(a));return a(),o.promise(t)}});var Ue=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,$e=new RegExp("^(?:([+-])=|)("+Ue+")([a-z%]*)$","i"),Ke=["Top","Right","Bottom","Left"],Ge=function(e,t){return e=t||e,"none"===e.style.display||""===e.style.display&&be.contains(e.ownerDocument,e)&&"none"===be.css(e,"display")},Ve=function(e,t,n,r){var o,i,s={};for(i in t)s[i]=e.style[i],e.style[i]=t[i];o=n.apply(e,r||[]);for(i in t)e.style[i]=s[i];return o},Xe={};be.fn.extend({show:function(){return w(this,!0)},hide:function(){return w(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Ge(this)?be(this).show():be(this).hide()})}});var ze=/^(?:checkbox|radio)$/i,Ze=/<([a-z][^\/\0>\x20\t\r\n\f]+)/i,Je=/^$|\/(?:java|ecma)script/i,Ye={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};Ye.optgroup=Ye.option,Ye.tbody=Ye.tfoot=Ye.colgroup=Ye.caption=Ye.thead,Ye.th=Ye.td;var Qe=/<|&#?\w+;/;!function(){var e=ae.createDocumentFragment(),t=e.appendChild(ae.createElement("div")),n=ae.createElement("input");n.setAttribute("type","radio"),n.setAttribute("checked","checked"),n.setAttribute("name","t"),t.appendChild(n),ge.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,t.innerHTML="<textarea>x</textarea>",ge.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue}();var et=ae.documentElement,tt=/^key/,nt=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,rt=/^([^.]*)(?:\.(.+)|)/;be.event={global:{},add:function(e,t,n,r,o){var i,s,a,l,u,c,p,f,d,h,y,m=He.get(e);if(m)for(n.handler&&(i=n,n=i.handler,o=i.selector),o&&be.find.matchesSelector(et,o),n.guid||(n.guid=be.guid++),(l=m.events)||(l=m.events={}),(s=m.handle)||(s=m.handle=function(t){return void 0!==be&&be.event.triggered!==t.type?be.event.dispatch.apply(e,arguments):void 0}),t=(t||"").match(je)||[""],u=t.length;u--;)a=rt.exec(t[u])||[],d=y=a[1],h=(a[2]||"").split(".").sort(),d&&(p=be.event.special[d]||{},d=(o?p.delegateType:p.bindType)||d,p=be.event.special[d]||{},c=be.extend({type:d,origType:y,data:r,handler:n,guid:n.guid,selector:o,needsContext:o&&be.expr.match.needsContext.test(o),namespace:h.join(".")},i),(f=l[d])||(f=l[d]=[],f.delegateCount=0,p.setup&&!1!==p.setup.call(e,r,h,s)||e.addEventListener&&e.addEventListener(d,s)),p.add&&(p.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),o?f.splice(f.delegateCount++,0,c):f.push(c),be.event.global[d]=!0)},remove:function(e,t,n,r,o){var i,s,a,l,u,c,p,f,d,h,y,m=He.hasData(e)&&He.get(e);if(m&&(l=m.events)){for(t=(t||"").match(je)||[""],u=t.length;u--;)if(a=rt.exec(t[u])||[],d=y=a[1],h=(a[2]||"").split(".").sort(),d){for(p=be.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=l[d]||[],a=a[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=i=f.length;i--;)c=f[i],!o&&y!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(i,1),c.selector&&f.delegateCount--,p.remove&&p.remove.call(e,c));s&&!f.length&&(p.teardown&&!1!==p.teardown.call(e,h,m.handle)||be.removeEvent(e,d,m.handle),delete l[d])}else for(d in l)be.event.remove(e,d+t[u],n,r,!0);be.isEmptyObject(l)&&He.remove(e,"handle events")}},dispatch:function(e){var t,n,r,o,i,s,a=be.event.fix(e),l=new Array(arguments.length),u=(He.get(this,"events")||{})[a.type]||[],c=be.event.special[a.type]||{};for(l[0]=a,t=1;t<arguments.length;t++)l[t]=arguments[t];if(a.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,a)){for(s=be.event.handlers.call(this,a,u),t=0;(o=s[t++])&&!a.isPropagationStopped();)for(a.currentTarget=o.elem,n=0;(i=o.handlers[n++])&&!a.isImmediatePropagationStopped();)a.rnamespace&&!a.rnamespace.test(i.namespace)||(a.handleObj=i,a.data=i.data,void 0!==(r=((be.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l))&&!1===(a.result=r)&&(a.preventDefault(),a.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,a),a.result}},handlers:function(e,t){var n,r,o,i,s,a=[],l=t.delegateCount,u=e.target;if(l&&u.nodeType&&!("click"===e.type&&e.button>=1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&("click"!==e.type||!0!==u.disabled)){for(i=[],s={},n=0;n<l;n++)r=t[n],o=r.selector+" ",void 0===s[o]&&(s[o]=r.needsContext?be(o,this).index(u)>-1:be.find(o,this,null,[u]).length),s[o]&&i.push(r);i.length&&a.push({elem:u,handlers:i})}return u=this,l<t.length&&a.push({elem:u,handlers:t.slice(l)}),a},addProp:function(e,t){Object.defineProperty(be.Event.prototype,e,{enumerable:!0,configurable:!0,get:be.isFunction(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[be.expando]?e:new be.Event(e)},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==L()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===L()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&u(this,"input"))return this.click(),!1},_default:function(e){return u(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},be.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},be.Event=function(e,t){if(!(this instanceof be.Event))return new be.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?N:T,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&be.extend(this,t),this.timeStamp=e&&e.timeStamp||be.now(),this[be.expando]=!0},be.Event.prototype={constructor:be.Event,isDefaultPrevented:T,isPropagationStopped:T,isImmediatePropagationStopped:T,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=N,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=N,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=N,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},be.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&tt.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&nt.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},be.event.addProp),be.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){be.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,o=e.relatedTarget,i=e.handleObj;return o&&(o===r||be.contains(r,o))||(e.type=i.origType,n=i.handler.apply(this,arguments),e.type=t),n}}}),be.fn.extend({on:function(e,t,n,r){return k(this,e,t,n,r)},one:function(e,t,n,r){return k(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,be(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"===(void 0===e?"undefined":o(e))){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=T),this.each(function(){be.event.remove(this,e,n,t)})}});var ot=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,it=/<script|<style|<link/i,st=/checked\s*(?:[^=]|=\s*.checked.)/i,at=/^true\/(.*)/,lt=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;be.extend({htmlPrefilter:function(e){return e.replace(ot,"<$1></$2>")},clone:function(e,t,n){var r,o,i,s,a=e.cloneNode(!0),l=be.contains(e.ownerDocument,e);if(!(ge.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||be.isXMLDoc(e)))for(s=x(a),i=x(e),r=0,o=i.length;r<o;r++)j(i[r],s[r]);if(t)if(n)for(i=i||x(e),s=s||x(a),r=0,o=i.length;r<o;r++)R(i[r],s[r]);else R(e,a);return s=x(a,"script"),s.length>0&&S(s,!l&&x(e,"script")),a},cleanData:function(e){for(var t,n,r,o=be.event.special,i=0;void 0!==(n=e[i]);i++)if(Me(n)){if(t=n[He.expando]){if(t.events)for(r in t.events)o[r]?be.event.remove(n,r):be.removeEvent(n,r,t.handle);n[He.expando]=void 0}n[qe.expando]&&(n[qe.expando]=void 0)}}}),be.fn.extend({detach:function(e){return F(this,e,!0)},remove:function(e){return F(this,e)},text:function(e){return Ie(this,function(e){return void 0===e?be.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return D(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){P(this,e).appendChild(e)}})},prepend:function(){return D(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=P(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return D(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return D(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(be.cleanData(x(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return be.clone(this,e,t)})},html:function(e){return Ie(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!it.test(e)&&!Ye[(Ze.exec(e)||["",""])[1].toLowerCase()]){e=be.htmlPrefilter(e);try{for(;n<r;n++)t=this[n]||{},1===t.nodeType&&(be.cleanData(x(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=[];return D(this,arguments,function(t){var n=this.parentNode;be.inArray(this,e)<0&&(be.cleanData(x(this)),n&&n.replaceChild(t,this))},e)}}),be.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){be.fn[e]=function(e){for(var n,r=[],o=be(e),i=o.length-1,s=0;s<=i;s++)n=s===i?this:this.clone(!0),be(o[s])[t](n),pe.apply(r,n.get());return this.pushStack(r)}});var ut=/^margin/,ct=new RegExp("^("+Ue+")(?!px)[a-z%]+$","i"),pt=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=i),t.getComputedStyle(e)};!function(){function e(){if(a){a.style.cssText="box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",a.innerHTML="",et.appendChild(s);var e=i.getComputedStyle(a);t="1%"!==e.top,o="2px"===e.marginLeft,n="4px"===e.width,a.style.marginRight="50%",r="4px"===e.marginRight,et.removeChild(s),a=null}}var t,n,r,o,s=ae.createElement("div"),a=ae.createElement("div");a.style&&(a.style.backgroundClip="content-box",a.cloneNode(!0).style.backgroundClip="",ge.clearCloneStyle="content-box"===a.style.backgroundClip,s.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",s.appendChild(a),be.extend(ge,{pixelPosition:function(){return e(),t},boxSizingReliable:function(){return e(),n},pixelMarginRight:function(){return e(),r},reliableMarginLeft:function(){return e(),o}}))}();var ft=/^(none|table(?!-c[ea]).+)/,dt=/^--/,ht={position:"absolute",visibility:"hidden",display:"block"},yt={letterSpacing:"0",fontWeight:"400"},mt=["Webkit","Moz","ms"],vt=ae.createElement("div").style;be.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=I(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{float:"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,s,a,l=be.camelCase(t),u=dt.test(t),c=e.style;if(u||(t=q(l)),a=be.cssHooks[t]||be.cssHooks[l],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:c[t];s=void 0===n?"undefined":o(n),"string"===s&&(i=$e.exec(n))&&i[1]&&(n=C(e,t,i),s="number"),null!=n&&n===n&&("number"===s&&(n+=i&&i[3]||(be.cssNumber[l]?"":"px")),ge.clearCloneStyle||""!==n||0!==t.indexOf("background")||(c[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?c.setProperty(t,n):c[t]=n))}},css:function(e,t,n,r){var o,i,s,a=be.camelCase(t);return dt.test(t)||(t=q(a)),s=be.cssHooks[t]||be.cssHooks[a],s&&"get"in s&&(o=s.get(e,!0,n)),void 0===o&&(o=I(e,t,r)),"normal"===o&&t in yt&&(o=yt[t]),""===n||n?(i=parseFloat(o),!0===n||isFinite(i)?i||0:o):o}}),be.each(["height","width"],function(e,t){be.cssHooks[t]={get:function(e,n,r){if(n)return!ft.test(be.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?U(e,t,r):Ve(e,ht,function(){return U(e,t,r)})},set:function(e,n,r){var o,i=r&&pt(e),s=r&&W(e,t,r,"border-box"===be.css(e,"boxSizing",!1,i),i);return s&&(o=$e.exec(n))&&"px"!==(o[3]||"px")&&(e.style[t]=n,n=be.css(e,t)),B(e,n,s)}}}),be.cssHooks.marginLeft=M(ge.reliableMarginLeft,function(e,t){if(t)return(parseFloat(I(e,"marginLeft"))||e.getBoundingClientRect().left-Ve(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),be.each({margin:"",padding:"",border:"Width"},function(e,t){be.cssHooks[e+t]={expand:function(n){for(var r=0,o={},i="string"==typeof n?n.split(" "):[n];r<4;r++)o[e+Ke[r]+t]=i[r]||i[r-2]||i[0];return o}},ut.test(e)||(be.cssHooks[e+t].set=B)}),be.fn.extend({css:function(e,t){return Ie(this,function(e,t,n){var r,o,i={},s=0;if(Array.isArray(t)){for(r=pt(e),o=t.length;s<o;s++)i[t[s]]=be.css(e,t[s],!1,r);return i}return void 0!==n?be.style(e,t,n):be.css(e,t)},e,t,arguments.length>1)}}),be.Tween=$,$.prototype={constructor:$,init:function(e,t,n,r,o,i){this.elem=e,this.prop=n,this.easing=o||be.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=i||(be.cssNumber[n]?"":"px")},cur:function(){var e=$.propHooks[this.prop];return e&&e.get?e.get(this):$.propHooks._default.get(this)},run:function(e){var t,n=$.propHooks[this.prop];return this.options.duration?this.pos=t=be.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):$.propHooks._default.set(this),this}},$.prototype.init.prototype=$.prototype,$.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=be.css(e.elem,e.prop,""),t&&"auto"!==t?t:0)},set:function(e){be.fx.step[e.prop]?be.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[be.cssProps[e.prop]]&&!be.cssHooks[e.prop]?e.elem[e.prop]=e.now:be.style(e.elem,e.prop,e.now+e.unit)}}},$.propHooks.scrollTop=$.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},be.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},be.fx=$.prototype.init,be.fx.step={};var gt,bt,Ct=/^(?:toggle|show|hide)$/,_t=/queueHooks$/;be.Animation=be.extend(J,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return C(n.elem,e,$e.exec(t),n),n}]},tweener:function(e,t){be.isFunction(e)?(t=e,e=["*"]):e=e.match(je);for(var n,r=0,o=e.length;r<o;r++)n=e[r],J.tweeners[n]=J.tweeners[n]||[],J.tweeners[n].unshift(t)},prefilters:[z],prefilter:function(e,t){t?J.prefilters.unshift(e):J.prefilters.push(e)}}),be.speed=function(e,t,n){var r=e&&"object"===(void 0===e?"undefined":o(e))?be.extend({},e):{complete:n||!n&&t||be.isFunction(e)&&e,duration:e,easing:n&&t||t&&!be.isFunction(t)&&t};return be.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in be.fx.speeds?r.duration=be.fx.speeds[r.duration]:r.duration=be.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){be.isFunction(r.old)&&r.old.call(this),r.queue&&be.dequeue(this,r.queue)},r},be.fn.extend({fadeTo:function(e,t,n,r){return this.filter(Ge).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var o=be.isEmptyObject(e),i=be.speed(t,n,r),s=function(){var t=J(this,be.extend({},e),i);(o||He.get(this,"finish"))&&t.stop(!0)};return s.finish=s,o||!1===i.queue?this.each(s):this.queue(i.queue,s)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&!1!==e&&this.queue(e||"fx",[]),this.each(function(){var t=!0,o=null!=e&&e+"queueHooks",i=be.timers,s=He.get(this);if(o)s[o]&&s[o].stop&&r(s[o]);else for(o in s)s[o]&&s[o].stop&&_t.test(o)&&r(s[o]);for(o=i.length;o--;)i[o].elem!==this||null!=e&&i[o].queue!==e||(i[o].anim.stop(n),t=!1,i.splice(o,1));!t&&n||be.dequeue(this,e)})},finish:function(e){return!1!==e&&(e=e||"fx"),this.each(function(){var t,n=He.get(this),r=n[e+"queue"],o=n[e+"queueHooks"],i=be.timers,s=r?r.length:0;for(n.finish=!0,be.queue(this,e,[]),o&&o.stop&&o.stop.call(this,!0),t=i.length;t--;)i[t].elem===this&&i[t].queue===e&&(i[t].anim.stop(!0),i.splice(t,1));for(t=0;t<s;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),be.each(["toggle","show","hide"],function(e,t){var n=be.fn[t];be.fn[t]=function(e,r,o){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(V(t,!0),e,r,o)}}),be.each({slideDown:V("show"),slideUp:V("hide"),slideToggle:V("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){be.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),be.timers=[],be.fx.tick=function(){var e,t=0,n=be.timers;for(gt=be.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||be.fx.stop(),gt=void 0},be.fx.timer=function(e){be.timers.push(e),be.fx.start()},be.fx.interval=13,be.fx.start=function(){bt||(bt=!0,K())},be.fx.stop=function(){bt=null},be.fx.speeds={slow:600,fast:200,_default:400},be.fn.delay=function(e,t){return e=be.fx?be.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=i.setTimeout(t,e);n.stop=function(){i.clearTimeout(r)}})},function(){var e=ae.createElement("input"),t=ae.createElement("select"),n=t.appendChild(ae.createElement("option"));e.type="checkbox",ge.checkOn=""!==e.value,ge.optSelected=n.selected,e=ae.createElement("input"),e.value="t",e.type="radio",ge.radioValue="t"===e.value}();var wt,xt=be.expr.attrHandle;be.fn.extend({attr:function(e,t){return Ie(this,be.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){be.removeAttr(this,e)})}}),be.extend({attr:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return void 0===e.getAttribute?be.prop(e,t,n):(1===i&&be.isXMLDoc(e)||(o=be.attrHooks[t.toLowerCase()]||(be.expr.match.bool.test(t)?wt:void 0)),void 0!==n?null===n?void be.removeAttr(e,t):o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:(e.setAttribute(t,n+""),n):o&&"get"in o&&null!==(r=o.get(e,t))?r:(r=be.find.attr(e,t),null==r?void 0:r))},attrHooks:{type:{set:function(e,t){if(!ge.radioValue&&"radio"===t&&u(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,o=t&&t.match(je);if(o&&1===e.nodeType)for(;n=o[r++];)e.removeAttribute(n)}}),wt={set:function(e,t,n){return!1===t?be.removeAttr(e,n):e.setAttribute(n,n),n}},be.each(be.expr.match.bool.source.match(/\w+/g),function(e,t){var n=xt[t]||be.find.attr;xt[t]=function(e,t,r){var o,i,s=t.toLowerCase();return r||(i=xt[s],xt[s]=o,o=null!=n(e,t,r)?s:null,xt[s]=i),o}});var St=/^(?:input|select|textarea|button)$/i,Et=/^(?:a|area)$/i;be.fn.extend({prop:function(e,t){return Ie(this,be.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[be.propFix[e]||e]})}}),be.extend({prop:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return 1===i&&be.isXMLDoc(e)||(t=be.propFix[t]||t,o=be.propHooks[t]),void 0!==n?o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:e[t]=n:o&&"get"in o&&null!==(r=o.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=be.find.attr(e,"tabindex");return t?parseInt(t,10):St.test(e.nodeName)||Et.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),ge.optSelected||(be.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),be.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){be.propFix[this.toLowerCase()]=this}),be.fn.extend({addClass:function(e){var t,n,r,o,i,s,a,l=0;if(be.isFunction(e))return this.each(function(t){be(this).addClass(e.call(this,t,Q(this)))});if("string"==typeof e&&e)for(t=e.match(je)||[];n=this[l++];)if(o=Q(n),r=1===n.nodeType&&" "+Y(o)+" "){for(s=0;i=t[s++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");a=Y(r),o!==a&&n.setAttribute("class",a)}return this},removeClass:function(e){var t,n,r,o,i,s,a,l=0;if(be.isFunction(e))return this.each(function(t){be(this).removeClass(e.call(this,t,Q(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(je)||[];n=this[l++];)if(o=Q(n),r=1===n.nodeType&&" "+Y(o)+" "){for(s=0;i=t[s++];)for(;r.indexOf(" "+i+" ")>-1;)r=r.replace(" "+i+" "," ");a=Y(r),o!==a&&n.setAttribute("class",a)}return this},toggleClass:function(e,t){var n=void 0===e?"undefined":o(e);return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):be.isFunction(e)?this.each(function(n){be(this).toggleClass(e.call(this,n,Q(this),t),t)}):this.each(function(){var t,r,o,i;if("string"===n)for(r=0,o=be(this),i=e.match(je)||[];t=i[r++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||(t=Q(this),t&&He.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":He.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+Y(Q(n))+" ").indexOf(t)>-1)return!0;return!1}});var Nt=/\r/g;be.fn.extend({val:function(e){var t,n,r,o=this[0];{if(arguments.length)return r=be.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=r?e.call(this,n,be(this).val()):e,null==o?o="":"number"==typeof o?o+="":Array.isArray(o)&&(o=be.map(o,function(e){return null==e?"":e+""})),(t=be.valHooks[this.type]||be.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,o,"value")||(this.value=o))});if(o)return(t=be.valHooks[o.type]||be.valHooks[o.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(o,"value"))?n:(n=o.value,"string"==typeof n?n.replace(Nt,""):null==n?"":n)}}}),be.extend({valHooks:{option:{get:function(e){var t=be.find.attr(e,"value");return null!=t?t:Y(be.text(e))}},select:{get:function(e){var t,n,r,o=e.options,i=e.selectedIndex,s="select-one"===e.type,a=s?null:[],l=s?i+1:o.length;for(r=i<0?l:s?i:0;r<l;r++)if(n=o[r],(n.selected||r===i)&&!n.disabled&&(!n.parentNode.disabled||!u(n.parentNode,"optgroup"))){if(t=be(n).val(),s)return t;a.push(t)}return a},set:function(e,t){for(var n,r,o=e.options,i=be.makeArray(t),s=o.length;s--;)r=o[s],(r.selected=be.inArray(be.valHooks.option.get(r),i)>-1)&&(n=!0);return n||(e.selectedIndex=-1),i}}}}),be.each(["radio","checkbox"],function(){be.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=be.inArray(be(e).val(),t)>-1}},ge.checkOn||(be.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Tt=/^(?:focusinfocus|focusoutblur)$/;be.extend(be.event,{trigger:function(e,t,n,r){var s,a,l,u,c,p,f,d=[n||ae],h=ye.call(e,"type")?e.type:e,y=ye.call(e,"namespace")?e.namespace.split("."):[];if(a=l=n=n||ae,3!==n.nodeType&&8!==n.nodeType&&!Tt.test(h+be.event.triggered)&&(h.indexOf(".")>-1&&(y=h.split("."),h=y.shift(),y.sort()),c=h.indexOf(":")<0&&"on"+h,e=e[be.expando]?e:new be.Event(h,"object"===(void 0===e?"undefined":o(e))&&e),e.isTrigger=r?2:3,e.namespace=y.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+y.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:be.makeArray(t,[e]),f=be.event.special[h]||{},r||!f.trigger||!1!==f.trigger.apply(n,t))){if(!r&&!f.noBubble&&!be.isWindow(n)){for(u=f.delegateType||h,Tt.test(u+h)||(a=a.parentNode);a;a=a.parentNode)d.push(a),l=a;l===(n.ownerDocument||ae)&&d.push(l.defaultView||l.parentWindow||i)}for(s=0;(a=d[s++])&&!e.isPropagationStopped();)e.type=s>1?u:f.bindType||h,p=(He.get(a,"events")||{})[e.type]&&He.get(a,"handle"),p&&p.apply(a,t),(p=c&&a[c])&&p.apply&&Me(a)&&(e.result=p.apply(a,t),!1===e.result&&e.preventDefault());return e.type=h,r||e.isDefaultPrevented()||f._default&&!1!==f._default.apply(d.pop(),t)||!Me(n)||c&&be.isFunction(n[h])&&!be.isWindow(n)&&(l=n[c],l&&(n[c]=null),be.event.triggered=h,n[h](),be.event.triggered=void 0,l&&(n[c]=l)),e.result}},simulate:function(e,t,n){var r=be.extend(new be.Event,n,{type:e,isSimulated:!0});be.event.trigger(r,null,t)}}),be.fn.extend({trigger:function(e,t){return this.each(function(){be.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return be.event.trigger(e,t,n,!0)}}),be.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){be.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),be.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),ge.focusin="onfocusin"in i,ge.focusin||be.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){be.event.simulate(t,e.target,be.event.fix(e))};be.event.special[t]={setup:function(){var r=this.ownerDocument||this,o=He.access(r,t);o||r.addEventListener(e,n,!0),He.access(r,t,(o||0)+1)},teardown:function(){var r=this.ownerDocument||this,o=He.access(r,t)-1;o?He.access(r,t,o):(r.removeEventListener(e,n,!0),He.remove(r,t))}}});var Lt=i.location,kt=be.now(),Pt=/\?/;be.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new i.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||be.error("Invalid XML: "+e),t};var Ot=/\[\]$/,At=/\r?\n/g,Rt=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;be.param=function(e,t){var n,r=[],o=function(e,t){var n=be.isFunction(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!be.isPlainObject(e))be.each(e,function(){o(this.name,this.value)});else for(n in e)ee(n,e[n],t,o);return r.join("&")},be.fn.extend({serialize:function(){return be.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=be.prop(this,"elements");return e?be.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!be(this).is(":disabled")&&jt.test(this.nodeName)&&!Rt.test(e)&&(this.checked||!ze.test(e))}).map(function(e,t){var n=be(this).val();return null==n?null:Array.isArray(n)?be.map(n,function(e){return{name:t.name,value:e.replace(At,"\r\n")}}):{name:t.name,value:n.replace(At,"\r\n")}}).get()}});var Dt=/%20/g,Ft=/#.*$/,It=/([?&])_=[^&]*/,Mt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ht=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,qt=/^(?:GET|HEAD)$/,Bt=/^\/\//,Wt={},Ut={},$t="*/".concat("*"),Kt=ae.createElement("a");Kt.href=Lt.href,be.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Lt.href,type:"GET",isLocal:Ht.test(Lt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":be.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?re(re(e,be.ajaxSettings),t):re(be.ajaxSettings,e)},ajaxPrefilter:te(Wt),ajaxTransport:te(Ut),ajax:function(e,t){function n(e,t,n,o){var l,c,d,h,_,w=t;p||(p=!0,u&&i.clearTimeout(u),r=void 0,a=o||"",S.readyState=e>0?4:0,l=e>=200&&e<300||304===e,n&&(h=oe(y,S,n)),h=ie(y,h,S,l),l?(y.ifModified&&(_=S.getResponseHeader("Last-Modified"),_&&(be.lastModified[s]=_),(_=S.getResponseHeader("etag"))&&(be.etag[s]=_)),204===e||"HEAD"===y.type?w="nocontent":304===e?w="notmodified":(w=h.state,c=h.data,d=h.error,l=!d)):(d=w,!e&&w||(w="error",e<0&&(e=0))),S.status=e,S.statusText=(t||w)+"",l?g.resolveWith(m,[c,w,S]):g.rejectWith(m,[S,w,d]),S.statusCode(C),C=void 0,f&&v.trigger(l?"ajaxSuccess":"ajaxError",[S,y,l?c:d]),b.fireWith(m,[S,w]),f&&(v.trigger("ajaxComplete",[S,y]),--be.active||be.event.trigger("ajaxStop")))}"object"===(void 0===e?"undefined":o(e))&&(t=e,e=void 0),t=t||{};var r,s,a,l,u,c,p,f,d,h,y=be.ajaxSetup({},t),m=y.context||y,v=y.context&&(m.nodeType||m.jquery)?be(m):be.event,g=be.Deferred(),b=be.Callbacks("once memory"),C=y.statusCode||{},_={},w={},x="canceled",S={readyState:0,getResponseHeader:function(e){var t;if(p){if(!l)for(l={};t=Mt.exec(a);)l[t[1].toLowerCase()]=t[2];t=l[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return p?a:null},setRequestHeader:function(e,t){return null==p&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,_[e]=t),this},overrideMimeType:function(e){return null==p&&(y.mimeType=e),this},statusCode:function(e){var t;if(e)if(p)S.always(e[S.status]);else for(t in e)C[t]=[C[t],e[t]];return this},abort:function(e){var t=e||x;return r&&r.abort(t),n(0,t),this}};if(g.promise(S),y.url=((e||y.url||Lt.href)+"").replace(Bt,Lt.protocol+"//"),y.type=t.method||t.type||y.method||y.type,y.dataTypes=(y.dataType||"*").toLowerCase().match(je)||[""],null==y.crossDomain){c=ae.createElement("a");try{c.href=y.url,c.href=c.href,y.crossDomain=Kt.protocol+"//"+Kt.host!=c.protocol+"//"+c.host}catch(e){y.crossDomain=!0}}if(y.data&&y.processData&&"string"!=typeof y.data&&(y.data=be.param(y.data,y.traditional)),ne(Wt,y,t,S),p)return S;f=be.event&&y.global,f&&0==be.active++&&be.event.trigger("ajaxStart"),y.type=y.type.toUpperCase(),y.hasContent=!qt.test(y.type),s=y.url.replace(Ft,""),y.hasContent?y.data&&y.processData&&0===(y.contentType||"").indexOf("application/x-www-form-urlencoded")&&(y.data=y.data.replace(Dt,"+")):(h=y.url.slice(s.length),y.data&&(s+=(Pt.test(s)?"&":"?")+y.data,delete y.data),!1===y.cache&&(s=s.replace(It,"$1"),h=(Pt.test(s)?"&":"?")+"_="+kt+++h),y.url=s+h),y.ifModified&&(be.lastModified[s]&&S.setRequestHeader("If-Modified-Since",be.lastModified[s]),be.etag[s]&&S.setRequestHeader("If-None-Match",be.etag[s])),(y.data&&y.hasContent&&!1!==y.contentType||t.contentType)&&S.setRequestHeader("Content-Type",y.contentType),S.setRequestHeader("Accept",y.dataTypes[0]&&y.accepts[y.dataTypes[0]]?y.accepts[y.dataTypes[0]]+("*"!==y.dataTypes[0]?", "+$t+"; q=0.01":""):y.accepts["*"]);for(d in y.headers)S.setRequestHeader(d,y.headers[d]);if(y.beforeSend&&(!1===y.beforeSend.call(m,S,y)||p))return S.abort();if(x="abort",b.add(y.complete),S.done(y.success),S.fail(y.error),r=ne(Ut,y,t,S)){if(S.readyState=1,f&&v.trigger("ajaxSend",[S,y]),p)return S;y.async&&y.timeout>0&&(u=i.setTimeout(function(){S.abort("timeout")},y.timeout));try{p=!1,r.send(_,n)}catch(e){if(p)throw e;n(-1,e)}}else n(-1,"No Transport");return S},getJSON:function(e,t,n){return be.get(e,t,n,"json")},getScript:function(e,t){return be.get(e,void 0,t,"script")}}),be.each(["get","post"],function(e,t){be[t]=function(e,n,r,o){return be.isFunction(n)&&(o=o||r,r=n,n=void 0),be.ajax(be.extend({url:e,type:t,dataType:o,data:n,success:r},be.isPlainObject(e)&&e))}}),be._evalUrl=function(e){return be.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},be.fn.extend({wrapAll:function(e){var t;return this[0]&&(be.isFunction(e)&&(e=e.call(this[0])),t=be(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return be.isFunction(e)?this.each(function(t){be(this).wrapInner(e.call(this,t))}):this.each(function(){var t=be(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=be.isFunction(e);return this.each(function(n){be(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){be(this).replaceWith(this.childNodes)}),this}}),be.expr.pseudos.hidden=function(e){return!be.expr.pseudos.visible(e)},be.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},be.ajaxSettings.xhr=function(){try{return new i.XMLHttpRequest}catch(e){}};var Gt={0:200,1223:204},Vt=be.ajaxSettings.xhr();ge.cors=!!Vt&&"withCredentials"in Vt,ge.ajax=Vt=!!Vt,be.ajaxTransport(function(e){var t,n;if(ge.cors||Vt&&!e.crossDomain)return{send:function(r,o){var s,a=e.xhr();if(a.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(s in e.xhrFields)a[s]=e.xhrFields[s];e.mimeType&&a.overrideMimeType&&a.overrideMimeType(e.mimeType),e.crossDomain||r["X-Requested-With"]||(r["X-Requested-With"]="XMLHttpRequest");for(s in r)a.setRequestHeader(s,r[s]);t=function(e){return function(){t&&(t=n=a.onload=a.onerror=a.onabort=a.onreadystatechange=null,"abort"===e?a.abort():"error"===e?"number"!=typeof a.status?o(0,"error"):o(a.status,a.statusText):o(Gt[a.status]||a.status,a.statusText,"text"!==(a.responseType||"text")||"string"!=typeof a.responseText?{binary:a.response}:{text:a.responseText},a.getAllResponseHeaders()))}},a.onload=t(),n=a.onerror=t("error"),void 0!==a.onabort?a.onabort=n:a.onreadystatechange=function(){4===a.readyState&&i.setTimeout(function(){t&&n()})},t=t("abort");try{a.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}}),be.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),be.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return be.globalEval(e),e}}}),be.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),be.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,o){t=be("<script>").prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&o("error"===e.type?404:200,e.type)}),ae.head.appendChild(t[0])},abort:function(){n&&n()}}}});var Xt=[],zt=/(=)\?(?=&|$)|\?\?/;be.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||be.expando+"_"+kt++;return this[e]=!0,e}}),be.ajaxPrefilter("json jsonp",function(e,t,n){var r,o,s,a=!1!==e.jsonp&&(zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=be.isFunction(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(zt,"$1"+r):!1!==e.jsonp&&(e.url+=(Pt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return s||be.error(r+" was not called"),s[0]},e.dataTypes[0]="json",o=i[r],i[r]=function(){s=arguments},n.always(function(){void 0===o?be(i).removeProp(r):i[r]=o,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),s&&be.isFunction(o)&&o(s[0]),s=o=void 0}),"script"}),ge.createHTMLDocument=function(){var e=ae.implementation.createHTMLDocument("").body;return e.innerHTML="<form></form><form></form>",2===e.childNodes.length}(),be.parseHTML=function(e,t,n){if("string"!=typeof e)return[];"boolean"==typeof t&&(n=t,t=!1);var r,o,i;return t||(ge.createHTMLDocument?(t=ae.implementation.createHTMLDocument(""),r=t.createElement("base"),r.href=ae.location.href,t.head.appendChild(r)):t=ae),o=Le.exec(e),i=!n&&[],o?[t.createElement(o[1])]:(o=E([e],t,i),i&&i.length&&be(i).remove(),be.merge([],o.childNodes))},be.fn.load=function(e,t,n){var r,i,s,a=this,l=e.indexOf(" ");return l>-1&&(r=Y(e.slice(l)),e=e.slice(0,l)),be.isFunction(t)?(n=t,t=void 0):t&&"object"===(void 0===t?"undefined":o(t))&&(i="POST"),a.length>0&&be.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){s=arguments,a.html(r?be("<div>").append(be.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,s||[e.responseText,t,e])})}),this},be.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){be.fn[t]=function(e){return this.on(t,e)}}),be.expr.pseudos.animated=function(e){return be.grep(be.timers,function(t){return e===t.elem}).length},be.offset={setOffset:function(e,t,n){var r,o,i,s,a,l,u,c=be.css(e,"position"),p=be(e),f={};"static"===c&&(e.style.position="relative"),a=p.offset(),i=be.css(e,"top"),l=be.css(e,"left"),u=("absolute"===c||"fixed"===c)&&(i+l).indexOf("auto")>-1,u?(r=p.position(),s=r.top,o=r.left):(s=parseFloat(i)||0,o=parseFloat(l)||0),be.isFunction(t)&&(t=t.call(e,n,be.extend({},a))),null!=t.top&&(f.top=t.top-a.top+s),null!=t.left&&(f.left=t.left-a.left+o),"using"in t?t.using.call(e,f):p.css(f)}},be.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){be.offset.setOffset(this,e,t)});var t,n,r,o,i=this[0];if(i)return i.getClientRects().length?(r=i.getBoundingClientRect(),t=i.ownerDocument,n=t.documentElement,o=t.defaultView,{top:r.top+o.pageYOffset-n.clientTop,left:r.left+o.pageXOffset-n.clientLeft}):{top:0,left:0}},position:function(){if(this[0]){var e,t,n=this[0],r={top:0,left:0};return"fixed"===be.css(n,"position")?t=n.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),u(e[0],"html")||(r=e.offset()),r={top:r.top+be.css(e[0],"borderTopWidth",!0),left:r.left+be.css(e[0],"borderLeftWidth",!0)}),{top:t.top-r.top-be.css(n,"marginTop",!0),left:t.left-r.left-be.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent;e&&"static"===be.css(e,"position");)e=e.offsetParent;return e||et})}}),be.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n="pageYOffset"===t;be.fn[e]=function(r){return Ie(this,function(e,r,o){var i;if(be.isWindow(e)?i=e:9===e.nodeType&&(i=e.defaultView),void 0===o)return i?i[t]:e[r];i?i.scrollTo(n?i.pageXOffset:o,n?o:i.pageYOffset):e[r]=o},e,r,arguments.length)}}),be.each(["top","left"],function(e,t){be.cssHooks[t]=M(ge.pixelPosition,function(e,n){if(n)return n=I(e,t),ct.test(n)?be(e).position()[t]+"px":n})}),be.each({Height:"height",Width:"width"},function(e,t){be.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){be.fn[r]=function(o,i){var s=arguments.length&&(n||"boolean"!=typeof o),a=n||(!0===o||!0===i?"margin":"border");return Ie(this,function(t,n,o){var i;return be.isWindow(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):void 0===o?be.css(t,n,a):be.style(t,n,o,a)},t,s?o:void 0,s)}})}),be.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),be.holdReady=function(e){e?be.readyWait++:be.ready(!0)},be.isArray=Array.isArray,be.parseJSON=JSON.parse,be.nodeName=u,n=[],void 0!==(r=function(){return be}.apply(t,n))&&(e.exports=r);var Zt=i.jQuery,Jt=i.$;return be.noConflict=function(e){return i.$===be&&(i.$=Jt),e&&i.jQuery===be&&(i.jQuery=Zt),be},s||(i.jQuery=i.$=be),be})}).call(t,n(5)(e))},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),l=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return i(t,e),s(t,[{key:"render",value:function(){return(0,a.h)("div",null,this.props.children)}}]),t}(a.Component);t.default=l},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),l=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={activeKey:e.defaultActiveKey},n}return i(t,e),s(t,[{key:"render",value:function(){var e,t=[],n=[];for(e=0;e<this.props.children.length;e++){var r=this.props.children[e];void 0!==r&&(t.push(this._buildNav(r)),n.push(this._buildContent(r)))}return(0,a.h)("div",{className:this.props.className},(0,a.h)("ul",{className:"nav nav-tabs",role:"tablist"},t),(0,a.h)("div",{className:"tab-content"},n))}},{key:"getActiveKey",value:function(){return this.state.activeKey}},{key:"setActiveKey",value:function(e){this.setState({activeKey:e})}},{key:"_buildNav",value:function(e){var t;this.getActiveKey()===e.attributes.eventKey&&(t="active");var n=this,r=function(t){n._handleTabClick(t,e)};return(0,a.h)("li",{role:"presentation",className:t,key:e.attributes.eventKey},(0,a.h)("a",{href:"#"+this._buildIdForTab(e),"aria-controls":this._buildIdForTab(e),role:"tab","data-toggle":"tab",onClick:r},e.attributes.title))}},{key:"_buildContent",value:function(e){var t="tab-pane";return this.getActiveKey()===e.attributes.eventKey&&(t+=" active"),(0,a.h)("div",{role:"tabpanel",className:t,id:this._buildIdForTab(e),key:e.attributes.eventKey},e)}},{key:"_buildIdForTab",value:function(e){return e.attributes.id?e.attributes.id:void 0===this.props.id||""===this.props.id?e.attributes.eventKey:this.props.id+"-"+e.attributes.eventKey}},{key:"_handleTabClick",value:function(e,t){e.preventDefault(),this.setActiveKey(t.attributes.eventKey)}}]),t}(a.Component);t.default=l},function(e,t,n){"use strict";function r(e){window.ErrorPage=e;for(var t=0;t<window.errorPageExtensions.length;t++)window.errorPageExtensions[t]()}var o=n(0);n(1),n(22),n(16);var i=n(9),s=function(e){return e&&e.__esModule?e:{default:e}}(i);n(18),window.errorPageExtensions=[],window.renderErrorPage=function(){(0,o.render)((0,o.h)(s.default,{spec:window.spec,ref:r}),document.getElementById("root"))}},function(e,t,n){"use strict";e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function s(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),l=n(0),u=n(3),c=r(u),p=n(2),f=r(p),d=n(8),h=r(d),y=n(11),m=r(y),v=function(e){function t(){return o(this,t),i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return s(t,e),a(t,[{key:"render",value:function(){return(0,l.h)("div",{className:"details-view"},(0,l.h)("p",null,"Error ID: ",this.props.spec.error.id),(0,l.h)(c.default,{defaultActiveKey:"problem-location",id:"details-process-tabs"},(0,l.h)(f.default,{eventKey:"problem-location",title:"Problem location"},(0,l.h)("p",null),(0,l.h)(h.default,{spec:this.props.spec})),(0,l.h)(f.default,{eventKey:"core-process",title:this.props.spec.short_program_name+" core"},(0,l.h)("p",null),(0,l.h)(m.default,{spec:this.props.spec.diagnostics.core_process})),this.maybeRenderPreloaderProcessDetailsTab(),(0,l.h)(f.default,{eventKey:"subprocess",title:"Subprocess"},(0,l.h)("p",null),(0,l.h)(m.default,{spec:this.props.spec.diagnostics.subprocess})),(0,l.h)(f.default,{eventKey:"system-wide",title:"System-wide stats"},(0,l.h)("p",null),(0,l.h)("pre",null,this.props.spec.diagnostics.system_wide.system_metrics))))}},{key:"maybeRenderPreloaderProcessDetailsTab",value:function(){if("SPAWN_THROUGH_PRELOADER"===this.props.spec.journey.type)return(0,l.h)(f.default,{eventKey:"preloader",title:"Preloader process"},(0,l.h)("p",null),(0,l.h)(m.default,{spec:this.props.spec.diagnostics.preloader_process}))}}]),t}(l.Component);t.default=v},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),l=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return i(t,e),s(t,[{key:"render",value:function(){return(0,a.h)("div",null,(0,a.h)("p",null,"If you are stuck with a problem, please do not hesitate to contact one of the support resources."," "+this.props.spec.program_name+" ","has a friendly community of users who look out for each other. We —"," Passenger's ","authors — are also ready to help you whenever we can."),(0,a.h)("div",{className:"row"},(0,a.h)("div",{className:"col-sm-4"},(0,a.h)("h2",null,"Community support"),(0,a.h)("p",null,"Post a message to Stack Overflow. Support is provided by the community on a best-effort basis, so sometimes a bit of patience will help."),(0,a.h)("p",null,(0,a.h)("a",{href:"https://stackoverflow.com/questions/tagged/passenger",className:"btn btn-primary"},"Submit to Stack Overflow"))),(0,a.h)("div",{className:"col-sm-4"},(0,a.h)("h2",null,"Enterprise support"),(0,a.h)("p",null,"If you are a"," ",(0,a.h)("a",{href:"https://www.phusionpassenger.com/features#premium-features"},"Passenger Enterprise")," ","customer, then you are eligible for basic priority support."),(0,a.h)("p",null,(0,a.h)("small",null,"For most customers, this basic priority support has a response time of 3 working days, with a maximum of 1 support incident per month. Please consult your contract for the exact support level that you are eligible for.")),(0,a.h)("p",null,(0,a.h)("a",{href:"https://www.phusionpassenger.com/customers/help_support",className:"btn btn-primary"},"Submit Enterprise support ticket"))),(0,a.h)("div",{className:"col-sm-4"},(0,a.h)("h2",null,"Bug report"),(0,a.h)("p",null,"Do you suspect this error is a bug? Please send us a bug report."),(0,a.h)("p",null,(0,a.h)("em",null,"Please attach this error page")," so that we can help you better."),(0,a.h)("p",null,(0,a.h)("a",{href:"http://github.com/phusion/passenger/issues",className:"btn btn-primary"},"Submit bug report to Github")))))}}]),t}(a.Component);t.default=l},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0);n(17);var l=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return i(t,e),s(t,[{key:"render",value:function(){var e=this.props.spec.journey;return"SPAWN_DIRECTLY"===e.type?this.renderSpawnDirectlyJourney():"START_PRELOADER"===e.type?this.renderStartPreloaderJourney():this.renderSpawnThroughPreloaderJourney()}},{key:"renderSpawnDirectlyJourney",value:function(){var e=this;return(0,a.h)("table",{className:"journey spawn-directly"},(0,a.h)("thead",null,(0,a.h)("tr",null,(0,a.h)("th",{className:"server-core"},"In ",this.props.spec.short_program_name," core",(0,a.h)("br",null),(0,a.h)("small",null,"PID ",this.props.spec.diagnostics.core_process.pid)),(0,a.h)("th",null),(0,a.h)("th",{className:"subprocess"},"In subprocess",(0,a.h)("br",null),(0,a.h)("small",null,"PID ",this.props.spec.diagnostics.subprocess.pid||"unknown")))),(0,a.h)("tbody",null,(0,a.h)("tr",null,this.renderCell("server-core","Preparation work",["SPAWNING_KIT_PREPARATION"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core")),(0,a.h)("tr",null,this.renderCell("server-core","Spawn subprocess (fork())",["SPAWNING_KIT_FORK_SUBPROCESS"]),this.renderProcessBoundaryArrow(),this.renderCell("subprocess","Basic initialization before exec()",["SUBPROCESS_BEFORE_FIRST_EXEC"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core"),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,this.renderCell("server-core","Handshake with subprocess",["SPAWNING_KIT_HANDSHAKE_PERFORM"]),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Setup environment (1)",["SUBPROCESS_SPAWN_ENV_SETUPPER_BEFORE_SHELL"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core"),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,this.renderCell("server-core","Finish",["SPAWNING_KIT_FINISH"]),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Load OS shell",["SUBPROCESS_OS_SHELL"])),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Setup environment (2)",["SUBPROCESS_SPAWN_ENV_SETUPPER_AFTER_SHELL"])),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),function(){return e.props.spec.journey.steps.SUBPROCESS_EXEC_WRAPPER?e.props.spec.config.wrapper_supplied_by_third_party?[(0,a.h)("tr",{key:"exec-wrapper"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize third-party wrapper",["SUBPROCESS_EXEC_WRAPPER","SUBPROCESS_WRAPPER_PREPARATION"])),(0,a.h)("tr",{server:"sep1"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess"))]:[(0,a.h)("tr",{key:"exec-wrapper"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize language runtime",["SUBPROCESS_EXEC_WRAPPER","SUBPROCESS_WRAPPER_PREPARATION"])),(0,a.h)("tr",{key:"sep2"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess"))]:[]}(),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Load or execute application",["SUBPROCESS_APP_LOAD_OR_EXEC"])),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","App start listening for requests",["SUBPROCESS_LISTEN"])),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Finish",["SUBPROCESS_FINISH"]))))}},{key:"renderStartPreloaderJourney",value:function(){var e=this;return(0,a.h)("table",{className:"journey start-preloader"},(0,a.h)("thead",null,(0,a.h)("tr",null,(0,a.h)("th",{className:"server-core"},"In ",this.props.spec.short_program_name," core",(0,a.h)("br",null),(0,a.h)("small",null,"PID ",this.props.spec.diagnostics.core_process.pid)),(0,a.h)("th",null),(0,a.h)("th",{className:"subprocess"},"In subprocess",(0,a.h)("br",null),(0,a.h)("small",null,"PID ",this.props.spec.diagnostics.subprocess.pid||"unknown")))),(0,a.h)("tbody",null,(0,a.h)("tr",null,this.renderCell("server-core","Preparation work",["SPAWNING_KIT_PREPARATION"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core")),(0,a.h)("tr",null,this.renderCell("server-core","Spawn subprocess (fork())",["SPAWNING_KIT_FORK_SUBPROCESS"]),this.renderProcessBoundaryArrow(),this.renderCell("subprocess","Basic initialization before exec()",["SUBPROCESS_BEFORE_FIRST_EXEC"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core"),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,this.renderCell("server-core","Handshake with subprocess",["SPAWNING_KIT_HANDSHAKE_PERFORM"]),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Setup environment (1)",["SUBPROCESS_SPAWN_ENV_SETUPPER_BEFORE_SHELL"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core"),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,this.renderCell("server-core","Finish",["SPAWNING_KIT_FINISH"]),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Load OS shell",["SUBPROCESS_OS_SHELL"])),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Setup environment (2)",["SUBPROCESS_SPAWN_ENV_SETUPPER_AFTER_SHELL"])),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),function(){return e.props.spec.journey.steps.SUBPROCESS_EXEC_WRAPPER?e.props.spec.config.wrapper_supplied_by_third_party?[(0,a.h)("tr",{key:"exec-wrapper"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize language runtime",["SUBPROCESS_EXEC_WRAPPER"])),(0,a.h)("tr",{key:"sep1"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess")),(0,a.h)("tr",{key:"prep-inside-wrapper"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize third-party preloading wrapper",["SUBPROCESS_WRAPPER_PREPARATION"])),(0,a.h)("tr",{key:"sep2"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess"))]:[(0,a.h)("tr",{key:"exec-wrapper"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize language runtime",["SUBPROCESS_EXEC_WRAPPER"])),(0,a.h)("tr",{key:"sep1"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess")),(0,a.h)("tr",{key:"prep-inside-wrapper"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize "+e.props.spec.short_program_name+"-internal preloading wrapper",["SUBPROCESS_WRAPPER_PREPARATION"])),(0,a.h)("tr",{key:"sep2"},(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess"))]:[]}(),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Load application",["SUBPROCESS_APP_LOAD_OR_EXEC"])),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","App start listening for preloader commands",["SUBPROCESS_LISTEN"])),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,(0,a.h)("td",{className:"server-core"}),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Finish",["SUBPROCESS_FINISH"]))))}},{key:"renderSpawnThroughPreloaderJourney",value:function(){return(0,a.h)("table",{className:"journey spawn-through-preloader"},(0,a.h)("thead",null,(0,a.h)("tr",null,(0,a.h)("th",{className:"server-core"},"In ",this.props.spec.short_program_name,(0,a.h)("br",null),(0,a.h)("small",null,"PID ",this.props.spec.diagnostics.core_process.pid)),(0,a.h)("th",null),(0,a.h)("th",{className:"preloader"},"In preloader",(0,a.h)("br",null),(0,a.h)("small",null,"PID ",this.props.spec.diagnostics.preloader_process.pid||"unknown")),(0,a.h)("th",null),(0,a.h)("th",{className:"subprocess"},"In subprocess",(0,a.h)("br",null),(0,a.h)("small",null,"PID ",this.props.spec.diagnostics.subprocess.pid||"unknown")))),(0,a.h)("tbody",null,(0,a.h)("tr",null,this.renderCell("server-core","Preparation work",["SPAWNING_KIT_PREPARATION"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core")),(0,a.h)("tr",null,this.renderCell("server-core","Tell preloader to spawn a subprocess",["SPAWNING_KIT_CONNECT_TO_PRELOADER","SPAWNING_KIT_SEND_COMMAND_TO_PRELOADER"]),this.renderProcessBoundaryArrow("small"),this.renderCell("preloader","Preparation work",["PRELOADER_PREPARATION"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core"),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("preloader")),(0,a.h)("tr",null,this.renderCell("server-core","Receive and process preloader response",["SPAWNING_KIT_READ_RESPONSE_FROM_PRELOADER","SPAWNING_KIT_PARSE_RESPONSE_FROM_PRELOADER","SPAWNING_KIT_PROCESS_RESPONSE_FROM_PRELOADER"]),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("preloader","Spawn subprocess (fork())",["PRELOADER_FORK_SUBPROCESS"]),this.renderProcessBoundaryArrow("small"),this.renderCell("subprocess","Preparation",["SUBPROCESS_PREPARE_AFTER_FORKING_FROM_PRELOADER"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core"),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("preloader"),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,this.renderCell("server-core","Handshake with subprocess",["SPAWNING_KIT_HANDSHAKE_PERFORM"]),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("preloader","Send response to "+this.props.spec.short_program_name+" core",["PRELOADER_SEND_RESPONSE"]),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","App start listening",["SUBPROCESS_LISTEN"])),(0,a.h)("tr",null,this.renderStepSeparator("server-core"),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("preloader"),(0,a.h)("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),(0,a.h)("tr",null,this.renderCell("server-core","Finish",["SPAWNING_KIT_FINISH"]),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("preloader","Finish",["PRELOADER_FINISH"]),(0,a.h)("td",{className:"process-boundary"}),this.renderCell("subprocess","Finish",["SUBPROCESS_FINISH"]))))}},{key:"renderCell",value:function(e,t,n){function r(){var e;for(e=0;e<n.length;e++){var t=n[e];if("STEP_NOT_STARTED"!==s.steps[t].state)return!1}return!0}var o,i,s=this.props.spec.journey;!function(){var e;for(e=0;e<n.length;e++){var t=n[e];if("STEP_ERRORED"===s.steps[t].state)return!0}return!1}()?!function(){var e;for(e=0;e<n.length;e++){var t=n[e];if("STEP_PERFORMED"!==s.steps[t].state)return!1}return!0}()?r()?(o="not-started",i=(0,a.h)("span",{className:"glyphicon glyphicon-unchecked","aria-hidden":"true"})):(o="in-progress",i=(0,a.h)("span",{className:"glyphicon glyphicon-option-horizontal","aria-hidden":"true"})):(o="done",i=(0,a.h)("span",{className:"glyphicon glyphicon-ok","aria-hidden":"true"})):(o="error",i=(0,a.h)("span",{className:"glyphicon glyphicon-remove","aria-hidden":"true"}));var l=e+" "+o;return(0,a.h)("td",{className:l},(0,a.h)("span",{className:"status-label"},i),(0,a.h)("span",{className:"title"},t," ",function(){var e,t;for(e=0;e<n.length;e++){var o=n[e];void 0!==s.steps[o].duration?(void 0===t&&(t=0),t+=s.steps[o].duration):void 0!==s.steps[o].begin_time&&(void 0===t&&(t=0),t-=s.steps[o].begin_time.relative_timestamp)}if(void 0!==t)return r()?(0,a.h)("span",{className:"duration"},"— skipped"):(0,a.h)("span",{className:"duration"},"— ",t.toFixed(1),"s")}()))}},{key:"renderStepSeparator",value:function(e){return(0,a.h)("td",{className:e+" step-separator"},"|")}},{key:"renderProcessBoundaryArrow",value:function(e){var t;return t="small"===e?90:130,(0,a.h)("td",{className:"process-boundary arrow"},(0,a.h)("svg",{width:t,height:"20",viewBox:"0 0 130 20",version:"1.1",className:"arrow-image"},(0,a.h)("defs",{id:"defs4"},(0,a.h)("marker",{orient:"auto",refY:"0",refX:"0",id:"TriangleOutM",style:"overflow:visible"},(0,a.h)("path",{id:"path4287",d:"m 5.77,0 -8.65,5 0,-10 8.65,5 z",style:"fill:#aaa;fill-opacity:1;fill-rule:evenodd;stroke:#aaa;stroke-width:1pt;stroke-opacity:1",transform:"scale(0.4,0.4)"})),(0,a.h)("marker",{orient:"auto",refY:"0",refX:"0",id:"Arrow2Lend",style:"overflow:visible"},(0,a.h)("path",{id:"path4163",style:"fill:#aaa;fill-opacity:1;fill-rule:evenodd;stroke:#aaa;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1",d:"M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z",transform:"matrix(-1.1,0,0,-1.1,-1.1,0)"})),(0,a.h)("marker",{orient:"auto",refY:"0",refX:"0",id:"Arrow1Lend",style:"overflow:visible"},(0,a.h)("path",{id:"path4145",d:"M 0,0 5,-5 -12.5,0 5,5 0,0 Z",style:"fill:#aaa;fill-opacity:1;fill-rule:evenodd;stroke:#aaa;stroke-width:1pt;stroke-opacity:1",transform:"matrix(-0.8,0,0,-0.8,-10,0)"}))),(0,a.h)("g",{id:"layer1",transform:"translate(0,-1032.3622)"},(0,a.h)("path",{style:"fill:none;fill-rule:evenodd;stroke:#aaa;stroke-width:3.99429917;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM)",d:"m 0,1042.3622 118.75284,0",id:"path3336"}))))}}]),t}(a.Component);t.default=l},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function s(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),l=n(0),u=n(3),c=r(u),p=n(2),f=r(p),d=n(15),h=r(d),y=n(13),m=(r(y),n(10)),v=r(m),g=n(12),b=r(g),C=n(7),_=r(C),w=n(6),x=r(w),S=function(e){function t(){o(this,t);var e=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));return e.state={systemComponentsViewCollapsed:!1},e.Preact={Component:l.Component,h:l.h,render:l.render},e.Components={Tabs:c.default,Tab:f.default},e._extraTabs=[],window.localStorage&&(e.state.systemComponentsViewCollapsed="true"===window.localStorage.getItem("_passenger_error_page_system_components_collapsed")),e}return s(t,e),a(t,[{key:"render",value:function(){var e=this;return(0,l.h)("div",null,(0,l.h)("div",{className:"page-title-container container"},(0,l.h)("h1",{className:"page-title"},"Error starting web application")),(0,l.h)("div",{className:"page-system-components-container"},(0,l.h)("div",{className:"collapse-button"},this._renderCollapseButton()),(0,l.h)("div",{class:"container"},(0,l.h)(h.default,{spec:this.props.spec,collapsed:this.state.systemComponentsViewCollapsed}))),(0,l.h)("div",{className:"page-main container"},(0,l.h)(c.default,{className:"page-main-tabs",defaultActiveKey:"problem-description",ref:function(t){e.tabs=t}},(0,l.h)(f.default,{eventKey:"problem-description",title:"What happened?"},(0,l.h)("p",null),(0,l.h)(v.default,{spec:this.props.spec})),(0,l.h)(f.default,{eventKey:"solution-description",title:"How do I solve this?"},(0,l.h)("p",null),(0,l.h)(b.default,{spec:this.props.spec})),this._renderExtraTabs(),(0,l.h)(f.default,{eventKey:"get-help",title:"Get help"},(0,l.h)("p",null),(0,l.h)(_.default,{spec:this.props.spec})),(0,l.h)(f.default,{eventKey:"details",title:"Detailed diagnostics"},(0,l.h)("p",null),(0,l.h)(x.default,{spec:this.props.spec})))),(0,l.h)("footer",null,(0,l.h)("div",null,"This website is powered by ",(0,l.h)("a",{href:"https://www.phusionpassenger.com"},(0,l.h)("b",null,"Phusion Passenger")),"®, the smart application server built by ",(0,l.h)("b",null,"Phusion"),"®.")))}},{key:"addExtraTab",value:function(e,t,n){this._extraTabs.push({key:e,title:t,component:n})}},{key:"setActiveTab",value:function(e){this.tabs.setActiveKey(e)}},{key:"_renderCollapseButton",value:function(){return this.state.systemComponentsViewCollapsed?(0,l.h)("a",{href:"javascript:void(0)",onClick:this._handleExpandSystemComponentsView.bind(this)},"Expand"):(0,l.h)("a",{href:"javascript:void(0)",onClick:this._handleCollapseSystemComponentsView.bind(this)},"Collapse")}},{key:"_renderExtraTabs",value:function(){return this._extraTabs.map(function(e){return(0,l.h)(f.default,{eventKey:e.key,title:e.title},e.component)})}},{key:"_handleExpandSystemComponentsView",value:function(){if(this.setState({systemComponentsViewCollapsed:!1}),window.localStorage)try{window.localStorage.setItem("_passenger_error_page_system_components_collapsed","false")}catch(e){}}},{key:"_handleCollapseSystemComponentsView",value:function(){if(this.setState({systemComponentsViewCollapsed:!0}),window.localStorage)try{window.localStorage.setItem("_passenger_error_page_system_components_collapsed","true")}catch(e){}}}]),t}(l.Component);t.default=S},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),l=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return i(t,e),s(t,[{key:"render",value:function(){return(0,a.h)("div",{className:"problem-description"},(0,a.h)("div",{dangerouslySetInnerHTML:{__html:this.props.spec.error.problem_description_html}}))}}]),t}(a.Component);t.default=l},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),l=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return i(t,e),s(t,[{key:"render",value:function(){return(0,a.h)("div",null,(0,a.h)("dl",null,this.renderBeforeItems(),(0,a.h)("dt",null,"User and group"),(0,a.h)("dd",null,(0,a.h)("pre",null,this.props.spec.user_info)),(0,a.h)("dt",null,"Ulimits"),(0,a.h)("dd",null,(0,a.h)("pre",null,this.props.spec.ulimits)),(0,a.h)("dt",null,"Environment variables"),(0,a.h)("dd",null,(0,a.h)("pre",null,this.props.spec.envvars)),this.renderAfterItems()))}},{key:"renderBeforeItems",value:function(){var e=[];return this.props.spec.pid&&(e.push((0,a.h)("dt",{key:"pid-header"},"PID")),e.push((0,a.h)("dd",{key:"pid-content"},this.props.spec.pid))),this.props.spec.stdout_and_err&&(e.push((0,a.h)("dt",{key:"stdout-and-err-header"},"Stdout and stderr output")),e.push((0,a.h)("dd",{key:"stdout-and-err-content"},(0,a.h)("pre",null,this.props.spec.stdout_and_err)))),this.props.spec.backtrace&&(e.push((0,a.h)("dt",{key:"backtrace-header"},"Backtrace")),e.push((0,a.h)("dd",{key:"backtrace-content"},(0,a.h)("pre",null,this.props.spec.backtrace)))),e}},{key:"renderAfterItems",value:function(){var e=[];if(this.props.spec.annotations){var t=!0,n=!1,r=void 0;try{for(var o,i=Object.keys(this.props.spec.annotations)[Symbol.iterator]();!(t=(o=i.next()).done);t=!0){var s=o.value,l=this.props.spec.annotations[s];e.push((0,a.h)("dt",{key:s},s)),e.push((0,a.h)("dd",{key:s+"-value"},(0,a.h)("pre",null,l)))}}catch(e){n=!0,r=e}finally{try{!t&&i.return&&i.return()}finally{if(n)throw r}}}return e}}]),t}(a.Component);t.default=l},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0);n(19);var l=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return i(t,e),s(t,[{key:"render",value:function(){return(0,a.h)("div",{className:"solution-description"},(0,a.h)("div",{dangerouslySetInnerHTML:{__html:this.props.spec.error.solution_description_html}}))}}]),t}(a.Component);t.default=l},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),l=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return i(t,e),s(t,[{key:"render",value:function(){return(0,a.h)("div",{className:"summary-view"},(0,a.h)("h3",null,"Error message"),(0,a.h)("p",null,this.props.spec.error.summary),(0,a.h)("h3",null,"Learn more"),(0,a.h)("ul",null,(0,a.h)("li",null,(0,a.h)("a",{href:"#",onClick:this.props.problemDescriptionButtonClicked},"Learn what this error means")),(0,a.h)("li",null,(0,a.h)("a",{href:"#",onClick:this.props.solutionDescriptionButtonClicked},"Learn how to solve this error"))),(0,a.h)("h3",null,"Additional information"),(0,a.h)("p",null,"Error ID: ",this.props.spec.error.id),(0,a.h)("pre",null,this.props.spec.error.aux_details))}}]),t}(a.Component);t.default=l},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0);n(20);var l=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return i(t,e),s(t,[{key:"render",value:function(){var e=this.getStatusLabelAndClass(),t=e[0],n=e[1];return(0,a.h)("div",{className:"system-component-view "+n},(0,a.h)("div",{className:"icon"},this.getIcon()),(0,a.h)("div",{className:"name"},this.props.children),(0,a.h)("div",{className:"status-icon"},this.getStatusIcon()),(0,a.h)("div",{className:"status-label"},t))}},{key:"getIcon",value:function(){return"APP_SERVER"==this.props.type?this.getCoreServerIcon():"PREPARATION_WORK"==this.props.type?this.getPreparationWorkIcon():"APP"==this.props.type?this.getAppIcon():(0,a.h)("span",{class:"glyphicon glyphicon-asterisk","aria-hidden":"true"})}},{key:"getStatusIcon",value:function(){return"WORKING"===this.props.status||"DONE"==this.props.status?(0,a.h)("span",{class:"glyphicon glyphicon-ok","aria-hidden":"true"}):"ERROR"===this.props.status?(0,a.h)("span",{class:"glyphicon glyphicon-remove","aria-hidden":"true"}):"NOT_REACHED"===this.props.status?(0,a.h)("span",{class:"glyphicon glyphicon-minus-sign","aria-hidden":"true"}):(0,a.h)("span",{class:"glyphicon glyphicon-question-sign","aria-hidden":"true"})}},{key:"getStatusLabelAndClass",value:function(){return"WORKING"===this.props.status?["Working","working"]:"DONE"===this.props.status?["Done","done"]:"ERROR"===this.props.status?["Error","error"]:"NOT_REACHED"===this.props.status?["Not reached","not_reached"]:["Unknown","unknown"]}},{key:"getCoreServerIcon",value:function(){return(0,a.h)("svg",{width:"76px",height:"64px",viewBox:"0 0 76 64",version:"1.1"},(0,a.h)("defs",null,(0,a.h)("linearGradient",{x1:"50%",y1:"0%",x2:"50%",y2:"100%",id:"linearGradient-1"},(0,a.h)("stop",{"stop-color":"#888B9E",offset:"0%"}),(0,a.h)("stop",{"stop-color":"#3D4048",offset:"100%"}))),(0,a.h)("g",{id:"Page-1",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},(0,a.h)("g",{id:"64"},(0,a.h)("path",{d:"M40.0317529,63.6095765 L35.7398406,63.6095765 C35.4232667,63.6095765 35.1234596,63.4559002 34.9378267,63.1985725 L31.1337497,57.9027436 C31.054706,57.7938895 30.9992157,57.6694278 30.9700734,57.534961 L30.882247,57.12996 L30.7616855,57.0303105 C30.5413213,57.4329103 30.1357234,57.9359601 29.4742315,57.9871855 C29.0802108,58.0176006 27.3528268,57.9999919 26.628659,57.9903871 C26.3943224,57.9875857 26.1675708,57.9003424 25.9899221,57.7442649 L19.7913804,52.3187716 C19.6001586,52.1514886 19.4819923,51.9209742 19.4572412,51.6696494 L18.9566312,46.6511582 L16.6288347,44.5112959 C16.3917036,44.3536176 16.0352087,43.9926384 16.0352087,43.2554725 C16.0352087,42.9449183 15.9481808,40.1203162 15.8918921,38.3538393 L14.5617226,37.4321818 C14.2942516,37.2460894 14.1349666,36.941138 14.1349666,36.6165769 L14.1349666,31.794183 C14.1349666,31.3255504 14.4399634,30.7292543 15.108641,30.5283546 C15.2256097,30.4919365 16.1094618,30.1209524 17.3705678,29.5714796 C17.2300457,29.1188549 16.8963057,28.1823901 16.4711465,27.0710384 C16.3441976,26.931369 16.2352131,26.834521 16.1928968,26.8049063 C15.9326115,26.6792439 14.4806829,25.7615883 0.618097645,16.3132981 C0.469990543,16.212448 0.35182423,16.0723785 0.276373442,15.9082971 C0.194535286,15.7310091 -0.0657499724,15.0938928 0.0156889734,14.3579274 C0.0747721301,13.825263 0.486358174,11.8838993 0.660813171,11.0742974 C0.697540539,10.9070144 0.7757858,10.7525377 0.887165535,10.6264751 C1.27759342,10.1834552 1.9825992,9.81167062 2.79060129,10.0958117 C3.28522312,10.2710987 19.4967631,15.6889882 21.8333422,16.4693756 C21.855698,16.4349585 21.8808483,16.3925374 21.908793,16.3409118 C22.4165888,15.39044 24.3288072,13.7620316 24.9032711,13.2857952 C25.0697419,13.1473265 25.2721416,13.0692877 25.4889129,13.0592828 L25.8737519,13.0432748 C26.6334495,12.3209162 28.815135,10.4543897 31.5920433,9.88250579 C31.5924425,9.88130519 31.5928418,9.8801046 31.5936402,9.878904 C31.7213875,9.56514825 32.588872,5.90012889 33.5685346,1.53716307 C33.5944833,1.41750366 33.6447838,1.30224645 33.7170409,1.19579361 C33.976927,0.815204677 34.3933035,0.329763698 34.902297,0.176887809 C35.0017004,0.146872909 35.2943217,0.0588292035 37.4456672,0.0188093372 L37.4456672,0 L37.856854,0.0108053639 L37.8855972,0.411004027 L37.9003679,0.0112055626 L38.3055666,0.00520258262 L38.3059658,0.0184091385 C40.4752758,0.0580288062 40.7694939,0.146872909 40.8696958,0.176887809 C41.3774916,0.329763698 41.7942673,0.815204677 42.0537542,1.19579361 C42.1256121,1.30024546 42.1763118,1.41630307 42.2030589,1.53916406 C43.1831207,5.90132949 44.0506052,9.56634884 44.1787518,9.88170539 C44.179151,9.88210559 44.179151,9.88250579 44.179151,9.88250579 C46.957257,10.4543897 49.138144,12.3209162 49.8978417,13.0432748 L50.2810838,13.0592828 C50.4986535,13.0692877 50.7010532,13.1473265 50.8679232,13.285395 C51.4427864,13.7620316 53.355404,15.3908402 53.8628005,16.341312 C53.890346,16.3925374 53.9154963,16.4349585 53.9382513,16.4697758 C56.3255302,15.6717796 72.4943546,10.2678971 72.980593,10.0958117 C73.7885951,9.81167062 74.4936009,10.1834552 74.8848272,10.6268753 C74.9966061,10.7533381 75.0744522,10.908215 75.1103811,11.0738972 C75.2461127,11.7014087 75.6932285,13.7932471 75.7555053,14.3579274 C75.8373435,15.0970944 75.5762598,15.7322096 75.4944217,15.9094977 C75.4201685,16.0719783 75.3020022,16.2116476 75.1538951,16.3128979 C60.9707438,25.9792964 59.7787012,26.7168626 59.5623291,26.81251 C59.5435662,26.8277176 59.4329849,26.9249659 59.3000478,27.0710384 C58.8708965,28.1939958 58.5351604,29.1368639 58.397832,29.570279 C59.6617325,30.1209524 60.546383,30.4919365 60.6645493,30.5287548 C61.3316301,30.7296545 61.6362277,31.3255504 61.6362277,31.794183 L61.6362277,36.6165769 C61.6362277,36.941138 61.4773419,37.2460894 61.2106693,37.4317816 L59.8793022,38.3538393 C59.8230136,40.1203162 59.7359857,42.9449183 59.7359857,43.2554725 C59.7359857,43.9922382 59.3798899,44.3532174 59.143158,44.5112959 L56.8145631,46.6511582 L56.3139531,51.6700496 C56.2892021,51.9213744 56.1710357,52.1514886 55.9810115,52.3183714 L49.7804738,57.7450653 C49.6044219,57.9003424 49.3772711,57.9875857 49.1417369,57.9903871 C48.4187667,57.9999919 46.691782,58.0172004 46.297362,57.9871855 C45.6366686,57.9359601 45.2306715,57.4329103 45.0099081,57.0299103 L44.8893465,57.12996 L44.8019194,57.5337604 C44.7723778,57.6694278 44.7168875,57.7938895 44.6370454,57.9039442 L40.8337668,63.1977721 C40.6485332,63.4555 40.3487261,63.6095765 40.0317529,63.6095765",id:"Fill-1",fill:"url(#linearGradient-1)"}),(0,a.h)("path",{d:"M49.1630548,41.072749 C49.1630548,41.072749 48.6879943,49.7638633 48.3079458,54.1452383 C48.3079458,54.1452383 48.1893803,55.0260756 47.7378732,55.1453348 C47.2867653,55.2641938 47.4292835,53.5021191 47.4292835,53.5021191 L48.0704156,41.191608 C48.0704156,41.191608 48.2368864,40.4536416 48.7119469,40.4300299 C49.3055729,40.4292295 49.1630548,41.072749 49.1630548,41.072749",id:"Fill-5",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M46.6571704,36.4414499 C46.6571704,36.4414499 47.500303,37.8345415 46.3601578,39.7871108 C45.2200126,41.7392798 42.5361202,40.2749529 42.5361202,40.2749529 C42.5361202,40.2749529 41.0039503,39.4297334 42.6431087,38.3700073 C44.2818678,37.3106814 45.8850973,36.4414499 45.8850973,36.4414499 C45.8850973,36.4414499 46.5058696,36.0872741 46.6571704,36.4414499",id:"Fill-7",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M49.2818199,37.3701109 C49.4007846,37.7270882 49.7213507,37.3701109 49.7213507,37.3701109 L51.8826764,34.8580639 L52.0607243,34.4174452 C52.0607243,34.4174452 52.1202067,33.6674729 52.084677,33.4769783 C52.0491472,33.2864838 52.1557364,33.1912365 52.1557364,33.1912365 C52.1557364,33.1912365 55.6001248,28.9887503 55.7186903,28.5957553 C55.837655,28.2027602 55.6001248,28.2980075 55.6001248,28.2980075 C52.6307969,29.940823 51.0990262,31.0481727 51.0990262,31.0481727 C51.0990262,31.0481727 48.2247105,33.2508661 48.0111328,33.4769783 C47.797156,33.7030906 48.0111328,33.9888324 48.0111328,33.9888324",id:"Fill-9",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M54.6340353,38.5431332 L53.398878,49.8907663 C53.398878,49.8907663 53.4304156,50.2085241 53.2088538,50.5258816 C52.9872919,50.8432392 49.376832,54.2405256 49.376832,54.2405256 C49.376832,54.2405256 49.1692425,54.4942516 49.1780252,53.637026 C49.1868078,52.7798005 49.7253428,48.747799 49.7568804,40.5885486 L49.8203549,40.0178653 C49.8203549,40.0178653 49.8518925,39.5408285 50.1684665,39.2550867 C50.4854396,38.9693448 53.6523767,35.381964 53.6523767,35.381964 C53.6523767,35.381964 53.9054761,35.1914694 53.9054761,34.8737117 L53.9054761,33.2228922 C53.9054761,33.2228922 53.8424009,32.873919 54.348999,32.4929299 C54.8555972,32.1119407 55.5841564,31.7309516 55.5841564,31.7309516 L59.0996042,32.5245456 C59.0996042,32.5245456 59.3846405,32.6197928 59.3846405,33.1596608 L59.3846405,35.0325906 C59.3846405,35.0325906 59.3527036,35.4135797 58.9726552,35.6677059 C58.5926068,35.9214318 54.6340353,38.5431332 54.6340353,38.5431332",id:"Fill-11",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M66.7953051,18.8092171 L46.1150026,31.3182267 C46.1150026,31.3182267 44.9668732,32.1038167 45.322969,30.873606 C45.6714797,29.4765125 46.5900631,26.5242469 46.5900631,26.5242469 C46.5900631,26.5242469 46.707431,26.0824276 46.9573368,25.9207474 C47.539785,25.6350055 58.6641853,20.1983067 59.0677871,19.9838002 C59.4083137,19.8093136 59.7013342,19.1585905 59.7013342,19.1585905 L60.5772021,17.4313331 C60.5772021,17.4313331 60.7253092,17.2576469 60.9480686,17.175206 C61.1708281,17.092765 67.5869396,14.713584 67.5869396,14.713584 C67.5869396,14.713584 68.0304624,14.459858 67.8719759,14.9677101 C67.7138885,15.4755622 67.238828,18.2061177 67.238828,18.2061177 C67.238828,18.2061177 67.1861322,18.5730999 66.7953051,18.8092171",id:"Fill-13",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M59.4953815,18.1187143 L59.067827,18.951928 C59.067827,18.951928 58.8542494,19.4045526 58.4027423,19.6662826 C57.9516344,19.9284127 46.7166528,25.1430013 46.7166528,25.1430013 C46.7166528,25.1430013 46.5421978,25.2622605 46.4076639,24.8096358 C46.2651457,24.262164 45.2567399,23.1428084 45.2567399,23.1428084 C45.2567399,23.1428084 44.9589289,22.7698232 45.5765076,22.5713247 C46.3366044,22.3095947 59.4953815,17.5712426 59.4953815,17.5712426 C59.4953815,17.5712426 59.8159475,17.4940042 59.4953815,18.1187143",id:"Fill-15",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M32.0477022,13.8564785 C29.3438494,15.0222572 27.5789397,16.754317 27.3022868,17.0252515 C27.2527847,17.0740758 27.2156581,17.0072426 27.2156581,17.0072426 L26.3154384,15.9995424 C26.0938766,15.7138005 25.6663221,16.0787817 25.6663221,16.0787817 C24.446734,17.0312545 23.7341432,18.0629667 23.544119,18.3963321 C23.3808419,18.6752706 23.6710679,18.7617135 23.6710679,18.7617135 C23.6710679,18.7617135 29.7989494,20.9363931 30.0524481,20.9840167 C30.5334967,21.127688 30.5722201,21.1100793 30.6524615,20.8267386 C30.6975723,20.6686602 32.1111767,14.4595779 32.1427143,14.1262124 C32.212177,13.7612312 32.0477022,13.8564785 32.0477022,13.8564785",id:"Fill-17",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M52.2271153,18.3964922 C52.0370911,18.0631267 51.3245003,17.0314146 50.1053114,16.0789418 C50.1053114,16.0789418 49.6777569,15.7139606 49.4557958,15.9993022 L48.5555761,17.0074027 C48.5555761,17.0074027 48.5188488,17.0738356 48.4693467,17.0254116 C48.1926938,16.7540769 46.4273849,15.0224173 43.7239312,13.8566386 C43.7239312,13.8566386 43.5594565,13.7613913 43.6289191,14.1263725 C43.6604568,14.459738 45.073662,20.66842 45.1187728,20.8264985 C45.1994133,21.1098392 45.2381367,21.1278481 45.7187862,20.9841768 C45.9722849,20.9365531 52.1005655,18.7614734 52.1005655,18.7614734 C52.1005655,18.7614734 52.3903924,18.6754307 52.2271153,18.3964922",id:"Fill-19",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M40.3746747,17.7853488 L37.8907869,17.7853488 L37.8808066,17.7853488 L35.3969188,17.7853488 C35.3969188,17.7853488 35.0168704,17.7793459 35.0168704,17.568041 C35.0168704,17.3567361 36.1570156,6.23681603 36.1570156,6.23681603 C36.1570156,6.23681603 36.3705932,6.11795702 36.3945459,6.33206331 C36.4180993,6.54656979 36.2787748,13.8209809 36.2787748,13.8209809 C36.2787748,13.8209809 36.2636048,14.0350872 36.537064,14.0470931 C36.7749935,14.0574983 37.6456716,14.0586989 37.8983719,14.0586989 L37.8983719,14.0586989 L37.9319056,14.0586989 L37.9678345,14.0586989 L37.9678345,14.0586989 C38.20776,14.0586989 38.9985961,14.0570981 39.2345295,14.0470931 C39.5075895,14.0350872 39.4928187,13.8209809 39.4928187,13.8209809 C39.4928187,13.8209809 39.3534942,6.54656979 39.3770477,6.33206331 C39.4010003,6.11795702 39.6145779,6.23681603 39.6145779,6.23681603 C39.6145779,6.23681603 40.7547232,17.3567361 40.7547232,17.568041 C40.7547232,17.7793459 40.3746747,17.7853488 40.3746747,17.7853488 M39.8760608,2.85553752 C39.8285548,2.54618395 39.5195658,2.54618395 39.5195658,2.54618395 L37.8983719,2.47454839 L37.8728224,2.47454839 L36.2520277,2.54618395 C36.2520277,2.54618395 35.9430388,2.54618395 35.8955327,2.85553752 C35.8480267,3.16529129 32.5701091,20.3806372 32.5701091,20.3806372 C32.5701091,20.3806372 32.475097,20.8332619 32.9026515,20.6903909 C34.9302417,19.6702846 37.7794072,19.5974484 37.8855972,19.5950472 C37.9921864,19.5974484 40.8409526,19.6702846 42.8685428,20.6903909 C43.2960973,20.8332619 43.2010852,20.3806372 43.2010852,20.3806372 C43.2010852,20.3806372 39.9235669,3.16529129 39.8760608,2.85553752",id:"Fill-21",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M33.1284449,38.3701674 C31.4896858,37.3104413 29.8860571,36.44161 29.8860571,36.44161 C29.8860571,36.44161 29.265684,36.087034 29.1143832,36.44161 C29.1143832,36.44161 28.2712506,37.8343014 29.4109966,39.7868707 C30.5511418,41.7394399 33.2354334,40.275113 33.2354334,40.275113 C33.2354334,40.275113 34.7672041,39.4298934 33.1284449,38.3701674",id:"Fill-23",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M24.6725673,31.0482127 C24.6725673,31.0482127 23.1403974,29.940863 20.1714688,28.2980475 C20.1714688,28.2980475 19.9339385,28.2028002 20.0529032,28.5957953 C20.1714688,28.9883902 23.6154579,33.1912765 23.6154579,33.1912765 C23.6154579,33.1912765 23.7224463,33.2865238 23.6869166,33.4770184 C23.6513868,33.6675129 23.71047,34.4174852 23.71047,34.4174852 L23.8889171,34.858104 L26.0502428,37.370151 C26.0502428,37.370151 26.3708089,37.7271282 26.4897736,37.370151 L27.7604607,33.9888725 C27.7604607,33.9888725 27.9740383,33.7031306 27.7604607,33.4770184 C27.5464839,33.2509061 24.6725673,31.0482127 24.6725673,31.0482127",id:"Fill-25",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M28.34231,53.5022391 L27.7011779,41.191728 C27.7011779,41.191728 27.5347072,40.4537617 27.0596466,40.4297498 C26.4660206,40.4293496 26.6085388,41.072869 26.6085388,41.072869 C26.6085388,41.072869 27.0835993,49.7639834 27.4636477,54.1449582 C27.4636477,54.1449582 27.5822132,55.0261956 28.0337203,55.1450546 C28.4848282,55.2643138 28.34231,53.5022391 28.34231,53.5022391",id:"Fill-27",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M26.0145933,40.5885886 L25.9511189,40.0179053 C25.9511189,40.0179053 25.9195812,39.5408685 25.6030073,39.2551267 C25.2860341,38.9693848 22.1190971,35.382004 22.1190971,35.382004 C22.1190971,35.382004 21.8659976,35.1915095 21.8659976,34.8737517 L21.8659976,33.2229322 C21.8659976,33.2229322 21.9290729,32.8735588 21.4224748,32.4925697 C20.9158766,32.1119807 20.1873174,31.7309916 20.1873174,31.7309916 L16.6718696,32.5245856 C16.6718696,32.5245856 16.3868333,32.6198329 16.3868333,33.1593007 L16.3868333,35.0326306 C16.3868333,35.0326306 16.4187701,35.4136197 16.7988185,35.6677459 C17.1788669,35.9214718 21.1374384,38.5431733 21.1374384,38.5431733 L22.3725958,49.8908064 C22.3725958,49.8908064 22.3410582,50.2081639 22.56262,50.5259216 C22.7841818,50.8432792 26.3946418,54.2405656 26.3946418,54.2405656 C26.3946418,54.2405656 26.6022312,54.4942916 26.5934486,53.637066 C26.584666,52.7798405 26.046131,48.747839 26.0145933,40.5885886",id:"Fill-29",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M30.448385,30.873606 C30.0998743,29.4765125 29.1816901,26.5242469 29.1816901,26.5242469 C29.1816901,26.5242469 29.063923,26.0824276 28.8140172,25.9207474 C28.231569,25.6350055 17.1075679,20.1983067 16.7035669,19.9838002 C16.3630403,19.8093136 16.070419,19.1585905 16.070419,19.1585905 L15.1941519,17.4313331 C15.1941519,17.4313331 15.0460448,17.2576469 14.8232854,17.175206 C14.6005259,17.092765 8.18441444,14.713584 8.18441444,14.713584 C8.18441444,14.713584 7.74089155,14.459858 7.89937813,14.9677101 C8.05786471,15.4755622 8.53292522,18.2061177 8.53292522,18.2061177 C8.53292522,18.2061177 8.58562101,18.5730999 8.9760489,18.8092171 L29.6563514,31.3182267 C29.6563514,31.3182267 30.8044808,32.1038167 30.448385,30.873606",id:"Fill-31",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M16.7036068,18.952088 C16.7036068,18.952088 16.9171844,19.4043125 17.3686915,19.6664426 C17.8197994,19.9281726 29.054781,25.1431613 29.054781,25.1431613 C29.054781,25.1431613 29.229236,25.2620204 29.36377,24.8097959 C29.5062881,24.2619239 30.5146939,23.1425682 30.5146939,23.1425682 C30.5146939,23.1425682 30.812505,22.7699833 30.1949263,22.5714847 C29.4348295,22.3093546 16.2760524,17.5710024 16.2760524,17.5710024 C16.2760524,17.5710024 15.9554863,17.4941643 16.2760524,18.1188744 L16.7036068,18.952088 Z",id:"Fill-33",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M37.8857169,32.1730511 C35.663312,32.1322308 33.7814336,30.3161293 33.7814336,28.0798191 C33.7814336,25.843509 35.663312,24.0274075 37.8857169,23.9865872 C40.1081219,24.0274075 41.9900003,25.843509 41.9900003,28.0798191 C41.9900003,30.3161293 40.1081219,32.1322308 37.8857169,32.1730511 M45.3549457,25.5241505 C42.9141726,21.123566 38.4194614,21.236422 37.8857169,21.2664369 C37.3519725,21.236422 32.8572612,21.123566 30.4164881,25.5241505 C30.4164881,25.5241505 30.2899384,25.8255001 30.2899384,26.0636183 C30.2899384,26.3017365 32.7287154,35.1753414 32.7287154,35.1753414 C32.7287154,35.1753414 32.7762215,35.2865967 32.9818149,35.5883465 C33.1878075,35.8896961 35.6265846,37.6677787 35.6265846,37.6677787 C35.6265846,37.6677787 35.8006404,37.9058969 36.4182191,37.9375126 C36.9483706,37.9647261 37.6869101,37.9455166 37.8857169,37.9391134 C38.0845238,37.9455166 38.8230632,37.9647261 39.3532148,37.9375126 C39.9707935,37.9058969 40.1448492,37.6677787 40.1448492,37.6677787 C40.1448492,37.6677787 42.5836263,35.8896961 42.7896189,35.5883465 C42.9952123,35.2865967 43.0427184,35.1753414 43.0427184,35.1753414 C43.0427184,35.1753414 45.4814955,26.3017365 45.4814955,26.0636183 C45.4814955,25.8255001 45.3549457,25.5241505 45.3549457,25.5241505",id:"Fill-35",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M46.1148429,51.795752 L46.1148429,49.6050645 C46.1148429,49.3193227 45.8138382,49.6210725 45.8138382,49.6210725 L44.3730874,50.6687926 C43.9135961,51.0337737 43.5810538,50.7640398 43.5810538,50.7640398 C43.5810538,50.7640398 42.0293225,49.1764517 41.8077607,48.8590942 C41.5861988,48.5417367 41.2851941,48.5733524 41.2851941,48.5733524 L34.4862398,48.5733524 C34.4862398,48.5733524 34.185235,48.5417367 33.9636732,48.8590942 C33.7421113,49.1764517 32.1903801,50.7640398 32.1903801,50.7640398 C32.1903801,50.7640398 31.8578377,51.0337737 31.3983464,50.6687926 L29.9575956,49.6210725 C29.9575956,49.6210725 29.6565909,49.3193227 29.6565909,49.6050645 L29.6565909,51.795752 C29.6565909,51.795752 29.6406225,52.2083568 29.9891333,52.4784909 C30.337644,52.7482248 32.7919903,54.4150522 32.7919903,54.4150522 C32.7919903,54.4150522 33.2650548,54.6807842 33.5995932,54.0024474 L35.1197868,51.255884 C35.1197868,51.255884 35.2147989,51.0337737 35.8004408,51.0177658 C36.3250034,51.0037588 39.4332565,51.0033586 39.9709931,51.0177658 C40.5566349,51.0337737 40.651647,51.255884 40.651647,51.255884 L42.1718407,54.0024474 C42.5063791,54.6807842 42.9794435,54.4150522 42.9794435,54.4150522 C42.9794435,54.4150522 45.4337898,52.7482248 45.7823006,52.4784909 C46.1308114,52.2083568 46.1148429,51.795752 46.1148429,51.795752",id:"Fill-37",fill:"#F6F6F6"}),(0,a.h)("path",{d:"M45.9958383,41.7191899 L43.918746,42.6184363 C43.9159515,42.6196369 43.913157,42.6208375 43.9103625,42.6224383 C43.8640541,42.6508524 43.342286,42.9477998 42.6468612,42.4935743 C42.6468612,42.4935743 38.5517598,40.0179454 37.9796911,40.0179454 C37.9764974,40.0179454 37.9737029,40.019146 37.9705092,40.0195462 C37.9677148,40.0195462 37.9653195,40.0179454 37.9621258,40.0179454 L37.7401648,40.0179454 C37.7210027,40.0179454 37.7042358,40.0247487 37.6886666,40.0335531 C36.8447356,40.2444578 33.1244928,42.4935743 33.1244928,42.4935743 C32.4294672,42.9477998 31.9072999,42.6508524 31.8609915,42.6224383 C31.858197,42.6208375 31.8558017,42.6196369 31.852608,42.6184363 L29.7755157,41.7191899 C29.770326,41.7167887 29.0281936,41.2929783 29.0549407,41.9376983 C29.0569368,41.985322 29.4665268,47.2559384 29.4665268,47.2559384 C29.4816968,48.1847995 29.8349981,48.4489306 29.8749191,48.4757439 C29.8769152,48.4773447 29.8789112,48.4781451 29.8813065,48.4797459 L30.9819299,49.0784431 C30.9851236,49.0804441 31.5875323,49.4514282 31.8474183,49.229318 C31.8534065,49.2241154 31.8597938,49.2221144 31.865782,49.2169118 C31.9316517,49.1556814 32.3899454,48.7218661 32.7129067,48.1924033 C33.0478443,47.6429305 33.5879762,47.5925055 33.6286956,47.5893039 C33.6306917,47.5893039 33.6322885,47.5889037 33.6338854,47.5889037 L42.1374686,47.5889037 C42.1394647,47.5889037 42.1410615,47.5893039 42.1426584,47.5893039 C42.183777,47.5925055 42.7235097,47.6429305 43.0588465,48.1924033 C43.3814086,48.7218661 43.8401015,49.1556814 43.9059712,49.2169118 C43.9115602,49.2221144 43.9183467,49.2241154 43.9243349,49.229318 C44.1838217,49.4514282 44.7862304,49.0804441 44.7894241,49.0784431 L45.8904467,48.4797459 C45.892842,48.4781451 45.8944388,48.4773447 45.8968341,48.4757439 C45.9363559,48.4489306 46.2900564,48.1847995 46.3048272,47.2559384 C46.3048272,47.2559384 46.7144172,41.985322 46.7164133,41.9376983 C46.7431604,41.2929783 46.0014272,41.7167887 45.9958383,41.7191899",id:"Fill-39",fill:"#F6F6F6"}))))}},{key:"getPreparationWorkIcon",value:function(){return(0,a.h)("svg",{width:"60px",height:"63px",viewBox:"0 0 60 63",version:"1.1"},(0,a.h)("defs",null,(0,a.h)("path",{d:"M14.4973229,0.57613464 L14.4973229,0.57613464 L14.4973229,0.57613464 C15.7389717,0.483042186 16.8213633,1.4132827 16.9159945,2.65481525 L17.018698,4.0022539 C19.48808,4.31319289 21.7290427,5.43245748 23.4489057,7.1006423 L25.501023,5.70083779 L25.501023,5.70083779 C26.5297293,4.99912951 27.9324051,5.26330879 28.6353673,6.29115865 L28.6353673,6.29115865 L28.6353673,6.29115865 C29.3374289,7.31769165 29.0743928,8.71899441 28.0478598,9.42105596 C28.0472866,9.42144796 28.0467133,9.42183969 28.0461397,9.42223115 L25.9825488,10.8307522 C26.4405558,11.9204863 26.7542672,13.0895474 26.8489064,14.3315663 C26.9441298,15.5735852 26.8121023,16.7773881 26.5246796,17.921551 L28.7834642,19.0089268 L28.7834642,19.0089268 C29.9037141,19.5482136 30.3750531,20.8932569 29.8364672,22.013844 L29.8364672,22.013844 L29.8364672,22.013844 C29.2980038,23.1341764 27.9532841,23.6058744 26.8329517,23.0674109 C26.8329218,23.0673966 26.8328919,23.0673822 26.832862,23.0673679 L24.5863286,21.9874982 C23.1386994,23.8930852 21.0940254,25.3342903 18.7011726,26.0105971 L18.8039409,27.3588855 L18.8039409,27.3588855 C18.8983997,28.5981567 17.9703459,29.6793586 16.7310746,29.7738175 C16.7302653,29.7738792 16.7294558,29.7739404 16.7286464,29.7740012 L16.7286464,29.7740012 L16.7286464,29.7740012 C15.4874259,29.8672578 14.405203,28.9376026 14.3102175,27.6965132 L14.2069792,26.3475925 C11.7381814,26.0360744 9.49780284,24.9173889 7.77677152,23.2492041 L5.7247553,24.6491485 L5.7247553,24.6491485 C4.69629315,25.350795 3.29387177,25.0868194 2.59089406,24.0592667 L2.59089406,24.0592667 L2.59089406,24.0592667 C1.88884172,23.0330667 2.15161535,21.6320413 3.17781539,20.929989 C3.1783965,20.9295914 3.17897779,20.9291942 3.17955927,20.9287972 L5.24429672,19.5190942 C4.78570555,18.4305182 4.47199414,17.260878 4.37677075,16.0182801 C4.28213156,14.7768402 4.41474327,13.5736163 4.70216601,12.4282954 L2.44258307,11.3415899 L2.44258307,11.3415899 C1.32193216,10.8026332 0.850231251,9.45736218 1.38891784,8.33658138 L1.38891784,8.33658138 L1.38891784,8.33658138 C1.92748633,7.2160463 3.27245552,6.74426916 4.39299061,7.28283765 C4.39309115,7.28288597 4.39319169,7.2829343 4.39329222,7.28298264 L6.63934858,8.36292724 C8.08697778,6.4573402 10.1310676,5.01613506 12.5250888,4.33924924 L12.421943,2.99175511 L12.421943,2.99175511 C12.3270934,1.75264107 13.254703,0.671249865 14.493817,0.576400243 C14.4949856,0.576310796 14.4961542,0.576222261 14.4973229,0.57613464 Z M8.93931474,15.8092503 C9.2097959,19.3477014 12.1663945,22.0401899 15.6592819,22.0407689 C15.8292819,22.0407689 15.9998662,22.0343996 16.1716188,22.0210819 C19.8841626,21.7431476 22.6631667,18.5104243 22.3798333,14.8005804 C22.0964999,11.0901575 18.8577362,8.30965649 15.1451924,8.58874885 C11.433817,8.86726218 8.65539715,12.0994065 8.93931474,15.8092503 Z",id:"path-1"}),(0,a.h)("linearGradient",{x1:"50%",y1:"15.6382541%",x2:"50%",y2:"140.143913%",id:"linearGradient-3"},(0,a.h)("stop",{"stop-color":"#888B9E",offset:"0%"}),(0,a.h)("stop",{"stop-color":"#3D4048",offset:"100%"})),(0,a.h)("polygon",{id:"path-4",points:"0.11958422 43.4272341 39.5907306 43.4272341 39.5907306 0.274518023 0.11958422 0.274518023 0.11958422 43.4272341"}),(0,a.h)("linearGradient",{x1:"50%",y1:"-42.489415%",x2:"50%",y2:"100%",id:"linearGradient-6"},(0,a.h)("stop",{"stop-color":"#888B9E",offset:"0%"}),(0,a.h)("stop",{"stop-color":"#3D4048",offset:"100%"})),(0,a.h)("path",{d:"M14.9556219,14.9517072 L14.9556219,14.9517072 L14.9556219,14.9517072 C14.4428638,15.4204211 13.6473938,15.3853707 13.1778483,14.873374 L12.2481815,13.859657 C11.1014115,14.5469654 9.74374791,14.8712221 8.36505344,14.7293598 L8.13563373,15.4494351 L8.13563373,15.4494351 C7.92518674,16.1099612 7.22061964,16.4763434 6.55902211,16.2692895 L6.55902211,16.2692895 L6.55902211,16.2692895 C5.90179748,16.0636041 5.53575255,15.3640774 5.74143789,14.7068528 C5.74207508,14.7048167 5.74271751,14.7027823 5.74336515,14.7007496 L5.97278486,13.9806742 C4.76175366,13.3124739 3.8381452,12.2736944 3.29835126,11.0588899 L1.93918358,11.3619848 L1.93918358,11.3619848 C1.26646216,11.5120019 0.599500784,11.0882663 0.449483669,10.4155449 C0.449207184,10.4143051 0.448932593,10.4130648 0.448659896,10.4118241 L0.448659896,10.4118241 L0.448659896,10.4118241 C0.30009348,9.73589873 0.726203899,9.06713019 1.40160583,8.91620181 L2.7684886,8.61075198 C2.75972571,7.9541322 2.84209686,7.2853528 3.05299038,6.62352175 C3.26329971,5.96226973 3.58343724,5.36818517 3.97134111,4.83547776 L3.03641137,3.81568872 L3.03641137,3.81568872 C2.56784991,3.30459807 2.60232663,2.51043311 3.11341728,2.04187165 C3.11391608,2.04141435 3.11441526,2.04095746 3.1149148,2.04050097 L3.1149148,2.04050097 L3.1149148,2.04050097 C3.62785783,1.57176559 4.42347869,1.60688511 4.89312629,2.11899306 L5.82264737,3.13255116 C6.96941739,2.4452428 8.32708093,2.12040709 9.7051912,2.26226938 L9.93442176,1.54300535 L9.93442176,1.54300535 C10.144983,0.882320592 10.8497253,0.515855343 11.5115146,0.722918691 L11.5115146,0.722918691 L11.5115146,0.722918691 C12.1687965,0.928571712 12.534914,1.62811864 12.329261,2.28540049 C12.3286044,2.28749903 12.3279422,2.28959583 12.3272745,2.29169086 L12.098044,3.0109549 C13.308491,3.67915528 14.2320994,4.71793472 14.7724776,5.93331824 L16.1314275,5.62996705 L16.1314275,5.62996705 C16.8040917,5.4798118 17.4711186,5.90338894 17.6212738,6.57605308 C17.6215744,6.57739973 17.6218728,6.57874688 17.6221689,6.58009452 L17.6221689,6.58009452 L17.6221689,6.58009452 C17.7707262,7.2561383 17.344428,7.92497222 16.6688758,8.07574904 L15.301756,8.38087716 C15.3111031,9.03807597 15.2281478,9.70685537 15.0178385,10.3681074 C14.8075291,11.0293594 14.4873916,11.624023 14.0994877,12.1567304 L15.0341301,13.1765398 L15.0341301,13.1765398 C15.5026777,13.6877827 15.4680664,14.4820598 14.9568235,14.9506074 C14.9564232,14.9509743 14.9560227,14.9513409 14.9556219,14.9517072 Z M9.98794041,5.50599426 C8.33525962,4.98892066 6.57041386,5.90841996 6.04464055,7.55981292 C5.51828304,9.21120588 6.43079184,10.9685613 8.08288843,11.4856349 C9.73498503,12.0027085 11.5009992,11.0837882 12.0267725,9.43239525 C12.5525458,7.78042327 11.640037,6.02306786 9.98794041,5.50599426 Z",id:"path-7"}),(0,a.h)("linearGradient",{x1:"50%",y1:"-80.5345186%",x2:"50%",y2:"100%",id:"linearGradient-9"},(0,a.h)("stop",{"stop-color":"#888B9E",offset:"0%"}),(0,a.h)("stop",{"stop-color":"#3D4048",offset:"100%"}))),(0,a.h)("g",{id:"Page-1",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},(0,a.h)("g",{transform:"translate(-1.000000, 0.000000)"},(0,a.h)("g",{id:"Group-5",transform:"translate(0.000000, 0.300516)"},(0,a.h)("mask",{id:"mask-2",fill:"white"},(0,a.h)("use",{href:"#path-1"})),(0,a.h)("g",{id:"Clip-4"}),(0,a.h)("polygon",{id:"Fill-3",fill:"url(#linearGradient-3)",mask:"url(#mask-2)",points:"-5.33017303 39.3361571 39.98915 35.933778 36.5564344 -8.9861949 -8.76288858 -5.58381586"})),(0,a.h)("g",{id:"Group-15",transform:"translate(2.920963, 19.408499)"},(0,a.h)("g",{id:"Group-8",transform:"translate(19.278355, 0.000000)"},(0,a.h)("mask",{id:"mask-5",fill:"white"},(0,a.h)("use",{href:"#path-4"})),(0,a.h)("g",{id:"Clip-7"}),(0,a.h)("path",{d:"M37.1135237,9.019334 L37.2064838,9.14183334 L37.2064838,9.14183334 C38.2080665,10.4616811 37.9500618,12.3435723 36.6302141,13.345155 C36.61783,13.3545529 36.6053729,13.3638543 36.5928442,13.3730585 L33.8385953,15.39646 C35.2500046,18.3356152 35.7167744,21.6974621 35.0303481,24.9950368 L36.8128658,25.7538381 L36.8128658,25.7538381 C38.3373407,26.402793 39.0470898,28.1647059 38.3981349,29.6891808 C38.3955936,29.6951506 38.3930329,29.7011122 38.3904529,29.7070654 L38.3491533,29.8023629 L38.3491533,29.8023629 C37.6932916,31.3157406 35.9387276,32.015813 34.4211959,31.3696211 L32.603028,30.5954129 C30.6629245,33.3591221 27.8809994,35.3382459 24.7584901,36.3469158 L25.1744593,39.7221436 L25.1744593,39.7221436 C25.3771197,41.3665568 24.2083482,42.8639059 22.563935,43.0665663 C22.5547682,43.067696 22.5455963,43.0687834 22.5364196,43.0698284 L22.3493673,43.0911291 L22.3493673,43.0911291 C20.7144126,43.277311 19.2346282,42.1117484 19.0326243,40.478673 L18.605774,37.0278548 C16.9875606,36.8894667 15.3611684,36.526415 13.7856011,35.8553195 C12.2100337,35.184803 10.8260815,34.2658827 9.60979256,33.1975728 L6.76317569,35.28773 L6.76317569,35.28773 C5.44260009,36.257376 3.58833504,35.9882559 2.59789995,34.6831997 L2.50453301,34.5601739 L2.50453301,34.5601739 C1.50290079,33.2403637 1.76083499,31.3584628 3.08064517,30.3568306 C3.09311631,30.347366 3.10566136,30.3379992 3.11827915,30.3287309 L5.87212848,28.3059291 C4.46071922,25.3661949 3.99394936,22.0043479 4.68037563,18.7067733 L2.89778102,17.9477129 L2.89778102,17.9477129 C1.37337593,17.2985941 0.663816144,15.5366049 1.31293488,14.0121998 C1.3154839,14.0062137 1.3180524,14.0002358 1.32064031,13.9942663 L1.36190542,13.8990813 L1.36190542,13.8990813 C2.01792018,12.3858712 3.77242404,11.6859973 5.28984046,12.332223 L7.10769577,13.1063972 C9.04838349,10.342688 11.8297243,8.36356417 14.9522336,7.35489428 L14.5362803,3.9797948 L14.5362803,3.9797948 C14.3336199,2.3353816 15.5023914,0.838032582 17.1468046,0.635372155 C17.1560138,0.634237206 17.1652281,0.633144989 17.1744474,0.632095537 L17.362743,0.610661354 L17.362743,0.610661354 C18.998074,0.424507426 20.4780291,1.59068713 20.679491,3.22420286 L21.1049498,6.67395525 C22.7243316,6.81292239 24.3489712,7.17539504 25.9251227,7.84649057 C27.5012743,8.51758609 28.8863949,9.4370854 30.1009312,10.5042373 L32.9487859,8.41426933 L32.9487859,8.41426933 C34.2694039,7.44510151 36.1232879,7.71443894 37.1135237,9.019334 Z M15.6894847,31.6312972 C21.0576302,33.9173068 27.2600027,31.4946462 29.5477009,26.2179477 C31.8342306,20.9412492 29.3379757,14.8122189 23.9698302,12.5267883 C18.6011004,10.2407787 12.3975595,12.6657555 10.1110298,17.942454 C7.82391586,23.2185734 10.3207549,29.3458666 15.6894847,31.6312972 Z",id:"Fill-6",fill:"url(#linearGradient-6)",mask:"url(#mask-5)"})),(0,a.h)("g",{id:"Group-14",transform:"translate(0.000000, 15.633804)"},(0,a.h)("g",{id:"Group-13"},(0,a.h)("mask",{id:"mask-8",fill:"white"},(0,a.h)("use",{href:"#path-7"})),(0,a.h)("g",{id:"Clip-12"}),(0,a.h)("polygon",{id:"Fill-11",fill:"url(#linearGradient-9)",mask:"url(#mask-8)",points:"-10.0293597 16.6790689 14.1007145 24.2301963 21.7191699 0.312791892 -2.41090433 -7.23833558"})))))))}},{key:"getAppIcon",value:function(){return(0,a.h)("svg",{width:"64px",height:"64px",viewBox:"0 0 64 64",version:"1.1"},(0,a.h)("defs",null,(0,a.h)("linearGradient",{x1:"50%",y1:"0%",x2:"50%",y2:"100%",id:"linearGradient-1"},(0,a.h)("stop",{"stop-color":"#888B9E",offset:"0%"}),(0,a.h)("stop",{"stop-color":"#3D4048",offset:"100%"}))),(0,a.h)("g",{id:"Page-1",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},(0,a.h)("g",{id:"Group-21"},(0,a.h)("path",{d:"M16,10 C16,11.106 16.896,12 18,12 C19.104,12 20,11.106 20,10 C20,8.896 19.104,8 18,8 C16.896,8 16,8.896 16,10 Z M24,10 C24,11.106 24.896,12 26,12 C27.104,12 28,11.106 28,10 C28,8.896 27.104,8 26,8 C24.896,8 24,8.896 24,10 Z M56,60 L8,60 C5.792,60 4,58.208 4,56 L4,18 L60,18 L60,56 C60,58.208 58.208,60 56,60 Z M8,0 C3.582,0 0,3.582 0,8 L0,56 C0,60.418 3.582,64 8,64 L56,64 C60.418,64 64,60.418 64,56 L64,16 C64,11.582 60.418,8 56,8 L43.4909668,8 C33.5795898,8 38.9165039,0 28.5126953,0 L8,0 Z M8,10 C8,11.106 8.896,12 10,12 C11.104,12 12,11.106 12,10 C12,8.896 11.104,8 10,8 C8.896,8 8,8.896 8,10 Z",id:"Fill-109",fill:"url(#linearGradient-1)"}),(0,a.h)("path",{d:"M15.2918884,33.9521484 L17.6908142,33.9521484 L19.0687439,40.4682617 L20.4798767,33.9521484 L22.9452087,33.9521484 L20.3221619,43 L17.8900329,43 L16.4705994,36.4091797 L15.0345642,43 L12.5775329,43 L10.0374939,33.9521484 L12.5775329,33.9521484 L13.9886658,40.4433594 L15.2918884,33.9521484 Z M30.0110331,33.9521484 L32.4099589,33.9521484 L33.7878886,40.4682617 L35.1990214,33.9521484 L37.6643534,33.9521484 L35.0413066,43 L32.6091776,43 L31.1897441,36.4091797 L29.7537089,43 L27.2966776,43 L24.7566386,33.9521484 L27.2966776,33.9521484 L28.7078105,40.4433594 L30.0110331,33.9521484 Z M44.7301778,33.9521484 L47.1291036,33.9521484 L48.5070333,40.4682617 L49.9181661,33.9521484 L52.3834981,33.9521484 L49.7604513,43 L47.3283224,43 L45.9088888,36.4091797 L44.4728536,43 L42.0158224,43 L39.4757833,33.9521484 L42.0158224,33.9521484 L43.4269552,40.4433594 L44.7301778,33.9521484 Z",id:"www",fill:"#5C606C"}))))}}]),t}(a.Component);t.default=l},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),l=n(14),u=function(e){return e&&e.__esModule?e:{default:e}}(l);n(21);var c=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return i(t,e),s(t,[{key:"render",value:function(){return this.props.collapsed?this.renderCollapsed():this.renderExpanded()}},{key:"renderCollapsed",value:function(){return(0,a.h)("div",{className:"system-components collapsed"},"...")}},{key:"renderExpanded",value:function(){return(0,a.h)("div",{className:"system-components row"},(0,a.h)("div",{className:"col-sm-3"},(0,a.h)(u.default,{type:"APP_SERVER",status:"WORKING"},this.props.spec.short_program_name," ",(0,a.h)("br",{class:"hidden-xs"}),"application server")),(0,a.h)("div",{className:"col-sm-1"},this.buildDivider()),(0,a.h)("div",{className:"col-sm-4"},(0,a.h)(u.default,{type:"PREPARATION_WORK",status:this.getPreparationWorkStatus()},"Preparation work"," ",(0,a.h)("br",{class:"hidden-xs"}),"before executing the app")),(0,a.h)("div",{className:"col-sm-1"},this.buildDivider()),(0,a.h)("div",{className:"col-sm-3"},(0,a.h)(u.default,{type:"APP",status:this.getWebAppStatus()},"Web"," ",(0,a.h)("br",{class:"hidden-xs"}),"application")))}},{key:"getGeneralSystemStatus",value:function(){var e=this.props.spec.journey;return e.steps.SUBPROCESS_APP_LOAD_OR_EXEC&&"STEP_ERRORED"===e.steps.SUBPROCESS_APP_LOAD_OR_EXEC.state?"app-error":e.steps.SUBPROCESS_LISTEN&&"STEP_ERRORED"===e.steps.SUBPROCESS_LISTEN.state?"app-error":"preparation-error"}},{key:"getPreparationWorkStatus",value:function(){return"app-error"===this.getGeneralSystemStatus()?"DONE":"ERROR"}},{key:"getWebAppStatus",value:function(){return"app-error"===this.getGeneralSystemStatus()?"ERROR":"NOT_REACHED"}},{key:"buildDivider",value:function(){return(0,a.h)("div",{className:"divider"},(0,a.h)("span",{className:"glyphicon glyphicon-menu-right hidden-xs","aria-hidden":"true"}),(0,a.h)("div",{className:"visible-xs"}))}}]),t}(a.Component);t.default=c},function(e,t,n){"use strict";(function(e){var t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};/*!
25
- * Bootstrap v3.3.7 (http://getbootstrap.com)
26
- * Copyright 2011-2017 Twitter, Inc.
27
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
28
- */
29
- /*!
30
- * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=e18bae9569f7969c3d0bbc56a809d696)
31
- * Config saved to config.json and https://gist.github.com/e18bae9569f7969c3d0bbc56a809d696
32
- */
33
- if(void 0===e)throw new Error("Bootstrap's JavaScript requires jQuery");+function(e){var t=e.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1==t[0]&&9==t[1]&&t[2]<1||t[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(e),function(e){function n(t){var n,r=t.attr("data-target")||(n=t.attr("href"))&&n.replace(/.*(?=#[^\s]+$)/,"");return e(r)}function r(n){return this.each(function(){var r=e(this),i=r.data("bs.collapse"),s=e.extend({},o.DEFAULTS,r.data(),"object"==(void 0===n?"undefined":t(n))&&n);!i&&s.toggle&&/show|hide/.test(n)&&(s.toggle=!1),i||r.data("bs.collapse",i=new o(this,s)),"string"==typeof n&&i[n]()})}var o=function t(n,r){this.$element=e(n),this.options=e.extend({},t.DEFAULTS,r),this.$trigger=e('[data-toggle="collapse"][href="#'+n.id+'"],[data-toggle="collapse"][data-target="#'+n.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};o.VERSION="3.3.7",o.TRANSITION_DURATION=350,o.DEFAULTS={toggle:!0},o.prototype.dimension=function(){return this.$element.hasClass("width")?"width":"height"},o.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var t,n=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(n&&n.length&&(t=n.data("bs.collapse"))&&t.transitioning)){var i=e.Event("show.bs.collapse");if(this.$element.trigger(i),!i.isDefaultPrevented()){n&&n.length&&(r.call(n,"hide"),t||n.data("bs.collapse",null));var s=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[s](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var a=function(){this.$element.removeClass("collapsing").addClass("collapse in")[s](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!e.support.transition)return a.call(this);var l=e.camelCase(["scroll",s].join("-"));this.$element.one("bsTransitionEnd",e.proxy(a,this)).emulateTransitionEnd(o.TRANSITION_DURATION)[s](this.$element[0][l])}}}},o.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var t=e.Event("hide.bs.collapse");if(this.$element.trigger(t),!t.isDefaultPrevented()){var n=this.dimension();this.$element[n](this.$element[n]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var r=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};if(!e.support.transition)return r.call(this);this.$element[n](0).one("bsTransitionEnd",e.proxy(r,this)).emulateTransitionEnd(o.TRANSITION_DURATION)}}},o.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},o.prototype.getParent=function(){return e(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(e.proxy(function(t,r){var o=e(r);this.addAriaAndCollapsedClass(n(o),o)},this)).end()},o.prototype.addAriaAndCollapsedClass=function(e,t){var n=e.hasClass("in");e.attr("aria-expanded",n),t.toggleClass("collapsed",!n).attr("aria-expanded",n)};var i=e.fn.collapse;e.fn.collapse=r,e.fn.collapse.Constructor=o,e.fn.collapse.noConflict=function(){return e.fn.collapse=i,this},e(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(t){var o=e(this);o.attr("data-target")||t.preventDefault();var i=n(o),s=i.data("bs.collapse"),a=s?"toggle":o.data();r.call(i,a)})}(e),function(e){function t(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var n in t)if(void 0!==e.style[n])return{end:t[n]};return!1}e.fn.emulateTransitionEnd=function(t){var n=!1,r=this;e(this).one("bsTransitionEnd",function(){n=!0});var o=function(){n||e(r).trigger(e.support.transition.end)};return setTimeout(o,t),this},e(function(){e.support.transition=t(),e.support.transition&&(e.event.special.bsTransitionEnd={bindType:e.support.transition.end,delegateType:e.support.transition.end,handle:function(t){if(e(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}})})}(e)}).call(t,n(1))},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t,n){e.exports=n(4)}]);
1
+ /*! For license information please see bundle.js.LICENSE.txt */
2
+ (()=>{var e={470:function(e,t,n){var r;function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}e=n.nmd(e),function(t,n){"use strict";"object"===o(e)&&"object"===o(e.exports)?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:this,(function(n,i){"use strict";var s=[],a=Object.getPrototypeOf,l=s.slice,u=s.flat?function(e){return s.flat.call(e)}:function(e){return s.concat.apply([],e)},c=s.push,p=s.indexOf,f={},d=f.toString,h=f.hasOwnProperty,y=h.toString,m=y.call(Object),v={},g=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},b=function(e){return null!=e&&e===e.window},C=n.document,w={type:!0,src:!0,nonce:!0,noModule:!0};function S(e,t,n){var r,o,i=(n=n||C).createElement("script");if(i.text=e,t)for(r in w)(o=t[r]||t.getAttribute&&t.getAttribute(r))&&i.setAttribute(r,o);n.head.appendChild(i).parentNode.removeChild(i)}function x(e){return null==e?e+"":"object"===o(e)||"function"==typeof e?f[d.call(e)]||"object":o(e)}var E="3.6.0",_=function e(t,n){return new e.fn.init(t,n)};function N(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!g(e)&&!b(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}_.fn=_.prototype={jquery:E,constructor:_,length:0,toArray:function(){return l.call(this)},get:function(e){return null==e?l.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=_.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return _.each(this,e)},map:function(e){return this.pushStack(_.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(l.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(_.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(_.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:c,sort:s.sort,splice:s.splice},_.extend=_.fn.extend=function(){var e,t,n,r,i,s,a=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof a&&(c=a,a=arguments[l]||{},l++),"object"===o(a)||g(a)||(a={}),l===u&&(a=this,l--);l<u;l++)if(null!=(e=arguments[l]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(c&&r&&(_.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],s=i&&!Array.isArray(n)?[]:i||_.isPlainObject(n)?n:{},i=!1,a[t]=_.extend(c,s,r)):void 0!==r&&(a[t]=r));return a},_.extend({expando:"jQuery"+(E+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==d.call(e))&&(!(t=a(e))||"function"==typeof(n=h.call(t,"constructor")&&t.constructor)&&y.call(n)===m)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){S(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(N(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(N(Object(e))?_.merge(n,"string"==typeof e?[e]:e):c.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:p.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,o=e.length;r<n;r++)e[o++]=t[r];return e.length=o,e},grep:function(e,t,n){for(var r=[],o=0,i=e.length,s=!n;o<i;o++)!t(e[o],o)!==s&&r.push(e[o]);return r},map:function(e,t,n){var r,o,i=0,s=[];if(N(e))for(r=e.length;i<r;i++)null!=(o=t(e[i],i,n))&&s.push(o);else for(i in e)null!=(o=t(e[i],i,n))&&s.push(o);return u(s)},guid:1,support:v}),"function"==typeof Symbol&&(_.fn[Symbol.iterator]=s[Symbol.iterator]),_.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),(function(e,t){f["[object "+t+"]"]=t.toLowerCase()}));var T=function(e){var t,n,r,o,i,s,a,l,u,c,p,f,d,h,y,m,v,g,b,C="sizzle"+1*new Date,w=e.document,S=0,x=0,E=le(),_=le(),N=le(),T=le(),L=function(e,t){return e===t&&(p=!0),0},P={}.hasOwnProperty,O=[],k=O.pop,R=O.push,A=O.push,j=O.slice,D=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},I="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",F="[\\x20\\t\\r\\n\\f]",B="(?:\\\\[\\da-fA-F]{1,6}[\\x20\\t\\r\\n\\f]?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",H="\\[[\\x20\\t\\r\\n\\f]*("+B+")(?:"+F+"*([*^$|!~]?=)"+F+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+B+"))|)"+F+"*\\]",M=":("+B+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+H+")*)|.*)\\)|)",q=new RegExp(F+"+","g"),W=new RegExp("^[\\x20\\t\\r\\n\\f]+|((?:^|[^\\\\])(?:\\\\.)*)[\\x20\\t\\r\\n\\f]+$","g"),U=new RegExp("^[\\x20\\t\\r\\n\\f]*,[\\x20\\t\\r\\n\\f]*"),$=new RegExp("^[\\x20\\t\\r\\n\\f]*([>+~]|[\\x20\\t\\r\\n\\f])[\\x20\\t\\r\\n\\f]*"),K=new RegExp(F+"|>"),G=new RegExp(M),z=new RegExp("^"+B+"$"),V={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+H),PSEUDO:new RegExp("^"+M),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\([\\x20\\t\\r\\n\\f]*(even|odd|(([+-]|)(\\d*)n|)[\\x20\\t\\r\\n\\f]*(?:([+-]|)[\\x20\\t\\r\\n\\f]*(\\d+)|))[\\x20\\t\\r\\n\\f]*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^[\\x20\\t\\r\\n\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\([\\x20\\t\\r\\n\\f]*((?:-\\d)?\\d*)[\\x20\\t\\r\\n\\f]*\\)|)(?=[^-]|$)","i")},X=/HTML$/i,Z=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Q=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}[\\x20\\t\\r\\n\\f]?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,oe=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},ie=function(){f()},se=Ce((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{A.apply(O=j.call(w.childNodes),w.childNodes),O[w.childNodes.length].nodeType}catch(e){A={apply:O.length?function(e,t){R.apply(e,j.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function ae(e,t,r,o){var i,a,u,c,p,h,v,g=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!o&&(f(t),t=t||d,y)){if(11!==w&&(p=Q.exec(e)))if(i=p[1]){if(9===w){if(!(u=t.getElementById(i)))return r;if(u.id===i)return r.push(u),r}else if(g&&(u=g.getElementById(i))&&b(t,u)&&u.id===i)return r.push(u),r}else{if(p[2])return A.apply(r,t.getElementsByTagName(e)),r;if((i=p[3])&&n.getElementsByClassName&&t.getElementsByClassName)return A.apply(r,t.getElementsByClassName(i)),r}if(n.qsa&&!T[e+" "]&&(!m||!m.test(e))&&(1!==w||"object"!==t.nodeName.toLowerCase())){if(v=e,g=t,1===w&&(K.test(e)||$.test(e))){for((g=ee.test(e)&&ve(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute("id"))?c=c.replace(re,oe):t.setAttribute("id",c=C)),a=(h=s(e)).length;a--;)h[a]=(c?"#"+c:":scope")+" "+be(h[a]);v=h.join(",")}try{return A.apply(r,g.querySelectorAll(v)),r}catch(t){T(e,!0)}finally{c===C&&t.removeAttribute("id")}}}return l(e.replace(W,"$1"),t,r,o)}function le(){var e=[];return function t(n,o){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=o}}function ue(e){return e[C]=!0,e}function ce(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function pe(e,t){for(var n=e.split("|"),o=n.length;o--;)r.attrHandle[n[o]]=t}function fe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ye(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&se(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function me(e){return ue((function(t){return t=+t,ue((function(n,r){for(var o,i=e([],n.length,t),s=i.length;s--;)n[o=i[s]]&&(n[o]=!(r[o]=n[o]))}))}))}function ve(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=ae.support={},i=ae.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!X.test(t||n&&n.nodeName||"HTML")},f=ae.setDocument=function(e){var t,o,s=e?e.ownerDocument||e:w;return s!=d&&9===s.nodeType&&s.documentElement?(h=(d=s).documentElement,y=!i(d),w!=d&&(o=d.defaultView)&&o.top!==o&&(o.addEventListener?o.addEventListener("unload",ie,!1):o.attachEvent&&o.attachEvent("onunload",ie)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),n.attributes=ce((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("*").length})),n.getElementsByClassName=Y.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=C,!d.getElementsByName||!d.getElementsByName(C).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&y){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&y){var n,r,o,i=t.getElementById(e);if(i){if((n=i.getAttributeNode("id"))&&n.value===e)return[i];for(o=t.getElementsByName(e),r=0;i=o[r++];)if((n=i.getAttributeNode("id"))&&n.value===e)return[i]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],o=0,i=t.getElementsByTagName(e);if("*"===e){for(;n=i[o++];)1===n.nodeType&&r.push(n);return r}return i},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&y)return t.getElementsByClassName(e)},v=[],m=[],(n.qsa=Y.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML="<a id='"+C+"'></a><select id='"+C+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|"+I+")"),e.querySelectorAll("[id~="+C+"-]").length||m.push("~="),(t=d.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||m.push("\\[[\\x20\\t\\r\\n\\f]*name[\\x20\\t\\r\\n\\f]*=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),e.querySelectorAll(":checked").length||m.push(":checked"),e.querySelectorAll("a#"+C+"+*").length||m.push(".#.+[+~]"),e.querySelectorAll("\\\f"),m.push("[\\r\\n\\f]")})),ce((function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&m.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:")}))),(n.matchesSelector=Y.test(g=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=g.call(e,"*"),g.call(e,"[s!='']:x"),v.push("!=",M)})),m=m.length&&new RegExp(m.join("|")),v=v.length&&new RegExp(v.join("|")),t=Y.test(h.compareDocumentPosition),b=t||Y.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},L=t?function(e,t){if(e===t)return p=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&b(w,e)?-1:t==d||t.ownerDocument==w&&b(w,t)?1:c?D(c,e)-D(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return p=!0,0;var n,r=0,o=e.parentNode,i=t.parentNode,s=[e],a=[t];if(!o||!i)return e==d?-1:t==d?1:o?-1:i?1:c?D(c,e)-D(c,t):0;if(o===i)return fe(e,t);for(n=e;n=n.parentNode;)s.unshift(n);for(n=t;n=n.parentNode;)a.unshift(n);for(;s[r]===a[r];)r++;return r?fe(s[r],a[r]):s[r]==w?-1:a[r]==w?1:0},d):d},ae.matches=function(e,t){return ae(e,null,null,t)},ae.matchesSelector=function(e,t){if(f(e),n.matchesSelector&&y&&!T[t+" "]&&(!v||!v.test(t))&&(!m||!m.test(t)))try{var r=g.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){T(t,!0)}return ae(t,d,null,[e]).length>0},ae.contains=function(e,t){return(e.ownerDocument||e)!=d&&f(e),b(e,t)},ae.attr=function(e,t){(e.ownerDocument||e)!=d&&f(e);var o=r.attrHandle[t.toLowerCase()],i=o&&P.call(r.attrHandle,t.toLowerCase())?o(e,t,!y):void 0;return void 0!==i?i:n.attributes||!y?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null},ae.escape=function(e){return(e+"").replace(re,oe)},ae.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},ae.uniqueSort=function(e){var t,r=[],o=0,i=0;if(p=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(L),p){for(;t=e[i++];)t===e[i]&&(o=r.push(i));for(;o--;)e.splice(r[o],1)}return c=null,e},o=ae.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r++];)n+=o(t);return n},r=ae.selectors={cacheLength:50,createPseudo:ue,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ae.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ae.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&G.test(n)&&(t=s(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|[\\x20\\t\\r\\n\\f])"+e+"("+F+"|$)"))&&E(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")}))},ATTR:function(e,t,n){return function(r){var o=ae.attr(r,e);return null==o?"!="===t:!t||(o+="","="===t?o===n:"!="===t?o!==n:"^="===t?n&&0===o.indexOf(n):"*="===t?n&&o.indexOf(n)>-1:"$="===t?n&&o.slice(-n.length)===n:"~="===t?(" "+o.replace(q," ")+" ").indexOf(n)>-1:"|="===t&&(o===n||o.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,o){var i="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===o?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,y=i!==s?"nextSibling":"previousSibling",m=t.parentNode,v=a&&t.nodeName.toLowerCase(),g=!l&&!a,b=!1;if(m){if(i){for(;y;){for(f=t;f=f[y];)if(a?f.nodeName.toLowerCase()===v:1===f.nodeType)return!1;h=y="only"===e&&!h&&"nextSibling"}return!0}if(h=[s?m.firstChild:m.lastChild],s&&g){for(b=(d=(u=(c=(p=(f=m)[C]||(f[C]={}))[f.uniqueID]||(p[f.uniqueID]={}))[e]||[])[0]===S&&u[1])&&u[2],f=d&&m.childNodes[d];f=++d&&f&&f[y]||(b=d=0)||h.pop();)if(1===f.nodeType&&++b&&f===t){c[e]=[S,d,b];break}}else if(g&&(b=d=(u=(c=(p=(f=t)[C]||(f[C]={}))[f.uniqueID]||(p[f.uniqueID]={}))[e]||[])[0]===S&&u[1]),!1===b)for(;(f=++d&&f&&f[y]||(b=d=0)||h.pop())&&((a?f.nodeName.toLowerCase()!==v:1!==f.nodeType)||!++b||(g&&((c=(p=f[C]||(f[C]={}))[f.uniqueID]||(p[f.uniqueID]={}))[e]=[S,b]),f!==t)););return(b-=o)===r||b%r==0&&b/r>=0}}},PSEUDO:function(e,t){var n,o=r.pseudos[e]||r.setFilters[e.toLowerCase()]||ae.error("unsupported pseudo: "+e);return o[C]?o(t):o.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ue((function(e,n){for(var r,i=o(e,t),s=i.length;s--;)e[r=D(e,i[s])]=!(n[r]=i[s])})):function(e){return o(e,0,n)}):o}},pseudos:{not:ue((function(e){var t=[],n=[],r=a(e.replace(W,"$1"));return r[C]?ue((function(e,t,n,o){for(var i,s=r(e,null,o,[]),a=e.length;a--;)(i=s[a])&&(e[a]=!(t[a]=i))})):function(e,o,i){return t[0]=e,r(t,null,i,n),t[0]=null,!n.pop()}})),has:ue((function(e){return function(t){return ae(e,t).length>0}})),contains:ue((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||o(t)).indexOf(e)>-1}})),lang:ue((function(e){return z.test(e||"")||ae.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=y?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ye(!1),disabled:ye(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Z.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:me((function(){return[0]})),last:me((function(e,t){return[t-1]})),eq:me((function(e,t,n){return[n<0?n+t:n]})),even:me((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),odd:me((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),lt:me((function(e,t,n){for(var r=n<0?n+t:n>t?t:n;--r>=0;)e.push(r);return e})),gt:me((function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e}))}},r.pseudos.nth=r.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=de(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=he(t);function ge(){}function be(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function Ce(e,t,n){var r=t.dir,o=t.next,i=o||r,s=n&&"parentNode"===i,a=x++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||s)return e(t,n,o);return!1}:function(t,n,l){var u,c,p,f=[S,a];if(l){for(;t=t[r];)if((1===t.nodeType||s)&&e(t,n,l))return!0}else for(;t=t[r];)if(1===t.nodeType||s)if(c=(p=t[C]||(t[C]={}))[t.uniqueID]||(p[t.uniqueID]={}),o&&o===t.nodeName.toLowerCase())t=t[r]||t;else{if((u=c[i])&&u[0]===S&&u[1]===a)return f[2]=u[2];if(c[i]=f,f[2]=e(t,n,l))return!0}return!1}}function we(e){return e.length>1?function(t,n,r){for(var o=e.length;o--;)if(!e[o](t,n,r))return!1;return!0}:e[0]}function Se(e,t,n,r,o){for(var i,s=[],a=0,l=e.length,u=null!=t;a<l;a++)(i=e[a])&&(n&&!n(i,r,o)||(s.push(i),u&&t.push(a)));return s}function xe(e,t,n,r,o,i){return r&&!r[C]&&(r=xe(r)),o&&!o[C]&&(o=xe(o,i)),ue((function(i,s,a,l){var u,c,p,f=[],d=[],h=s.length,y=i||function(e,t,n){for(var r=0,o=t.length;r<o;r++)ae(e,t[r],n);return n}(t||"*",a.nodeType?[a]:a,[]),m=!e||!i&&t?y:Se(y,f,e,a,l),v=n?o||(i?e:h||r)?[]:s:m;if(n&&n(m,v,a,l),r)for(u=Se(v,d),r(u,[],a,l),c=u.length;c--;)(p=u[c])&&(v[d[c]]=!(m[d[c]]=p));if(i){if(o||e){if(o){for(u=[],c=v.length;c--;)(p=v[c])&&u.push(m[c]=p);o(null,v=[],u,l)}for(c=v.length;c--;)(p=v[c])&&(u=o?D(i,p):f[c])>-1&&(i[u]=!(s[u]=p))}}else v=Se(v===s?v.splice(h,v.length):v),o?o(null,s,v,l):A.apply(s,v)}))}function Ee(e){for(var t,n,o,i=e.length,s=r.relative[e[0].type],a=s||r.relative[" "],l=s?1:0,c=Ce((function(e){return e===t}),a,!0),p=Ce((function(e){return D(t,e)>-1}),a,!0),f=[function(e,n,r){var o=!s&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r));return t=null,o}];l<i;l++)if(n=r.relative[e[l].type])f=[Ce(we(f),n)];else{if((n=r.filter[e[l].type].apply(null,e[l].matches))[C]){for(o=++l;o<i&&!r.relative[e[o].type];o++);return xe(l>1&&we(f),l>1&&be(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(W,"$1"),n,l<o&&Ee(e.slice(l,o)),o<i&&Ee(e=e.slice(o)),o<i&&be(e))}f.push(n)}return we(f)}return ge.prototype=r.filters=r.pseudos,r.setFilters=new ge,s=ae.tokenize=function(e,t){var n,o,i,s,a,l,u,c=_[e+" "];if(c)return t?0:c.slice(0);for(a=e,l=[],u=r.preFilter;a;){for(s in n&&!(o=U.exec(a))||(o&&(a=a.slice(o[0].length)||a),l.push(i=[])),n=!1,(o=$.exec(a))&&(n=o.shift(),i.push({value:n,type:o[0].replace(W," ")}),a=a.slice(n.length)),r.filter)!(o=V[s].exec(a))||u[s]&&!(o=u[s](o))||(n=o.shift(),i.push({value:n,type:s,matches:o}),a=a.slice(n.length));if(!n)break}return t?a.length:a?ae.error(e):_(e,l).slice(0)},a=ae.compile=function(e,t){var n,o=[],i=[],a=N[e+" "];if(!a){for(t||(t=s(e)),n=t.length;n--;)(a=Ee(t[n]))[C]?o.push(a):i.push(a);a=N(e,function(e,t){var n=t.length>0,o=e.length>0,i=function(i,s,a,l,c){var p,h,m,v=0,g="0",b=i&&[],C=[],w=u,x=i||o&&r.find.TAG("*",c),E=S+=null==w?1:Math.random()||.1,_=x.length;for(c&&(u=s==d||s||c);g!==_&&null!=(p=x[g]);g++){if(o&&p){for(h=0,s||p.ownerDocument==d||(f(p),a=!y);m=e[h++];)if(m(p,s||d,a)){l.push(p);break}c&&(S=E)}n&&((p=!m&&p)&&v--,i&&b.push(p))}if(v+=g,n&&g!==v){for(h=0;m=t[h++];)m(b,C,s,a);if(i){if(v>0)for(;g--;)b[g]||C[g]||(C[g]=k.call(l));C=Se(C)}A.apply(l,C),c&&!i&&C.length>0&&v+t.length>1&&ae.uniqueSort(l)}return c&&(S=E,u=w),b};return n?ue(i):i}(i,o)),a.selector=e}return a},l=ae.select=function(e,t,n,o){var i,l,u,c,p,f="function"==typeof e&&e,d=!o&&s(e=f.selector||e);if(n=n||[],1===d.length){if((l=d[0]=d[0].slice(0)).length>2&&"ID"===(u=l[0]).type&&9===t.nodeType&&y&&r.relative[l[1].type]){if(!(t=(r.find.ID(u.matches[0].replace(te,ne),t)||[])[0]))return n;f&&(t=t.parentNode),e=e.slice(l.shift().value.length)}for(i=V.needsContext.test(e)?0:l.length;i--&&(u=l[i],!r.relative[c=u.type]);)if((p=r.find[c])&&(o=p(u.matches[0].replace(te,ne),ee.test(l[0].type)&&ve(t.parentNode)||t))){if(l.splice(i,1),!(e=o.length&&be(l)))return A.apply(n,o),n;break}}return(f||a(e,d))(o,t,!y,n,!t||ee.test(e)&&ve(t.parentNode)||t),n},n.sortStable=C.split("").sort(L).join("")===C,n.detectDuplicates=!!p,f(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))})),ce((function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")}))||pe("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||pe("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute("disabled")}))||pe(I,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),ae}(n);_.find=T,(_.expr=T.selectors)[":"]=_.expr.pseudos,_.uniqueSort=_.unique=T.uniqueSort,_.text=T.getText,_.isXMLDoc=T.isXML,_.contains=T.contains,_.escapeSelector=T.escape;var L=function(e,t,n){for(var r=[],o=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(o&&_(e).is(n))break;r.push(e)}return r},P=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},O=_.expr.match.needsContext;function k(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var R=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function A(e,t,n){return g(t)?_.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?_.grep(e,(function(e){return e===t!==n})):"string"!=typeof t?_.grep(e,(function(e){return p.call(t,e)>-1!==n})):_.filter(t,e,n)}_.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?_.find.matchesSelector(r,e)?[r]:[]:_.find.matches(e,_.grep(t,(function(e){return 1===e.nodeType})))},_.fn.extend({find:function(e){var t,n,r=this.length,o=this;if("string"!=typeof e)return this.pushStack(_(e).filter((function(){for(t=0;t<r;t++)if(_.contains(o[t],this))return!0})));for(n=this.pushStack([]),t=0;t<r;t++)_.find(e,o[t],n);return r>1?_.uniqueSort(n):n},filter:function(e){return this.pushStack(A(this,e||[],!1))},not:function(e){return this.pushStack(A(this,e||[],!0))},is:function(e){return!!A(this,"string"==typeof e&&O.test(e)?_(e):e||[],!1).length}});var j,D=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(_.fn.init=function(e,t,n){var r,o;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:D.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof _?t[0]:t,_.merge(this,_.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),R.test(r[1])&&_.isPlainObject(t))for(r in t)g(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(o=C.getElementById(r[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(_):_.makeArray(e,this)}).prototype=_.fn,j=_(C);var I=/^(?:parents|prev(?:Until|All))/,F={children:!0,contents:!0,next:!0,prev:!0};function B(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}_.fn.extend({has:function(e){var t=_(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(_.contains(this,t[e]))return!0}))},closest:function(e,t){var n,r=0,o=this.length,i=[],s="string"!=typeof e&&_(e);if(!O.test(e))for(;r<o;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(s?s.index(n)>-1:1===n.nodeType&&_.find.matchesSelector(n,e))){i.push(n);break}return this.pushStack(i.length>1?_.uniqueSort(i):i)},index:function(e){return e?"string"==typeof e?p.call(_(e),this[0]):p.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(_.uniqueSort(_.merge(this.get(),_(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),_.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return L(e,"parentNode")},parentsUntil:function(e,t,n){return L(e,"parentNode",n)},next:function(e){return B(e,"nextSibling")},prev:function(e){return B(e,"previousSibling")},nextAll:function(e){return L(e,"nextSibling")},prevAll:function(e){return L(e,"previousSibling")},nextUntil:function(e,t,n){return L(e,"nextSibling",n)},prevUntil:function(e,t,n){return L(e,"previousSibling",n)},siblings:function(e){return P((e.parentNode||{}).firstChild,e)},children:function(e){return P(e.firstChild)},contents:function(e){return null!=e.contentDocument&&a(e.contentDocument)?e.contentDocument:(k(e,"template")&&(e=e.content||e),_.merge([],e.childNodes))}},(function(e,t){_.fn[e]=function(n,r){var o=_.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(o=_.filter(r,o)),this.length>1&&(F[e]||_.uniqueSort(o),I.test(e)&&o.reverse()),this.pushStack(o)}}));var H=/[^\x20\t\r\n\f]+/g;function M(e){return e}function q(e){throw e}function W(e,t,n,r){var o;try{e&&g(o=e.promise)?o.call(e).done(t).fail(n):e&&g(o=e.then)?o.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}_.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return _.each(e.match(H)||[],(function(e,n){t[n]=!0})),t}(e):_.extend({},e);var t,n,r,o,i=[],s=[],a=-1,l=function(){for(o=o||e.once,r=t=!0;s.length;a=-1)for(n=s.shift();++a<i.length;)!1===i[a].apply(n[0],n[1])&&e.stopOnFalse&&(a=i.length,n=!1);e.memory||(n=!1),t=!1,o&&(i=n?[]:"")},u={add:function(){return i&&(n&&!t&&(a=i.length-1,s.push(n)),function t(n){_.each(n,(function(n,r){g(r)?e.unique&&u.has(r)||i.push(r):r&&r.length&&"string"!==x(r)&&t(r)}))}(arguments),n&&!t&&l()),this},remove:function(){return _.each(arguments,(function(e,t){for(var n;(n=_.inArray(t,i,n))>-1;)i.splice(n,1),n<=a&&a--})),this},has:function(e){return e?_.inArray(e,i)>-1:i.length>0},empty:function(){return i&&(i=[]),this},disable:function(){return o=s=[],i=n="",this},disabled:function(){return!i},lock:function(){return o=s=[],n||t||(i=n=""),this},locked:function(){return!!o},fireWith:function(e,n){return o||(n=[e,(n=n||[]).slice?n.slice():n],s.push(n),t||l()),this},fire:function(){return u.fireWith(this,arguments),this},fired:function(){return!!r}};return u},_.extend({Deferred:function(e){var t=[["notify","progress",_.Callbacks("memory"),_.Callbacks("memory"),2],["resolve","done",_.Callbacks("once memory"),_.Callbacks("once memory"),0,"resolved"],["reject","fail",_.Callbacks("once memory"),_.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return s.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return _.Deferred((function(n){_.each(t,(function(t,r){var o=g(e[r[4]])&&e[r[4]];s[r[1]]((function(){var e=o&&o.apply(this,arguments);e&&g(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,o?[e]:arguments)}))})),e=null})).promise()},then:function(e,r,i){var s=0;function a(e,t,r,i){return function(){var l=this,u=arguments,c=function(){var n,c;if(!(e<s)){if((n=r.apply(l,u))===t.promise())throw new TypeError("Thenable self-resolution");c=n&&("object"===o(n)||"function"==typeof n)&&n.then,g(c)?i?c.call(n,a(s,t,M,i),a(s,t,q,i)):(s++,c.call(n,a(s,t,M,i),a(s,t,q,i),a(s,t,M,t.notifyWith))):(r!==M&&(l=void 0,u=[n]),(i||t.resolveWith)(l,u))}},p=i?c:function(){try{c()}catch(n){_.Deferred.exceptionHook&&_.Deferred.exceptionHook(n,p.stackTrace),e+1>=s&&(r!==q&&(l=void 0,u=[n]),t.rejectWith(l,u))}};e?p():(_.Deferred.getStackHook&&(p.stackTrace=_.Deferred.getStackHook()),n.setTimeout(p))}}return _.Deferred((function(n){t[0][3].add(a(0,n,g(i)?i:M,n.notifyWith)),t[1][3].add(a(0,n,g(e)?e:M)),t[2][3].add(a(0,n,g(r)?r:q))})).promise()},promise:function(e){return null!=e?_.extend(e,i):i}},s={};return _.each(t,(function(e,n){var o=n[2],a=n[5];i[n[1]]=o.add,a&&o.add((function(){r=a}),t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),o.add(n[3].fire),s[n[0]]=function(){return s[n[0]+"With"](this===s?void 0:this,arguments),this},s[n[0]+"With"]=o.fireWith})),i.promise(s),e&&e.call(s,s),s},when:function(e){var t=arguments.length,n=t,r=Array(n),o=l.call(arguments),i=_.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?l.call(arguments):n,--t||i.resolveWith(r,o)}};if(t<=1&&(W(e,i.done(s(n)).resolve,i.reject,!t),"pending"===i.state()||g(o[n]&&o[n].then)))return i.then();for(;n--;)W(o[n],s(n),i.reject);return i.promise()}});var U=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;_.Deferred.exceptionHook=function(e,t){n.console&&n.console.warn&&e&&U.test(e.name)&&n.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},_.readyException=function(e){n.setTimeout((function(){throw e}))};var $=_.Deferred();function K(){C.removeEventListener("DOMContentLoaded",K),n.removeEventListener("load",K),_.ready()}_.fn.ready=function(e){return $.then(e).catch((function(e){_.readyException(e)})),this},_.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--_.readyWait:_.isReady)||(_.isReady=!0,!0!==e&&--_.readyWait>0||$.resolveWith(C,[_]))}}),_.ready.then=$.then,"complete"===C.readyState||"loading"!==C.readyState&&!C.documentElement.doScroll?n.setTimeout(_.ready):(C.addEventListener("DOMContentLoaded",K),n.addEventListener("load",K));var G=function e(t,n,r,o,i,s,a){var l=0,u=t.length,c=null==r;if("object"===x(r))for(l in i=!0,r)e(t,n,l,r[l],!0,s,a);else if(void 0!==o&&(i=!0,g(o)||(a=!0),c&&(a?(n.call(t,o),n=null):(c=n,n=function(e,t,n){return c.call(_(e),n)})),n))for(;l<u;l++)n(t[l],r,a?o:o.call(t[l],l,n(t[l],r)));return i?t:c?n.call(t):u?n(t[0],r):s},z=/^-ms-/,V=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function Z(e){return e.replace(z,"ms-").replace(V,X)}var J=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Y(){this.expando=_.expando+Y.uid++}Y.uid=1,Y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},J(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,o=this.cache(e);if("string"==typeof t)o[Z(t)]=n;else for(r in t)o[Z(r)]=t[r];return o},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][Z(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(Z):(t=Z(t))in r?[t]:t.match(H)||[]).length;for(;n--;)delete r[t[n]]}(void 0===t||_.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!_.isEmptyObject(t)}};var Q=new Y,ee=new Y,te=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,ne=/[A-Z]/g;function re(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(ne,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=function(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:te.test(e)?JSON.parse(e):e)}(n)}catch(e){}ee.set(e,t,n)}else n=void 0;return n}_.extend({hasData:function(e){return ee.hasData(e)||Q.hasData(e)},data:function(e,t,n){return ee.access(e,t,n)},removeData:function(e,t){ee.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),_.fn.extend({data:function(e,t){var n,r,i,s=this[0],a=s&&s.attributes;if(void 0===e){if(this.length&&(i=ee.get(s),1===s.nodeType&&!Q.get(s,"hasDataAttrs"))){for(n=a.length;n--;)a[n]&&0===(r=a[n].name).indexOf("data-")&&(r=Z(r.slice(5)),re(s,r,i[r]));Q.set(s,"hasDataAttrs",!0)}return i}return"object"===o(e)?this.each((function(){ee.set(this,e)})):G(this,(function(t){var n;if(s&&void 0===t)return void 0!==(n=ee.get(s,e))||void 0!==(n=re(s,e))?n:void 0;this.each((function(){ee.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){ee.remove(this,e)}))}}),_.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,_.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){var n=_.queue(e,t=t||"fx"),r=n.length,o=n.shift(),i=_._queueHooks(e,t);"inprogress"===o&&(o=n.shift(),r--),o&&("fx"===t&&n.unshift("inprogress"),delete i.stop,o.call(e,(function(){_.dequeue(e,t)}),i)),!r&&i&&i.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:_.Callbacks("once memory").add((function(){Q.remove(e,[t+"queue",n])}))})}}),_.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?_.queue(this[0],e):void 0===t?this:this.each((function(){var n=_.queue(this,e,t);_._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&_.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){_.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,o=_.Deferred(),i=this,s=this.length,a=function(){--r||o.resolveWith(i,[i])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";s--;)(n=Q.get(i[s],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(a));return a(),o.promise(t)}});var oe=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ie=new RegExp("^(?:([+-])=|)("+oe+")([a-z%]*)$","i"),se=["Top","Right","Bottom","Left"],ae=C.documentElement,le=function(e){return _.contains(e.ownerDocument,e)},ue={composed:!0};ae.getRootNode&&(le=function(e){return _.contains(e.ownerDocument,e)||e.getRootNode(ue)===e.ownerDocument});var ce=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&le(e)&&"none"===_.css(e,"display")};function pe(e,t,n,r){var o,i,s=20,a=r?function(){return r.cur()}:function(){return _.css(e,t,"")},l=a(),u=n&&n[3]||(_.cssNumber[t]?"":"px"),c=e.nodeType&&(_.cssNumber[t]||"px"!==u&&+l)&&ie.exec(_.css(e,t));if(c&&c[3]!==u){for(l/=2,u=u||c[3],c=+l||1;s--;)_.style(e,t,c+u),(1-i)*(1-(i=a()/l||.5))<=0&&(s=0),c/=i;_.style(e,t,(c*=2)+u),n=n||[]}return n&&(c=+c||+l||0,o=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=u,r.start=c,r.end=o)),o}var fe={};function de(e){var t,n=e.ownerDocument,r=e.nodeName,o=fe[r];return o||(t=n.body.appendChild(n.createElement(r)),o=_.css(t,"display"),t.parentNode.removeChild(t),"none"===o&&(o="block"),fe[r]=o,o)}function he(e,t){for(var n,r,o=[],i=0,s=e.length;i<s;i++)(r=e[i]).style&&(n=r.style.display,t?("none"===n&&(o[i]=Q.get(r,"display")||null,o[i]||(r.style.display="")),""===r.style.display&&ce(r)&&(o[i]=de(r))):"none"!==n&&(o[i]="none",Q.set(r,"display",n)));for(i=0;i<s;i++)null!=o[i]&&(e[i].style.display=o[i]);return e}_.fn.extend({show:function(){return he(this,!0)},hide:function(){return he(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each((function(){ce(this)?_(this).show():_(this).hide()}))}});var ye,me,ve=/^(?:checkbox|radio)$/i,ge=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,be=/^$|^module$|\/(?:java|ecma)script/i;ye=C.createDocumentFragment().appendChild(C.createElement("div")),(me=C.createElement("input")).setAttribute("type","radio"),me.setAttribute("checked","checked"),me.setAttribute("name","t"),ye.appendChild(me),v.checkClone=ye.cloneNode(!0).cloneNode(!0).lastChild.checked,ye.innerHTML="<textarea>x</textarea>",v.noCloneChecked=!!ye.cloneNode(!0).lastChild.defaultValue,ye.innerHTML="<option></option>",v.option=!!ye.lastChild;var Ce={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function we(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&k(e,t)?_.merge([e],n):n}function Se(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",!t||Q.get(t[n],"globalEval"))}Ce.tbody=Ce.tfoot=Ce.colgroup=Ce.caption=Ce.thead,Ce.th=Ce.td,v.option||(Ce.optgroup=Ce.option=[1,"<select multiple='multiple'>","</select>"]);var xe=/<|&#?\w+;/;function Ee(e,t,n,r,o){for(var i,s,a,l,u,c,p=t.createDocumentFragment(),f=[],d=0,h=e.length;d<h;d++)if((i=e[d])||0===i)if("object"===x(i))_.merge(f,i.nodeType?[i]:i);else if(xe.test(i)){for(s=s||p.appendChild(t.createElement("div")),a=(ge.exec(i)||["",""])[1].toLowerCase(),l=Ce[a]||Ce._default,s.innerHTML=l[1]+_.htmlPrefilter(i)+l[2],c=l[0];c--;)s=s.lastChild;_.merge(f,s.childNodes),(s=p.firstChild).textContent=""}else f.push(t.createTextNode(i));for(p.textContent="",d=0;i=f[d++];)if(r&&_.inArray(i,r)>-1)o&&o.push(i);else if(u=le(i),s=we(p.appendChild(i),"script"),u&&Se(s),n)for(c=0;i=s[c++];)be.test(i.type||"")&&n.push(i);return p}var _e=/^([^.]*)(?:\.(.+)|)/;function Ne(){return!0}function Te(){return!1}function Le(e,t){return e===function(){try{return C.activeElement}catch(e){}}()==("focus"===t)}function Pe(e,t,n,r,i,s){var a,l;if("object"===o(t)){for(l in"string"!=typeof n&&(r=r||n,n=void 0),t)Pe(e,l,n,r,t[l],s);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===s&&(a=i,i=function(e){return _().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=_.guid++)),e.each((function(){_.event.add(this,t,i,r,n)}))}function Oe(e,t,n){n?(Q.set(e,t,!1),_.event.add(e,t,{namespace:!1,handler:function(e){var r,o,i=Q.get(this,t);if(1&e.isTrigger&&this[t]){if(i.length)(_.event.special[t]||{}).delegateType&&e.stopPropagation();else if(i=l.call(arguments),Q.set(this,t,i),r=n(this,t),this[t](),i!==(o=Q.get(this,t))||r?Q.set(this,t,!1):o={},i!==o)return e.stopImmediatePropagation(),e.preventDefault(),o&&o.value}else i.length&&(Q.set(this,t,{value:_.event.trigger(_.extend(i[0],_.Event.prototype),i.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,t)&&_.event.add(e,t,Ne)}_.event={global:{},add:function(e,t,n,r,o){var i,s,a,l,u,c,p,f,d,h,y,m=Q.get(e);if(J(e))for(n.handler&&(n=(i=n).handler,o=i.selector),o&&_.find.matchesSelector(ae,o),n.guid||(n.guid=_.guid++),(l=m.events)||(l=m.events=Object.create(null)),(s=m.handle)||(s=m.handle=function(t){return _.event.triggered!==t.type?_.event.dispatch.apply(e,arguments):void 0}),u=(t=(t||"").match(H)||[""]).length;u--;)d=y=(a=_e.exec(t[u])||[])[1],h=(a[2]||"").split(".").sort(),d&&(p=_.event.special[d]||{},d=(o?p.delegateType:p.bindType)||d,p=_.event.special[d]||{},c=_.extend({type:d,origType:y,data:r,handler:n,guid:n.guid,selector:o,needsContext:o&&_.expr.match.needsContext.test(o),namespace:h.join(".")},i),(f=l[d])||((f=l[d]=[]).delegateCount=0,p.setup&&!1!==p.setup.call(e,r,h,s)||e.addEventListener&&e.addEventListener(d,s)),p.add&&(p.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),o?f.splice(f.delegateCount++,0,c):f.push(c),_.event.global[d]=!0)},remove:function(e,t,n,r,o){var i,s,a,l,u,c,p,f,d,h,y,m=Q.hasData(e)&&Q.get(e);if(m&&(l=m.events)){for(u=(t=(t||"").match(H)||[""]).length;u--;)if(d=y=(a=_e.exec(t[u])||[])[1],h=(a[2]||"").split(".").sort(),d){for(p=_.event.special[d]||{},f=l[d=(r?p.delegateType:p.bindType)||d]||[],a=a[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=i=f.length;i--;)c=f[i],!o&&y!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(i,1),c.selector&&f.delegateCount--,p.remove&&p.remove.call(e,c));s&&!f.length&&(p.teardown&&!1!==p.teardown.call(e,h,m.handle)||_.removeEvent(e,d,m.handle),delete l[d])}else for(d in l)_.event.remove(e,d+t[u],n,r,!0);_.isEmptyObject(l)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,o,i,s,a=new Array(arguments.length),l=_.event.fix(e),u=(Q.get(this,"events")||Object.create(null))[l.type]||[],c=_.event.special[l.type]||{};for(a[0]=l,t=1;t<arguments.length;t++)a[t]=arguments[t];if(l.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,l)){for(s=_.event.handlers.call(this,l,u),t=0;(o=s[t++])&&!l.isPropagationStopped();)for(l.currentTarget=o.elem,n=0;(i=o.handlers[n++])&&!l.isImmediatePropagationStopped();)l.rnamespace&&!1!==i.namespace&&!l.rnamespace.test(i.namespace)||(l.handleObj=i,l.data=i.data,void 0!==(r=((_.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,a))&&!1===(l.result=r)&&(l.preventDefault(),l.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,l),l.result}},handlers:function(e,t){var n,r,o,i,s,a=[],l=t.delegateCount,u=e.target;if(l&&u.nodeType&&!("click"===e.type&&e.button>=1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&("click"!==e.type||!0!==u.disabled)){for(i=[],s={},n=0;n<l;n++)void 0===s[o=(r=t[n]).selector+" "]&&(s[o]=r.needsContext?_(o,this).index(u)>-1:_.find(o,this,null,[u]).length),s[o]&&i.push(r);i.length&&a.push({elem:u,handlers:i})}return u=this,l<t.length&&a.push({elem:u,handlers:t.slice(l)}),a},addProp:function(e,t){Object.defineProperty(_.Event.prototype,e,{enumerable:!0,configurable:!0,get:g(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[_.expando]?e:new _.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return ve.test(t.type)&&t.click&&k(t,"input")&&Oe(t,"click",Ne),!1},trigger:function(e){var t=this||e;return ve.test(t.type)&&t.click&&k(t,"input")&&Oe(t,"click"),!0},_default:function(e){var t=e.target;return ve.test(t.type)&&t.click&&k(t,"input")&&Q.get(t,"click")||k(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},_.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},(_.Event=function(e,t){if(!(this instanceof _.Event))return new _.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ne:Te,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&_.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[_.expando]=!0}).prototype={constructor:_.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ne,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ne,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ne,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},_.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},_.event.addProp),_.each({focus:"focusin",blur:"focusout"},(function(e,t){_.event.special[e]={setup:function(){return Oe(this,e,Le),!1},trigger:function(){return Oe(this,e),!0},_default:function(){return!0},delegateType:t}})),_.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},(function(e,t){_.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,o=e.relatedTarget,i=e.handleObj;return o&&(o===r||_.contains(r,o))||(e.type=i.origType,n=i.handler.apply(this,arguments),e.type=t),n}}})),_.fn.extend({on:function(e,t,n,r){return Pe(this,e,t,n,r)},one:function(e,t,n,r){return Pe(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,_(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"===o(e)){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Te),this.each((function(){_.event.remove(this,e,n,t)}))}});var ke=/<script|<style|<link/i,Re=/checked\s*(?:[^=]|=\s*.checked.)/i,Ae=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function je(e,t){return k(e,"table")&&k(11!==t.nodeType?t:t.firstChild,"tr")&&_(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Ie(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,o,i,s,a;if(1===t.nodeType){if(Q.hasData(e)&&(a=Q.get(e).events))for(o in Q.remove(t,"handle events"),a)for(n=0,r=a[o].length;n<r;n++)_.event.add(t,o,a[o][n]);ee.hasData(e)&&(i=ee.access(e),s=_.extend({},i),ee.set(t,s))}}function Be(e,t){var n=t.nodeName.toLowerCase();"input"===n&&ve.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function He(e,t,n,r){t=u(t);var o,i,s,a,l,c,p=0,f=e.length,d=f-1,h=t[0],y=g(h);if(y||f>1&&"string"==typeof h&&!v.checkClone&&Re.test(h))return e.each((function(o){var i=e.eq(o);y&&(t[0]=h.call(this,o,i.html())),He(i,t,n,r)}));if(f&&(i=(o=Ee(t,e[0].ownerDocument,!1,e,r)).firstChild,1===o.childNodes.length&&(o=i),i||r)){for(a=(s=_.map(we(o,"script"),De)).length;p<f;p++)l=o,p!==d&&(l=_.clone(l,!0,!0),a&&_.merge(s,we(l,"script"))),n.call(e[p],l,p);if(a)for(c=s[s.length-1].ownerDocument,_.map(s,Ie),p=0;p<a;p++)l=s[p],be.test(l.type||"")&&!Q.access(l,"globalEval")&&_.contains(c,l)&&(l.src&&"module"!==(l.type||"").toLowerCase()?_._evalUrl&&!l.noModule&&_._evalUrl(l.src,{nonce:l.nonce||l.getAttribute("nonce")},c):S(l.textContent.replace(Ae,""),l,c))}return e}function Me(e,t,n){for(var r,o=t?_.filter(t,e):e,i=0;null!=(r=o[i]);i++)n||1!==r.nodeType||_.cleanData(we(r)),r.parentNode&&(n&&le(r)&&Se(we(r,"script")),r.parentNode.removeChild(r));return e}_.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,o,i,s,a=e.cloneNode(!0),l=le(e);if(!(v.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||_.isXMLDoc(e)))for(s=we(a),r=0,o=(i=we(e)).length;r<o;r++)Be(i[r],s[r]);if(t)if(n)for(i=i||we(e),s=s||we(a),r=0,o=i.length;r<o;r++)Fe(i[r],s[r]);else Fe(e,a);return(s=we(a,"script")).length>0&&Se(s,!l&&we(e,"script")),a},cleanData:function(e){for(var t,n,r,o=_.event.special,i=0;void 0!==(n=e[i]);i++)if(J(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)o[r]?_.event.remove(n,r):_.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[ee.expando]&&(n[ee.expando]=void 0)}}}),_.fn.extend({detach:function(e){return Me(this,e,!0)},remove:function(e){return Me(this,e)},text:function(e){return G(this,(function(e){return void 0===e?_.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return He(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)}))},prepend:function(){return He(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return He(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return He(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(_.cleanData(we(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return _.clone(this,e,t)}))},html:function(e){return G(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!ke.test(e)&&!Ce[(ge.exec(e)||["",""])[1].toLowerCase()]){e=_.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(_.cleanData(we(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return He(this,arguments,(function(t){var n=this.parentNode;_.inArray(this,e)<0&&(_.cleanData(we(this)),n&&n.replaceChild(t,this))}),e)}}),_.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},(function(e,t){_.fn[e]=function(e){for(var n,r=[],o=_(e),i=o.length-1,s=0;s<=i;s++)n=s===i?this:this.clone(!0),_(o[s])[t](n),c.apply(r,n.get());return this.pushStack(r)}}));var qe=new RegExp("^("+oe+")(?!px)[a-z%]+$","i"),We=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=n),t.getComputedStyle(e)},Ue=function(e,t,n){var r,o,i={};for(o in t)i[o]=e.style[o],e.style[o]=t[o];for(o in r=n.call(e),t)e.style[o]=i[o];return r},$e=new RegExp(se.join("|"),"i");function Ke(e,t,n){var r,o,i,s,a=e.style;return(n=n||We(e))&&(""!==(s=n.getPropertyValue(t)||n[t])||le(e)||(s=_.style(e,t)),!v.pixelBoxStyles()&&qe.test(s)&&$e.test(t)&&(r=a.width,o=a.minWidth,i=a.maxWidth,a.minWidth=a.maxWidth=a.width=s,s=n.width,a.width=r,a.minWidth=o,a.maxWidth=i)),void 0!==s?s+"":s}function Ge(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(c){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",c.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ae.appendChild(u).appendChild(c);var e=n.getComputedStyle(c);r="1%"!==e.top,l=12===t(e.marginLeft),c.style.right="60%",s=36===t(e.right),o=36===t(e.width),c.style.position="absolute",i=12===t(c.offsetWidth/3),ae.removeChild(u),c=null}}function t(e){return Math.round(parseFloat(e))}var r,o,i,s,a,l,u=C.createElement("div"),c=C.createElement("div");c.style&&(c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",v.clearCloneStyle="content-box"===c.style.backgroundClip,_.extend(v,{boxSizingReliable:function(){return e(),o},pixelBoxStyles:function(){return e(),s},pixelPosition:function(){return e(),r},reliableMarginLeft:function(){return e(),l},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,r,o;return null==a&&(e=C.createElement("table"),t=C.createElement("tr"),r=C.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="border:1px solid",t.style.height="1px",r.style.height="9px",r.style.display="block",ae.appendChild(e).appendChild(t).appendChild(r),o=n.getComputedStyle(t),a=parseInt(o.height,10)+parseInt(o.borderTopWidth,10)+parseInt(o.borderBottomWidth,10)===t.offsetHeight,ae.removeChild(e)),a}}))}();var ze=["Webkit","Moz","ms"],Ve=C.createElement("div").style,Xe={};function Ze(e){var t=_.cssProps[e]||Xe[e];return t||(e in Ve?e:Xe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=ze.length;n--;)if((e=ze[n]+t)in Ve)return e}(e)||e)}var Je=/^(none|table(?!-c[ea]).+)/,Ye=/^--/,Qe={position:"absolute",visibility:"hidden",display:"block"},et={letterSpacing:"0",fontWeight:"400"};function tt(e,t,n){var r=ie.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function nt(e,t,n,r,o,i){var s="width"===t?1:0,a=0,l=0;if(n===(r?"border":"content"))return 0;for(;s<4;s+=2)"margin"===n&&(l+=_.css(e,n+se[s],!0,o)),r?("content"===n&&(l-=_.css(e,"padding"+se[s],!0,o)),"margin"!==n&&(l-=_.css(e,"border"+se[s]+"Width",!0,o))):(l+=_.css(e,"padding"+se[s],!0,o),"padding"!==n?l+=_.css(e,"border"+se[s]+"Width",!0,o):a+=_.css(e,"border"+se[s]+"Width",!0,o));return!r&&i>=0&&(l+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-i-l-a-.5))||0),l}function rt(e,t,n){var r=We(e),o=(!v.boxSizingReliable()||n)&&"border-box"===_.css(e,"boxSizing",!1,r),i=o,s=Ke(e,t,r),a="offset"+t[0].toUpperCase()+t.slice(1);if(qe.test(s)){if(!n)return s;s="auto"}return(!v.boxSizingReliable()&&o||!v.reliableTrDimensions()&&k(e,"tr")||"auto"===s||!parseFloat(s)&&"inline"===_.css(e,"display",!1,r))&&e.getClientRects().length&&(o="border-box"===_.css(e,"boxSizing",!1,r),(i=a in e)&&(s=e[a])),(s=parseFloat(s)||0)+nt(e,t,n||(o?"border":"content"),i,r,s)+"px"}function ot(e,t,n,r,o){return new ot.prototype.init(e,t,n,r,o)}_.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ke(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,s,a,l=Z(t),u=Ye.test(t),c=e.style;if(u||(t=Ze(l)),a=_.cssHooks[t]||_.cssHooks[l],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:c[t];"string"===(s=o(n))&&(i=ie.exec(n))&&i[1]&&(n=pe(e,t,i),s="number"),null!=n&&n==n&&("number"!==s||u||(n+=i&&i[3]||(_.cssNumber[l]?"":"px")),v.clearCloneStyle||""!==n||0!==t.indexOf("background")||(c[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?c.setProperty(t,n):c[t]=n))}},css:function(e,t,n,r){var o,i,s,a=Z(t);return Ye.test(t)||(t=Ze(a)),(s=_.cssHooks[t]||_.cssHooks[a])&&"get"in s&&(o=s.get(e,!0,n)),void 0===o&&(o=Ke(e,t,r)),"normal"===o&&t in et&&(o=et[t]),""===n||n?(i=parseFloat(o),!0===n||isFinite(i)?i||0:o):o}}),_.each(["height","width"],(function(e,t){_.cssHooks[t]={get:function(e,n,r){if(n)return!Je.test(_.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?rt(e,t,r):Ue(e,Qe,(function(){return rt(e,t,r)}))},set:function(e,n,r){var o,i=We(e),s=!v.scrollboxSize()&&"absolute"===i.position,a=(s||r)&&"border-box"===_.css(e,"boxSizing",!1,i),l=r?nt(e,t,r,a,i):0;return a&&s&&(l-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(i[t])-nt(e,t,"border",!1,i)-.5)),l&&(o=ie.exec(n))&&"px"!==(o[3]||"px")&&(e.style[t]=n,n=_.css(e,t)),tt(0,n,l)}}})),_.cssHooks.marginLeft=Ge(v.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Ke(e,"marginLeft"))||e.getBoundingClientRect().left-Ue(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),_.each({margin:"",padding:"",border:"Width"},(function(e,t){_.cssHooks[e+t]={expand:function(n){for(var r=0,o={},i="string"==typeof n?n.split(" "):[n];r<4;r++)o[e+se[r]+t]=i[r]||i[r-2]||i[0];return o}},"margin"!==e&&(_.cssHooks[e+t].set=tt)})),_.fn.extend({css:function(e,t){return G(this,(function(e,t,n){var r,o,i={},s=0;if(Array.isArray(t)){for(r=We(e),o=t.length;s<o;s++)i[t[s]]=_.css(e,t[s],!1,r);return i}return void 0!==n?_.style(e,t,n):_.css(e,t)}),e,t,arguments.length>1)}}),_.Tween=ot,ot.prototype={constructor:ot,init:function(e,t,n,r,o,i){this.elem=e,this.prop=n,this.easing=o||_.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=i||(_.cssNumber[n]?"":"px")},cur:function(){var e=ot.propHooks[this.prop];return e&&e.get?e.get(this):ot.propHooks._default.get(this)},run:function(e){var t,n=ot.propHooks[this.prop];return this.options.duration?this.pos=t=_.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):ot.propHooks._default.set(this),this}},ot.prototype.init.prototype=ot.prototype,ot.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=_.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){_.fx.step[e.prop]?_.fx.step[e.prop](e):1!==e.elem.nodeType||!_.cssHooks[e.prop]&&null==e.elem.style[Ze(e.prop)]?e.elem[e.prop]=e.now:_.style(e.elem,e.prop,e.now+e.unit)}}},ot.propHooks.scrollTop=ot.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},_.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},(_.fx=ot.prototype.init).step={};var it,st,at=/^(?:toggle|show|hide)$/,lt=/queueHooks$/;function ut(){st&&(!1===C.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(ut):n.setTimeout(ut,_.fx.interval),_.fx.tick())}function ct(){return n.setTimeout((function(){it=void 0})),it=Date.now()}function pt(e,t){var n,r=0,o={height:e};for(t=t?1:0;r<4;r+=2-t)o["margin"+(n=se[r])]=o["padding"+n]=e;return t&&(o.opacity=o.width=e),o}function ft(e,t,n){for(var r,o=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),i=0,s=o.length;i<s;i++)if(r=o[i].call(n,t,e))return r}function dt(e,t,n){var r,o,i=0,s=dt.prefilters.length,a=_.Deferred().always((function(){delete l.elem})),l=function(){if(o)return!1;for(var t=it||ct(),n=Math.max(0,u.startTime+u.duration-t),r=1-(n/u.duration||0),i=0,s=u.tweens.length;i<s;i++)u.tweens[i].run(r);return a.notifyWith(e,[u,r,n]),r<1&&s?n:(s||a.notifyWith(e,[u,1,0]),a.resolveWith(e,[u]),!1)},u=a.promise({elem:e,props:_.extend({},t),opts:_.extend(!0,{specialEasing:{},easing:_.easing._default},n),originalProperties:t,originalOptions:n,startTime:it||ct(),duration:n.duration,tweens:[],createTween:function(t,n){var r=_.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(o)return this;for(o=!0;n<r;n++)u.tweens[n].run(1);return t?(a.notifyWith(e,[u,1,0]),a.resolveWith(e,[u,t])):a.rejectWith(e,[u,t]),this}}),c=u.props;for(!function(e,t){var n,r,o,i,s;for(n in e)if(o=t[r=Z(n)],i=e[n],Array.isArray(i)&&(o=i[1],i=e[n]=i[0]),n!==r&&(e[r]=i,delete e[n]),(s=_.cssHooks[r])&&"expand"in s)for(n in i=s.expand(i),delete e[r],i)n in e||(e[n]=i[n],t[n]=o);else t[r]=o}(c,u.opts.specialEasing);i<s;i++)if(r=dt.prefilters[i].call(u,e,c,u.opts))return g(r.stop)&&(_._queueHooks(u.elem,u.opts.queue).stop=r.stop.bind(r)),r;return _.map(c,ft,u),g(u.opts.start)&&u.opts.start.call(e,u),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always),_.fx.timer(_.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u}_.Animation=_.extend(dt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return pe(n.elem,e,ie.exec(t),n),n}]},tweener:function(e,t){g(e)?(t=e,e=["*"]):e=e.match(H);for(var n,r=0,o=e.length;r<o;r++)n=e[r],dt.tweeners[n]=dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,o,i,s,a,l,u,c,p="width"in t||"height"in t,f=this,d={},h=e.style,y=e.nodeType&&ce(e),m=Q.get(e,"fxshow");for(r in n.queue||(null==(s=_._queueHooks(e,"fx")).unqueued&&(s.unqueued=0,a=s.empty.fire,s.empty.fire=function(){s.unqueued||a()}),s.unqueued++,f.always((function(){f.always((function(){s.unqueued--,_.queue(e,"fx").length||s.empty.fire()}))}))),t)if(o=t[r],at.test(o)){if(delete t[r],i=i||"toggle"===o,o===(y?"hide":"show")){if("show"!==o||!m||void 0===m[r])continue;y=!0}d[r]=m&&m[r]||_.style(e,r)}if((l=!_.isEmptyObject(t))||!_.isEmptyObject(d))for(r in p&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(u=m&&m.display)&&(u=Q.get(e,"display")),"none"===(c=_.css(e,"display"))&&(u?c=u:(he([e],!0),u=e.style.display||u,c=_.css(e,"display"),he([e]))),("inline"===c||"inline-block"===c&&null!=u)&&"none"===_.css(e,"float")&&(l||(f.done((function(){h.display=u})),null==u&&(c=h.display,u="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",f.always((function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]}))),l=!1,d)l||(m?"hidden"in m&&(y=m.hidden):m=Q.access(e,"fxshow",{display:u}),i&&(m.hidden=!y),y&&he([e],!0),f.done((function(){for(r in y||he([e]),Q.remove(e,"fxshow"),d)_.style(e,r,d[r])}))),l=ft(y?m[r]:0,r,f),r in m||(m[r]=l.start,y&&(l.end=l.start,l.start=0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),_.speed=function(e,t,n){var r=e&&"object"===o(e)?_.extend({},e):{complete:n||!n&&t||g(e)&&e,duration:e,easing:n&&t||t&&!g(t)&&t};return _.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in _.fx.speeds?r.duration=_.fx.speeds[r.duration]:r.duration=_.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){g(r.old)&&r.old.call(this),r.queue&&_.dequeue(this,r.queue)},r},_.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ce).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var o=_.isEmptyObject(e),i=_.speed(t,n,r),s=function(){var t=dt(this,_.extend({},e),i);(o||Q.get(this,"finish"))&&t.stop(!0)};return s.finish=s,o||!1===i.queue?this.each(s):this.queue(i.queue,s)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&this.queue(e||"fx",[]),this.each((function(){var t=!0,o=null!=e&&e+"queueHooks",i=_.timers,s=Q.get(this);if(o)s[o]&&s[o].stop&&r(s[o]);else for(o in s)s[o]&&s[o].stop&&lt.test(o)&&r(s[o]);for(o=i.length;o--;)i[o].elem!==this||null!=e&&i[o].queue!==e||(i[o].anim.stop(n),t=!1,i.splice(o,1));!t&&n||_.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||"fx"),this.each((function(){var t,n=Q.get(this),r=n[e+"queue"],o=n[e+"queueHooks"],i=_.timers,s=r?r.length:0;for(n.finish=!0,_.queue(this,e,[]),o&&o.stop&&o.stop.call(this,!0),t=i.length;t--;)i[t].elem===this&&i[t].queue===e&&(i[t].anim.stop(!0),i.splice(t,1));for(t=0;t<s;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish}))}}),_.each(["toggle","show","hide"],(function(e,t){var n=_.fn[t];_.fn[t]=function(e,r,o){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(pt(t,!0),e,r,o)}})),_.each({slideDown:pt("show"),slideUp:pt("hide"),slideToggle:pt("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},(function(e,t){_.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}})),_.timers=[],_.fx.tick=function(){var e,t=0,n=_.timers;for(it=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||_.fx.stop(),it=void 0},_.fx.timer=function(e){_.timers.push(e),_.fx.start()},_.fx.interval=13,_.fx.start=function(){st||(st=!0,ut())},_.fx.stop=function(){st=null},_.fx.speeds={slow:600,fast:200,_default:400},_.fn.delay=function(e,t){return e=_.fx&&_.fx.speeds[e]||e,t=t||"fx",this.queue(t,(function(t,r){var o=n.setTimeout(t,e);r.stop=function(){n.clearTimeout(o)}}))},function(){var e=C.createElement("input"),t=C.createElement("select").appendChild(C.createElement("option"));e.type="checkbox",v.checkOn=""!==e.value,v.optSelected=t.selected,(e=C.createElement("input")).value="t",e.type="radio",v.radioValue="t"===e.value}();var ht,yt=_.expr.attrHandle;_.fn.extend({attr:function(e,t){return G(this,_.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){_.removeAttr(this,e)}))}}),_.extend({attr:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return void 0===e.getAttribute?_.prop(e,t,n):(1===i&&_.isXMLDoc(e)||(o=_.attrHooks[t.toLowerCase()]||(_.expr.match.bool.test(t)?ht:void 0)),void 0!==n?null===n?void _.removeAttr(e,t):o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:(e.setAttribute(t,n+""),n):o&&"get"in o&&null!==(r=o.get(e,t))?r:null==(r=_.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!v.radioValue&&"radio"===t&&k(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,o=t&&t.match(H);if(o&&1===e.nodeType)for(;n=o[r++];)e.removeAttribute(n)}}),ht={set:function(e,t,n){return!1===t?_.removeAttr(e,n):e.setAttribute(n,n),n}},_.each(_.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=yt[t]||_.find.attr;yt[t]=function(e,t,r){var o,i,s=t.toLowerCase();return r||(i=yt[s],yt[s]=o,o=null!=n(e,t,r)?s:null,yt[s]=i),o}}));var mt=/^(?:input|select|textarea|button)$/i,vt=/^(?:a|area)$/i;function gt(e){return(e.match(H)||[]).join(" ")}function bt(e){return e.getAttribute&&e.getAttribute("class")||""}function Ct(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(H)||[]}_.fn.extend({prop:function(e,t){return G(this,_.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[_.propFix[e]||e]}))}}),_.extend({prop:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return 1===i&&_.isXMLDoc(e)||(t=_.propFix[t]||t,o=_.propHooks[t]),void 0!==n?o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:e[t]=n:o&&"get"in o&&null!==(r=o.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=_.find.attr(e,"tabindex");return t?parseInt(t,10):mt.test(e.nodeName)||vt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),v.optSelected||(_.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),_.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){_.propFix[this.toLowerCase()]=this})),_.fn.extend({addClass:function(e){var t,n,r,o,i,s,a,l=0;if(g(e))return this.each((function(t){_(this).addClass(e.call(this,t,bt(this)))}));if((t=Ct(e)).length)for(;n=this[l++];)if(o=bt(n),r=1===n.nodeType&&" "+gt(o)+" "){for(s=0;i=t[s++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");o!==(a=gt(r))&&n.setAttribute("class",a)}return this},removeClass:function(e){var t,n,r,o,i,s,a,l=0;if(g(e))return this.each((function(t){_(this).removeClass(e.call(this,t,bt(this)))}));if(!arguments.length)return this.attr("class","");if((t=Ct(e)).length)for(;n=this[l++];)if(o=bt(n),r=1===n.nodeType&&" "+gt(o)+" "){for(s=0;i=t[s++];)for(;r.indexOf(" "+i+" ")>-1;)r=r.replace(" "+i+" "," ");o!==(a=gt(r))&&n.setAttribute("class",a)}return this},toggleClass:function(e,t){var n=o(e),r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each((function(n){_(this).toggleClass(e.call(this,n,bt(this),t),t)})):this.each((function(){var t,o,i,s;if(r)for(o=0,i=_(this),s=Ct(e);t=s[o++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else void 0!==e&&"boolean"!==n||((t=bt(this))&&Q.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":Q.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+gt(bt(n))+" ").indexOf(t)>-1)return!0;return!1}});var wt=/\r/g;_.fn.extend({val:function(e){var t,n,r,o=this[0];return arguments.length?(r=g(e),this.each((function(n){var o;1===this.nodeType&&(null==(o=r?e.call(this,n,_(this).val()):e)?o="":"number"==typeof o?o+="":Array.isArray(o)&&(o=_.map(o,(function(e){return null==e?"":e+""}))),(t=_.valHooks[this.type]||_.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,o,"value")||(this.value=o))}))):o?(t=_.valHooks[o.type]||_.valHooks[o.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(o,"value"))?n:"string"==typeof(n=o.value)?n.replace(wt,""):null==n?"":n:void 0}}),_.extend({valHooks:{option:{get:function(e){var t=_.find.attr(e,"value");return null!=t?t:gt(_.text(e))}},select:{get:function(e){var t,n,r,o=e.options,i=e.selectedIndex,s="select-one"===e.type,a=s?null:[],l=s?i+1:o.length;for(r=i<0?l:s?i:0;r<l;r++)if(((n=o[r]).selected||r===i)&&!n.disabled&&(!n.parentNode.disabled||!k(n.parentNode,"optgroup"))){if(t=_(n).val(),s)return t;a.push(t)}return a},set:function(e,t){for(var n,r,o=e.options,i=_.makeArray(t),s=o.length;s--;)((r=o[s]).selected=_.inArray(_.valHooks.option.get(r),i)>-1)&&(n=!0);return n||(e.selectedIndex=-1),i}}}}),_.each(["radio","checkbox"],(function(){_.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=_.inArray(_(e).val(),t)>-1}},v.checkOn||(_.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),v.focusin="onfocusin"in n;var St=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};_.extend(_.event,{trigger:function(e,t,r,i){var s,a,l,u,c,p,f,d,y=[r||C],m=h.call(e,"type")?e.type:e,v=h.call(e,"namespace")?e.namespace.split("."):[];if(a=d=l=r=r||C,3!==r.nodeType&&8!==r.nodeType&&!St.test(m+_.event.triggered)&&(m.indexOf(".")>-1&&(v=m.split("."),m=v.shift(),v.sort()),c=m.indexOf(":")<0&&"on"+m,(e=e[_.expando]?e:new _.Event(m,"object"===o(e)&&e)).isTrigger=i?2:3,e.namespace=v.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+v.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:_.makeArray(t,[e]),f=_.event.special[m]||{},i||!f.trigger||!1!==f.trigger.apply(r,t))){if(!i&&!f.noBubble&&!b(r)){for(u=f.delegateType||m,St.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),l=a;l===(r.ownerDocument||C)&&y.push(l.defaultView||l.parentWindow||n)}for(s=0;(a=y[s++])&&!e.isPropagationStopped();)d=a,e.type=s>1?u:f.bindType||m,(p=(Q.get(a,"events")||Object.create(null))[e.type]&&Q.get(a,"handle"))&&p.apply(a,t),(p=c&&a[c])&&p.apply&&J(a)&&(e.result=p.apply(a,t),!1===e.result&&e.preventDefault());return e.type=m,i||e.isDefaultPrevented()||f._default&&!1!==f._default.apply(y.pop(),t)||!J(r)||c&&g(r[m])&&!b(r)&&((l=r[c])&&(r[c]=null),_.event.triggered=m,e.isPropagationStopped()&&d.addEventListener(m,xt),r[m](),e.isPropagationStopped()&&d.removeEventListener(m,xt),_.event.triggered=void 0,l&&(r[c]=l)),e.result}},simulate:function(e,t,n){var r=_.extend(new _.Event,n,{type:e,isSimulated:!0});_.event.trigger(r,null,t)}}),_.fn.extend({trigger:function(e,t){return this.each((function(){_.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return _.event.trigger(e,t,n,!0)}}),v.focusin||_.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){_.event.simulate(t,e.target,_.event.fix(e))};_.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,o=Q.access(r,t);o||r.addEventListener(e,n,!0),Q.access(r,t,(o||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,o=Q.access(r,t)-1;o?Q.access(r,t,o):(r.removeEventListener(e,n,!0),Q.remove(r,t))}}}));var Et=n.location,_t={guid:Date.now()},Nt=/\?/;_.parseXML=function(e){var t,r;if(!e||"string"!=typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(e){}return r=t&&t.getElementsByTagName("parsererror")[0],t&&!r||_.error("Invalid XML: "+(r?_.map(r.childNodes,(function(e){return e.textContent})).join("\n"):e)),t};var Tt=/\[\]$/,Lt=/\r?\n/g,Pt=/^(?:submit|button|image|reset|file)$/i,Ot=/^(?:input|select|textarea|keygen)/i;function kt(e,t,n,r){var i;if(Array.isArray(t))_.each(t,(function(t,i){n||Tt.test(e)?r(e,i):kt(e+"["+("object"===o(i)&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==x(t))r(e,t);else for(i in t)kt(e+"["+i+"]",t[i],n,r)}_.param=function(e,t){var n,r=[],o=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!_.isPlainObject(e))_.each(e,(function(){o(this.name,this.value)}));else for(n in e)kt(n,e[n],t,o);return r.join("&")},_.fn.extend({serialize:function(){return _.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=_.prop(this,"elements");return e?_.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!_(this).is(":disabled")&&Ot.test(this.nodeName)&&!Pt.test(e)&&(this.checked||!ve.test(e))})).map((function(e,t){var n=_(this).val();return null==n?null:Array.isArray(n)?_.map(n,(function(e){return{name:t.name,value:e.replace(Lt,"\r\n")}})):{name:t.name,value:n.replace(Lt,"\r\n")}})).get()}});var Rt=/%20/g,At=/#.*$/,jt=/([?&])_=[^&]*/,Dt=/^(.*?):[ \t]*([^\r\n]*)$/gm,It=/^(?:GET|HEAD)$/,Ft=/^\/\//,Bt={},Ht={},Mt="*/".concat("*"),qt=C.createElement("a");function Wt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,o=0,i=t.toLowerCase().match(H)||[];if(g(n))for(;r=i[o++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Ut(e,t,n,r){var o={},i=e===Ht;function s(a){var l;return o[a]=!0,_.each(e[a]||[],(function(e,a){var u=a(t,n,r);return"string"!=typeof u||i||o[u]?i?!(l=u):void 0:(t.dataTypes.unshift(u),s(u),!1)})),l}return s(t.dataTypes[0])||!o["*"]&&s("*")}function $t(e,t){var n,r,o=_.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((o[n]?e:r||(r={}))[n]=t[n]);return r&&_.extend(!0,e,r),e}qt.href=Et.href,_.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Mt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":_.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?$t($t(e,_.ajaxSettings),t):$t(_.ajaxSettings,e)},ajaxPrefilter:Wt(Bt),ajaxTransport:Wt(Ht),ajax:function(e,t){"object"===o(e)&&(t=e,e=void 0);var r,i,s,a,l,u,c,p,f,d,h=_.ajaxSetup({},t=t||{}),y=h.context||h,m=h.context&&(y.nodeType||y.jquery)?_(y):_.event,v=_.Deferred(),g=_.Callbacks("once memory"),b=h.statusCode||{},w={},S={},x="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(c){if(!a)for(a={};t=Dt.exec(s);)a[t[1].toLowerCase()+" "]=(a[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=a[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return c?s:null},setRequestHeader:function(e,t){return null==c&&(e=S[e.toLowerCase()]=S[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)E.always(e[E.status]);else for(t in e)b[t]=[b[t],e[t]];return this},abort:function(e){var t=e||x;return r&&r.abort(t),N(0,t),this}};if(v.promise(E),h.url=((e||h.url||Et.href)+"").replace(Ft,Et.protocol+"//"),h.type=t.method||t.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(H)||[""],null==h.crossDomain){u=C.createElement("a");try{u.href=h.url,u.href=u.href,h.crossDomain=qt.protocol+"//"+qt.host!=u.protocol+"//"+u.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=_.param(h.data,h.traditional)),Ut(Bt,h,t,E),c)return E;for(f in(p=_.event&&h.global)&&0==_.active++&&_.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!It.test(h.type),i=h.url.replace(At,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(Rt,"+")):(d=h.url.slice(i.length),h.data&&(h.processData||"string"==typeof h.data)&&(i+=(Nt.test(i)?"&":"?")+h.data,delete h.data),!1===h.cache&&(i=i.replace(jt,"$1"),d=(Nt.test(i)?"&":"?")+"_="+_t.guid+++d),h.url=i+d),h.ifModified&&(_.lastModified[i]&&E.setRequestHeader("If-Modified-Since",_.lastModified[i]),_.etag[i]&&E.setRequestHeader("If-None-Match",_.etag[i])),(h.data&&h.hasContent&&!1!==h.contentType||t.contentType)&&E.setRequestHeader("Content-Type",h.contentType),E.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+Mt+"; q=0.01":""):h.accepts["*"]),h.headers)E.setRequestHeader(f,h.headers[f]);if(h.beforeSend&&(!1===h.beforeSend.call(y,E,h)||c))return E.abort();if(x="abort",g.add(h.complete),E.done(h.success),E.fail(h.error),r=Ut(Ht,h,t,E)){if(E.readyState=1,p&&m.trigger("ajaxSend",[E,h]),c)return E;h.async&&h.timeout>0&&(l=n.setTimeout((function(){E.abort("timeout")}),h.timeout));try{c=!1,r.send(w,N)}catch(e){if(c)throw e;N(-1,e)}}else N(-1,"No Transport");function N(e,t,o,a){var u,f,d,C,w,S=t;c||(c=!0,l&&n.clearTimeout(l),r=void 0,s=a||"",E.readyState=e>0?4:0,u=e>=200&&e<300||304===e,o&&(C=function(e,t,n){for(var r,o,i,s,a=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(o in a)if(a[o]&&a[o].test(r)){l.unshift(o);break}if(l[0]in n)i=l[0];else{for(o in n){if(!l[0]||e.converters[o+" "+l[0]]){i=o;break}s||(s=o)}i=i||s}if(i)return i!==l[0]&&l.unshift(i),n[i]}(h,E,o)),!u&&_.inArray("script",h.dataTypes)>-1&&_.inArray("json",h.dataTypes)<0&&(h.converters["text script"]=function(){}),C=function(e,t,n,r){var o,i,s,a,l,u={},c=e.dataTypes.slice();if(c[1])for(s in e.converters)u[s.toLowerCase()]=e.converters[s];for(i=c.shift();i;)if(e.responseFields[i]&&(n[e.responseFields[i]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=i,i=c.shift())if("*"===i)i=l;else if("*"!==l&&l!==i){if(!(s=u[l+" "+i]||u["* "+i]))for(o in u)if((a=o.split(" "))[1]===i&&(s=u[l+" "+a[0]]||u["* "+a[0]])){!0===s?s=u[o]:!0!==u[o]&&(i=a[0],c.unshift(a[1]));break}if(!0!==s)if(s&&e.throws)t=s(t);else try{t=s(t)}catch(e){return{state:"parsererror",error:s?e:"No conversion from "+l+" to "+i}}}return{state:"success",data:t}}(h,C,E,u),u?(h.ifModified&&((w=E.getResponseHeader("Last-Modified"))&&(_.lastModified[i]=w),(w=E.getResponseHeader("etag"))&&(_.etag[i]=w)),204===e||"HEAD"===h.type?S="nocontent":304===e?S="notmodified":(S=C.state,f=C.data,u=!(d=C.error))):(d=S,!e&&S||(S="error",e<0&&(e=0))),E.status=e,E.statusText=(t||S)+"",u?v.resolveWith(y,[f,S,E]):v.rejectWith(y,[E,S,d]),E.statusCode(b),b=void 0,p&&m.trigger(u?"ajaxSuccess":"ajaxError",[E,h,u?f:d]),g.fireWith(y,[E,S]),p&&(m.trigger("ajaxComplete",[E,h]),--_.active||_.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return _.get(e,t,n,"json")},getScript:function(e,t){return _.get(e,void 0,t,"script")}}),_.each(["get","post"],(function(e,t){_[t]=function(e,n,r,o){return g(n)&&(o=o||r,r=n,n=void 0),_.ajax(_.extend({url:e,type:t,dataType:o,data:n,success:r},_.isPlainObject(e)&&e))}})),_.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),_._evalUrl=function(e,t,n){return _.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){_.globalEval(e,t,n)}})},_.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=_(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return g(e)?this.each((function(t){_(this).wrapInner(e.call(this,t))})):this.each((function(){var t=_(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=g(e);return this.each((function(n){_(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){_(this).replaceWith(this.childNodes)})),this}}),_.expr.pseudos.hidden=function(e){return!_.expr.pseudos.visible(e)},_.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},_.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var Kt={0:200,1223:204},Gt=_.ajaxSettings.xhr();v.cors=!!Gt&&"withCredentials"in Gt,v.ajax=Gt=!!Gt,_.ajaxTransport((function(e){var t,r;if(v.cors||Gt&&!e.crossDomain)return{send:function(o,i){var s,a=e.xhr();if(a.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(s in e.xhrFields)a[s]=e.xhrFields[s];for(s in e.mimeType&&a.overrideMimeType&&a.overrideMimeType(e.mimeType),e.crossDomain||o["X-Requested-With"]||(o["X-Requested-With"]="XMLHttpRequest"),o)a.setRequestHeader(s,o[s]);t=function(e){return function(){t&&(t=r=a.onload=a.onerror=a.onabort=a.ontimeout=a.onreadystatechange=null,"abort"===e?a.abort():"error"===e?"number"!=typeof a.status?i(0,"error"):i(a.status,a.statusText):i(Kt[a.status]||a.status,a.statusText,"text"!==(a.responseType||"text")||"string"!=typeof a.responseText?{binary:a.response}:{text:a.responseText},a.getAllResponseHeaders()))}},a.onload=t(),r=a.onerror=a.ontimeout=t("error"),void 0!==a.onabort?a.onabort=r:a.onreadystatechange=function(){4===a.readyState&&n.setTimeout((function(){t&&r()}))},t=t("abort");try{a.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}})),_.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),_.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return _.globalEval(e),e}}}),_.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),_.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,o){t=_("<script>").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&o("error"===e.type?404:200,e.type)}),C.head.appendChild(t[0])},abort:function(){n&&n()}}}));var zt,Vt=[],Xt=/(=)\?(?=&|$)|\?\?/;_.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Vt.pop()||_.expando+"_"+_t.guid++;return this[e]=!0,e}}),_.ajaxPrefilter("json jsonp",(function(e,t,r){var o,i,s,a=!1!==e.jsonp&&(Xt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Xt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return o=e.jsonpCallback=g(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Xt,"$1"+o):!1!==e.jsonp&&(e.url+=(Nt.test(e.url)?"&":"?")+e.jsonp+"="+o),e.converters["script json"]=function(){return s||_.error(o+" was not called"),s[0]},e.dataTypes[0]="json",i=n[o],n[o]=function(){s=arguments},r.always((function(){void 0===i?_(n).removeProp(o):n[o]=i,e[o]&&(e.jsonpCallback=t.jsonpCallback,Vt.push(o)),s&&g(i)&&i(s[0]),s=i=void 0})),"script"})),v.createHTMLDocument=((zt=C.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===zt.childNodes.length),_.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),i=!n&&[],(o=R.exec(e))?[t.createElement(o[1])]:(o=Ee([e],t,i),i&&i.length&&_(i).remove(),_.merge([],o.childNodes)));var r,o,i},_.fn.load=function(e,t,n){var r,i,s,a=this,l=e.indexOf(" ");return l>-1&&(r=gt(e.slice(l)),e=e.slice(0,l)),g(t)?(n=t,t=void 0):t&&"object"===o(t)&&(i="POST"),a.length>0&&_.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done((function(e){s=arguments,a.html(r?_("<div>").append(_.parseHTML(e)).find(r):e)})).always(n&&function(e,t){a.each((function(){n.apply(this,s||[e.responseText,t,e])}))}),this},_.expr.pseudos.animated=function(e){return _.grep(_.timers,(function(t){return e===t.elem})).length},_.offset={setOffset:function(e,t,n){var r,o,i,s,a,l,u=_.css(e,"position"),c=_(e),p={};"static"===u&&(e.style.position="relative"),a=c.offset(),i=_.css(e,"top"),l=_.css(e,"left"),("absolute"===u||"fixed"===u)&&(i+l).indexOf("auto")>-1?(s=(r=c.position()).top,o=r.left):(s=parseFloat(i)||0,o=parseFloat(l)||0),g(t)&&(t=t.call(e,n,_.extend({},a))),null!=t.top&&(p.top=t.top-a.top+s),null!=t.left&&(p.left=t.left-a.left+o),"using"in t?t.using.call(e,p):c.css(p)}},_.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){_.offset.setOffset(this,e,t)}));var t,n,r=this[0];return r?r.getClientRects().length?(t=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],o={top:0,left:0};if("fixed"===_.css(r,"position"))t=r.getBoundingClientRect();else{for(t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&"static"===_.css(e,"position");)e=e.parentNode;e&&e!==r&&1===e.nodeType&&((o=_(e).offset()).top+=_.css(e,"borderTopWidth",!0),o.left+=_.css(e,"borderLeftWidth",!0))}return{top:t.top-o.top-_.css(r,"marginTop",!0),left:t.left-o.left-_.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map((function(){for(var e=this.offsetParent;e&&"static"===_.css(e,"position");)e=e.offsetParent;return e||ae}))}}),_.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},(function(e,t){var n="pageYOffset"===t;_.fn[e]=function(r){return G(this,(function(e,r,o){var i;if(b(e)?i=e:9===e.nodeType&&(i=e.defaultView),void 0===o)return i?i[t]:e[r];i?i.scrollTo(n?i.pageXOffset:o,n?o:i.pageYOffset):e[r]=o}),e,r,arguments.length)}})),_.each(["top","left"],(function(e,t){_.cssHooks[t]=Ge(v.pixelPosition,(function(e,n){if(n)return n=Ke(e,t),qe.test(n)?_(e).position()[t]+"px":n}))})),_.each({Height:"height",Width:"width"},(function(e,t){_.each({padding:"inner"+e,content:t,"":"outer"+e},(function(n,r){_.fn[r]=function(o,i){var s=arguments.length&&(n||"boolean"!=typeof o),a=n||(!0===o||!0===i?"margin":"border");return G(this,(function(t,n,o){var i;return b(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):void 0===o?_.css(t,n,a):_.style(t,n,o,a)}),t,s?o:void 0,s)}}))})),_.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],(function(e,t){_.fn[t]=function(e){return this.on(t,e)}})),_.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),_.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),(function(e,t){_.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}));var Zt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;_.proxy=function(e,t){var n,r,o;if("string"==typeof t&&(n=e[t],t=e,e=n),g(e))return r=l.call(arguments,2),o=function(){return e.apply(t||this,r.concat(l.call(arguments)))},o.guid=e.guid=e.guid||_.guid++,o},_.holdReady=function(e){e?_.readyWait++:_.ready(!0)},_.isArray=Array.isArray,_.parseJSON=JSON.parse,_.nodeName=k,_.isFunction=g,_.isWindow=b,_.camelCase=Z,_.type=x,_.now=Date.now,_.isNumeric=function(e){var t=_.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},_.trim=function(e){return null==e?"":(e+"").replace(Zt,"")},void 0===(r=function(){return _}.apply(t,[]))||(e.exports=r);var Jt=n.jQuery,Yt=n.$;return _.noConflict=function(e){return n.$===_&&(n.$=Yt),e&&n.jQuery===_&&(n.jQuery=Jt),_},void 0===i&&(n.jQuery=n.$=_),_}))},32:(e,t,n)=>{var r=n(470);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}if(void 0===r)throw new Error("Bootstrap's JavaScript requires jQuery");!function(e){"use strict";var t=e.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1==t[0]&&9==t[1]&&t[2]<1||t[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(r),function(e){"use strict";var t=function t(n,r){this.$element=e(n),this.options=e.extend({},t.DEFAULTS,r),this.$trigger=e('[data-toggle="collapse"][href="#'+n.id+'"],[data-toggle="collapse"][data-target="#'+n.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};function n(t){var n,r=t.attr("data-target")||(n=t.attr("href"))&&n.replace(/.*(?=#[^\s]+$)/,"");return e(r)}function r(n){return this.each((function(){var r=e(this),i=r.data("bs.collapse"),s=e.extend({},t.DEFAULTS,r.data(),"object"==o(n)&&n);!i&&s.toggle&&/show|hide/.test(n)&&(s.toggle=!1),i||r.data("bs.collapse",i=new t(this,s)),"string"==typeof n&&i[n]()}))}t.VERSION="3.3.7",t.TRANSITION_DURATION=350,t.DEFAULTS={toggle:!0},t.prototype.dimension=function(){return this.$element.hasClass("width")?"width":"height"},t.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var n,o=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(o&&o.length&&(n=o.data("bs.collapse"))&&n.transitioning)){var i=e.Event("show.bs.collapse");if(this.$element.trigger(i),!i.isDefaultPrevented()){o&&o.length&&(r.call(o,"hide"),n||o.data("bs.collapse",null));var s=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[s](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var a=function(){this.$element.removeClass("collapsing").addClass("collapse in")[s](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!e.support.transition)return a.call(this);var l=e.camelCase(["scroll",s].join("-"));this.$element.one("bsTransitionEnd",e.proxy(a,this)).emulateTransitionEnd(t.TRANSITION_DURATION)[s](this.$element[0][l])}}}},t.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var n=e.Event("hide.bs.collapse");if(this.$element.trigger(n),!n.isDefaultPrevented()){var r=this.dimension();this.$element[r](this.$element[r]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var o=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};if(!e.support.transition)return o.call(this);this.$element[r](0).one("bsTransitionEnd",e.proxy(o,this)).emulateTransitionEnd(t.TRANSITION_DURATION)}}},t.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},t.prototype.getParent=function(){return e(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(e.proxy((function(t,r){var o=e(r);this.addAriaAndCollapsedClass(n(o),o)}),this)).end()},t.prototype.addAriaAndCollapsedClass=function(e,t){var n=e.hasClass("in");e.attr("aria-expanded",n),t.toggleClass("collapsed",!n).attr("aria-expanded",n)};var i=e.fn.collapse;e.fn.collapse=r,e.fn.collapse.Constructor=t,e.fn.collapse.noConflict=function(){return e.fn.collapse=i,this},e(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',(function(t){var o=e(this);o.attr("data-target")||t.preventDefault();var i=n(o),s=i.data("bs.collapse")?"toggle":o.data();r.call(i,s)}))}(r),function(e){"use strict";e.fn.emulateTransitionEnd=function(t){var n=!1,r=this;e(this).one("bsTransitionEnd",(function(){n=!0}));return setTimeout((function(){n||e(r).trigger(e.support.transition.end)}),t),this},e((function(){e.support.transition=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var n in t)if(void 0!==e.style[n])return{end:t[n]};return!1}(),e.support.transition&&(e.event.special.bsTransitionEnd={bindType:e.support.transition.end,delegateType:e.support.transition.end,handle:function(t){if(e(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}})}))}(r)}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={id:r,loaded:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.loaded=!0,i.exports}n.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{"use strict";var e=function(){},t={},r=[],o=[];function i(n,i){var s,a,l,u,c=o;for(u=arguments.length;u-- >2;)r.push(arguments[u]);for(i&&null!=i.children&&(r.length||r.push(i.children),delete i.children);r.length;)if((a=r.pop())&&void 0!==a.pop)for(u=a.length;u--;)r.push(a[u]);else"boolean"==typeof a&&(a=null),(l="function"!=typeof n)&&(null==a?a="":"number"==typeof a?a=String(a):"string"!=typeof a&&(l=!1)),l&&s?c[c.length-1]+=a:c===o?c=[a]:c.push(a),s=l;var p=new e;return p.nodeName=n,p.children=c,p.attributes=null==i?void 0:i,p.key=null==i?void 0:i.key,void 0!==t.vnode&&t.vnode(p),p}function s(e,t){for(var n in t)e[n]=t[n];return e}function a(e,t){e&&("function"==typeof e?e(t):e.current=t)}var l="function"==typeof Promise?Promise.resolve().then.bind(Promise.resolve()):setTimeout;var u=/acit|ex(?:s|g|n|p|$)|rph|ows|mnc|ntw|ine[ch]|zoo|^ord/i,c=[];function p(e){!e._dirty&&(e._dirty=!0)&&1==c.push(e)&&(t.debounceRendering||l)(f)}function f(){for(var e;e=c.pop();)e._dirty&&R(e)}function d(e,t,n){return"string"==typeof t||"number"==typeof t?void 0!==e.splitText:"string"==typeof t.nodeName?!e._componentConstructor&&h(e,t.nodeName):n||e._componentConstructor===t.nodeName}function h(e,t){return e.normalizedNodeName===t||e.nodeName.toLowerCase()===t.toLowerCase()}function y(e){var t=s({},e.attributes);t.children=e.children;var n=e.nodeName.defaultProps;if(void 0!==n)for(var r in n)void 0===t[r]&&(t[r]=n[r]);return t}function m(e){var t=e.parentNode;t&&t.removeChild(e)}function v(e,t,n,r,o){if("className"===t&&(t="class"),"key"===t);else if("ref"===t)a(n,null),a(r,e);else if("class"!==t||o)if("style"===t){if(r&&"string"!=typeof r&&"string"!=typeof n||(e.style.cssText=r||""),r&&"object"==typeof r){if("string"!=typeof n)for(var i in n)i in r||(e.style[i]="");for(var i in r)e.style[i]="number"==typeof r[i]&&!1===u.test(i)?r[i]+"px":r[i]}}else if("dangerouslySetInnerHTML"===t)r&&(e.innerHTML=r.__html||"");else if("o"==t[0]&&"n"==t[1]){var s=t!==(t=t.replace(/Capture$/,""));t=t.toLowerCase().substring(2),r?n||e.addEventListener(t,g,s):e.removeEventListener(t,g,s),(e._listeners||(e._listeners={}))[t]=r}else if("list"!==t&&"type"!==t&&!o&&t in e){try{e[t]=null==r?"":r}catch(e){}null!=r&&!1!==r||"spellcheck"==t||e.removeAttribute(t)}else{var l=o&&t!==(t=t.replace(/^xlink:?/,""));null==r||!1===r?l?e.removeAttributeNS("http://www.w3.org/1999/xlink",t.toLowerCase()):e.removeAttribute(t):"function"!=typeof r&&(l?e.setAttributeNS("http://www.w3.org/1999/xlink",t.toLowerCase(),r):e.setAttribute(t,r))}else e.className=r||""}function g(e){return this._listeners[e.type](t.event&&t.event(e)||e)}var b=[],C=0,w=!1,S=!1;function x(){for(var e;e=b.shift();)t.afterMount&&t.afterMount(e),e.componentDidMount&&e.componentDidMount()}function E(e,t,n,r,o,i){C++||(w=null!=o&&void 0!==o.ownerSVGElement,S=null!=e&&!("__preactattr_"in e));var s=_(e,t,n,r,i);return o&&s.parentNode!==o&&o.appendChild(s),--C||(S=!1,i||x()),s}function _(e,t,n,r,o){var i=e,s=w;if(null!=t&&"boolean"!=typeof t||(t=""),"string"==typeof t||"number"==typeof t)return e&&void 0!==e.splitText&&e.parentNode&&(!e._component||o)?e.nodeValue!=t&&(e.nodeValue=t):(i=document.createTextNode(t),e&&(e.parentNode&&e.parentNode.replaceChild(i,e),N(e,!0))),i.__preactattr_=!0,i;var a,l,u=t.nodeName;if("function"==typeof u)return function(e,t,n,r){var o=e&&e._component,i=o,s=e,a=o&&e._componentConstructor===t.nodeName,l=a,u=y(t);for(;o&&!l&&(o=o._parentComponent);)l=o.constructor===t.nodeName;o&&l&&(!r||o._component)?(k(o,u,3,n,r),e=o.base):(i&&!a&&(A(i),e=s=null),o=P(t.nodeName,u,n),e&&!o.nextBase&&(o.nextBase=e,s=null),k(o,u,1,n,r),e=o.base,s&&e!==s&&(s._component=null,N(s,!1)));return e}(e,t,n,r);if(w="svg"===u||"foreignObject"!==u&&w,u=String(u),(!e||!h(e,u))&&(a=u,(l=w?document.createElementNS("http://www.w3.org/2000/svg",a):document.createElement(a)).normalizedNodeName=a,i=l,e)){for(;e.firstChild;)i.appendChild(e.firstChild);e.parentNode&&e.parentNode.replaceChild(i,e),N(e,!0)}var c=i.firstChild,p=i.__preactattr_,f=t.children;if(null==p){p=i.__preactattr_={};for(var g=i.attributes,b=g.length;b--;)p[g[b].name]=g[b].value}return!S&&f&&1===f.length&&"string"==typeof f[0]&&null!=c&&void 0!==c.splitText&&null==c.nextSibling?c.nodeValue!=f[0]&&(c.nodeValue=f[0]):(f&&f.length||null!=c)&&function(e,t,n,r,o){var i,s,a,l,u,c=e.childNodes,p=[],f={},h=0,y=0,v=c.length,g=0,b=t?t.length:0;if(0!==v)for(var C=0;C<v;C++){var w=c[C],S=w.__preactattr_;null!=(x=b&&S?w._component?w._component.__key:S.key:null)?(h++,f[x]=w):(S||(void 0!==w.splitText?!o||w.nodeValue.trim():o))&&(p[g++]=w)}if(0!==b)for(C=0;C<b;C++){var x;if(u=null,null!=(x=(l=t[C]).key))h&&void 0!==f[x]&&(u=f[x],f[x]=void 0,h--);else if(y<g)for(i=y;i<g;i++)if(void 0!==p[i]&&d(s=p[i],l,o)){u=s,p[i]=void 0,i===g-1&&g--,i===y&&y++;break}u=_(u,l,n,r),a=c[C],u&&u!==e&&u!==a&&(null==a?e.appendChild(u):u===a.nextSibling?m(a):e.insertBefore(u,a))}if(h)for(var C in f)void 0!==f[C]&&N(f[C],!1);for(;y<=g;)void 0!==(u=p[g--])&&N(u,!1)}(i,f,n,r,S||null!=p.dangerouslySetInnerHTML),function(e,t,n){var r;for(r in n)t&&null!=t[r]||null==n[r]||v(e,r,n[r],n[r]=void 0,w);for(r in t)"children"===r||"innerHTML"===r||r in n&&t[r]===("value"===r||"checked"===r?e[r]:n[r])||v(e,r,n[r],n[r]=t[r],w)}(i,t.attributes,p),w=s,i}function N(e,t){var n=e._component;n?A(n):(null!=e.__preactattr_&&a(e.__preactattr_.ref,null),!1!==t&&null!=e.__preactattr_||m(e),T(e))}function T(e){for(e=e.lastChild;e;){var t=e.previousSibling;N(e,!0),e=t}}var L=[];function P(e,t,n){var r,o=L.length;for(e.prototype&&e.prototype.render?(r=new e(t,n),j.call(r,t,n)):((r=new j(t,n)).constructor=e,r.render=O);o--;)if(L[o].constructor===e)return r.nextBase=L[o].nextBase,L.splice(o,1),r;return r}function O(e,t,n){return this.constructor(e,n)}function k(e,n,r,o,i){e._disable||(e._disable=!0,e.__ref=n.ref,e.__key=n.key,delete n.ref,delete n.key,void 0===e.constructor.getDerivedStateFromProps&&(!e.base||i?e.componentWillMount&&e.componentWillMount():e.componentWillReceiveProps&&e.componentWillReceiveProps(n,o)),o&&o!==e.context&&(e.prevContext||(e.prevContext=e.context),e.context=o),e.prevProps||(e.prevProps=e.props),e.props=n,e._disable=!1,0!==r&&(1!==r&&!1===t.syncComponentUpdates&&e.base?p(e):R(e,1,i)),a(e.__ref,e))}function R(e,n,r,o){if(!e._disable){var i,a,l,u=e.props,c=e.state,p=e.context,f=e.prevProps||u,d=e.prevState||c,h=e.prevContext||p,m=e.base,v=e.nextBase,g=m||v,w=e._component,S=!1,_=h;if(e.constructor.getDerivedStateFromProps&&(c=s(s({},c),e.constructor.getDerivedStateFromProps(u,c)),e.state=c),m&&(e.props=f,e.state=d,e.context=h,2!==n&&e.shouldComponentUpdate&&!1===e.shouldComponentUpdate(u,c,p)?S=!0:e.componentWillUpdate&&e.componentWillUpdate(u,c,p),e.props=u,e.state=c,e.context=p),e.prevProps=e.prevState=e.prevContext=e.nextBase=null,e._dirty=!1,!S){i=e.render(u,c,p),e.getChildContext&&(p=s(s({},p),e.getChildContext())),m&&e.getSnapshotBeforeUpdate&&(_=e.getSnapshotBeforeUpdate(f,d));var T,L,O=i&&i.nodeName;if("function"==typeof O){var j=y(i);(a=w)&&a.constructor===O&&j.key==a.__key?k(a,j,1,p,!1):(T=a,e._component=a=P(O,j,p),a.nextBase=a.nextBase||v,a._parentComponent=e,k(a,j,0,p,!1),R(a,1,r,!0)),L=a.base}else l=g,(T=w)&&(l=e._component=null),(g||1===n)&&(l&&(l._component=null),L=E(l,i,p,r||!m,g&&g.parentNode,!0));if(g&&L!==g&&a!==w){var D=g.parentNode;D&&L!==D&&(D.replaceChild(L,g),T||(g._component=null,N(g,!1)))}if(T&&A(T),e.base=L,L&&!o){for(var I=e,F=e;F=F._parentComponent;)(I=F).base=L;L._component=I,L._componentConstructor=I.constructor}}for(!m||r?b.push(e):S||(e.componentDidUpdate&&e.componentDidUpdate(f,d,_),t.afterUpdate&&t.afterUpdate(e));e._renderCallbacks.length;)e._renderCallbacks.pop().call(e);C||o||x()}}function A(e){t.beforeUnmount&&t.beforeUnmount(e);var n=e.base;e._disable=!0,e.componentWillUnmount&&e.componentWillUnmount(),e.base=null;var r=e._component;r?A(r):n&&(null!=n.__preactattr_&&a(n.__preactattr_.ref,null),e.nextBase=n,m(n),L.push(e),T(n)),a(e.__ref,null)}function j(e,t){this._dirty=!0,this.context=t,this.props=e,this.state=this.state||{},this._renderCallbacks=[]}function D(e,t,n){return E(n,e,{},!1,t,!1)}s(j.prototype,{setState:function(e,t){this.prevState||(this.prevState=this.state),this.state=s(s({},this.state),"function"==typeof e?e(this.state,this.props):e),t&&this._renderCallbacks.push(t),p(this)},forceUpdate:function(e){e&&this._renderCallbacks.push(e),R(this,2)},render:function(){}});n(470),n(32);function I(e){return I="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},I(e)}function F(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function B(e,t){return B=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},B(e,t)}function H(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=q(e);if(t){var o=q(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return M(this,n)}}function M(e,t){if(t&&("object"===I(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function q(e){return q=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},q(e)}const W=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&B(e,t)}(s,e);var t,n,r,o=H(s);function s(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),(t=o.call(this,e)).state={activeKey:e.defaultActiveKey},t}return t=s,(n=[{key:"render",value:function(){var e,t=[],n=[];for(e=0;e<this.props.children.length;e++){var r=this.props.children[e];void 0!==r&&(t.push(this._buildNav(r)),n.push(this._buildContent(r)))}return i("div",{className:this.props.className},i("ul",{className:"nav nav-tabs",role:"tablist"},t),i("div",{className:"tab-content"},n))}},{key:"getActiveKey",value:function(){return this.state.activeKey}},{key:"setActiveKey",value:function(e){this.setState({activeKey:e})}},{key:"_buildNav",value:function(e){var t;this.getActiveKey()===e.attributes.eventKey&&(t="active");var n=this;return i("li",{role:"presentation",className:t,key:e.attributes.eventKey},i("a",{href:"#"+this._buildIdForTab(e),"aria-controls":this._buildIdForTab(e),role:"tab","data-toggle":"tab",onClick:function(t){n._handleTabClick(t,e)}},e.attributes.title))}},{key:"_buildContent",value:function(e){var t="tab-pane";return this.getActiveKey()===e.attributes.eventKey&&(t+=" active"),i("div",{role:"tabpanel",className:t,id:this._buildIdForTab(e),key:e.attributes.eventKey},e)}},{key:"_buildIdForTab",value:function(e){return e.attributes.id?e.attributes.id:void 0===this.props.id||""===this.props.id?e.attributes.eventKey:this.props.id+"-"+e.attributes.eventKey}},{key:"_handleTabClick",value:function(e,t){e.preventDefault(),this.setActiveKey(t.attributes.eventKey)}}])&&F(t.prototype,n),r&&F(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function U(e){return U="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},U(e)}function $(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function K(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function G(e,t){return G=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},G(e,t)}function z(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=X(e);if(t){var o=X(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return V(this,n)}}function V(e,t){if(t&&("object"===U(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function X(e){return X=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},X(e)}const Z=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&G(e,t)}(s,e);var t,n,r,o=z(s);function s(){return $(this,s),o.apply(this,arguments)}return t=s,(n=[{key:"render",value:function(){return i("div",null,this.props.children)}}])&&K(t.prototype,n),r&&K(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function J(e){return J="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},J(e)}function Y(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Q(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ee(e,t){return ee=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},ee(e,t)}function te(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=re(e);if(t){var o=re(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return ne(this,n)}}function ne(e,t){if(t&&("object"===J(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function re(e){return re=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},re(e)}const oe=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&ee(e,t)}(s,e);var t,n,r,o=te(s);function s(){return Y(this,s),o.apply(this,arguments)}return t=s,(n=[{key:"render",value:function(){var e=this.getStatusLabelAndClass(),t=e[0];return i("div",{className:"system-component-view "+e[1]},i("div",{className:"icon"},this.getIcon()),i("div",{className:"name"},this.props.children),i("div",{className:"status-icon"},this.getStatusIcon()),i("div",{className:"status-label"},t))}},{key:"getIcon",value:function(){return"APP_SERVER"==this.props.type?this.getCoreServerIcon():"PREPARATION_WORK"==this.props.type?this.getPreparationWorkIcon():"APP"==this.props.type?this.getAppIcon():i("span",{class:"glyphicon glyphicon-asterisk","aria-hidden":"true"})}},{key:"getStatusIcon",value:function(){return"WORKING"===this.props.status||"DONE"==this.props.status?i("span",{class:"glyphicon glyphicon-ok","aria-hidden":"true"}):"ERROR"===this.props.status?i("span",{class:"glyphicon glyphicon-remove","aria-hidden":"true"}):"NOT_REACHED"===this.props.status?i("span",{class:"glyphicon glyphicon-minus-sign","aria-hidden":"true"}):i("span",{class:"glyphicon glyphicon-question-sign","aria-hidden":"true"})}},{key:"getStatusLabelAndClass",value:function(){return"WORKING"===this.props.status?["Working","working"]:"DONE"===this.props.status?["Done","done"]:"ERROR"===this.props.status?["Error","error"]:"NOT_REACHED"===this.props.status?["Not reached","not_reached"]:["Unknown","unknown"]}},{key:"getCoreServerIcon",value:function(){return i("svg",{width:"76px",height:"64px",viewBox:"0 0 76 64",version:"1.1"},i("defs",null,i("linearGradient",{x1:"50%",y1:"0%",x2:"50%",y2:"100%",id:"linearGradient-1"},i("stop",{"stop-color":"#888B9E",offset:"0%"}),i("stop",{"stop-color":"#3D4048",offset:"100%"}))),i("g",{id:"Page-1",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{id:"64"},i("path",{d:"M40.0317529,63.6095765 L35.7398406,63.6095765 C35.4232667,63.6095765 35.1234596,63.4559002 34.9378267,63.1985725 L31.1337497,57.9027436 C31.054706,57.7938895 30.9992157,57.6694278 30.9700734,57.534961 L30.882247,57.12996 L30.7616855,57.0303105 C30.5413213,57.4329103 30.1357234,57.9359601 29.4742315,57.9871855 C29.0802108,58.0176006 27.3528268,57.9999919 26.628659,57.9903871 C26.3943224,57.9875857 26.1675708,57.9003424 25.9899221,57.7442649 L19.7913804,52.3187716 C19.6001586,52.1514886 19.4819923,51.9209742 19.4572412,51.6696494 L18.9566312,46.6511582 L16.6288347,44.5112959 C16.3917036,44.3536176 16.0352087,43.9926384 16.0352087,43.2554725 C16.0352087,42.9449183 15.9481808,40.1203162 15.8918921,38.3538393 L14.5617226,37.4321818 C14.2942516,37.2460894 14.1349666,36.941138 14.1349666,36.6165769 L14.1349666,31.794183 C14.1349666,31.3255504 14.4399634,30.7292543 15.108641,30.5283546 C15.2256097,30.4919365 16.1094618,30.1209524 17.3705678,29.5714796 C17.2300457,29.1188549 16.8963057,28.1823901 16.4711465,27.0710384 C16.3441976,26.931369 16.2352131,26.834521 16.1928968,26.8049063 C15.9326115,26.6792439 14.4806829,25.7615883 0.618097645,16.3132981 C0.469990543,16.212448 0.35182423,16.0723785 0.276373442,15.9082971 C0.194535286,15.7310091 -0.0657499724,15.0938928 0.0156889734,14.3579274 C0.0747721301,13.825263 0.486358174,11.8838993 0.660813171,11.0742974 C0.697540539,10.9070144 0.7757858,10.7525377 0.887165535,10.6264751 C1.27759342,10.1834552 1.9825992,9.81167062 2.79060129,10.0958117 C3.28522312,10.2710987 19.4967631,15.6889882 21.8333422,16.4693756 C21.855698,16.4349585 21.8808483,16.3925374 21.908793,16.3409118 C22.4165888,15.39044 24.3288072,13.7620316 24.9032711,13.2857952 C25.0697419,13.1473265 25.2721416,13.0692877 25.4889129,13.0592828 L25.8737519,13.0432748 C26.6334495,12.3209162 28.815135,10.4543897 31.5920433,9.88250579 C31.5924425,9.88130519 31.5928418,9.8801046 31.5936402,9.878904 C31.7213875,9.56514825 32.588872,5.90012889 33.5685346,1.53716307 C33.5944833,1.41750366 33.6447838,1.30224645 33.7170409,1.19579361 C33.976927,0.815204677 34.3933035,0.329763698 34.902297,0.176887809 C35.0017004,0.146872909 35.2943217,0.0588292035 37.4456672,0.0188093372 L37.4456672,0 L37.856854,0.0108053639 L37.8855972,0.411004027 L37.9003679,0.0112055626 L38.3055666,0.00520258262 L38.3059658,0.0184091385 C40.4752758,0.0580288062 40.7694939,0.146872909 40.8696958,0.176887809 C41.3774916,0.329763698 41.7942673,0.815204677 42.0537542,1.19579361 C42.1256121,1.30024546 42.1763118,1.41630307 42.2030589,1.53916406 C43.1831207,5.90132949 44.0506052,9.56634884 44.1787518,9.88170539 C44.179151,9.88210559 44.179151,9.88250579 44.179151,9.88250579 C46.957257,10.4543897 49.138144,12.3209162 49.8978417,13.0432748 L50.2810838,13.0592828 C50.4986535,13.0692877 50.7010532,13.1473265 50.8679232,13.285395 C51.4427864,13.7620316 53.355404,15.3908402 53.8628005,16.341312 C53.890346,16.3925374 53.9154963,16.4349585 53.9382513,16.4697758 C56.3255302,15.6717796 72.4943546,10.2678971 72.980593,10.0958117 C73.7885951,9.81167062 74.4936009,10.1834552 74.8848272,10.6268753 C74.9966061,10.7533381 75.0744522,10.908215 75.1103811,11.0738972 C75.2461127,11.7014087 75.6932285,13.7932471 75.7555053,14.3579274 C75.8373435,15.0970944 75.5762598,15.7322096 75.4944217,15.9094977 C75.4201685,16.0719783 75.3020022,16.2116476 75.1538951,16.3128979 C60.9707438,25.9792964 59.7787012,26.7168626 59.5623291,26.81251 C59.5435662,26.8277176 59.4329849,26.9249659 59.3000478,27.0710384 C58.8708965,28.1939958 58.5351604,29.1368639 58.397832,29.570279 C59.6617325,30.1209524 60.546383,30.4919365 60.6645493,30.5287548 C61.3316301,30.7296545 61.6362277,31.3255504 61.6362277,31.794183 L61.6362277,36.6165769 C61.6362277,36.941138 61.4773419,37.2460894 61.2106693,37.4317816 L59.8793022,38.3538393 C59.8230136,40.1203162 59.7359857,42.9449183 59.7359857,43.2554725 C59.7359857,43.9922382 59.3798899,44.3532174 59.143158,44.5112959 L56.8145631,46.6511582 L56.3139531,51.6700496 C56.2892021,51.9213744 56.1710357,52.1514886 55.9810115,52.3183714 L49.7804738,57.7450653 C49.6044219,57.9003424 49.3772711,57.9875857 49.1417369,57.9903871 C48.4187667,57.9999919 46.691782,58.0172004 46.297362,57.9871855 C45.6366686,57.9359601 45.2306715,57.4329103 45.0099081,57.0299103 L44.8893465,57.12996 L44.8019194,57.5337604 C44.7723778,57.6694278 44.7168875,57.7938895 44.6370454,57.9039442 L40.8337668,63.1977721 C40.6485332,63.4555 40.3487261,63.6095765 40.0317529,63.6095765",id:"Fill-1",fill:"url(#linearGradient-1)"}),i("path",{d:"M49.1630548,41.072749 C49.1630548,41.072749 48.6879943,49.7638633 48.3079458,54.1452383 C48.3079458,54.1452383 48.1893803,55.0260756 47.7378732,55.1453348 C47.2867653,55.2641938 47.4292835,53.5021191 47.4292835,53.5021191 L48.0704156,41.191608 C48.0704156,41.191608 48.2368864,40.4536416 48.7119469,40.4300299 C49.3055729,40.4292295 49.1630548,41.072749 49.1630548,41.072749",id:"Fill-5",fill:"#F6F6F6"}),i("path",{d:"M46.6571704,36.4414499 C46.6571704,36.4414499 47.500303,37.8345415 46.3601578,39.7871108 C45.2200126,41.7392798 42.5361202,40.2749529 42.5361202,40.2749529 C42.5361202,40.2749529 41.0039503,39.4297334 42.6431087,38.3700073 C44.2818678,37.3106814 45.8850973,36.4414499 45.8850973,36.4414499 C45.8850973,36.4414499 46.5058696,36.0872741 46.6571704,36.4414499",id:"Fill-7",fill:"#F6F6F6"}),i("path",{d:"M49.2818199,37.3701109 C49.4007846,37.7270882 49.7213507,37.3701109 49.7213507,37.3701109 L51.8826764,34.8580639 L52.0607243,34.4174452 C52.0607243,34.4174452 52.1202067,33.6674729 52.084677,33.4769783 C52.0491472,33.2864838 52.1557364,33.1912365 52.1557364,33.1912365 C52.1557364,33.1912365 55.6001248,28.9887503 55.7186903,28.5957553 C55.837655,28.2027602 55.6001248,28.2980075 55.6001248,28.2980075 C52.6307969,29.940823 51.0990262,31.0481727 51.0990262,31.0481727 C51.0990262,31.0481727 48.2247105,33.2508661 48.0111328,33.4769783 C47.797156,33.7030906 48.0111328,33.9888324 48.0111328,33.9888324",id:"Fill-9",fill:"#F6F6F6"}),i("path",{d:"M54.6340353,38.5431332 L53.398878,49.8907663 C53.398878,49.8907663 53.4304156,50.2085241 53.2088538,50.5258816 C52.9872919,50.8432392 49.376832,54.2405256 49.376832,54.2405256 C49.376832,54.2405256 49.1692425,54.4942516 49.1780252,53.637026 C49.1868078,52.7798005 49.7253428,48.747799 49.7568804,40.5885486 L49.8203549,40.0178653 C49.8203549,40.0178653 49.8518925,39.5408285 50.1684665,39.2550867 C50.4854396,38.9693448 53.6523767,35.381964 53.6523767,35.381964 C53.6523767,35.381964 53.9054761,35.1914694 53.9054761,34.8737117 L53.9054761,33.2228922 C53.9054761,33.2228922 53.8424009,32.873919 54.348999,32.4929299 C54.8555972,32.1119407 55.5841564,31.7309516 55.5841564,31.7309516 L59.0996042,32.5245456 C59.0996042,32.5245456 59.3846405,32.6197928 59.3846405,33.1596608 L59.3846405,35.0325906 C59.3846405,35.0325906 59.3527036,35.4135797 58.9726552,35.6677059 C58.5926068,35.9214318 54.6340353,38.5431332 54.6340353,38.5431332",id:"Fill-11",fill:"#F6F6F6"}),i("path",{d:"M66.7953051,18.8092171 L46.1150026,31.3182267 C46.1150026,31.3182267 44.9668732,32.1038167 45.322969,30.873606 C45.6714797,29.4765125 46.5900631,26.5242469 46.5900631,26.5242469 C46.5900631,26.5242469 46.707431,26.0824276 46.9573368,25.9207474 C47.539785,25.6350055 58.6641853,20.1983067 59.0677871,19.9838002 C59.4083137,19.8093136 59.7013342,19.1585905 59.7013342,19.1585905 L60.5772021,17.4313331 C60.5772021,17.4313331 60.7253092,17.2576469 60.9480686,17.175206 C61.1708281,17.092765 67.5869396,14.713584 67.5869396,14.713584 C67.5869396,14.713584 68.0304624,14.459858 67.8719759,14.9677101 C67.7138885,15.4755622 67.238828,18.2061177 67.238828,18.2061177 C67.238828,18.2061177 67.1861322,18.5730999 66.7953051,18.8092171",id:"Fill-13",fill:"#F6F6F6"}),i("path",{d:"M59.4953815,18.1187143 L59.067827,18.951928 C59.067827,18.951928 58.8542494,19.4045526 58.4027423,19.6662826 C57.9516344,19.9284127 46.7166528,25.1430013 46.7166528,25.1430013 C46.7166528,25.1430013 46.5421978,25.2622605 46.4076639,24.8096358 C46.2651457,24.262164 45.2567399,23.1428084 45.2567399,23.1428084 C45.2567399,23.1428084 44.9589289,22.7698232 45.5765076,22.5713247 C46.3366044,22.3095947 59.4953815,17.5712426 59.4953815,17.5712426 C59.4953815,17.5712426 59.8159475,17.4940042 59.4953815,18.1187143",id:"Fill-15",fill:"#F6F6F6"}),i("path",{d:"M32.0477022,13.8564785 C29.3438494,15.0222572 27.5789397,16.754317 27.3022868,17.0252515 C27.2527847,17.0740758 27.2156581,17.0072426 27.2156581,17.0072426 L26.3154384,15.9995424 C26.0938766,15.7138005 25.6663221,16.0787817 25.6663221,16.0787817 C24.446734,17.0312545 23.7341432,18.0629667 23.544119,18.3963321 C23.3808419,18.6752706 23.6710679,18.7617135 23.6710679,18.7617135 C23.6710679,18.7617135 29.7989494,20.9363931 30.0524481,20.9840167 C30.5334967,21.127688 30.5722201,21.1100793 30.6524615,20.8267386 C30.6975723,20.6686602 32.1111767,14.4595779 32.1427143,14.1262124 C32.212177,13.7612312 32.0477022,13.8564785 32.0477022,13.8564785",id:"Fill-17",fill:"#F6F6F6"}),i("path",{d:"M52.2271153,18.3964922 C52.0370911,18.0631267 51.3245003,17.0314146 50.1053114,16.0789418 C50.1053114,16.0789418 49.6777569,15.7139606 49.4557958,15.9993022 L48.5555761,17.0074027 C48.5555761,17.0074027 48.5188488,17.0738356 48.4693467,17.0254116 C48.1926938,16.7540769 46.4273849,15.0224173 43.7239312,13.8566386 C43.7239312,13.8566386 43.5594565,13.7613913 43.6289191,14.1263725 C43.6604568,14.459738 45.073662,20.66842 45.1187728,20.8264985 C45.1994133,21.1098392 45.2381367,21.1278481 45.7187862,20.9841768 C45.9722849,20.9365531 52.1005655,18.7614734 52.1005655,18.7614734 C52.1005655,18.7614734 52.3903924,18.6754307 52.2271153,18.3964922",id:"Fill-19",fill:"#F6F6F6"}),i("path",{d:"M40.3746747,17.7853488 L37.8907869,17.7853488 L37.8808066,17.7853488 L35.3969188,17.7853488 C35.3969188,17.7853488 35.0168704,17.7793459 35.0168704,17.568041 C35.0168704,17.3567361 36.1570156,6.23681603 36.1570156,6.23681603 C36.1570156,6.23681603 36.3705932,6.11795702 36.3945459,6.33206331 C36.4180993,6.54656979 36.2787748,13.8209809 36.2787748,13.8209809 C36.2787748,13.8209809 36.2636048,14.0350872 36.537064,14.0470931 C36.7749935,14.0574983 37.6456716,14.0586989 37.8983719,14.0586989 L37.8983719,14.0586989 L37.9319056,14.0586989 L37.9678345,14.0586989 L37.9678345,14.0586989 C38.20776,14.0586989 38.9985961,14.0570981 39.2345295,14.0470931 C39.5075895,14.0350872 39.4928187,13.8209809 39.4928187,13.8209809 C39.4928187,13.8209809 39.3534942,6.54656979 39.3770477,6.33206331 C39.4010003,6.11795702 39.6145779,6.23681603 39.6145779,6.23681603 C39.6145779,6.23681603 40.7547232,17.3567361 40.7547232,17.568041 C40.7547232,17.7793459 40.3746747,17.7853488 40.3746747,17.7853488 M39.8760608,2.85553752 C39.8285548,2.54618395 39.5195658,2.54618395 39.5195658,2.54618395 L37.8983719,2.47454839 L37.8728224,2.47454839 L36.2520277,2.54618395 C36.2520277,2.54618395 35.9430388,2.54618395 35.8955327,2.85553752 C35.8480267,3.16529129 32.5701091,20.3806372 32.5701091,20.3806372 C32.5701091,20.3806372 32.475097,20.8332619 32.9026515,20.6903909 C34.9302417,19.6702846 37.7794072,19.5974484 37.8855972,19.5950472 C37.9921864,19.5974484 40.8409526,19.6702846 42.8685428,20.6903909 C43.2960973,20.8332619 43.2010852,20.3806372 43.2010852,20.3806372 C43.2010852,20.3806372 39.9235669,3.16529129 39.8760608,2.85553752",id:"Fill-21",fill:"#F6F6F6"}),i("path",{d:"M33.1284449,38.3701674 C31.4896858,37.3104413 29.8860571,36.44161 29.8860571,36.44161 C29.8860571,36.44161 29.265684,36.087034 29.1143832,36.44161 C29.1143832,36.44161 28.2712506,37.8343014 29.4109966,39.7868707 C30.5511418,41.7394399 33.2354334,40.275113 33.2354334,40.275113 C33.2354334,40.275113 34.7672041,39.4298934 33.1284449,38.3701674",id:"Fill-23",fill:"#F6F6F6"}),i("path",{d:"M24.6725673,31.0482127 C24.6725673,31.0482127 23.1403974,29.940863 20.1714688,28.2980475 C20.1714688,28.2980475 19.9339385,28.2028002 20.0529032,28.5957953 C20.1714688,28.9883902 23.6154579,33.1912765 23.6154579,33.1912765 C23.6154579,33.1912765 23.7224463,33.2865238 23.6869166,33.4770184 C23.6513868,33.6675129 23.71047,34.4174852 23.71047,34.4174852 L23.8889171,34.858104 L26.0502428,37.370151 C26.0502428,37.370151 26.3708089,37.7271282 26.4897736,37.370151 L27.7604607,33.9888725 C27.7604607,33.9888725 27.9740383,33.7031306 27.7604607,33.4770184 C27.5464839,33.2509061 24.6725673,31.0482127 24.6725673,31.0482127",id:"Fill-25",fill:"#F6F6F6"}),i("path",{d:"M28.34231,53.5022391 L27.7011779,41.191728 C27.7011779,41.191728 27.5347072,40.4537617 27.0596466,40.4297498 C26.4660206,40.4293496 26.6085388,41.072869 26.6085388,41.072869 C26.6085388,41.072869 27.0835993,49.7639834 27.4636477,54.1449582 C27.4636477,54.1449582 27.5822132,55.0261956 28.0337203,55.1450546 C28.4848282,55.2643138 28.34231,53.5022391 28.34231,53.5022391",id:"Fill-27",fill:"#F6F6F6"}),i("path",{d:"M26.0145933,40.5885886 L25.9511189,40.0179053 C25.9511189,40.0179053 25.9195812,39.5408685 25.6030073,39.2551267 C25.2860341,38.9693848 22.1190971,35.382004 22.1190971,35.382004 C22.1190971,35.382004 21.8659976,35.1915095 21.8659976,34.8737517 L21.8659976,33.2229322 C21.8659976,33.2229322 21.9290729,32.8735588 21.4224748,32.4925697 C20.9158766,32.1119807 20.1873174,31.7309916 20.1873174,31.7309916 L16.6718696,32.5245856 C16.6718696,32.5245856 16.3868333,32.6198329 16.3868333,33.1593007 L16.3868333,35.0326306 C16.3868333,35.0326306 16.4187701,35.4136197 16.7988185,35.6677459 C17.1788669,35.9214718 21.1374384,38.5431733 21.1374384,38.5431733 L22.3725958,49.8908064 C22.3725958,49.8908064 22.3410582,50.2081639 22.56262,50.5259216 C22.7841818,50.8432792 26.3946418,54.2405656 26.3946418,54.2405656 C26.3946418,54.2405656 26.6022312,54.4942916 26.5934486,53.637066 C26.584666,52.7798405 26.046131,48.747839 26.0145933,40.5885886",id:"Fill-29",fill:"#F6F6F6"}),i("path",{d:"M30.448385,30.873606 C30.0998743,29.4765125 29.1816901,26.5242469 29.1816901,26.5242469 C29.1816901,26.5242469 29.063923,26.0824276 28.8140172,25.9207474 C28.231569,25.6350055 17.1075679,20.1983067 16.7035669,19.9838002 C16.3630403,19.8093136 16.070419,19.1585905 16.070419,19.1585905 L15.1941519,17.4313331 C15.1941519,17.4313331 15.0460448,17.2576469 14.8232854,17.175206 C14.6005259,17.092765 8.18441444,14.713584 8.18441444,14.713584 C8.18441444,14.713584 7.74089155,14.459858 7.89937813,14.9677101 C8.05786471,15.4755622 8.53292522,18.2061177 8.53292522,18.2061177 C8.53292522,18.2061177 8.58562101,18.5730999 8.9760489,18.8092171 L29.6563514,31.3182267 C29.6563514,31.3182267 30.8044808,32.1038167 30.448385,30.873606",id:"Fill-31",fill:"#F6F6F6"}),i("path",{d:"M16.7036068,18.952088 C16.7036068,18.952088 16.9171844,19.4043125 17.3686915,19.6664426 C17.8197994,19.9281726 29.054781,25.1431613 29.054781,25.1431613 C29.054781,25.1431613 29.229236,25.2620204 29.36377,24.8097959 C29.5062881,24.2619239 30.5146939,23.1425682 30.5146939,23.1425682 C30.5146939,23.1425682 30.812505,22.7699833 30.1949263,22.5714847 C29.4348295,22.3093546 16.2760524,17.5710024 16.2760524,17.5710024 C16.2760524,17.5710024 15.9554863,17.4941643 16.2760524,18.1188744 L16.7036068,18.952088 Z",id:"Fill-33",fill:"#F6F6F6"}),i("path",{d:"M37.8857169,32.1730511 C35.663312,32.1322308 33.7814336,30.3161293 33.7814336,28.0798191 C33.7814336,25.843509 35.663312,24.0274075 37.8857169,23.9865872 C40.1081219,24.0274075 41.9900003,25.843509 41.9900003,28.0798191 C41.9900003,30.3161293 40.1081219,32.1322308 37.8857169,32.1730511 M45.3549457,25.5241505 C42.9141726,21.123566 38.4194614,21.236422 37.8857169,21.2664369 C37.3519725,21.236422 32.8572612,21.123566 30.4164881,25.5241505 C30.4164881,25.5241505 30.2899384,25.8255001 30.2899384,26.0636183 C30.2899384,26.3017365 32.7287154,35.1753414 32.7287154,35.1753414 C32.7287154,35.1753414 32.7762215,35.2865967 32.9818149,35.5883465 C33.1878075,35.8896961 35.6265846,37.6677787 35.6265846,37.6677787 C35.6265846,37.6677787 35.8006404,37.9058969 36.4182191,37.9375126 C36.9483706,37.9647261 37.6869101,37.9455166 37.8857169,37.9391134 C38.0845238,37.9455166 38.8230632,37.9647261 39.3532148,37.9375126 C39.9707935,37.9058969 40.1448492,37.6677787 40.1448492,37.6677787 C40.1448492,37.6677787 42.5836263,35.8896961 42.7896189,35.5883465 C42.9952123,35.2865967 43.0427184,35.1753414 43.0427184,35.1753414 C43.0427184,35.1753414 45.4814955,26.3017365 45.4814955,26.0636183 C45.4814955,25.8255001 45.3549457,25.5241505 45.3549457,25.5241505",id:"Fill-35",fill:"#F6F6F6"}),i("path",{d:"M46.1148429,51.795752 L46.1148429,49.6050645 C46.1148429,49.3193227 45.8138382,49.6210725 45.8138382,49.6210725 L44.3730874,50.6687926 C43.9135961,51.0337737 43.5810538,50.7640398 43.5810538,50.7640398 C43.5810538,50.7640398 42.0293225,49.1764517 41.8077607,48.8590942 C41.5861988,48.5417367 41.2851941,48.5733524 41.2851941,48.5733524 L34.4862398,48.5733524 C34.4862398,48.5733524 34.185235,48.5417367 33.9636732,48.8590942 C33.7421113,49.1764517 32.1903801,50.7640398 32.1903801,50.7640398 C32.1903801,50.7640398 31.8578377,51.0337737 31.3983464,50.6687926 L29.9575956,49.6210725 C29.9575956,49.6210725 29.6565909,49.3193227 29.6565909,49.6050645 L29.6565909,51.795752 C29.6565909,51.795752 29.6406225,52.2083568 29.9891333,52.4784909 C30.337644,52.7482248 32.7919903,54.4150522 32.7919903,54.4150522 C32.7919903,54.4150522 33.2650548,54.6807842 33.5995932,54.0024474 L35.1197868,51.255884 C35.1197868,51.255884 35.2147989,51.0337737 35.8004408,51.0177658 C36.3250034,51.0037588 39.4332565,51.0033586 39.9709931,51.0177658 C40.5566349,51.0337737 40.651647,51.255884 40.651647,51.255884 L42.1718407,54.0024474 C42.5063791,54.6807842 42.9794435,54.4150522 42.9794435,54.4150522 C42.9794435,54.4150522 45.4337898,52.7482248 45.7823006,52.4784909 C46.1308114,52.2083568 46.1148429,51.795752 46.1148429,51.795752",id:"Fill-37",fill:"#F6F6F6"}),i("path",{d:"M45.9958383,41.7191899 L43.918746,42.6184363 C43.9159515,42.6196369 43.913157,42.6208375 43.9103625,42.6224383 C43.8640541,42.6508524 43.342286,42.9477998 42.6468612,42.4935743 C42.6468612,42.4935743 38.5517598,40.0179454 37.9796911,40.0179454 C37.9764974,40.0179454 37.9737029,40.019146 37.9705092,40.0195462 C37.9677148,40.0195462 37.9653195,40.0179454 37.9621258,40.0179454 L37.7401648,40.0179454 C37.7210027,40.0179454 37.7042358,40.0247487 37.6886666,40.0335531 C36.8447356,40.2444578 33.1244928,42.4935743 33.1244928,42.4935743 C32.4294672,42.9477998 31.9072999,42.6508524 31.8609915,42.6224383 C31.858197,42.6208375 31.8558017,42.6196369 31.852608,42.6184363 L29.7755157,41.7191899 C29.770326,41.7167887 29.0281936,41.2929783 29.0549407,41.9376983 C29.0569368,41.985322 29.4665268,47.2559384 29.4665268,47.2559384 C29.4816968,48.1847995 29.8349981,48.4489306 29.8749191,48.4757439 C29.8769152,48.4773447 29.8789112,48.4781451 29.8813065,48.4797459 L30.9819299,49.0784431 C30.9851236,49.0804441 31.5875323,49.4514282 31.8474183,49.229318 C31.8534065,49.2241154 31.8597938,49.2221144 31.865782,49.2169118 C31.9316517,49.1556814 32.3899454,48.7218661 32.7129067,48.1924033 C33.0478443,47.6429305 33.5879762,47.5925055 33.6286956,47.5893039 C33.6306917,47.5893039 33.6322885,47.5889037 33.6338854,47.5889037 L42.1374686,47.5889037 C42.1394647,47.5889037 42.1410615,47.5893039 42.1426584,47.5893039 C42.183777,47.5925055 42.7235097,47.6429305 43.0588465,48.1924033 C43.3814086,48.7218661 43.8401015,49.1556814 43.9059712,49.2169118 C43.9115602,49.2221144 43.9183467,49.2241154 43.9243349,49.229318 C44.1838217,49.4514282 44.7862304,49.0804441 44.7894241,49.0784431 L45.8904467,48.4797459 C45.892842,48.4781451 45.8944388,48.4773447 45.8968341,48.4757439 C45.9363559,48.4489306 46.2900564,48.1847995 46.3048272,47.2559384 C46.3048272,47.2559384 46.7144172,41.985322 46.7164133,41.9376983 C46.7431604,41.2929783 46.0014272,41.7167887 45.9958383,41.7191899",id:"Fill-39",fill:"#F6F6F6"}))))}},{key:"getPreparationWorkIcon",value:function(){return i("svg",{width:"60px",height:"63px",viewBox:"0 0 60 63",version:"1.1"},i("defs",null,i("path",{d:"M14.4973229,0.57613464 L14.4973229,0.57613464 L14.4973229,0.57613464 C15.7389717,0.483042186 16.8213633,1.4132827 16.9159945,2.65481525 L17.018698,4.0022539 C19.48808,4.31319289 21.7290427,5.43245748 23.4489057,7.1006423 L25.501023,5.70083779 L25.501023,5.70083779 C26.5297293,4.99912951 27.9324051,5.26330879 28.6353673,6.29115865 L28.6353673,6.29115865 L28.6353673,6.29115865 C29.3374289,7.31769165 29.0743928,8.71899441 28.0478598,9.42105596 C28.0472866,9.42144796 28.0467133,9.42183969 28.0461397,9.42223115 L25.9825488,10.8307522 C26.4405558,11.9204863 26.7542672,13.0895474 26.8489064,14.3315663 C26.9441298,15.5735852 26.8121023,16.7773881 26.5246796,17.921551 L28.7834642,19.0089268 L28.7834642,19.0089268 C29.9037141,19.5482136 30.3750531,20.8932569 29.8364672,22.013844 L29.8364672,22.013844 L29.8364672,22.013844 C29.2980038,23.1341764 27.9532841,23.6058744 26.8329517,23.0674109 C26.8329218,23.0673966 26.8328919,23.0673822 26.832862,23.0673679 L24.5863286,21.9874982 C23.1386994,23.8930852 21.0940254,25.3342903 18.7011726,26.0105971 L18.8039409,27.3588855 L18.8039409,27.3588855 C18.8983997,28.5981567 17.9703459,29.6793586 16.7310746,29.7738175 C16.7302653,29.7738792 16.7294558,29.7739404 16.7286464,29.7740012 L16.7286464,29.7740012 L16.7286464,29.7740012 C15.4874259,29.8672578 14.405203,28.9376026 14.3102175,27.6965132 L14.2069792,26.3475925 C11.7381814,26.0360744 9.49780284,24.9173889 7.77677152,23.2492041 L5.7247553,24.6491485 L5.7247553,24.6491485 C4.69629315,25.350795 3.29387177,25.0868194 2.59089406,24.0592667 L2.59089406,24.0592667 L2.59089406,24.0592667 C1.88884172,23.0330667 2.15161535,21.6320413 3.17781539,20.929989 C3.1783965,20.9295914 3.17897779,20.9291942 3.17955927,20.9287972 L5.24429672,19.5190942 C4.78570555,18.4305182 4.47199414,17.260878 4.37677075,16.0182801 C4.28213156,14.7768402 4.41474327,13.5736163 4.70216601,12.4282954 L2.44258307,11.3415899 L2.44258307,11.3415899 C1.32193216,10.8026332 0.850231251,9.45736218 1.38891784,8.33658138 L1.38891784,8.33658138 L1.38891784,8.33658138 C1.92748633,7.2160463 3.27245552,6.74426916 4.39299061,7.28283765 C4.39309115,7.28288597 4.39319169,7.2829343 4.39329222,7.28298264 L6.63934858,8.36292724 C8.08697778,6.4573402 10.1310676,5.01613506 12.5250888,4.33924924 L12.421943,2.99175511 L12.421943,2.99175511 C12.3270934,1.75264107 13.254703,0.671249865 14.493817,0.576400243 C14.4949856,0.576310796 14.4961542,0.576222261 14.4973229,0.57613464 Z M8.93931474,15.8092503 C9.2097959,19.3477014 12.1663945,22.0401899 15.6592819,22.0407689 C15.8292819,22.0407689 15.9998662,22.0343996 16.1716188,22.0210819 C19.8841626,21.7431476 22.6631667,18.5104243 22.3798333,14.8005804 C22.0964999,11.0901575 18.8577362,8.30965649 15.1451924,8.58874885 C11.433817,8.86726218 8.65539715,12.0994065 8.93931474,15.8092503 Z",id:"path-1"}),i("linearGradient",{x1:"50%",y1:"15.6382541%",x2:"50%",y2:"140.143913%",id:"linearGradient-3"},i("stop",{"stop-color":"#888B9E",offset:"0%"}),i("stop",{"stop-color":"#3D4048",offset:"100%"})),i("polygon",{id:"path-4",points:"0.11958422 43.4272341 39.5907306 43.4272341 39.5907306 0.274518023 0.11958422 0.274518023 0.11958422 43.4272341"}),i("linearGradient",{x1:"50%",y1:"-42.489415%",x2:"50%",y2:"100%",id:"linearGradient-6"},i("stop",{"stop-color":"#888B9E",offset:"0%"}),i("stop",{"stop-color":"#3D4048",offset:"100%"})),i("path",{d:"M14.9556219,14.9517072 L14.9556219,14.9517072 L14.9556219,14.9517072 C14.4428638,15.4204211 13.6473938,15.3853707 13.1778483,14.873374 L12.2481815,13.859657 C11.1014115,14.5469654 9.74374791,14.8712221 8.36505344,14.7293598 L8.13563373,15.4494351 L8.13563373,15.4494351 C7.92518674,16.1099612 7.22061964,16.4763434 6.55902211,16.2692895 L6.55902211,16.2692895 L6.55902211,16.2692895 C5.90179748,16.0636041 5.53575255,15.3640774 5.74143789,14.7068528 C5.74207508,14.7048167 5.74271751,14.7027823 5.74336515,14.7007496 L5.97278486,13.9806742 C4.76175366,13.3124739 3.8381452,12.2736944 3.29835126,11.0588899 L1.93918358,11.3619848 L1.93918358,11.3619848 C1.26646216,11.5120019 0.599500784,11.0882663 0.449483669,10.4155449 C0.449207184,10.4143051 0.448932593,10.4130648 0.448659896,10.4118241 L0.448659896,10.4118241 L0.448659896,10.4118241 C0.30009348,9.73589873 0.726203899,9.06713019 1.40160583,8.91620181 L2.7684886,8.61075198 C2.75972571,7.9541322 2.84209686,7.2853528 3.05299038,6.62352175 C3.26329971,5.96226973 3.58343724,5.36818517 3.97134111,4.83547776 L3.03641137,3.81568872 L3.03641137,3.81568872 C2.56784991,3.30459807 2.60232663,2.51043311 3.11341728,2.04187165 C3.11391608,2.04141435 3.11441526,2.04095746 3.1149148,2.04050097 L3.1149148,2.04050097 L3.1149148,2.04050097 C3.62785783,1.57176559 4.42347869,1.60688511 4.89312629,2.11899306 L5.82264737,3.13255116 C6.96941739,2.4452428 8.32708093,2.12040709 9.7051912,2.26226938 L9.93442176,1.54300535 L9.93442176,1.54300535 C10.144983,0.882320592 10.8497253,0.515855343 11.5115146,0.722918691 L11.5115146,0.722918691 L11.5115146,0.722918691 C12.1687965,0.928571712 12.534914,1.62811864 12.329261,2.28540049 C12.3286044,2.28749903 12.3279422,2.28959583 12.3272745,2.29169086 L12.098044,3.0109549 C13.308491,3.67915528 14.2320994,4.71793472 14.7724776,5.93331824 L16.1314275,5.62996705 L16.1314275,5.62996705 C16.8040917,5.4798118 17.4711186,5.90338894 17.6212738,6.57605308 C17.6215744,6.57739973 17.6218728,6.57874688 17.6221689,6.58009452 L17.6221689,6.58009452 L17.6221689,6.58009452 C17.7707262,7.2561383 17.344428,7.92497222 16.6688758,8.07574904 L15.301756,8.38087716 C15.3111031,9.03807597 15.2281478,9.70685537 15.0178385,10.3681074 C14.8075291,11.0293594 14.4873916,11.624023 14.0994877,12.1567304 L15.0341301,13.1765398 L15.0341301,13.1765398 C15.5026777,13.6877827 15.4680664,14.4820598 14.9568235,14.9506074 C14.9564232,14.9509743 14.9560227,14.9513409 14.9556219,14.9517072 Z M9.98794041,5.50599426 C8.33525962,4.98892066 6.57041386,5.90841996 6.04464055,7.55981292 C5.51828304,9.21120588 6.43079184,10.9685613 8.08288843,11.4856349 C9.73498503,12.0027085 11.5009992,11.0837882 12.0267725,9.43239525 C12.5525458,7.78042327 11.640037,6.02306786 9.98794041,5.50599426 Z",id:"path-7"}),i("linearGradient",{x1:"50%",y1:"-80.5345186%",x2:"50%",y2:"100%",id:"linearGradient-9"},i("stop",{"stop-color":"#888B9E",offset:"0%"}),i("stop",{"stop-color":"#3D4048",offset:"100%"}))),i("g",{id:"Page-1",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{transform:"translate(-1.000000, 0.000000)"},i("g",{id:"Group-5",transform:"translate(0.000000, 0.300516)"},i("mask",{id:"mask-2",fill:"white"},i("use",{href:"#path-1"})),i("g",{id:"Clip-4"}),i("polygon",{id:"Fill-3",fill:"url(#linearGradient-3)",mask:"url(#mask-2)",points:"-5.33017303 39.3361571 39.98915 35.933778 36.5564344 -8.9861949 -8.76288858 -5.58381586"})),i("g",{id:"Group-15",transform:"translate(2.920963, 19.408499)"},i("g",{id:"Group-8",transform:"translate(19.278355, 0.000000)"},i("mask",{id:"mask-5",fill:"white"},i("use",{href:"#path-4"})),i("g",{id:"Clip-7"}),i("path",{d:"M37.1135237,9.019334 L37.2064838,9.14183334 L37.2064838,9.14183334 C38.2080665,10.4616811 37.9500618,12.3435723 36.6302141,13.345155 C36.61783,13.3545529 36.6053729,13.3638543 36.5928442,13.3730585 L33.8385953,15.39646 C35.2500046,18.3356152 35.7167744,21.6974621 35.0303481,24.9950368 L36.8128658,25.7538381 L36.8128658,25.7538381 C38.3373407,26.402793 39.0470898,28.1647059 38.3981349,29.6891808 C38.3955936,29.6951506 38.3930329,29.7011122 38.3904529,29.7070654 L38.3491533,29.8023629 L38.3491533,29.8023629 C37.6932916,31.3157406 35.9387276,32.015813 34.4211959,31.3696211 L32.603028,30.5954129 C30.6629245,33.3591221 27.8809994,35.3382459 24.7584901,36.3469158 L25.1744593,39.7221436 L25.1744593,39.7221436 C25.3771197,41.3665568 24.2083482,42.8639059 22.563935,43.0665663 C22.5547682,43.067696 22.5455963,43.0687834 22.5364196,43.0698284 L22.3493673,43.0911291 L22.3493673,43.0911291 C20.7144126,43.277311 19.2346282,42.1117484 19.0326243,40.478673 L18.605774,37.0278548 C16.9875606,36.8894667 15.3611684,36.526415 13.7856011,35.8553195 C12.2100337,35.184803 10.8260815,34.2658827 9.60979256,33.1975728 L6.76317569,35.28773 L6.76317569,35.28773 C5.44260009,36.257376 3.58833504,35.9882559 2.59789995,34.6831997 L2.50453301,34.5601739 L2.50453301,34.5601739 C1.50290079,33.2403637 1.76083499,31.3584628 3.08064517,30.3568306 C3.09311631,30.347366 3.10566136,30.3379992 3.11827915,30.3287309 L5.87212848,28.3059291 C4.46071922,25.3661949 3.99394936,22.0043479 4.68037563,18.7067733 L2.89778102,17.9477129 L2.89778102,17.9477129 C1.37337593,17.2985941 0.663816144,15.5366049 1.31293488,14.0121998 C1.3154839,14.0062137 1.3180524,14.0002358 1.32064031,13.9942663 L1.36190542,13.8990813 L1.36190542,13.8990813 C2.01792018,12.3858712 3.77242404,11.6859973 5.28984046,12.332223 L7.10769577,13.1063972 C9.04838349,10.342688 11.8297243,8.36356417 14.9522336,7.35489428 L14.5362803,3.9797948 L14.5362803,3.9797948 C14.3336199,2.3353816 15.5023914,0.838032582 17.1468046,0.635372155 C17.1560138,0.634237206 17.1652281,0.633144989 17.1744474,0.632095537 L17.362743,0.610661354 L17.362743,0.610661354 C18.998074,0.424507426 20.4780291,1.59068713 20.679491,3.22420286 L21.1049498,6.67395525 C22.7243316,6.81292239 24.3489712,7.17539504 25.9251227,7.84649057 C27.5012743,8.51758609 28.8863949,9.4370854 30.1009312,10.5042373 L32.9487859,8.41426933 L32.9487859,8.41426933 C34.2694039,7.44510151 36.1232879,7.71443894 37.1135237,9.019334 Z M15.6894847,31.6312972 C21.0576302,33.9173068 27.2600027,31.4946462 29.5477009,26.2179477 C31.8342306,20.9412492 29.3379757,14.8122189 23.9698302,12.5267883 C18.6011004,10.2407787 12.3975595,12.6657555 10.1110298,17.942454 C7.82391586,23.2185734 10.3207549,29.3458666 15.6894847,31.6312972 Z",id:"Fill-6",fill:"url(#linearGradient-6)",mask:"url(#mask-5)"})),i("g",{id:"Group-14",transform:"translate(0.000000, 15.633804)"},i("g",{id:"Group-13"},i("mask",{id:"mask-8",fill:"white"},i("use",{href:"#path-7"})),i("g",{id:"Clip-12"}),i("polygon",{id:"Fill-11",fill:"url(#linearGradient-9)",mask:"url(#mask-8)",points:"-10.0293597 16.6790689 14.1007145 24.2301963 21.7191699 0.312791892 -2.41090433 -7.23833558"})))))))}},{key:"getAppIcon",value:function(){return i("svg",{width:"64px",height:"64px",viewBox:"0 0 64 64",version:"1.1"},i("defs",null,i("linearGradient",{x1:"50%",y1:"0%",x2:"50%",y2:"100%",id:"linearGradient-1"},i("stop",{"stop-color":"#888B9E",offset:"0%"}),i("stop",{"stop-color":"#3D4048",offset:"100%"}))),i("g",{id:"Page-1",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{id:"Group-21"},i("path",{d:"M16,10 C16,11.106 16.896,12 18,12 C19.104,12 20,11.106 20,10 C20,8.896 19.104,8 18,8 C16.896,8 16,8.896 16,10 Z M24,10 C24,11.106 24.896,12 26,12 C27.104,12 28,11.106 28,10 C28,8.896 27.104,8 26,8 C24.896,8 24,8.896 24,10 Z M56,60 L8,60 C5.792,60 4,58.208 4,56 L4,18 L60,18 L60,56 C60,58.208 58.208,60 56,60 Z M8,0 C3.582,0 0,3.582 0,8 L0,56 C0,60.418 3.582,64 8,64 L56,64 C60.418,64 64,60.418 64,56 L64,16 C64,11.582 60.418,8 56,8 L43.4909668,8 C33.5795898,8 38.9165039,0 28.5126953,0 L8,0 Z M8,10 C8,11.106 8.896,12 10,12 C11.104,12 12,11.106 12,10 C12,8.896 11.104,8 10,8 C8.896,8 8,8.896 8,10 Z",id:"Fill-109",fill:"url(#linearGradient-1)"}),i("path",{d:"M15.2918884,33.9521484 L17.6908142,33.9521484 L19.0687439,40.4682617 L20.4798767,33.9521484 L22.9452087,33.9521484 L20.3221619,43 L17.8900329,43 L16.4705994,36.4091797 L15.0345642,43 L12.5775329,43 L10.0374939,33.9521484 L12.5775329,33.9521484 L13.9886658,40.4433594 L15.2918884,33.9521484 Z M30.0110331,33.9521484 L32.4099589,33.9521484 L33.7878886,40.4682617 L35.1990214,33.9521484 L37.6643534,33.9521484 L35.0413066,43 L32.6091776,43 L31.1897441,36.4091797 L29.7537089,43 L27.2966776,43 L24.7566386,33.9521484 L27.2966776,33.9521484 L28.7078105,40.4433594 L30.0110331,33.9521484 Z M44.7301778,33.9521484 L47.1291036,33.9521484 L48.5070333,40.4682617 L49.9181661,33.9521484 L52.3834981,33.9521484 L49.7604513,43 L47.3283224,43 L45.9088888,36.4091797 L44.4728536,43 L42.0158224,43 L39.4757833,33.9521484 L42.0158224,33.9521484 L43.4269552,40.4433594 L44.7301778,33.9521484 Z",id:"www",fill:"#5C606C"}))))}}])&&Q(t.prototype,n),r&&Q(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function ie(e){return ie="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ie(e)}function se(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ae(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function le(e,t){return le=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},le(e,t)}function ue(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=pe(e);if(t){var o=pe(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return ce(this,n)}}function ce(e,t){if(t&&("object"===ie(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function pe(e){return pe=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},pe(e)}const fe=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&le(e,t)}(s,e);var t,n,r,o=ue(s);function s(){return se(this,s),o.apply(this,arguments)}return t=s,(n=[{key:"render",value:function(){return this.props.collapsed?this.renderCollapsed():this.renderExpanded()}},{key:"renderCollapsed",value:function(){return i("div",{className:"system-components collapsed"},"...")}},{key:"renderExpanded",value:function(){return i("div",{className:"system-components row"},i("div",{className:"col-sm-3"},i(oe,{type:"APP_SERVER",status:"WORKING"},this.props.spec.short_program_name," ",i("br",{class:"hidden-xs"}),"application server")),i("div",{className:"col-sm-1"},this.buildDivider()),i("div",{className:"col-sm-4"},i(oe,{type:"PREPARATION_WORK",status:this.getPreparationWorkStatus()},"Preparation work"," ",i("br",{class:"hidden-xs"}),"before executing the app")),i("div",{className:"col-sm-1"},this.buildDivider()),i("div",{className:"col-sm-3"},i(oe,{type:"APP",status:this.getWebAppStatus()},"Web"," ",i("br",{class:"hidden-xs"}),"application")))}},{key:"getGeneralSystemStatus",value:function(){var e=this.props.spec.journey;return e.steps.SUBPROCESS_APP_LOAD_OR_EXEC&&"STEP_ERRORED"===e.steps.SUBPROCESS_APP_LOAD_OR_EXEC.state||e.steps.SUBPROCESS_LISTEN&&"STEP_ERRORED"===e.steps.SUBPROCESS_LISTEN.state?"app-error":"preparation-error"}},{key:"getPreparationWorkStatus",value:function(){return"app-error"===this.getGeneralSystemStatus()?"DONE":"ERROR"}},{key:"getWebAppStatus",value:function(){return"app-error"===this.getGeneralSystemStatus()?"ERROR":"NOT_REACHED"}},{key:"buildDivider",value:function(){return i("div",{className:"divider"},i("span",{className:"glyphicon glyphicon-menu-right hidden-xs","aria-hidden":"true"}),i("div",{className:"visible-xs"}))}}])&&ae(t.prototype,n),r&&ae(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function de(e){return de="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},de(e)}function he(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ye(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function me(e,t){return me=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},me(e,t)}function ve(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=be(e);if(t){var o=be(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return ge(this,n)}}function ge(e,t){if(t&&("object"===de(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function be(e){return be=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},be(e)}const Ce=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&me(e,t)}(s,e);var t,n,r,o=ve(s);function s(){return he(this,s),o.apply(this,arguments)}return t=s,(n=[{key:"render",value:function(){return i("div",{className:"problem-description"},i("div",{dangerouslySetInnerHTML:{__html:this.props.spec.error.problem_description_html}}))}}])&&ye(t.prototype,n),r&&ye(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function we(e){return we="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},we(e)}function Se(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xe(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ee(e,t){return Ee=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},Ee(e,t)}function _e(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=Te(e);if(t){var o=Te(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return Ne(this,n)}}function Ne(e,t){if(t&&("object"===we(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function Te(e){return Te=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Te(e)}const Le=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Ee(e,t)}(s,e);var t,n,r,o=_e(s);function s(){return Se(this,s),o.apply(this,arguments)}return t=s,(n=[{key:"render",value:function(){return i("div",{className:"solution-description"},i("div",{dangerouslySetInnerHTML:{__html:this.props.spec.error.solution_description_html}}))}}])&&xe(t.prototype,n),r&&xe(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function Pe(e){return Pe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Pe(e)}function Oe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ke(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Re(e,t){return Re=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},Re(e,t)}function Ae(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=De(e);if(t){var o=De(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return je(this,n)}}function je(e,t){if(t&&("object"===Pe(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function De(e){return De=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},De(e)}const Ie=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Re(e,t)}(s,e);var t,n,r,o=Ae(s);function s(){return Oe(this,s),o.apply(this,arguments)}return t=s,(n=[{key:"render",value:function(){return i("div",null,i("p",null,"If you are stuck with a problem, please do not hesitate to contact one of the support resources."," "+this.props.spec.program_name+" ","has a friendly community of users who look out for each other. We —"," Passenger's ","authors — are also ready to help you whenever we can."),i("div",{className:"row"},i("div",{className:"col-sm-4"},i("h2",null,"Community support"),i("p",null,"Post a message to Stack Overflow. Support is provided by the community on a best-effort basis, so sometimes a bit of patience will help."),i("p",null,i("a",{href:"https://stackoverflow.com/questions/tagged/passenger",className:"btn btn-primary"},"Submit to Stack Overflow"))),i("div",{className:"col-sm-4"},i("h2",null,"Enterprise support"),i("p",null,"If you are a"," ",i("a",{href:"https://www.phusionpassenger.com/features#premium-features"},"Passenger Enterprise")," ","customer, then you are eligible for basic priority support."),i("p",null,i("small",null,"For most customers, this basic priority support has a response time of 3 working days, with a maximum of 1 support incident per month. Please consult your contract for the exact support level that you are eligible for.")),i("p",null,i("a",{href:"https://www.phusionpassenger.com/customers/help_support",className:"btn btn-primary"},"Submit Enterprise support ticket"))),i("div",{className:"col-sm-4"},i("h2",null,"Bug report"),i("p",null,"Do you suspect this error is a bug? Please send us a bug report."),i("p",null,i("em",null,"Please attach this error page")," so that we can help you better."),i("p",null,i("a",{href:"http://github.com/phusion/passenger/issues",className:"btn btn-primary"},"Submit bug report to Github")))))}}])&&ke(t.prototype,n),r&&ke(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function Fe(e){return Fe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Fe(e)}function Be(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function He(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Me(e,t){return Me=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},Me(e,t)}function qe(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=Ue(e);if(t){var o=Ue(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return We(this,n)}}function We(e,t){if(t&&("object"===Fe(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function Ue(e){return Ue=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Ue(e)}const $e=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Me(e,t)}(s,e);var t,n,r,o=qe(s);function s(){return Be(this,s),o.apply(this,arguments)}return t=s,(n=[{key:"render",value:function(){var e=this.props.spec.journey;return"SPAWN_DIRECTLY"===e.type?this.renderSpawnDirectlyJourney():"START_PRELOADER"===e.type?this.renderStartPreloaderJourney():this.renderSpawnThroughPreloaderJourney()}},{key:"renderSpawnDirectlyJourney",value:function(){var e=this;return i("table",{className:"journey spawn-directly"},i("thead",null,i("tr",null,i("th",{className:"server-core"},"In ",this.props.spec.short_program_name," core",i("br",null),i("small",null,"PID ",this.props.spec.diagnostics.core_process.pid)),i("th",null),i("th",{className:"subprocess"},"In subprocess",i("br",null),i("small",null,"PID ",this.props.spec.diagnostics.subprocess.pid||"unknown")))),i("tbody",null,i("tr",null,this.renderCell("server-core","Preparation work",["SPAWNING_KIT_PREPARATION"])),i("tr",null,this.renderStepSeparator("server-core")),i("tr",null,this.renderCell("server-core","Spawn subprocess (fork())",["SPAWNING_KIT_FORK_SUBPROCESS"]),this.renderProcessBoundaryArrow(),this.renderCell("subprocess","Basic initialization before exec()",["SUBPROCESS_BEFORE_FIRST_EXEC"])),i("tr",null,this.renderStepSeparator("server-core"),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,this.renderCell("server-core","Handshake with subprocess",["SPAWNING_KIT_HANDSHAKE_PERFORM"]),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Setup environment (1)",["SUBPROCESS_SPAWN_ENV_SETUPPER_BEFORE_SHELL"])),i("tr",null,this.renderStepSeparator("server-core"),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,this.renderCell("server-core","Finish",["SPAWNING_KIT_FINISH"]),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Load OS shell",["SUBPROCESS_OS_SHELL"])),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Setup environment (2)",["SUBPROCESS_SPAWN_ENV_SETUPPER_AFTER_SHELL"])),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),e.props.spec.journey.steps.SUBPROCESS_EXEC_WRAPPER?e.props.spec.config.wrapper_supplied_by_third_party?[i("tr",{key:"exec-wrapper"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize third-party wrapper",["SUBPROCESS_EXEC_WRAPPER","SUBPROCESS_WRAPPER_PREPARATION"])),i("tr",{server:"sep1"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess"))]:[i("tr",{key:"exec-wrapper"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize language runtime",["SUBPROCESS_EXEC_WRAPPER","SUBPROCESS_WRAPPER_PREPARATION"])),i("tr",{key:"sep2"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess"))]:[],i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Load or execute application",["SUBPROCESS_APP_LOAD_OR_EXEC"])),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderCell("subprocess","App start listening for requests",["SUBPROCESS_LISTEN"])),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Finish",["SUBPROCESS_FINISH"]))))}},{key:"renderStartPreloaderJourney",value:function(){var e=this;return i("table",{className:"journey start-preloader"},i("thead",null,i("tr",null,i("th",{className:"server-core"},"In ",this.props.spec.short_program_name," core",i("br",null),i("small",null,"PID ",this.props.spec.diagnostics.core_process.pid)),i("th",null),i("th",{className:"subprocess"},"In subprocess",i("br",null),i("small",null,"PID ",this.props.spec.diagnostics.subprocess.pid||"unknown")))),i("tbody",null,i("tr",null,this.renderCell("server-core","Preparation work",["SPAWNING_KIT_PREPARATION"])),i("tr",null,this.renderStepSeparator("server-core")),i("tr",null,this.renderCell("server-core","Spawn subprocess (fork())",["SPAWNING_KIT_FORK_SUBPROCESS"]),this.renderProcessBoundaryArrow(),this.renderCell("subprocess","Basic initialization before exec()",["SUBPROCESS_BEFORE_FIRST_EXEC"])),i("tr",null,this.renderStepSeparator("server-core"),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,this.renderCell("server-core","Handshake with subprocess",["SPAWNING_KIT_HANDSHAKE_PERFORM"]),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Setup environment (1)",["SUBPROCESS_SPAWN_ENV_SETUPPER_BEFORE_SHELL"])),i("tr",null,this.renderStepSeparator("server-core"),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,this.renderCell("server-core","Finish",["SPAWNING_KIT_FINISH"]),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Load OS shell",["SUBPROCESS_OS_SHELL"])),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Setup environment (2)",["SUBPROCESS_SPAWN_ENV_SETUPPER_AFTER_SHELL"])),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),e.props.spec.journey.steps.SUBPROCESS_EXEC_WRAPPER?e.props.spec.config.wrapper_supplied_by_third_party?[i("tr",{key:"exec-wrapper"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize language runtime",["SUBPROCESS_EXEC_WRAPPER"])),i("tr",{key:"sep1"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess")),i("tr",{key:"prep-inside-wrapper"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize third-party preloading wrapper",["SUBPROCESS_WRAPPER_PREPARATION"])),i("tr",{key:"sep2"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess"))]:[i("tr",{key:"exec-wrapper"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize language runtime",["SUBPROCESS_EXEC_WRAPPER"])),i("tr",{key:"sep1"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess")),i("tr",{key:"prep-inside-wrapper"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderCell("subprocess","Initialize "+e.props.spec.short_program_name+"-internal preloading wrapper",["SUBPROCESS_WRAPPER_PREPARATION"])),i("tr",{key:"sep2"},i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),e.renderStepSeparator("subprocess"))]:[],i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Load application",["SUBPROCESS_APP_LOAD_OR_EXEC"])),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderCell("subprocess","App start listening for preloader commands",["SUBPROCESS_LISTEN"])),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,i("td",{className:"server-core"}),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Finish",["SUBPROCESS_FINISH"]))))}},{key:"renderSpawnThroughPreloaderJourney",value:function(){return i("table",{className:"journey spawn-through-preloader"},i("thead",null,i("tr",null,i("th",{className:"server-core"},"In ",this.props.spec.short_program_name,i("br",null),i("small",null,"PID ",this.props.spec.diagnostics.core_process.pid)),i("th",null),i("th",{className:"preloader"},"In preloader",i("br",null),i("small",null,"PID ",this.props.spec.diagnostics.preloader_process.pid||"unknown")),i("th",null),i("th",{className:"subprocess"},"In subprocess",i("br",null),i("small",null,"PID ",this.props.spec.diagnostics.subprocess.pid||"unknown")))),i("tbody",null,i("tr",null,this.renderCell("server-core","Preparation work",["SPAWNING_KIT_PREPARATION"])),i("tr",null,this.renderStepSeparator("server-core")),i("tr",null,this.renderCell("server-core","Tell preloader to spawn a subprocess",["SPAWNING_KIT_CONNECT_TO_PRELOADER","SPAWNING_KIT_SEND_COMMAND_TO_PRELOADER"]),this.renderProcessBoundaryArrow("small"),this.renderCell("preloader","Preparation work",["PRELOADER_PREPARATION"])),i("tr",null,this.renderStepSeparator("server-core"),i("td",{className:"process-boundary"}),this.renderStepSeparator("preloader")),i("tr",null,this.renderCell("server-core","Receive and process preloader response",["SPAWNING_KIT_READ_RESPONSE_FROM_PRELOADER","SPAWNING_KIT_PARSE_RESPONSE_FROM_PRELOADER","SPAWNING_KIT_PROCESS_RESPONSE_FROM_PRELOADER"]),i("td",{className:"process-boundary"}),this.renderCell("preloader","Spawn subprocess (fork())",["PRELOADER_FORK_SUBPROCESS"]),this.renderProcessBoundaryArrow("small"),this.renderCell("subprocess","Preparation",["SUBPROCESS_PREPARE_AFTER_FORKING_FROM_PRELOADER"])),i("tr",null,this.renderStepSeparator("server-core"),i("td",{className:"process-boundary"}),this.renderStepSeparator("preloader"),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,this.renderCell("server-core","Handshake with subprocess",["SPAWNING_KIT_HANDSHAKE_PERFORM"]),i("td",{className:"process-boundary"}),this.renderCell("preloader","Send response to "+this.props.spec.short_program_name+" core",["PRELOADER_SEND_RESPONSE"]),i("td",{className:"process-boundary"}),this.renderCell("subprocess","App start listening",["SUBPROCESS_LISTEN"])),i("tr",null,this.renderStepSeparator("server-core"),i("td",{className:"process-boundary"}),this.renderStepSeparator("preloader"),i("td",{className:"process-boundary"}),this.renderStepSeparator("subprocess")),i("tr",null,this.renderCell("server-core","Finish",["SPAWNING_KIT_FINISH"]),i("td",{className:"process-boundary"}),this.renderCell("preloader","Finish",["PRELOADER_FINISH"]),i("td",{className:"process-boundary"}),this.renderCell("subprocess","Finish",["SUBPROCESS_FINISH"]))))}},{key:"renderCell",value:function(e,t,n){var r,o,s=this.props.spec.journey;function a(){var e;for(e=0;e<n.length;e++){var t=n[e];if("STEP_NOT_STARTED"!==s.steps[t].state)return!1}return!0}return function(){var e;for(e=0;e<n.length;e++){var t=n[e];if("STEP_ERRORED"===s.steps[t].state)return!0}return!1}()?(r="error",o=i("span",{className:"glyphicon glyphicon-remove","aria-hidden":"true"})):function(){var e;for(e=0;e<n.length;e++){var t=n[e];if("STEP_PERFORMED"!==s.steps[t].state)return!1}return!0}()?(r="done",o=i("span",{className:"glyphicon glyphicon-ok","aria-hidden":"true"})):a()?(r="not-started",o=i("span",{className:"glyphicon glyphicon-unchecked","aria-hidden":"true"})):(r="in-progress",o=i("span",{className:"glyphicon glyphicon-option-horizontal","aria-hidden":"true"})),i("td",{className:e+" "+r},i("span",{className:"status-label"},o),i("span",{className:"title"},t," ",function(){var e,t;for(e=0;e<n.length;e++){var r=n[e];void 0!==s.steps[r].duration?(void 0===t&&(t=0),t+=s.steps[r].duration):void 0!==s.steps[r].begin_time&&(void 0===t&&(t=0),t-=s.steps[r].begin_time.relative_timestamp)}if(void 0!==t)return a()?i("span",{className:"duration"},"— skipped"):i("span",{className:"duration"},"— ",t.toFixed(1),"s")}()))}},{key:"renderStepSeparator",value:function(e){return i("td",{className:"".concat(e," step-separator")},"|")}},{key:"renderProcessBoundaryArrow",value:function(e){return i("td",{className:"process-boundary arrow"},i("svg",{width:"small"===e?90:130,height:"20",viewBox:"0 0 130 20",version:"1.1",className:"arrow-image"},i("defs",{id:"defs4"},i("marker",{orient:"auto",refY:"0",refX:"0",id:"TriangleOutM",style:"overflow:visible"},i("path",{id:"path4287",d:"m 5.77,0 -8.65,5 0,-10 8.65,5 z",style:"fill:#aaa;fill-opacity:1;fill-rule:evenodd;stroke:#aaa;stroke-width:1pt;stroke-opacity:1",transform:"scale(0.4,0.4)"})),i("marker",{orient:"auto",refY:"0",refX:"0",id:"Arrow2Lend",style:"overflow:visible"},i("path",{id:"path4163",style:"fill:#aaa;fill-opacity:1;fill-rule:evenodd;stroke:#aaa;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1",d:"M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z",transform:"matrix(-1.1,0,0,-1.1,-1.1,0)"})),i("marker",{orient:"auto",refY:"0",refX:"0",id:"Arrow1Lend",style:"overflow:visible"},i("path",{id:"path4145",d:"M 0,0 5,-5 -12.5,0 5,5 0,0 Z",style:"fill:#aaa;fill-opacity:1;fill-rule:evenodd;stroke:#aaa;stroke-width:1pt;stroke-opacity:1",transform:"matrix(-0.8,0,0,-0.8,-10,0)"}))),i("g",{id:"layer1",transform:"translate(0,-1032.3622)"},i("path",{style:"fill:none;fill-rule:evenodd;stroke:#aaa;stroke-width:3.99429917;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM)",d:"m 0,1042.3622 118.75284,0",id:"path3336"}))))}}])&&He(t.prototype,n),r&&He(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function Ke(e){return Ke="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ke(e)}function Ge(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ze(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ve(e,t){return Ve=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},Ve(e,t)}function Xe(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=Je(e);if(t){var o=Je(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return Ze(this,n)}}function Ze(e,t){if(t&&("object"===Ke(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function Je(e){return Je=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Je(e)}const Ye=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Ve(e,t)}(s,e);var t,n,r,o=Xe(s);function s(){return Ge(this,s),o.apply(this,arguments)}return t=s,(n=[{key:"render",value:function(){return i("div",null,i("dl",null,this.renderBeforeItems(),i("dt",null,"User and group"),i("dd",null,i("pre",null,this.props.spec.user_info)),i("dt",null,"Ulimits"),i("dd",null,i("pre",null,this.props.spec.ulimits)),i("dt",null,"Environment variables"),i("dd",null,i("pre",null,this.props.spec.envvars)),this.renderAfterItems()))}},{key:"renderBeforeItems",value:function(){var e=[];return this.props.spec.pid&&(e.push(i("dt",{key:"pid-header"},"PID")),e.push(i("dd",{key:"pid-content"},this.props.spec.pid))),this.props.spec.stdout_and_err&&(e.push(i("dt",{key:"stdout-and-err-header"},"Stdout and stderr output")),e.push(i("dd",{key:"stdout-and-err-content"},i("pre",null,this.props.spec.stdout_and_err)))),this.props.spec.backtrace&&(e.push(i("dt",{key:"backtrace-header"},"Backtrace")),e.push(i("dd",{key:"backtrace-content"},i("pre",null,this.props.spec.backtrace)))),e}},{key:"renderAfterItems",value:function(){var e=[];if(this.props.spec.annotations)for(var t=0,n=Object.keys(this.props.spec.annotations);t<n.length;t++){var r=n[t],o=this.props.spec.annotations[r];e.push(i("dt",{key:r},r)),e.push(i("dd",{key:r+"-value"},i("pre",null,o)))}return e}}])&&ze(t.prototype,n),r&&ze(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function Qe(e){return Qe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Qe(e)}function et(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function tt(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function nt(e,t){return nt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},nt(e,t)}function rt(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=it(e);if(t){var o=it(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return ot(this,n)}}function ot(e,t){if(t&&("object"===Qe(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function it(e){return it=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},it(e)}const st=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&nt(e,t)}(s,e);var t,n,r,o=rt(s);function s(){return et(this,s),o.apply(this,arguments)}return t=s,(n=[{key:"render",value:function(){return i("div",{className:"details-view"},i("p",null,"Error ID: ",this.props.spec.error.id),i(W,{defaultActiveKey:"problem-location",id:"details-process-tabs"},i(Z,{eventKey:"problem-location",title:"Problem location"},i("p",null),i($e,{spec:this.props.spec})),i(Z,{eventKey:"core-process",title:this.props.spec.short_program_name+" core"},i("p",null),i(Ye,{spec:this.props.spec.diagnostics.core_process})),this.maybeRenderPreloaderProcessDetailsTab(),i(Z,{eventKey:"subprocess",title:"Subprocess"},i("p",null),i(Ye,{spec:this.props.spec.diagnostics.subprocess})),i(Z,{eventKey:"system-wide",title:"System-wide stats"},i("p",null),i("pre",null,this.props.spec.diagnostics.system_wide.system_metrics))))}},{key:"maybeRenderPreloaderProcessDetailsTab",value:function(){if("SPAWN_THROUGH_PRELOADER"===this.props.spec.journey.type)return i(Z,{eventKey:"preloader",title:"Preloader process"},i("p",null),i(Ye,{spec:this.props.spec.diagnostics.preloader_process}))}}])&&tt(t.prototype,n),r&&tt(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function at(e){return at="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},at(e)}function lt(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ut(e,t){return ut=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},ut(e,t)}function ct(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=ft(e);if(t){var o=ft(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return pt(this,n)}}function pt(e,t){if(t&&("object"===at(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function ft(e){return ft=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},ft(e)}const dt=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&ut(e,t)}(s,e);var t,n,r,o=ct(s);function s(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),(e=o.call(this)).state={systemComponentsViewCollapsed:!1},e.Preact={Component:j,h:i,render:D},e.Components={Tabs:W,Tab:Z},e._extraTabs=[],window.localStorage&&(e.state.systemComponentsViewCollapsed="true"===window.localStorage.getItem("_passenger_error_page_system_components_collapsed")),e}return t=s,(n=[{key:"render",value:function(){var e=this;return i("div",null,i("div",{className:"page-title-container container"},i("h1",{className:"page-title"},"Error starting web application")),i("div",{className:"page-system-components-container"},i("div",{className:"collapse-button"},this._renderCollapseButton()),i("div",{class:"container"},i(fe,{spec:this.props.spec,collapsed:this.state.systemComponentsViewCollapsed}))),i("div",{className:"page-main container"},i(W,{className:"page-main-tabs",defaultActiveKey:"problem-description",ref:function(t){e.tabs=t}},i(Z,{eventKey:"problem-description",title:"What happened?"},i("p",null),i(Ce,{spec:this.props.spec})),i(Z,{eventKey:"solution-description",title:"How do I solve this?"},i("p",null),i(Le,{spec:this.props.spec})),this._renderExtraTabs(),i(Z,{eventKey:"get-help",title:"Get help"},i("p",null),i(Ie,{spec:this.props.spec})),i(Z,{eventKey:"details",title:"Detailed diagnostics"},i("p",null),i(st,{spec:this.props.spec})))),i("footer",null,i("div",null,"This website is powered by ",i("a",{href:"https://www.phusionpassenger.com"},i("b",null,"Phusion Passenger")),"®, the smart application server built by ",i("b",null,"Phusion"),"®.")))}},{key:"addExtraTab",value:function(e,t,n){this._extraTabs.push({key:e,title:t,component:n})}},{key:"setActiveTab",value:function(e){this.tabs.setActiveKey(e)}},{key:"_renderCollapseButton",value:function(){return this.state.systemComponentsViewCollapsed?i("a",{href:"javascript:void(0)",onClick:this._handleExpandSystemComponentsView.bind(this)},"Expand"):i("a",{href:"javascript:void(0)",onClick:this._handleCollapseSystemComponentsView.bind(this)},"Collapse")}},{key:"_renderExtraTabs",value:function(){return this._extraTabs.map((function(e){return i(Z,{eventKey:e.key,title:e.title},e.component)}))}},{key:"_handleExpandSystemComponentsView",value:function(){if(this.setState({systemComponentsViewCollapsed:!1}),window.localStorage)try{window.localStorage.setItem("_passenger_error_page_system_components_collapsed","false")}catch(e){}}},{key:"_handleCollapseSystemComponentsView",value:function(){if(this.setState({systemComponentsViewCollapsed:!0}),window.localStorage)try{window.localStorage.setItem("_passenger_error_page_system_components_collapsed","true")}catch(e){}}}])&&lt(t.prototype,n),r&&lt(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(j);function ht(e){window.ErrorPage=e;for(var t=0;t<window.errorPageExtensions.length;t++)window.errorPageExtensions[t]()}window.errorPageExtensions=[],window.renderErrorPage=function(){D(i(dt,{spec:window.spec,ref:ht}),document.getElementById("root"))}})()})();