rearview 1.0.0-jruby

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1980) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1 -0
  3. data/Rakefile +30 -0
  4. data/app/assets/javascripts/rearview/application.js +13 -0
  5. data/app/assets/stylesheets/rearview/application.css +13 -0
  6. data/app/controllers/rearview/application_controller.rb +6 -0
  7. data/app/controllers/rearview/dashboard_children_controller.rb +25 -0
  8. data/app/controllers/rearview/dashboards_controller.rb +46 -0
  9. data/app/controllers/rearview/home_controller.rb +6 -0
  10. data/app/controllers/rearview/jobs_controller.rb +81 -0
  11. data/app/controllers/rearview/monitor_controller.rb +12 -0
  12. data/app/controllers/rearview/user_controller.rb +21 -0
  13. data/app/helpers/rearview/application_helper.rb +22 -0
  14. data/app/mailers/rearview/alert_mailer.rb +13 -0
  15. data/app/models/rearview/dashboard.rb +11 -0
  16. data/app/models/rearview/job.rb +174 -0
  17. data/app/models/rearview/job_data.rb +13 -0
  18. data/app/models/rearview/job_error.rb +120 -0
  19. data/app/models/rearview/user.rb +5 -0
  20. data/app/views/devise/sessions/new.html.erb +21 -0
  21. data/app/views/devise/shared/_links.erb +25 -0
  22. data/app/views/layouts/devise/sessions.html.erb +51 -0
  23. data/app/views/layouts/rearview/application.html.erb +14 -0
  24. data/app/views/rearview/alert_mailer/alert_email.text.erb +7 -0
  25. data/app/views/rearview/dashboards/_dashboard.json.jbuilder +11 -0
  26. data/app/views/rearview/dashboards/errors.json.jbuilder +5 -0
  27. data/app/views/rearview/dashboards/index.json.jbuilder +5 -0
  28. data/app/views/rearview/dashboards/show.json.jbuilder +1 -0
  29. data/app/views/rearview/home/show.html.erb +54 -0
  30. data/app/views/rearview/job_data/_job_data.json.jbuilder +6 -0
  31. data/app/views/rearview/job_errors/_job_error.json.jbuilder +4 -0
  32. data/app/views/rearview/jobs/_job.json.jbuilder +4 -0
  33. data/app/views/rearview/jobs/data.json.jbuilder +1 -0
  34. data/app/views/rearview/jobs/errors.json.jbuilder +3 -0
  35. data/app/views/rearview/jobs/index.json.jbuilder +4 -0
  36. data/app/views/rearview/jobs/show.json.jbuilder +1 -0
  37. data/app/views/rearview/layouts/application.html.erb +14 -0
  38. data/app/views/rearview/monitor/create.json.jbuilder +6 -0
  39. data/app/views/rearview/user/_user.json.jbuilder +4 -0
  40. data/app/views/rearview/user/show.json.jbuilder +1 -0
  41. data/bin/rails +8 -0
  42. data/config/initializers/unlimited_strength_cryptography.rb +5 -0
  43. data/config/locales/devise.en.yml +59 -0
  44. data/config/routes.rb +30 -0
  45. data/db/migrate/20131106162900_base_schema.rb +73 -0
  46. data/lib/generators/rearview/install_generator.rb +20 -0
  47. data/lib/generators/templates/README.md +12 -0
  48. data/lib/generators/templates/rearview.rb +48 -0
  49. data/lib/jar/commons-validator-1.4.0.jar +0 -0
  50. data/lib/jar/quartz-2.1.7.jar +0 -0
  51. data/lib/rearview/alerts/base.rb +20 -0
  52. data/lib/rearview/alerts/campfire_alert.rb +50 -0
  53. data/lib/rearview/alerts/email_alert.rb +44 -0
  54. data/lib/rearview/alerts/pagerduty_alert.rb +65 -0
  55. data/lib/rearview/alerts.rb +20 -0
  56. data/lib/rearview/alerts_handler.rb +34 -0
  57. data/lib/rearview/concerns/models/user.rb +15 -0
  58. data/lib/rearview/concerns/models.rb +5 -0
  59. data/lib/rearview/concerns.rb +5 -0
  60. data/lib/rearview/configuration.rb +59 -0
  61. data/lib/rearview/constants_module_maker.rb +59 -0
  62. data/lib/rearview/cron_helper.rb +24 -0
  63. data/lib/rearview/distribute.rb +36 -0
  64. data/lib/rearview/engine.rb +36 -0
  65. data/lib/rearview/ext/state_machine.rb +15 -0
  66. data/lib/rearview/graphite_parser.rb +20 -0
  67. data/lib/rearview/logger.rb +10 -0
  68. data/lib/rearview/monitor_runner.rb +277 -0
  69. data/lib/rearview/monitor_service.rb +70 -0
  70. data/lib/rearview/monitor_supervisor.rb +54 -0
  71. data/lib/rearview/monitor_task.rb +50 -0
  72. data/lib/rearview/results_handler.rb +38 -0
  73. data/lib/rearview/sandbox.rb +47 -0
  74. data/lib/rearview/templates/monitor.rb +164 -0
  75. data/lib/rearview/templates/utilities.rb +100 -0
  76. data/lib/rearview/uri_helper.rb +7 -0
  77. data/lib/rearview/version.rb +3 -0
  78. data/lib/rearview.rb +75 -0
  79. data/lib/tasks/rearview_tasks.rake +3 -0
  80. data/public/favicon.ico +0 -0
  81. data/public/help/alert.html +20 -0
  82. data/public/help/quick.html +34 -0
  83. data/public/monitors/index.json +3 -0
  84. data/public/monitors/outage.rb +2 -0
  85. data/public/rearview/build.txt +295 -0
  86. data/public/rearview/css/rearview.css +1 -0
  87. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  88. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  89. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  90. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  91. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  92. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  93. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  94. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  95. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  96. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  97. data/public/rearview/img/livingsocial-logo-white.svg +107 -0
  98. data/public/rearview/img/login/company-logo.svg +107 -0
  99. data/public/rearview/img/noise-light.png +0 -0
  100. data/public/rearview/img/noise.png +0 -0
  101. data/public/rearview/img/rearview.svg +19 -0
  102. data/public/rearview/img/rearviewlogo.png +0 -0
  103. data/public/rearview/img/rearviewlogo_small.png +0 -0
  104. data/public/rearview/img/sample-monitor.png +0 -0
  105. data/public/rearview/js/app.build.js +0 -0
  106. data/public/rearview/js/app.js +1 -0
  107. data/public/rearview/js/collection/dashboard.js +1 -0
  108. data/public/rearview/js/collection/monitor.js +1 -0
  109. data/public/rearview/js/main.js +402 -0
  110. data/public/rearview/js/model/base.js +1 -0
  111. data/public/rearview/js/model/dashboard.js +1 -0
  112. data/public/rearview/js/model/monitor.js +1 -0
  113. data/public/rearview/js/model/user.js +1 -0
  114. data/public/rearview/js/route/index.js +1 -0
  115. data/public/rearview/js/util/highcharts-gray-theme.js +1 -0
  116. data/public/rearview/js/util/templar.js +1 -0
  117. data/public/rearview/js/view/addcategory.js +1 -0
  118. data/public/rearview/js/view/adddashboard.js +1 -0
  119. data/public/rearview/js/view/addmonitor.js +1 -0
  120. data/public/rearview/js/view/alert.js +1 -0
  121. data/public/rearview/js/view/alerttimeline.js +1 -0
  122. data/public/rearview/js/view/base.js +1 -0
  123. data/public/rearview/js/view/dashboard.js +1 -0
  124. data/public/rearview/js/view/dashboardtile.js +1 -0
  125. data/public/rearview/js/view/deletemonitor.js +1 -0
  126. data/public/rearview/js/view/ecosystem.js +1 -0
  127. data/public/rearview/js/view/expandedmonitor.js +1 -0
  128. data/public/rearview/js/view/header.js +1 -0
  129. data/public/rearview/js/view/primarynav.js +1 -0
  130. data/public/rearview/js/view/resetmonitor.js +1 -0
  131. data/public/rearview/js/view/secondarynav.js +1 -0
  132. data/public/rearview/js/view/smallmonitor.js +1 -0
  133. data/public/rearview/less/alert.less +45 -0
  134. data/public/rearview/less/dashboard.less +173 -0
  135. data/public/rearview/less/ecosystem.less +221 -0
  136. data/public/rearview/less/elements.less +168 -0
  137. data/public/rearview/less/expandedmonitor.less +283 -0
  138. data/public/rearview/less/header.less +76 -0
  139. data/public/rearview/less/login.less +1050 -0
  140. data/public/rearview/less/primarynav.less +151 -0
  141. data/public/rearview/less/rearview.less +1207 -0
  142. data/public/rearview/login/icons/rearview.svg +19 -0
  143. data/public/rearview/templates/addcategory.hbs +38 -0
  144. data/public/rearview/templates/adddashboard.hbs +26 -0
  145. data/public/rearview/templates/addmonitor.hbs +10 -0
  146. data/public/rearview/templates/alert.hbs +4 -0
  147. data/public/rearview/templates/alerttimeline.hbs +15 -0
  148. data/public/rearview/templates/dashboard.hbs +35 -0
  149. data/public/rearview/templates/dashboardtile.hbs +22 -0
  150. data/public/rearview/templates/deletemonitor.hbs +16 -0
  151. data/public/rearview/templates/expandedmonitor.hbs +191 -0
  152. data/public/rearview/templates/header.hbs +9 -0
  153. data/public/rearview/templates/primarynav.hbs +50 -0
  154. data/public/rearview/templates/resetmonitor.hbs +16 -0
  155. data/public/rearview/templates/schedulemonitor.hbs +78 -0
  156. data/public/rearview/templates/secondarynav.hbs +11 -0
  157. data/public/rearview/templates/setmetrics.hbs +53 -0
  158. data/public/rearview/templates/smallmonitor.hbs +52 -0
  159. data/public/rearview/templates/test.txt +1 -0
  160. data/public/rearview/test/spec/model/application.js +1 -0
  161. data/public/rearview/test/spec/model/job.js +1 -0
  162. data/public/rearview/test/spec/model/user.js +1 -0
  163. data/public/rearview/test/spec/view/base.js +1 -0
  164. data/public/rearview/vendor/backbone/js/backbone.js +6 -0
  165. data/public/rearview/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +1 -0
  166. data/public/rearview/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +15 -0
  167. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.css +1088 -0
  168. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  169. data/public/rearview/vendor/bootstrap/css/bootstrap.css +5209 -0
  170. data/public/rearview/vendor/bootstrap/css/bootstrap.min.css +9 -0
  171. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  172. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  173. data/public/rearview/vendor/bootstrap/js/bootstrap.js +249 -0
  174. data/public/rearview/vendor/bootstrap/js/bootstrap.min.js +7 -0
  175. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  176. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  177. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  178. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  179. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +271 -0
  180. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +21 -0
  181. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +1 -0
  182. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +1 -0
  183. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +1 -0
  184. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +1 -0
  185. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +1 -0
  186. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +1 -0
  187. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +1 -0
  188. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +1 -0
  189. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +1 -0
  190. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +1 -0
  191. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +1 -0
  192. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +1 -0
  193. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +1 -0
  194. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  195. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +1 -0
  196. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +1 -0
  197. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +1 -0
  198. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +1 -0
  199. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +1 -0
  200. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +1 -0
  201. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +1 -0
  202. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +1 -0
  203. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +1 -0
  204. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +1 -0
  205. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +1 -0
  206. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  207. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  208. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  209. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +1 -0
  210. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +5 -0
  211. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +1 -0
  212. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +1 -0
  213. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +170 -0
  214. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +37 -0
  215. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +1 -0
  216. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +1 -0
  217. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +1 -0
  218. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +1 -0
  219. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +1 -0
  220. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +1 -0
  221. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +1 -0
  222. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +1 -0
  223. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +1 -0
  224. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +1 -0
  225. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +1 -0
  226. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +1 -0
  227. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  228. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  229. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  230. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1457 -0
  231. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  232. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  233. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  234. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  235. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  236. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  237. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  238. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  239. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  240. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  241. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  242. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  243. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  244. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  245. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  246. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  247. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  248. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  249. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  250. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  251. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  252. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  253. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  254. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  255. data/public/rearview/vendor/codemirror/LICENSE +23 -0
  256. data/public/rearview/vendor/codemirror/README.md +8 -0
  257. data/public/rearview/vendor/codemirror/demo/activeline.html +73 -0
  258. data/public/rearview/vendor/codemirror/demo/changemode.html +51 -0
  259. data/public/rearview/vendor/codemirror/demo/closetag.html +66 -0
  260. data/public/rearview/vendor/codemirror/demo/complete.html +71 -0
  261. data/public/rearview/vendor/codemirror/demo/emacs.html +60 -0
  262. data/public/rearview/vendor/codemirror/demo/folding.html +62 -0
  263. data/public/rearview/vendor/codemirror/demo/formatting.html +81 -0
  264. data/public/rearview/vendor/codemirror/demo/fullscreen.html +147 -0
  265. data/public/rearview/vendor/codemirror/demo/loadmode.html +40 -0
  266. data/public/rearview/vendor/codemirror/demo/marker.html +53 -0
  267. data/public/rearview/vendor/codemirror/demo/matchhighlighter.html +38 -0
  268. data/public/rearview/vendor/codemirror/demo/multiplex.html +60 -0
  269. data/public/rearview/vendor/codemirror/demo/mustache.html +58 -0
  270. data/public/rearview/vendor/codemirror/demo/preview.html +76 -0
  271. data/public/rearview/vendor/codemirror/demo/resize.html +42 -0
  272. data/public/rearview/vendor/codemirror/demo/runmode.html +50 -0
  273. data/public/rearview/vendor/codemirror/demo/search.html +85 -0
  274. data/public/rearview/vendor/codemirror/demo/theme.html +79 -0
  275. data/public/rearview/vendor/codemirror/demo/vim.html +53 -0
  276. data/public/rearview/vendor/codemirror/demo/visibletabs.html +53 -0
  277. data/public/rearview/vendor/codemirror/demo/xmlcomplete.html +71 -0
  278. data/public/rearview/vendor/codemirror/doc/baboon.png +0 -0
  279. data/public/rearview/vendor/codemirror/doc/baboon_vector.svg +153 -0
  280. data/public/rearview/vendor/codemirror/doc/compress.html +163 -0
  281. data/public/rearview/vendor/codemirror/doc/docs.css +138 -0
  282. data/public/rearview/vendor/codemirror/doc/internals.html +497 -0
  283. data/public/rearview/vendor/codemirror/doc/manual.html +1224 -0
  284. data/public/rearview/vendor/codemirror/doc/oldrelease.html +305 -0
  285. data/public/rearview/vendor/codemirror/doc/reporting.html +60 -0
  286. data/public/rearview/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  287. data/public/rearview/vendor/codemirror/index.html +472 -0
  288. data/public/rearview/vendor/codemirror/keymap/emacs.js +1 -0
  289. data/public/rearview/vendor/codemirror/keymap/vim.js +1 -0
  290. data/public/rearview/vendor/codemirror/lib/codemirror.css +149 -0
  291. data/public/rearview/vendor/codemirror/lib/codemirror.js +2 -0
  292. data/public/rearview/vendor/codemirror/lib/util/closetag.js +20 -0
  293. data/public/rearview/vendor/codemirror/lib/util/dialog.css +24 -0
  294. data/public/rearview/vendor/codemirror/lib/util/dialog.js +1 -0
  295. data/public/rearview/vendor/codemirror/lib/util/foldcode.js +5 -0
  296. data/public/rearview/vendor/codemirror/lib/util/formatting.js +1 -0
  297. data/public/rearview/vendor/codemirror/lib/util/javascript-hint.js +1 -0
  298. data/public/rearview/vendor/codemirror/lib/util/loadmode.js +1 -0
  299. data/public/rearview/vendor/codemirror/lib/util/match-highlighter.js +1 -0
  300. data/public/rearview/vendor/codemirror/lib/util/multiplex.js +1 -0
  301. data/public/rearview/vendor/codemirror/lib/util/overlay.js +1 -0
  302. data/public/rearview/vendor/codemirror/lib/util/pig-hint.js +1 -0
  303. data/public/rearview/vendor/codemirror/lib/util/runmode-standalone.js +1 -0
  304. data/public/rearview/vendor/codemirror/lib/util/runmode.js +1 -0
  305. data/public/rearview/vendor/codemirror/lib/util/search.js +1 -0
  306. data/public/rearview/vendor/codemirror/lib/util/searchcursor.js +1 -0
  307. data/public/rearview/vendor/codemirror/lib/util/simple-hint.css +16 -0
  308. data/public/rearview/vendor/codemirror/lib/util/simple-hint.js +1 -0
  309. data/public/rearview/vendor/codemirror/lib/util/xml-hint.js +1 -0
  310. data/public/rearview/vendor/codemirror/mode/clike/clike.js +1 -0
  311. data/public/rearview/vendor/codemirror/mode/clike/index.html +102 -0
  312. data/public/rearview/vendor/codemirror/mode/clike/scala.html +766 -0
  313. data/public/rearview/vendor/codemirror/mode/clojure/clojure.js +1 -0
  314. data/public/rearview/vendor/codemirror/mode/clojure/index.html +67 -0
  315. data/public/rearview/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  316. data/public/rearview/vendor/codemirror/mode/coffeescript/coffeescript.js +1 -0
  317. data/public/rearview/vendor/codemirror/mode/coffeescript/index.html +728 -0
  318. data/public/rearview/vendor/codemirror/mode/commonlisp/commonlisp.js +1 -0
  319. data/public/rearview/vendor/codemirror/mode/commonlisp/index.html +165 -0
  320. data/public/rearview/vendor/codemirror/mode/css/css.js +1 -0
  321. data/public/rearview/vendor/codemirror/mode/css/index.html +58 -0
  322. data/public/rearview/vendor/codemirror/mode/css/test.js +1 -0
  323. data/public/rearview/vendor/codemirror/mode/diff/diff.js +1 -0
  324. data/public/rearview/vendor/codemirror/mode/diff/index.html +105 -0
  325. data/public/rearview/vendor/codemirror/mode/ecl/ecl.js +1 -0
  326. data/public/rearview/vendor/codemirror/mode/ecl/index.html +42 -0
  327. data/public/rearview/vendor/codemirror/mode/erlang/erlang.js +1 -0
  328. data/public/rearview/vendor/codemirror/mode/erlang/index.html +63 -0
  329. data/public/rearview/vendor/codemirror/mode/gfm/gfm.js +1 -0
  330. data/public/rearview/vendor/codemirror/mode/gfm/index.html +48 -0
  331. data/public/rearview/vendor/codemirror/mode/go/go.js +1 -0
  332. data/public/rearview/vendor/codemirror/mode/go/index.html +73 -0
  333. data/public/rearview/vendor/codemirror/mode/groovy/groovy.js +1 -0
  334. data/public/rearview/vendor/codemirror/mode/groovy/index.html +72 -0
  335. data/public/rearview/vendor/codemirror/mode/haskell/haskell.js +1 -0
  336. data/public/rearview/vendor/codemirror/mode/haskell/index.html +61 -0
  337. data/public/rearview/vendor/codemirror/mode/haxe/haxe.js +1 -0
  338. data/public/rearview/vendor/codemirror/mode/haxe/index.html +91 -0
  339. data/public/rearview/vendor/codemirror/mode/htmlembedded/htmlembedded.js +1 -0
  340. data/public/rearview/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  341. data/public/rearview/vendor/codemirror/mode/htmlmixed/htmlmixed.js +1 -0
  342. data/public/rearview/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  343. data/public/rearview/vendor/codemirror/mode/javascript/index.html +78 -0
  344. data/public/rearview/vendor/codemirror/mode/javascript/javascript.js +1 -0
  345. data/public/rearview/vendor/codemirror/mode/jinja2/index.html +38 -0
  346. data/public/rearview/vendor/codemirror/mode/jinja2/jinja2.js +1 -0
  347. data/public/rearview/vendor/codemirror/mode/less/index.html +740 -0
  348. data/public/rearview/vendor/codemirror/mode/less/less.js +1 -0
  349. data/public/rearview/vendor/codemirror/mode/lua/index.html +73 -0
  350. data/public/rearview/vendor/codemirror/mode/lua/lua.js +1 -0
  351. data/public/rearview/vendor/codemirror/mode/markdown/index.html +343 -0
  352. data/public/rearview/vendor/codemirror/mode/markdown/markdown.js +1 -0
  353. data/public/rearview/vendor/codemirror/mode/markdown/test.js +1 -0
  354. data/public/rearview/vendor/codemirror/mode/mysql/index.html +42 -0
  355. data/public/rearview/vendor/codemirror/mode/mysql/mysql.js +1 -0
  356. data/public/rearview/vendor/codemirror/mode/ntriples/index.html +33 -0
  357. data/public/rearview/vendor/codemirror/mode/ntriples/ntriples.js +1 -0
  358. data/public/rearview/vendor/codemirror/mode/ocaml/index.html +130 -0
  359. data/public/rearview/vendor/codemirror/mode/ocaml/ocaml.js +1 -0
  360. data/public/rearview/vendor/codemirror/mode/pascal/LICENSE +7 -0
  361. data/public/rearview/vendor/codemirror/mode/pascal/index.html +49 -0
  362. data/public/rearview/vendor/codemirror/mode/pascal/pascal.js +1 -0
  363. data/public/rearview/vendor/codemirror/mode/perl/LICENSE +19 -0
  364. data/public/rearview/vendor/codemirror/mode/perl/index.html +63 -0
  365. data/public/rearview/vendor/codemirror/mode/perl/perl.js +1 -0
  366. data/public/rearview/vendor/codemirror/mode/php/index.html +49 -0
  367. data/public/rearview/vendor/codemirror/mode/php/php.js +1 -0
  368. data/public/rearview/vendor/codemirror/mode/pig/index.html +43 -0
  369. data/public/rearview/vendor/codemirror/mode/pig/pig.js +1 -0
  370. data/public/rearview/vendor/codemirror/mode/plsql/index.html +63 -0
  371. data/public/rearview/vendor/codemirror/mode/plsql/plsql.js +1 -0
  372. data/public/rearview/vendor/codemirror/mode/properties/index.html +41 -0
  373. data/public/rearview/vendor/codemirror/mode/properties/properties.js +1 -0
  374. data/public/rearview/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  375. data/public/rearview/vendor/codemirror/mode/python/index.html +123 -0
  376. data/public/rearview/vendor/codemirror/mode/python/python.js +1 -0
  377. data/public/rearview/vendor/codemirror/mode/r/LICENSE +24 -0
  378. data/public/rearview/vendor/codemirror/mode/r/index.html +74 -0
  379. data/public/rearview/vendor/codemirror/mode/r/r.js +1 -0
  380. data/public/rearview/vendor/codemirror/mode/rpm/changes/changes.js +1 -0
  381. data/public/rearview/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  382. data/public/rearview/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  383. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  384. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.js +1 -0
  385. data/public/rearview/vendor/codemirror/mode/rst/index.html +526 -0
  386. data/public/rearview/vendor/codemirror/mode/rst/rst.js +1 -0
  387. data/public/rearview/vendor/codemirror/mode/ruby/LICENSE +24 -0
  388. data/public/rearview/vendor/codemirror/mode/ruby/index.html +172 -0
  389. data/public/rearview/vendor/codemirror/mode/ruby/ruby.js +1 -0
  390. data/public/rearview/vendor/codemirror/mode/rust/index.html +49 -0
  391. data/public/rearview/vendor/codemirror/mode/rust/rust.js +1 -0
  392. data/public/rearview/vendor/codemirror/mode/scheme/index.html +65 -0
  393. data/public/rearview/vendor/codemirror/mode/scheme/scheme.js +1 -0
  394. data/public/rearview/vendor/codemirror/mode/shell/index.html +50 -0
  395. data/public/rearview/vendor/codemirror/mode/shell/shell.js +1 -0
  396. data/public/rearview/vendor/codemirror/mode/sieve/LICENSE +23 -0
  397. data/public/rearview/vendor/codemirror/mode/sieve/index.html +81 -0
  398. data/public/rearview/vendor/codemirror/mode/sieve/sieve.js +6 -0
  399. data/public/rearview/vendor/codemirror/mode/smalltalk/index.html +56 -0
  400. data/public/rearview/vendor/codemirror/mode/smalltalk/smalltalk.js +1 -0
  401. data/public/rearview/vendor/codemirror/mode/smarty/index.html +83 -0
  402. data/public/rearview/vendor/codemirror/mode/smarty/smarty.js +1 -0
  403. data/public/rearview/vendor/codemirror/mode/sparql/index.html +41 -0
  404. data/public/rearview/vendor/codemirror/mode/sparql/sparql.js +1 -0
  405. data/public/rearview/vendor/codemirror/mode/stex/index.html +98 -0
  406. data/public/rearview/vendor/codemirror/mode/stex/stex.js +1 -0
  407. data/public/rearview/vendor/codemirror/mode/stex/test.js +1 -0
  408. data/public/rearview/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  409. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  410. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +17 -0
  411. data/public/rearview/vendor/codemirror/mode/tiki/index.html +83 -0
  412. data/public/rearview/vendor/codemirror/mode/tiki/tiki.css +22 -0
  413. data/public/rearview/vendor/codemirror/mode/tiki/tiki.js +1 -0
  414. data/public/rearview/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  415. data/public/rearview/vendor/codemirror/mode/vb/index.html +89 -0
  416. data/public/rearview/vendor/codemirror/mode/vb/vb.js +1 -0
  417. data/public/rearview/vendor/codemirror/mode/vbscript/index.html +43 -0
  418. data/public/rearview/vendor/codemirror/mode/vbscript/vbscript.js +1 -0
  419. data/public/rearview/vendor/codemirror/mode/velocity/index.html +104 -0
  420. data/public/rearview/vendor/codemirror/mode/velocity/velocity.js +1 -0
  421. data/public/rearview/vendor/codemirror/mode/verilog/index.html +211 -0
  422. data/public/rearview/vendor/codemirror/mode/verilog/verilog.js +1 -0
  423. data/public/rearview/vendor/codemirror/mode/xml/index.html +45 -0
  424. data/public/rearview/vendor/codemirror/mode/xml/xml.js +1 -0
  425. data/public/rearview/vendor/codemirror/mode/xquery/LICENSE +20 -0
  426. data/public/rearview/vendor/codemirror/mode/xquery/index.html +223 -0
  427. data/public/rearview/vendor/codemirror/mode/xquery/test/index.html +27 -0
  428. data/public/rearview/vendor/codemirror/mode/xquery/test/testBase.js +1 -0
  429. data/public/rearview/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +1 -0
  430. data/public/rearview/vendor/codemirror/mode/xquery/test/testMultiAttr.js +1 -0
  431. data/public/rearview/vendor/codemirror/mode/xquery/test/testNamespaces.js +1 -0
  432. data/public/rearview/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +1 -0
  433. data/public/rearview/vendor/codemirror/mode/xquery/test/testQuotes.js +1 -0
  434. data/public/rearview/vendor/codemirror/mode/xquery/xquery.js +24 -0
  435. data/public/rearview/vendor/codemirror/mode/yaml/index.html +68 -0
  436. data/public/rearview/vendor/codemirror/mode/yaml/yaml.js +1 -0
  437. data/public/rearview/vendor/codemirror/package.json +21 -0
  438. data/public/rearview/vendor/codemirror/test/driver.js +1 -0
  439. data/public/rearview/vendor/codemirror/test/index.html +168 -0
  440. data/public/rearview/vendor/codemirror/test/lint/lint.js +1 -0
  441. data/public/rearview/vendor/codemirror/test/lint/parse-js.js +60 -0
  442. data/public/rearview/vendor/codemirror/test/mode_test.css +9 -0
  443. data/public/rearview/vendor/codemirror/test/mode_test.js +1 -0
  444. data/public/rearview/vendor/codemirror/test/phantom_driver.js +1 -0
  445. data/public/rearview/vendor/codemirror/test/run.js +32 -0
  446. data/public/rearview/vendor/codemirror/test/test.js +1 -0
  447. data/public/rearview/vendor/codemirror/theme/ambiance.css +67 -0
  448. data/public/rearview/vendor/codemirror/theme/blackboard.css +23 -0
  449. data/public/rearview/vendor/codemirror/theme/cobalt.css +17 -0
  450. data/public/rearview/vendor/codemirror/theme/eclipse.css +24 -0
  451. data/public/rearview/vendor/codemirror/theme/elegant.css +10 -0
  452. data/public/rearview/vendor/codemirror/theme/erlang-dark.css +20 -0
  453. data/public/rearview/vendor/codemirror/theme/lesser-dark.css +37 -0
  454. data/public/rearview/vendor/codemirror/theme/monokai.css +23 -0
  455. data/public/rearview/vendor/codemirror/theme/neat.css +9 -0
  456. data/public/rearview/vendor/codemirror/theme/night.css +19 -0
  457. data/public/rearview/vendor/codemirror/theme/rubyblue.css +19 -0
  458. data/public/rearview/vendor/codemirror/theme/vibrant-ink.css +24 -0
  459. data/public/rearview/vendor/codemirror/theme/xq-dark.css +42 -0
  460. data/public/rearview/vendor/handlebars/js/handlebars.js +2 -0
  461. data/public/rearview/vendor/highcharts/examples/area-basic/index.htm +94 -0
  462. data/public/rearview/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  463. data/public/rearview/vendor/highcharts/examples/area-missing/index.htm +85 -0
  464. data/public/rearview/vendor/highcharts/examples/area-negative/index.htm +55 -0
  465. data/public/rearview/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  466. data/public/rearview/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  467. data/public/rearview/vendor/highcharts/examples/arearange/index.htm +62 -0
  468. data/public/rearview/vendor/highcharts/examples/areaspline/index.htm +85 -0
  469. data/public/rearview/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  470. data/public/rearview/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  471. data/public/rearview/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  472. data/public/rearview/vendor/highcharts/examples/column-basic/index.htm +97 -0
  473. data/public/rearview/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  474. data/public/rearview/vendor/highcharts/examples/column-negative/index.htm +55 -0
  475. data/public/rearview/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  476. data/public/rearview/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  477. data/public/rearview/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  478. data/public/rearview/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  479. data/public/rearview/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  480. data/public/rearview/vendor/highcharts/examples/columnrange/index.htm +87 -0
  481. data/public/rearview/vendor/highcharts/examples/combo/index.htm +102 -0
  482. data/public/rearview/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  483. data/public/rearview/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  484. data/public/rearview/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  485. data/public/rearview/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  486. data/public/rearview/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  487. data/public/rearview/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  488. data/public/rearview/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  489. data/public/rearview/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  490. data/public/rearview/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  491. data/public/rearview/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  492. data/public/rearview/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  493. data/public/rearview/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  494. data/public/rearview/vendor/highcharts/examples/line-basic/index.htm +81 -0
  495. data/public/rearview/vendor/highcharts/examples/line-labels/index.htm +66 -0
  496. data/public/rearview/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  497. data/public/rearview/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  498. data/public/rearview/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  499. data/public/rearview/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  500. data/public/rearview/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  501. data/public/rearview/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  502. data/public/rearview/vendor/highcharts/examples/polar/index.htm +79 -0
  503. data/public/rearview/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  504. data/public/rearview/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  505. data/public/rearview/vendor/highcharts/examples/scatter/index.htm +197 -0
  506. data/public/rearview/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  507. data/public/rearview/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  508. data/public/rearview/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  509. data/public/rearview/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  510. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  511. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  512. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  513. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  514. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  515. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  516. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  517. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  518. data/public/rearview/vendor/highcharts/exporting-server/java/install.txt +10 -0
  519. data/public/rearview/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  520. data/public/rearview/vendor/highcharts/exporting-server/php/index.php +112 -0
  521. data/public/rearview/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  522. data/public/rearview/vendor/highcharts/graphics/skies.jpg +0 -0
  523. data/public/rearview/vendor/highcharts/graphics/snow.png +0 -0
  524. data/public/rearview/vendor/highcharts/graphics/sun.png +0 -0
  525. data/public/rearview/vendor/highcharts/index.htm +79 -0
  526. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.js +10 -0
  527. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.src.js +10 -0
  528. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.js +11 -0
  529. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.src.js +11 -0
  530. data/public/rearview/vendor/highcharts/js/highcharts-more.js +9 -0
  531. data/public/rearview/vendor/highcharts/js/highcharts.js +12 -0
  532. data/public/rearview/vendor/highcharts/js/highcharts.src.js +12 -0
  533. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.js +23 -0
  534. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.src.js +29 -0
  535. data/public/rearview/vendor/highcharts/js/modules/data.js +9 -0
  536. data/public/rearview/vendor/highcharts/js/modules/data.src.js +9 -0
  537. data/public/rearview/vendor/highcharts/js/modules/exporting.js +10 -0
  538. data/public/rearview/vendor/highcharts/js/modules/exporting.src.js +10 -0
  539. data/public/rearview/vendor/highcharts/js/themes/dark-blue.js +1 -0
  540. data/public/rearview/vendor/highcharts/js/themes/dark-green.js +1 -0
  541. data/public/rearview/vendor/highcharts/js/themes/gray.js +1 -0
  542. data/public/rearview/vendor/highcharts/js/themes/grid.js +1 -0
  543. data/public/rearview/vendor/highcharts/js/themes/skies.js +1 -0
  544. data/public/rearview/vendor/jasmine/SpecRunner.html +53 -0
  545. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  546. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +1 -0
  547. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +80 -0
  548. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2 -0
  549. data/public/rearview/vendor/jasmine/spec/PlayerSpec.js +1 -0
  550. data/public/rearview/vendor/jasmine/spec/SpecHelper.js +1 -0
  551. data/public/rearview/vendor/jasmine/src/Player.js +1 -0
  552. data/public/rearview/vendor/jasmine/src/Song.js +1 -0
  553. data/public/rearview/vendor/jquery/js/jquery.js +24 -0
  554. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  555. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  556. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  557. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  558. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  559. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  560. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  561. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  562. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  563. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  564. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  565. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  566. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  567. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  568. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  569. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +732 -0
  570. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +6 -0
  571. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  572. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +1 -0
  573. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  574. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  575. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  576. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  577. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  578. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  579. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  580. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  581. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  582. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  583. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  584. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  585. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  586. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  587. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  588. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  589. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  590. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +1 -0
  591. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +1 -0
  592. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +1 -0
  593. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +1 -0
  594. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  595. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  596. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  597. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  598. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  599. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +16 -0
  600. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  601. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  602. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  603. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  604. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  605. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  606. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  607. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  608. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  609. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  610. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  611. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  612. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  613. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  614. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  615. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  616. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  617. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  618. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  619. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  620. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  621. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  622. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  623. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  624. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  625. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  626. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  627. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  628. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  629. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  630. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  631. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  632. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  633. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  634. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  635. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  636. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  637. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  638. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  639. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  640. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  641. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  642. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  643. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  644. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  645. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  646. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  647. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  648. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  649. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  650. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  651. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  652. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  653. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  654. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  655. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  656. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  657. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  658. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  659. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  660. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  661. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  662. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  663. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  664. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  665. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  666. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  667. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  668. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  669. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  670. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  671. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  672. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  673. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +14 -0
  674. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +14 -0
  675. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +11 -0
  676. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +13 -0
  677. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +34 -0
  678. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +178 -0
  679. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +37 -0
  680. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +24 -0
  681. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  682. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  683. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  684. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  685. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  686. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  687. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  688. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  689. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  690. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  691. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  692. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  693. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  694. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  695. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  696. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +599 -0
  697. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +659 -0
  698. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +269 -0
  699. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +73 -0
  700. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +174 -0
  701. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +380 -0
  702. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  703. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  704. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  705. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  706. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  707. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  708. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  709. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  710. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  711. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  712. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  713. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  714. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  715. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  716. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +6 -0
  717. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +4 -0
  718. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +4 -0
  719. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +4 -0
  720. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  721. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  722. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  723. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  724. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  725. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  726. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  727. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  728. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  729. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  730. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  731. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  732. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  733. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  734. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  735. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +600 -0
  736. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +659 -0
  737. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +269 -0
  738. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +73 -0
  739. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +174 -0
  740. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +380 -0
  741. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  742. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  743. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  744. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  745. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  746. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  747. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  748. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  749. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  750. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
  751. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  752. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  753. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  754. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  755. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  756. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +6 -0
  757. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +4 -0
  758. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +4 -0
  759. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +4 -0
  760. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +7 -0
  761. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +1 -0
  762. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +1 -0
  763. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +1 -0
  764. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +1 -0
  765. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +1 -0
  766. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +1 -0
  767. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +1 -0
  768. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +1 -0
  769. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +1 -0
  770. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +1 -0
  771. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +1 -0
  772. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +1 -0
  773. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +1 -0
  774. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +1 -0
  775. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +1 -0
  776. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +1 -0
  777. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +1 -0
  778. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +1 -0
  779. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +1 -0
  780. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +1 -0
  781. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +1 -0
  782. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +1 -0
  783. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +1 -0
  784. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +1 -0
  785. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +1 -0
  786. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +1 -0
  787. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +1 -0
  788. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +1 -0
  789. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +1 -0
  790. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +1 -0
  791. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +1 -0
  792. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +1 -0
  793. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +1 -0
  794. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +1 -0
  795. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +1 -0
  796. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +1 -0
  797. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +1 -0
  798. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +1 -0
  799. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +1 -0
  800. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +1 -0
  801. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +1 -0
  802. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +1 -0
  803. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +1 -0
  804. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +1 -0
  805. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +1 -0
  806. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +1 -0
  807. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +1 -0
  808. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +1 -0
  809. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +1 -0
  810. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +1 -0
  811. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +1 -0
  812. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +1 -0
  813. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +1 -0
  814. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +1 -0
  815. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +1 -0
  816. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +1 -0
  817. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +1 -0
  818. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +1 -0
  819. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +1 -0
  820. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +1 -0
  821. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +1 -0
  822. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +1 -0
  823. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +1 -0
  824. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +1 -0
  825. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +1 -0
  826. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +1 -0
  827. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +1 -0
  828. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +1 -0
  829. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +1 -0
  830. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +1 -0
  831. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +1 -0
  832. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +1 -0
  833. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +1 -0
  834. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +19 -0
  835. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +12 -0
  836. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +16 -0
  837. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +17 -0
  838. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +18 -0
  839. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +15 -0
  840. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +15 -0
  841. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +15 -0
  842. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +15 -0
  843. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +15 -0
  844. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +15 -0
  845. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +15 -0
  846. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +15 -0
  847. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +15 -0
  848. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +15 -0
  849. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +15 -0
  850. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +15 -0
  851. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +15 -0
  852. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +23 -0
  853. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +15 -0
  854. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +12 -0
  855. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  856. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  857. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  858. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  859. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  860. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  861. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  862. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  863. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  864. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  865. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  866. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  867. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  868. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  869. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  870. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  871. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  872. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  873. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  874. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  875. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  876. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  877. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  878. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  879. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  880. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  881. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  882. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  883. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  884. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  885. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  886. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  887. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  888. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  889. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  890. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  891. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  892. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  893. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  894. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  895. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  896. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  897. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  898. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  899. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  900. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  901. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  902. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  903. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  904. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  905. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  906. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  907. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  908. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  909. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  910. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  911. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  912. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  913. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  914. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  915. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  916. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  917. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  918. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  919. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  920. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  921. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  922. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  923. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  924. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  925. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  926. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  927. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  928. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  929. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +8 -0
  930. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  931. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  932. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  933. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  934. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  935. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  936. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  937. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  938. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  939. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  940. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  941. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  942. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  943. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  944. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  945. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  946. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  947. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  948. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  949. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  950. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  951. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  952. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  953. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  954. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  955. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  956. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  957. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  958. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  959. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  960. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  961. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  962. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  963. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  964. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  965. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  966. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  967. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  968. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  969. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  970. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +10 -0
  971. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +10 -0
  972. data/public/rearview/vendor/jquery/plugins/jquery.validate.js +14 -0
  973. data/public/rearview/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  974. data/public/rearview/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +11 -0
  975. data/public/rearview/vendor/less/js/less.js +13 -0
  976. data/public/rearview/vendor/parsley/js/parsley.js +1 -0
  977. data/public/rearview/vendor/parsley/js/parsley.min.js +1 -0
  978. data/public/rearview/vendor/require/js/require.js +31 -0
  979. data/public/rearview/vendor/require/plugins/domready/domready.js +7 -0
  980. data/public/rearview/vendor/timeline/examples/example.json +38 -0
  981. data/public/rearview/vendor/timeline/examples/timeline_json.html +143 -0
  982. data/public/rearview/vendor/timeline/timeline.css +114 -0
  983. data/public/rearview/vendor/timeline/timeline.js +45 -0
  984. data/public/rearview/vendor/underscore/js/underscore.js +5 -0
  985. data/public/rearview/vendor/underscore/plugins/underscore-string/js/underscore.string.js +10 -0
  986. data/public/rearview/vendor/xdate/js/xdate.js +1 -0
  987. data/public/rearview-src/css/rearview.css +1 -0
  988. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  989. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  990. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  991. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  992. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  993. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  994. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  995. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  996. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  997. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  998. data/public/rearview-src/img/livingsocial-logo-white.svg +107 -0
  999. data/public/rearview-src/img/login/company-logo.svg +107 -0
  1000. data/public/rearview-src/img/noise-light.png +0 -0
  1001. data/public/rearview-src/img/noise.png +0 -0
  1002. data/public/rearview-src/img/rearview.svg +19 -0
  1003. data/public/rearview-src/img/rearviewlogo.png +0 -0
  1004. data/public/rearview-src/img/rearviewlogo_small.png +0 -0
  1005. data/public/rearview-src/img/sample-monitor.png +0 -0
  1006. data/public/rearview-src/js/app.build.js +15 -0
  1007. data/public/rearview-src/js/app.js +295 -0
  1008. data/public/rearview-src/js/collection/dashboard.js +41 -0
  1009. data/public/rearview-src/js/collection/monitor.js +53 -0
  1010. data/public/rearview-src/js/main.js +89 -0
  1011. data/public/rearview-src/js/model/base.js +34 -0
  1012. data/public/rearview-src/js/model/dashboard.js +47 -0
  1013. data/public/rearview-src/js/model/monitor.js +67 -0
  1014. data/public/rearview-src/js/model/user.js +81 -0
  1015. data/public/rearview-src/js/route/index.js +47 -0
  1016. data/public/rearview-src/js/util/highcharts-gray-theme.js +266 -0
  1017. data/public/rearview-src/js/util/templar.js +178 -0
  1018. data/public/rearview-src/js/view/addcategory.js +250 -0
  1019. data/public/rearview-src/js/view/adddashboard.js +166 -0
  1020. data/public/rearview-src/js/view/addmonitor.js +679 -0
  1021. data/public/rearview-src/js/view/alert.js +47 -0
  1022. data/public/rearview-src/js/view/alerttimeline.js +340 -0
  1023. data/public/rearview-src/js/view/base.js +535 -0
  1024. data/public/rearview-src/js/view/dashboard.js +493 -0
  1025. data/public/rearview-src/js/view/dashboardtile.js +146 -0
  1026. data/public/rearview-src/js/view/deletemonitor.js +68 -0
  1027. data/public/rearview-src/js/view/ecosystem.js +90 -0
  1028. data/public/rearview-src/js/view/expandedmonitor.js +706 -0
  1029. data/public/rearview-src/js/view/header.js +43 -0
  1030. data/public/rearview-src/js/view/primarynav.js +63 -0
  1031. data/public/rearview-src/js/view/resetmonitor.js +101 -0
  1032. data/public/rearview-src/js/view/secondarynav.js +45 -0
  1033. data/public/rearview-src/js/view/smallmonitor.js +416 -0
  1034. data/public/rearview-src/less/alert.less +45 -0
  1035. data/public/rearview-src/less/dashboard.less +173 -0
  1036. data/public/rearview-src/less/ecosystem.less +221 -0
  1037. data/public/rearview-src/less/elements.less +168 -0
  1038. data/public/rearview-src/less/expandedmonitor.less +283 -0
  1039. data/public/rearview-src/less/header.less +76 -0
  1040. data/public/rearview-src/less/login.less +1050 -0
  1041. data/public/rearview-src/less/primarynav.less +151 -0
  1042. data/public/rearview-src/less/rearview.less +1207 -0
  1043. data/public/rearview-src/login/icons/rearview.svg +19 -0
  1044. data/public/rearview-src/templates/addcategory.hbs +38 -0
  1045. data/public/rearview-src/templates/adddashboard.hbs +26 -0
  1046. data/public/rearview-src/templates/addmonitor.hbs +10 -0
  1047. data/public/rearview-src/templates/alert.hbs +4 -0
  1048. data/public/rearview-src/templates/alerttimeline.hbs +15 -0
  1049. data/public/rearview-src/templates/dashboard.hbs +35 -0
  1050. data/public/rearview-src/templates/dashboardtile.hbs +22 -0
  1051. data/public/rearview-src/templates/deletemonitor.hbs +16 -0
  1052. data/public/rearview-src/templates/expandedmonitor.hbs +191 -0
  1053. data/public/rearview-src/templates/header.hbs +9 -0
  1054. data/public/rearview-src/templates/primarynav.hbs +50 -0
  1055. data/public/rearview-src/templates/resetmonitor.hbs +16 -0
  1056. data/public/rearview-src/templates/schedulemonitor.hbs +78 -0
  1057. data/public/rearview-src/templates/secondarynav.hbs +11 -0
  1058. data/public/rearview-src/templates/setmetrics.hbs +53 -0
  1059. data/public/rearview-src/templates/smallmonitor.hbs +52 -0
  1060. data/public/rearview-src/templates/test.txt +1 -0
  1061. data/public/rearview-src/test/spec/model/application.js +60 -0
  1062. data/public/rearview-src/test/spec/model/job.js +109 -0
  1063. data/public/rearview-src/test/spec/model/user.js +50 -0
  1064. data/public/rearview-src/test/spec/view/base.js +58 -0
  1065. data/public/rearview-src/vendor/backbone/js/backbone.js +1431 -0
  1066. data/public/rearview-src/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +130 -0
  1067. data/public/rearview-src/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +221 -0
  1068. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.css +1109 -0
  1069. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  1070. data/public/rearview-src/vendor/bootstrap/css/bootstrap.css +6167 -0
  1071. data/public/rearview-src/vendor/bootstrap/css/bootstrap.min.css +9 -0
  1072. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  1073. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  1074. data/public/rearview-src/vendor/bootstrap/js/bootstrap.js +2280 -0
  1075. data/public/rearview-src/vendor/bootstrap/js/bootstrap.min.js +6 -0
  1076. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  1077. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  1078. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  1079. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  1080. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +274 -0
  1081. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +841 -0
  1082. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +14 -0
  1083. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +14 -0
  1084. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +14 -0
  1085. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +14 -0
  1086. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +14 -0
  1087. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +14 -0
  1088. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +13 -0
  1089. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +14 -0
  1090. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +14 -0
  1091. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +13 -0
  1092. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +13 -0
  1093. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +15 -0
  1094. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +16 -0
  1095. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  1096. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +14 -0
  1097. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +14 -0
  1098. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +14 -0
  1099. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +14 -0
  1100. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +14 -0
  1101. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +14 -0
  1102. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +14 -0
  1103. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +14 -0
  1104. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +15 -0
  1105. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +14 -0
  1106. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +13 -0
  1107. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  1108. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  1109. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  1110. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +48 -0
  1111. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +4 -0
  1112. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +26 -0
  1113. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +29 -0
  1114. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +235 -0
  1115. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +1669 -0
  1116. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +21 -0
  1117. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +157 -0
  1118. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +157 -0
  1119. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +80 -0
  1120. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +195 -0
  1121. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +86 -0
  1122. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +410 -0
  1123. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +26 -0
  1124. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +66 -0
  1125. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +251 -0
  1126. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +33 -0
  1127. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +264 -0
  1128. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  1129. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  1130. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  1131. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1479 -0
  1132. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  1133. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  1134. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  1135. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  1136. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  1137. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  1138. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  1139. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  1140. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  1141. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  1142. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  1143. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  1144. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  1145. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  1146. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  1147. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  1148. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  1149. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  1150. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  1151. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  1152. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  1153. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  1154. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  1155. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  1156. data/public/rearview-src/vendor/codemirror/LICENSE +23 -0
  1157. data/public/rearview-src/vendor/codemirror/README.md +8 -0
  1158. data/public/rearview-src/vendor/codemirror/demo/activeline.html +73 -0
  1159. data/public/rearview-src/vendor/codemirror/demo/changemode.html +51 -0
  1160. data/public/rearview-src/vendor/codemirror/demo/closetag.html +66 -0
  1161. data/public/rearview-src/vendor/codemirror/demo/complete.html +71 -0
  1162. data/public/rearview-src/vendor/codemirror/demo/emacs.html +60 -0
  1163. data/public/rearview-src/vendor/codemirror/demo/folding.html +62 -0
  1164. data/public/rearview-src/vendor/codemirror/demo/formatting.html +81 -0
  1165. data/public/rearview-src/vendor/codemirror/demo/fullscreen.html +147 -0
  1166. data/public/rearview-src/vendor/codemirror/demo/loadmode.html +40 -0
  1167. data/public/rearview-src/vendor/codemirror/demo/marker.html +53 -0
  1168. data/public/rearview-src/vendor/codemirror/demo/matchhighlighter.html +38 -0
  1169. data/public/rearview-src/vendor/codemirror/demo/multiplex.html +60 -0
  1170. data/public/rearview-src/vendor/codemirror/demo/mustache.html +58 -0
  1171. data/public/rearview-src/vendor/codemirror/demo/preview.html +76 -0
  1172. data/public/rearview-src/vendor/codemirror/demo/resize.html +42 -0
  1173. data/public/rearview-src/vendor/codemirror/demo/runmode.html +50 -0
  1174. data/public/rearview-src/vendor/codemirror/demo/search.html +85 -0
  1175. data/public/rearview-src/vendor/codemirror/demo/theme.html +79 -0
  1176. data/public/rearview-src/vendor/codemirror/demo/vim.html +53 -0
  1177. data/public/rearview-src/vendor/codemirror/demo/visibletabs.html +53 -0
  1178. data/public/rearview-src/vendor/codemirror/demo/xmlcomplete.html +71 -0
  1179. data/public/rearview-src/vendor/codemirror/doc/baboon.png +0 -0
  1180. data/public/rearview-src/vendor/codemirror/doc/baboon_vector.svg +153 -0
  1181. data/public/rearview-src/vendor/codemirror/doc/compress.html +163 -0
  1182. data/public/rearview-src/vendor/codemirror/doc/docs.css +165 -0
  1183. data/public/rearview-src/vendor/codemirror/doc/internals.html +497 -0
  1184. data/public/rearview-src/vendor/codemirror/doc/manual.html +1224 -0
  1185. data/public/rearview-src/vendor/codemirror/doc/oldrelease.html +305 -0
  1186. data/public/rearview-src/vendor/codemirror/doc/reporting.html +60 -0
  1187. data/public/rearview-src/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  1188. data/public/rearview-src/vendor/codemirror/index.html +472 -0
  1189. data/public/rearview-src/vendor/codemirror/keymap/emacs.js +29 -0
  1190. data/public/rearview-src/vendor/codemirror/keymap/vim.js +789 -0
  1191. data/public/rearview-src/vendor/codemirror/lib/codemirror.css +173 -0
  1192. data/public/rearview-src/vendor/codemirror/lib/codemirror.js +3143 -0
  1193. data/public/rearview-src/vendor/codemirror/lib/util/closetag.js +164 -0
  1194. data/public/rearview-src/vendor/codemirror/lib/util/dialog.css +27 -0
  1195. data/public/rearview-src/vendor/codemirror/lib/util/dialog.js +70 -0
  1196. data/public/rearview-src/vendor/codemirror/lib/util/foldcode.js +196 -0
  1197. data/public/rearview-src/vendor/codemirror/lib/util/formatting.js +193 -0
  1198. data/public/rearview-src/vendor/codemirror/lib/util/javascript-hint.js +134 -0
  1199. data/public/rearview-src/vendor/codemirror/lib/util/loadmode.js +51 -0
  1200. data/public/rearview-src/vendor/codemirror/lib/util/match-highlighter.js +44 -0
  1201. data/public/rearview-src/vendor/codemirror/lib/util/multiplex.js +77 -0
  1202. data/public/rearview-src/vendor/codemirror/lib/util/overlay.js +54 -0
  1203. data/public/rearview-src/vendor/codemirror/lib/util/pig-hint.js +123 -0
  1204. data/public/rearview-src/vendor/codemirror/lib/util/runmode-standalone.js +90 -0
  1205. data/public/rearview-src/vendor/codemirror/lib/util/runmode.js +53 -0
  1206. data/public/rearview-src/vendor/codemirror/lib/util/search.js +118 -0
  1207. data/public/rearview-src/vendor/codemirror/lib/util/searchcursor.js +119 -0
  1208. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.css +16 -0
  1209. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.js +97 -0
  1210. data/public/rearview-src/vendor/codemirror/lib/util/xml-hint.js +137 -0
  1211. data/public/rearview-src/vendor/codemirror/mode/clike/clike.js +284 -0
  1212. data/public/rearview-src/vendor/codemirror/mode/clike/index.html +102 -0
  1213. data/public/rearview-src/vendor/codemirror/mode/clike/scala.html +766 -0
  1214. data/public/rearview-src/vendor/codemirror/mode/clojure/clojure.js +206 -0
  1215. data/public/rearview-src/vendor/codemirror/mode/clojure/index.html +67 -0
  1216. data/public/rearview-src/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  1217. data/public/rearview-src/vendor/codemirror/mode/coffeescript/coffeescript.js +346 -0
  1218. data/public/rearview-src/vendor/codemirror/mode/coffeescript/index.html +728 -0
  1219. data/public/rearview-src/vendor/codemirror/mode/commonlisp/commonlisp.js +101 -0
  1220. data/public/rearview-src/vendor/codemirror/mode/commonlisp/index.html +165 -0
  1221. data/public/rearview-src/vendor/codemirror/mode/css/css.js +448 -0
  1222. data/public/rearview-src/vendor/codemirror/mode/css/index.html +58 -0
  1223. data/public/rearview-src/vendor/codemirror/mode/css/test.js +501 -0
  1224. data/public/rearview-src/vendor/codemirror/mode/diff/diff.js +32 -0
  1225. data/public/rearview-src/vendor/codemirror/mode/diff/index.html +105 -0
  1226. data/public/rearview-src/vendor/codemirror/mode/ecl/ecl.js +203 -0
  1227. data/public/rearview-src/vendor/codemirror/mode/ecl/index.html +42 -0
  1228. data/public/rearview-src/vendor/codemirror/mode/erlang/erlang.js +463 -0
  1229. data/public/rearview-src/vendor/codemirror/mode/erlang/index.html +63 -0
  1230. data/public/rearview-src/vendor/codemirror/mode/gfm/gfm.js +150 -0
  1231. data/public/rearview-src/vendor/codemirror/mode/gfm/index.html +48 -0
  1232. data/public/rearview-src/vendor/codemirror/mode/go/go.js +170 -0
  1233. data/public/rearview-src/vendor/codemirror/mode/go/index.html +73 -0
  1234. data/public/rearview-src/vendor/codemirror/mode/groovy/groovy.js +210 -0
  1235. data/public/rearview-src/vendor/codemirror/mode/groovy/index.html +72 -0
  1236. data/public/rearview-src/vendor/codemirror/mode/haskell/haskell.js +242 -0
  1237. data/public/rearview-src/vendor/codemirror/mode/haskell/index.html +61 -0
  1238. data/public/rearview-src/vendor/codemirror/mode/haxe/haxe.js +429 -0
  1239. data/public/rearview-src/vendor/codemirror/mode/haxe/index.html +91 -0
  1240. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/htmlembedded.js +72 -0
  1241. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  1242. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
  1243. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  1244. data/public/rearview-src/vendor/codemirror/mode/javascript/index.html +78 -0
  1245. data/public/rearview-src/vendor/codemirror/mode/javascript/javascript.js +361 -0
  1246. data/public/rearview-src/vendor/codemirror/mode/jinja2/index.html +38 -0
  1247. data/public/rearview-src/vendor/codemirror/mode/jinja2/jinja2.js +42 -0
  1248. data/public/rearview-src/vendor/codemirror/mode/less/index.html +740 -0
  1249. data/public/rearview-src/vendor/codemirror/mode/less/less.js +266 -0
  1250. data/public/rearview-src/vendor/codemirror/mode/lua/index.html +73 -0
  1251. data/public/rearview-src/vendor/codemirror/mode/lua/lua.js +140 -0
  1252. data/public/rearview-src/vendor/codemirror/mode/markdown/index.html +343 -0
  1253. data/public/rearview-src/vendor/codemirror/mode/markdown/markdown.js +382 -0
  1254. data/public/rearview-src/vendor/codemirror/mode/markdown/test.js +1084 -0
  1255. data/public/rearview-src/vendor/codemirror/mode/mysql/index.html +42 -0
  1256. data/public/rearview-src/vendor/codemirror/mode/mysql/mysql.js +186 -0
  1257. data/public/rearview-src/vendor/codemirror/mode/ntriples/index.html +33 -0
  1258. data/public/rearview-src/vendor/codemirror/mode/ntriples/ntriples.js +172 -0
  1259. data/public/rearview-src/vendor/codemirror/mode/ocaml/index.html +130 -0
  1260. data/public/rearview-src/vendor/codemirror/mode/ocaml/ocaml.js +114 -0
  1261. data/public/rearview-src/vendor/codemirror/mode/pascal/LICENSE +7 -0
  1262. data/public/rearview-src/vendor/codemirror/mode/pascal/index.html +49 -0
  1263. data/public/rearview-src/vendor/codemirror/mode/pascal/pascal.js +94 -0
  1264. data/public/rearview-src/vendor/codemirror/mode/perl/LICENSE +19 -0
  1265. data/public/rearview-src/vendor/codemirror/mode/perl/index.html +63 -0
  1266. data/public/rearview-src/vendor/codemirror/mode/perl/perl.js +816 -0
  1267. data/public/rearview-src/vendor/codemirror/mode/php/index.html +49 -0
  1268. data/public/rearview-src/vendor/codemirror/mode/php/php.js +148 -0
  1269. data/public/rearview-src/vendor/codemirror/mode/pig/index.html +43 -0
  1270. data/public/rearview-src/vendor/codemirror/mode/pig/pig.js +172 -0
  1271. data/public/rearview-src/vendor/codemirror/mode/plsql/index.html +63 -0
  1272. data/public/rearview-src/vendor/codemirror/mode/plsql/plsql.js +217 -0
  1273. data/public/rearview-src/vendor/codemirror/mode/properties/index.html +41 -0
  1274. data/public/rearview-src/vendor/codemirror/mode/properties/properties.js +63 -0
  1275. data/public/rearview-src/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  1276. data/public/rearview-src/vendor/codemirror/mode/python/index.html +123 -0
  1277. data/public/rearview-src/vendor/codemirror/mode/python/python.js +338 -0
  1278. data/public/rearview-src/vendor/codemirror/mode/r/LICENSE +24 -0
  1279. data/public/rearview-src/vendor/codemirror/mode/r/index.html +74 -0
  1280. data/public/rearview-src/vendor/codemirror/mode/r/r.js +141 -0
  1281. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/changes.js +19 -0
  1282. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  1283. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  1284. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  1285. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.js +66 -0
  1286. data/public/rearview-src/vendor/codemirror/mode/rst/index.html +526 -0
  1287. data/public/rearview-src/vendor/codemirror/mode/rst/rst.js +326 -0
  1288. data/public/rearview-src/vendor/codemirror/mode/ruby/LICENSE +24 -0
  1289. data/public/rearview-src/vendor/codemirror/mode/ruby/index.html +172 -0
  1290. data/public/rearview-src/vendor/codemirror/mode/ruby/ruby.js +195 -0
  1291. data/public/rearview-src/vendor/codemirror/mode/rust/index.html +49 -0
  1292. data/public/rearview-src/vendor/codemirror/mode/rust/rust.js +432 -0
  1293. data/public/rearview-src/vendor/codemirror/mode/scheme/index.html +65 -0
  1294. data/public/rearview-src/vendor/codemirror/mode/scheme/scheme.js +230 -0
  1295. data/public/rearview-src/vendor/codemirror/mode/shell/index.html +50 -0
  1296. data/public/rearview-src/vendor/codemirror/mode/shell/shell.js +118 -0
  1297. data/public/rearview-src/vendor/codemirror/mode/sieve/LICENSE +23 -0
  1298. data/public/rearview-src/vendor/codemirror/mode/sieve/index.html +81 -0
  1299. data/public/rearview-src/vendor/codemirror/mode/sieve/sieve.js +156 -0
  1300. data/public/rearview-src/vendor/codemirror/mode/smalltalk/index.html +56 -0
  1301. data/public/rearview-src/vendor/codemirror/mode/smalltalk/smalltalk.js +139 -0
  1302. data/public/rearview-src/vendor/codemirror/mode/smarty/index.html +83 -0
  1303. data/public/rearview-src/vendor/codemirror/mode/smarty/smarty.js +148 -0
  1304. data/public/rearview-src/vendor/codemirror/mode/sparql/index.html +41 -0
  1305. data/public/rearview-src/vendor/codemirror/mode/sparql/sparql.js +143 -0
  1306. data/public/rearview-src/vendor/codemirror/mode/stex/index.html +98 -0
  1307. data/public/rearview-src/vendor/codemirror/mode/stex/stex.js +182 -0
  1308. data/public/rearview-src/vendor/codemirror/mode/stex/test.js +343 -0
  1309. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  1310. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  1311. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +384 -0
  1312. data/public/rearview-src/vendor/codemirror/mode/tiki/index.html +83 -0
  1313. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.css +26 -0
  1314. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.js +309 -0
  1315. data/public/rearview-src/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  1316. data/public/rearview-src/vendor/codemirror/mode/vb/index.html +89 -0
  1317. data/public/rearview-src/vendor/codemirror/mode/vb/vb.js +260 -0
  1318. data/public/rearview-src/vendor/codemirror/mode/vbscript/index.html +43 -0
  1319. data/public/rearview-src/vendor/codemirror/mode/vbscript/vbscript.js +26 -0
  1320. data/public/rearview-src/vendor/codemirror/mode/velocity/index.html +104 -0
  1321. data/public/rearview-src/vendor/codemirror/mode/velocity/velocity.js +146 -0
  1322. data/public/rearview-src/vendor/codemirror/mode/verilog/index.html +211 -0
  1323. data/public/rearview-src/vendor/codemirror/mode/verilog/verilog.js +194 -0
  1324. data/public/rearview-src/vendor/codemirror/mode/xml/index.html +45 -0
  1325. data/public/rearview-src/vendor/codemirror/mode/xml/xml.js +318 -0
  1326. data/public/rearview-src/vendor/codemirror/mode/xquery/LICENSE +20 -0
  1327. data/public/rearview-src/vendor/codemirror/mode/xquery/index.html +223 -0
  1328. data/public/rearview-src/vendor/codemirror/mode/xquery/test/index.html +27 -0
  1329. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testBase.js +42 -0
  1330. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +16 -0
  1331. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testMultiAttr.js +16 -0
  1332. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testNamespaces.js +91 -0
  1333. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +16 -0
  1334. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testQuotes.js +19 -0
  1335. data/public/rearview-src/vendor/codemirror/mode/xquery/xquery.js +451 -0
  1336. data/public/rearview-src/vendor/codemirror/mode/yaml/index.html +68 -0
  1337. data/public/rearview-src/vendor/codemirror/mode/yaml/yaml.js +95 -0
  1338. data/public/rearview-src/vendor/codemirror/package.json +21 -0
  1339. data/public/rearview-src/vendor/codemirror/test/driver.js +129 -0
  1340. data/public/rearview-src/vendor/codemirror/test/index.html +168 -0
  1341. data/public/rearview-src/vendor/codemirror/test/lint/lint.js +120 -0
  1342. data/public/rearview-src/vendor/codemirror/test/lint/parse-js.js +1372 -0
  1343. data/public/rearview-src/vendor/codemirror/test/mode_test.css +10 -0
  1344. data/public/rearview-src/vendor/codemirror/test/mode_test.js +203 -0
  1345. data/public/rearview-src/vendor/codemirror/test/phantom_driver.js +30 -0
  1346. data/public/rearview-src/vendor/codemirror/test/run.js +32 -0
  1347. data/public/rearview-src/vendor/codemirror/test/test.js +672 -0
  1348. data/public/rearview-src/vendor/codemirror/theme/ambiance.css +81 -0
  1349. data/public/rearview-src/vendor/codemirror/theme/blackboard.css +25 -0
  1350. data/public/rearview-src/vendor/codemirror/theme/cobalt.css +18 -0
  1351. data/public/rearview-src/vendor/codemirror/theme/eclipse.css +25 -0
  1352. data/public/rearview-src/vendor/codemirror/theme/elegant.css +10 -0
  1353. data/public/rearview-src/vendor/codemirror/theme/erlang-dark.css +21 -0
  1354. data/public/rearview-src/vendor/codemirror/theme/lesser-dark.css +44 -0
  1355. data/public/rearview-src/vendor/codemirror/theme/monokai.css +28 -0
  1356. data/public/rearview-src/vendor/codemirror/theme/neat.css +9 -0
  1357. data/public/rearview-src/vendor/codemirror/theme/night.css +21 -0
  1358. data/public/rearview-src/vendor/codemirror/theme/rubyblue.css +21 -0
  1359. data/public/rearview-src/vendor/codemirror/theme/vibrant-ink.css +27 -0
  1360. data/public/rearview-src/vendor/codemirror/theme/xq-dark.css +46 -0
  1361. data/public/rearview-src/vendor/handlebars/js/handlebars.js +1920 -0
  1362. data/public/rearview-src/vendor/highcharts/examples/area-basic/index.htm +94 -0
  1363. data/public/rearview-src/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  1364. data/public/rearview-src/vendor/highcharts/examples/area-missing/index.htm +85 -0
  1365. data/public/rearview-src/vendor/highcharts/examples/area-negative/index.htm +55 -0
  1366. data/public/rearview-src/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  1367. data/public/rearview-src/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  1368. data/public/rearview-src/vendor/highcharts/examples/arearange/index.htm +62 -0
  1369. data/public/rearview-src/vendor/highcharts/examples/areaspline/index.htm +85 -0
  1370. data/public/rearview-src/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  1371. data/public/rearview-src/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  1372. data/public/rearview-src/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  1373. data/public/rearview-src/vendor/highcharts/examples/column-basic/index.htm +97 -0
  1374. data/public/rearview-src/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  1375. data/public/rearview-src/vendor/highcharts/examples/column-negative/index.htm +55 -0
  1376. data/public/rearview-src/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  1377. data/public/rearview-src/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  1378. data/public/rearview-src/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  1379. data/public/rearview-src/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  1380. data/public/rearview-src/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  1381. data/public/rearview-src/vendor/highcharts/examples/columnrange/index.htm +87 -0
  1382. data/public/rearview-src/vendor/highcharts/examples/combo/index.htm +102 -0
  1383. data/public/rearview-src/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  1384. data/public/rearview-src/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  1385. data/public/rearview-src/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  1386. data/public/rearview-src/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  1387. data/public/rearview-src/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  1388. data/public/rearview-src/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  1389. data/public/rearview-src/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  1390. data/public/rearview-src/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  1391. data/public/rearview-src/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  1392. data/public/rearview-src/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  1393. data/public/rearview-src/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  1394. data/public/rearview-src/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  1395. data/public/rearview-src/vendor/highcharts/examples/line-basic/index.htm +81 -0
  1396. data/public/rearview-src/vendor/highcharts/examples/line-labels/index.htm +66 -0
  1397. data/public/rearview-src/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  1398. data/public/rearview-src/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  1399. data/public/rearview-src/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  1400. data/public/rearview-src/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  1401. data/public/rearview-src/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  1402. data/public/rearview-src/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  1403. data/public/rearview-src/vendor/highcharts/examples/polar/index.htm +79 -0
  1404. data/public/rearview-src/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  1405. data/public/rearview-src/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  1406. data/public/rearview-src/vendor/highcharts/examples/scatter/index.htm +197 -0
  1407. data/public/rearview-src/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  1408. data/public/rearview-src/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  1409. data/public/rearview-src/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  1410. data/public/rearview-src/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  1411. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  1412. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  1413. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  1414. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  1415. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  1416. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  1417. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  1418. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  1419. data/public/rearview-src/vendor/highcharts/exporting-server/java/install.txt +10 -0
  1420. data/public/rearview-src/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  1421. data/public/rearview-src/vendor/highcharts/exporting-server/php/index.php +112 -0
  1422. data/public/rearview-src/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  1423. data/public/rearview-src/vendor/highcharts/graphics/skies.jpg +0 -0
  1424. data/public/rearview-src/vendor/highcharts/graphics/snow.png +0 -0
  1425. data/public/rearview-src/vendor/highcharts/graphics/sun.png +0 -0
  1426. data/public/rearview-src/vendor/highcharts/index.htm +79 -0
  1427. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.js +13 -0
  1428. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.src.js +327 -0
  1429. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.js +16 -0
  1430. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.src.js +385 -0
  1431. data/public/rearview-src/vendor/highcharts/js/highcharts-more.js +35 -0
  1432. data/public/rearview-src/vendor/highcharts/js/highcharts.js +249 -0
  1433. data/public/rearview-src/vendor/highcharts/js/highcharts.src.js +15111 -0
  1434. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.js +133 -0
  1435. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.src.js +3113 -0
  1436. data/public/rearview-src/vendor/highcharts/js/modules/data.js +11 -0
  1437. data/public/rearview-src/vendor/highcharts/js/modules/data.src.js +277 -0
  1438. data/public/rearview-src/vendor/highcharts/js/modules/exporting.js +23 -0
  1439. data/public/rearview-src/vendor/highcharts/js/modules/exporting.src.js +736 -0
  1440. data/public/rearview-src/vendor/highcharts/js/themes/dark-blue.js +263 -0
  1441. data/public/rearview-src/vendor/highcharts/js/themes/dark-green.js +263 -0
  1442. data/public/rearview-src/vendor/highcharts/js/themes/gray.js +262 -0
  1443. data/public/rearview-src/vendor/highcharts/js/themes/grid.js +95 -0
  1444. data/public/rearview-src/vendor/highcharts/js/themes/skies.js +89 -0
  1445. data/public/rearview-src/vendor/jasmine/SpecRunner.html +53 -0
  1446. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  1447. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +680 -0
  1448. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +82 -0
  1449. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2600 -0
  1450. data/public/rearview-src/vendor/jasmine/spec/PlayerSpec.js +58 -0
  1451. data/public/rearview-src/vendor/jasmine/spec/SpecHelper.js +9 -0
  1452. data/public/rearview-src/vendor/jasmine/src/Player.js +22 -0
  1453. data/public/rearview-src/vendor/jasmine/src/Song.js +7 -0
  1454. data/public/rearview-src/vendor/jquery/js/jquery.js +9440 -0
  1455. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  1456. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1457. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1458. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1459. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1460. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1461. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1462. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1463. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1464. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1465. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1466. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1467. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1468. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1469. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1470. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +785 -0
  1471. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +7 -0
  1472. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  1473. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +378 -0
  1474. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  1475. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  1476. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  1477. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  1478. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  1479. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  1480. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  1481. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  1482. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  1483. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  1484. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  1485. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  1486. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  1487. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  1488. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  1489. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  1490. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  1491. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +23 -0
  1492. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +25 -0
  1493. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +23 -0
  1494. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +23 -0
  1495. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  1496. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  1497. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  1498. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  1499. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  1500. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +19 -0
  1501. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  1502. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  1503. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  1504. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  1505. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  1506. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  1507. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  1508. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  1509. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  1510. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  1511. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  1512. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  1513. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  1514. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  1515. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  1516. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  1517. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  1518. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  1519. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  1520. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  1521. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  1522. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  1523. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  1524. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  1525. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  1526. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  1527. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  1528. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  1529. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  1530. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  1531. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  1532. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  1533. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  1534. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  1535. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  1536. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  1537. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  1538. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  1539. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  1540. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  1541. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  1542. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  1543. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  1544. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  1545. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  1546. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  1547. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  1548. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  1549. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  1550. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  1551. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  1552. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  1553. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  1554. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  1555. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  1556. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  1557. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  1558. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  1559. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  1560. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  1561. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  1562. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  1563. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  1564. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  1565. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  1566. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  1567. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  1568. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  1569. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  1570. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  1571. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  1572. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  1573. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  1574. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +81 -0
  1575. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +100 -0
  1576. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +1573 -0
  1577. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +101 -0
  1578. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +4835 -0
  1579. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +244 -0
  1580. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +2152 -0
  1581. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +9597 -0
  1582. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  1583. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  1584. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1585. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1586. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1587. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1588. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1589. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1590. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1591. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1592. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  1593. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  1594. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  1595. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  1596. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  1597. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +648 -0
  1598. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +12 -0
  1599. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +25 -0
  1600. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +93 -0
  1601. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +178 -0
  1602. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +406 -0
  1603. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  1604. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1605. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1606. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1607. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1608. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1609. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1610. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1611. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1612. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  1613. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  1614. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  1615. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  1616. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  1617. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +7 -0
  1618. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +5 -0
  1619. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +5 -0
  1620. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +5 -0
  1621. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  1622. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1623. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1624. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1625. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1626. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1627. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1628. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1629. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1630. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1631. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1632. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1633. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1634. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1635. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1636. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +649 -0
  1637. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +12 -0
  1638. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +25 -0
  1639. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +93 -0
  1640. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +178 -0
  1641. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +406 -0
  1642. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  1643. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1644. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1645. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1646. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1647. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1648. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1649. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1650. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1651. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1652. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  1653. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  1654. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  1655. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  1656. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  1657. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +7 -0
  1658. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +5 -0
  1659. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +5 -0
  1660. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +5 -0
  1661. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +1645 -0
  1662. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
  1663. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
  1664. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
  1665. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
  1666. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +23 -0
  1667. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
  1668. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
  1669. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
  1670. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
  1671. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +23 -0
  1672. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
  1673. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
  1674. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
  1675. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
  1676. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
  1677. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
  1678. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
  1679. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
  1680. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
  1681. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
  1682. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +59 -0
  1683. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
  1684. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
  1685. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +23 -0
  1686. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
  1687. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
  1688. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
  1689. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
  1690. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +23 -0
  1691. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
  1692. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
  1693. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
  1694. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
  1695. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
  1696. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
  1697. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
  1698. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +21 -0
  1699. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +23 -0
  1700. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +23 -0
  1701. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
  1702. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +24 -0
  1703. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +23 -0
  1704. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
  1705. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
  1706. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +23 -0
  1707. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
  1708. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
  1709. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +22 -0
  1710. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +23 -0
  1711. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
  1712. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +22 -0
  1713. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
  1714. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
  1715. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
  1716. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
  1717. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
  1718. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
  1719. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
  1720. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
  1721. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
  1722. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
  1723. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
  1724. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
  1725. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
  1726. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
  1727. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
  1728. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
  1729. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
  1730. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +24 -0
  1731. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
  1732. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
  1733. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
  1734. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
  1735. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +6562 -0
  1736. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +320 -0
  1737. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +2038 -0
  1738. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +958 -0
  1739. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +372 -0
  1740. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +82 -0
  1741. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +113 -0
  1742. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +67 -0
  1743. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +65 -0
  1744. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +97 -0
  1745. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +30 -0
  1746. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +76 -0
  1747. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +50 -0
  1748. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +63 -0
  1749. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +318 -0
  1750. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +74 -0
  1751. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +64 -0
  1752. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +47 -0
  1753. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +1289 -0
  1754. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +169 -0
  1755. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +521 -0
  1756. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  1757. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  1758. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  1759. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  1760. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  1761. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  1762. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  1763. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  1764. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  1765. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  1766. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  1767. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  1768. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  1769. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  1770. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  1771. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  1772. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  1773. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  1774. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  1775. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  1776. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  1777. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  1778. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  1779. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  1780. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  1781. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  1782. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  1783. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  1784. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  1785. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  1786. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  1787. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  1788. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  1789. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  1790. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  1791. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  1792. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  1793. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  1794. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  1795. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  1796. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  1797. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  1798. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  1799. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  1800. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  1801. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  1802. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  1803. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  1804. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  1805. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  1806. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  1807. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  1808. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  1809. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  1810. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  1811. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  1812. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  1813. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  1814. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  1815. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  1816. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  1817. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  1818. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  1819. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  1820. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  1821. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  1822. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  1823. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  1824. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  1825. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  1826. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  1827. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  1828. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  1829. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  1830. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +7 -0
  1831. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  1832. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  1833. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  1834. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  1835. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  1836. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  1837. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  1838. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  1839. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  1840. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  1841. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  1842. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  1843. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  1844. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  1845. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  1846. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  1847. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  1848. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  1849. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  1850. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  1851. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  1852. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  1853. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  1854. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  1855. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  1856. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  1857. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  1858. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  1859. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  1860. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  1861. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  1862. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  1863. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  1864. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  1865. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  1866. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  1867. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  1868. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  1869. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  1870. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  1871. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +7935 -0
  1872. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +7 -0
  1873. data/public/rearview-src/vendor/jquery/plugins/jquery.validate.js +51 -0
  1874. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  1875. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +2162 -0
  1876. data/public/rearview-src/vendor/less/js/less.js +11 -0
  1877. data/public/rearview-src/vendor/parsley/js/parsley.js +421 -0
  1878. data/public/rearview-src/vendor/parsley/js/parsley.min.js +27 -0
  1879. data/public/rearview-src/vendor/require/js/require.js +11408 -0
  1880. data/public/rearview-src/vendor/require/plugins/domready/domready.js +129 -0
  1881. data/public/rearview-src/vendor/timeline/examples/example.json +38 -0
  1882. data/public/rearview-src/vendor/timeline/examples/timeline_json.html +143 -0
  1883. data/public/rearview-src/vendor/timeline/timeline.css +130 -0
  1884. data/public/rearview-src/vendor/timeline/timeline.js +5055 -0
  1885. data/public/rearview-src/vendor/underscore/js/underscore.js +1227 -0
  1886. data/public/rearview-src/vendor/underscore/plugins/underscore-string/js/underscore.string.js +644 -0
  1887. data/public/rearview-src/vendor/xdate/js/xdate.js +802 -0
  1888. data/script/rails +8 -0
  1889. data/spec/controllers/dashboard_children_controller_spec.rb +35 -0
  1890. data/spec/controllers/dashboards_controller_spec.rb +62 -0
  1891. data/spec/controllers/jobs_controller_spec.rb +94 -0
  1892. data/spec/controllers/monitor_controller_spec.rb +19 -0
  1893. data/spec/controllers/user_controller_spec.rb +24 -0
  1894. data/spec/data/create_application.json +3 -0
  1895. data/spec/data/create_job.json +17 -0
  1896. data/spec/data/create_monitor.json +17 -0
  1897. data/spec/data/large_set.dat +1 -0
  1898. data/spec/data/metric_a.dat +60 -0
  1899. data/spec/data/metric_b.dat +59 -0
  1900. data/spec/data/monitor.dat +1 -0
  1901. data/spec/data/nan.dat +3 -0
  1902. data/spec/data/test.dat +3 -0
  1903. data/spec/dummy/README.rdoc +28 -0
  1904. data/spec/dummy/Rakefile +6 -0
  1905. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  1906. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  1907. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  1908. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  1909. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  1910. data/spec/dummy/bin/bundle +3 -0
  1911. data/spec/dummy/bin/rails +4 -0
  1912. data/spec/dummy/bin/rake +4 -0
  1913. data/spec/dummy/config/application.rb +23 -0
  1914. data/spec/dummy/config/boot.rb +5 -0
  1915. data/spec/dummy/config/database.yml +20 -0
  1916. data/spec/dummy/config/environment.rb +5 -0
  1917. data/spec/dummy/config/environments/development.rb +29 -0
  1918. data/spec/dummy/config/environments/production.rb +80 -0
  1919. data/spec/dummy/config/environments/test.rb +36 -0
  1920. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  1921. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  1922. data/spec/dummy/config/initializers/inflections.rb +16 -0
  1923. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  1924. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  1925. data/spec/dummy/config/initializers/session_store.rb +3 -0
  1926. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  1927. data/spec/dummy/config/locales/en.yml +23 -0
  1928. data/spec/dummy/config/routes.rb +4 -0
  1929. data/spec/dummy/config.ru +4 -0
  1930. data/spec/dummy/db/development.sqlite3 +0 -0
  1931. data/spec/dummy/db/schema.rb +85 -0
  1932. data/spec/dummy/db/test.sqlite3 +0 -0
  1933. data/spec/dummy/log/development.log +38 -0
  1934. data/spec/dummy/log/test.log +4886 -0
  1935. data/spec/dummy/public/404.html +58 -0
  1936. data/spec/dummy/public/422.html +58 -0
  1937. data/spec/dummy/public/500.html +57 -0
  1938. data/spec/dummy/public/favicon.ico +0 -0
  1939. data/spec/dummy/sandbox/Gemfile +7 -0
  1940. data/spec/dummy/sandbox/Gemfile.lock +18 -0
  1941. data/spec/dummy/sandbox/verify_sandbox.rb +23 -0
  1942. data/spec/dummy/script/rails +6 -0
  1943. data/spec/factories/dashboards.rb +11 -0
  1944. data/spec/factories/job_datas.rb +12 -0
  1945. data/spec/factories/job_errors.rb +11 -0
  1946. data/spec/factories/jobs.rb +20 -0
  1947. data/spec/factories/users.rb +12 -0
  1948. data/spec/lib/rearview/alerts/campfire_alert_spec.rb +103 -0
  1949. data/spec/lib/rearview/alerts/email_alert_spec.rb +89 -0
  1950. data/spec/lib/rearview/alerts/pagerduty_alert_spec.rb +75 -0
  1951. data/spec/lib/rearview/alerts_handler_spec.rb +43 -0
  1952. data/spec/lib/rearview/configuration_spec.rb +29 -0
  1953. data/spec/lib/rearview/cron_helper_spec.rb +42 -0
  1954. data/spec/lib/rearview/graphite_parser_spec.rb +24 -0
  1955. data/spec/lib/rearview/monitor_runner_spec.rb +182 -0
  1956. data/spec/lib/rearview/monitor_service_spec.rb +114 -0
  1957. data/spec/lib/rearview/monitor_supervisor_spec.rb +53 -0
  1958. data/spec/lib/rearview/monitor_task_spec.rb +29 -0
  1959. data/spec/lib/rearview/rearview_spec.rb +6 -0
  1960. data/spec/lib/rearview/results_handler_spec.rb +19 -0
  1961. data/spec/lib/rearview/templates/utilities_spec.rb +79 -0
  1962. data/spec/lib/rearview/uri_helper_spec.rb +12 -0
  1963. data/spec/mailers/alert_mailer_spec.rb +37 -0
  1964. data/spec/models/dashboard_spec.rb +14 -0
  1965. data/spec/models/job_data_spec.rb +14 -0
  1966. data/spec/models/job_error_spec.rb +214 -0
  1967. data/spec/models/job_spec.rb +188 -0
  1968. data/spec/models/user_spec.rb +18 -0
  1969. data/spec/spec_helper.rb +32 -0
  1970. data/spec/support/authentication_helper.rb +14 -0
  1971. data/spec/support/json_factory.rb +73 -0
  1972. data/spec/views/dashboards/index.json.jbuilder_spec.rb +31 -0
  1973. data/spec/views/dashboards/show.json.jbuilder_spec.rb +25 -0
  1974. data/spec/views/jobs/data.json.jbuilder_spec.rb +27 -0
  1975. data/spec/views/jobs/errors.json.jbuilder_spec.rb +41 -0
  1976. data/spec/views/jobs/index.json.jbuilder_spec.rb +31 -0
  1977. data/spec/views/jobs/show.json.jbuilder_spec.rb +34 -0
  1978. data/spec/views/user/show.json.jbuilder_spec.rb +26 -0
  1979. data/tasks/rearview.rake +9 -0
  1980. metadata +2350 -0
@@ -0,0 +1 @@
1
+ lowess(stats_counts.cupcake.geo.find_by_ip, 0.100000, 3),1356734690,1357339490,10|21.388010605,21.383763617,21.379516629,21.3752696409,21.3710226529,21.3667756649,21.3625286769,21.3582816888,21.3540347008,21.3497877128,21.3455407247,21.3412937367,21.3370467487,21.3327997606,21.3285527726,21.3243057846,21.3200587965,21.3158118085,21.3115648205,21.3073178324,21.3030708444,21.2988238564,21.2945768684,21.2903298803,21.2860828923,21.2818359043,21.2775889162,21.2733419282,21.2690949402,21.2648479521,21.2606009641,21.2563539761,21.252106988,21.24786,21.243613012,21.2393660239,21.2351190359,21.2308720479,21.2266250599,21.2223780718,21.2181310838,21.2138840958,21.2096371077,21.2053901197,21.2011431317,21.1968961436,21.1926491556,21.1884021676,21.1841551795,21.1799081915,21.1756612035,21.1714142154,21.1671672274,21.1629202394,21.1586732514,21.1544262633,21.1501792753,21.1459322873,21.1416852992,21.1374383112,21.1331913232,21.1289443351,21.1246973471,21.1204503591,21.116203371,21.111956383,21.107709395,21.1034624069,21.0992154189,21.0949684309,21.0907214429,21.0864744548,21.0822274668,21.0779804788,21.0737334907,21.0694865027,21.0652395147,21.0609925266,21.0567455386,21.0524985506,21.0482515625,21.0440045745,21.0397575865,21.0355105984,21.0312636104,21.0270166224,21.0227696344,21.0185226463,21.0142756583,21.0100286703,21.0057816822,21.0015346942,20.9972877062,20.9930407181,20.9887937301,20.9845467421,20.980299754,20.976052766,20.971805778,20.9675587899,20.9633118019,20.9590648139,20.9548178259,20.9505708378,20.9463238498,20.9420768618,20.9378298737,20.9335828857,20.9293358977,20.9250889096,20.9208419216,20.9165949336,20.9123479455,20.9081009575,20.9038539695,20.8996069815,20.8953599934,20.8911130054,20.8868660174,20.8826190293,20.8783720413,20.8741250533,20.8698780652,20.8656310772,20.8613840892,20.8571371011,20.8528901131,20.8486431251,20.844396137,20.840149149,20.835902161,20.831655173,20.8274081849,20.8231611969,20.8189142089,20.8146672208,20.8104202328,20.8061732448,20.8019262567,20.7976792687,20.7934322807,20.7891852926,20.7849383046,20.7806913166,20.7764443285,20.7721973405,20.7679503525,20.7637033645,20.7594563764,20.7552093884,20.7509624004,20.7467154123,20.7424684243,20.7382214363,20.7339744482,20.7297274602,20.7254804722,20.7212334841,20.7169864961,20.7127395081,20.70849252,20.704245532,20.699998544,20.695751556,20.6915045679,20.6872575799,20.6830105919,20.6787636038,20.6745166158,20.6702696278,20.6660226397,20.6617756517,20.6575286637,20.6532816756,20.6490346876,20.6447876996,20.6405407115,20.6362937235,20.6320467355,20.6277997475,20.6235527594,20.6193057714,20.6150587834,20.6108117953,20.6065648073,20.6023178193,20.5980708312,20.5938238432,20.5895768552,20.5853298671,20.5810828791,20.5768358911,20.572588903,20.568341915,20.564094927,20.559847939,20.5556009509,20.5513539629,20.5471069749,20.5428599868,20.5386129988,20.5343660108,20.5301190227,20.5258720347,20.5216250467,20.5173780586,20.5131310706,20.5088840826,20.5046370945,20.5003901065,20.4961431185,20.4918961305,20.4876491424,20.4834021544,20.4791551664,20.4749081783,20.4706611903,20.4664142023,20.4621672142,20.4579202262,20.4536732382,20.4494262501,20.4451792621,20.4409322741,20.4366852861,20.432438298,20.42819131,20.423944322,20.4196973339,20.4154503459,20.4112033579,20.4069563698,20.4027093818,20.3984623938,20.3942154057,20.3899684177,20.3857214297,20.3814744416,20.3772274536,20.3729804656,20.3687334776,20.3644864895,20.3602395015,20.3559925135,20.3517455254,20.3474985374,20.3432515494,20.3390045613,20.3347575733,20.3305105853,20.3262635972,20.3220166092,20.3177696212,20.3135226331,20.3092756451,20.3050286571,20.3007816691,20.296534681,20.292287693,20.288040705,20.2837937169,20.2795467289,20.2752997409,20.2710527528,20.2668057648,20.2625587768,20.2583117887,20.2540648007,20.2498178127,20.2455708246,20.2413238366,20.2370768486,20.2328298606,20.2285828725,20.2243358845,20.2200888965,20.2158419084,20.2115949204,20.2073479324,20.2031009443,20.1988539563,20.1946069683,20.1903599802,20.1861129922,20.1818660042,20.1776190161,20.1733720281,20.1691250401,20.1648780521,20.160631064,20.156384076,20.152137088,20.1478900999,20.1436431119,20.1393961239,20.1351491358,20.1309021478,20.1266551598,20.1224081717,20.1181611837,20.1139141957,20.1096672076,20.1054202196,20.1011732316,20.0969262436,20.0926792555,20.0884322675,20.0841852795,20.0799382914,20.0756913034,20.0714443154,20.0671973273,20.0629503393,20.0587033513,20.0544563632,20.0502093752,20.0459623872,20.0417153991,20.0374684111,20.0332214231,20.0289744351,20.024727447,20.020480459,20.016233471,20.0119864829,20.0077394949,20.0034925069,19.9992455188,19.9949985308,19.9907515428,19.9865045547,19.9822575667,19.9780105787,19.9737635906,19.9695166026,19.9652696146,19.9610226266,19.9567756385,19.9525286505,19.9482816625,19.9440346744,19.9397876864,19.9355406984,19.9312937103,19.9270467223,19.9227997343,19.9185527462,19.9143057582,19.9100587702,19.9058117822,19.9015647941,19.8973178061,19.8930708181,19.88882383,19.884576842,19.880329854,19.8760828659,19.8718358779,19.8675888899,19.8633419018,19.8590949138,19.8548479258,19.8506009377,19.8463539497,19.8421069617,19.8378599737,19.8336129856,19.8293659976,19.8251190096,19.8208720215,19.8166250335,19.8123780455,19.8081310574,19.8038840694,19.7996370814,19.7953900933,19.7911431053,19.7868961173,19.7826491292,19.7784021412,19.7741551532,19.7699081652,19.7656611771,19.7614141891,19.7571672011,19.752920213,19.748673225,19.744426237,19.7401792489,19.7359322609,19.7316852729,19.7274382848,19.7231912968,19.7189443088,19.7146973207,19.7104503327,19.7062033447,19.7019563567,19.6977093686,19.6934623806,19.6892153926,19.6849684045,19.6807214165,19.6764744285,19.6722274404,19.6679804524,19.6637334644,19.6594864763,19.6552394883,19.6509925003,19.6467455122,19.6424985242,19.6382515362,19.6340045482,19.6297575601,19.6255105721,19.6212635841,19.617016596,19.612769608,19.60852262,19.6042756319,19.6000286439,19.5957816559,19.5915346678,19.5872876798,19.5830406918,19.5787937037,19.5745467157,19.5702997277,19.5660527397,19.5618057516,19.5575587636,19.5533117756,19.5490647875,19.5448177995,19.5405708115,19.5363238234,19.5320768354,19.5278298474,19.5235828593,19.5193358713,19.5150888833,19.5108418952,19.5065949072,19.5023479192,19.4981009312,19.4938539431,19.4896069551,19.4853599671,19.481112979,19.476865991,19.472619003,19.4683720149,19.4641250269,19.4598780389,19.4556310508,19.4513840628,19.4471370748,19.4428900868,19.4386430987,19.4343961107,19.4301491227,19.4259021346,19.4216551466,19.4174081586,19.4131611705,19.4089141825,19.4046671945,19.4004202064,19.3961732184,19.3919262304,19.3876792423,19.3834322543,19.3791852663,19.3749382783,19.3706912902,19.3664443022,19.3621973142,19.3579503261,19.3537033381,19.3494563501,19.345209362,19.340962374,19.336715386,19.3324683979,19.3282214099,19.3239744219,19.3197274338,19.3154804458,19.3112334578,19.3069864698,19.3027394817,19.2984924937,19.2942455057,19.2899985176,19.2857515296,19.2815045416,19.2772575535,19.2730105655,19.2687635775,19.2645165894,19.2602696014,19.2560226134,19.2517756253,19.2475286373,19.2432816493,19.2390346613,19.2347876732,19.2305406852,19.2262936972,19.2220467091,19.2177997211,19.2135527331,19.209305745,19.205058757,19.200811769,19.1965647809,19.1923177929,19.1880708049,19.1838238168,19.1795768288,19.1753298408,19.1710828528,19.1668358647,19.1625888767,19.1583418887,19.1540949006,19.1498479126,19.1456009246,19.1413539365,19.1371069485,19.1328599605,19.1286129724,19.1243659844,19.1201189964,19.1158720083,19.1116250203,19.1073780323,19.1031310443,19.0988840562,19.0946370682,19.0903900802,19.0861430921,19.0818961041,19.0776491161,19.073402128,19.06915514,19.064908152,19.0606611639,19.0564141759,19.0521671879,19.0479201998,19.0436732118,19.0394262238,19.0351792358,19.0309322477,19.0266852597,19.0224382717,19.0181912836,19.0139442956,19.0096973076,19.0054503195,19.0012033315,18.9969563435,18.9927093554,18.9884623674,18.9842153794,18.9799683913,18.9757214033,18.9714744153,18.9672274273,18.9629804392,18.9587334512,18.9544864632,18.9502394751,18.9459924871,18.9417454991,18.937498511,18.933251523,18.929004535,18.9247575469,18.9205105589,18.9162635709,18.9120165829,18.9077695948,18.9035226068,18.8992756188,18.8950286307,18.8907816427,18.8865346547,18.8822876666,18.8780406786,18.8737936906,18.8695467025,18.8652997145,18.8610527265,18.8568057384,18.8525587504,18.8483117624,18.8440647744,18.8398177863,18.8355707983,18.8313238103,18.8270768222,18.8228298342,18.8186535209,18.8144772075,18.8103008942,18.8061245809,18.8019482675,18.7977719542,18.7935956409,18.7894193275,18.7852430142,18.7810667009,18.7768903875,18.7727140742,18.7685377609,18.7643614475,18.7601851342,18.7560088209,18.7518325075,18.7476561942,18.7434798809,18.7393035675,18.7351272542,18.7309509409,18.7267746275,18.7225983142,18.7184220009,18.7142456875,18.7100693742,18.7058930609,18.7017167475,18.6975404342,18.6933641209,18.6891878075,18.6850114942,18.6808351809,18.6766588675,18.6724825542,18.6683062409,18.6641299275,18.6599536142,18.6557773009,18.6516009875,18.6474246742,18.6432483609,18.6390720475,18.6348957342,18.6307194209,18.6265431075,18.6223667942,18.6181904809,18.6140141676,18.6098378542,18.6056615409,18.6014852276,18.5973089142,18.5931326009,18.5889562876,18.5847799742,18.5806036609,18.5764273476,18.5722510342,18.5680747209,18.5638984076,18.5597220942,18.5555457809,18.5513694676,18.5471931542,18.5430168409,18.5388405276,18.5346642142,18.5304879009,18.5263115876,18.5221352742,18.5179589609,18.5137826476,18.5096063342,18.5054300209,18.5012537076,18.4970773942,18.4929010809,18.4887247676,18.4845484542,18.4803721409,18.4761958276,18.4720195142,18.4678432009,18.4636668876,18.4594905742,18.4553142609,18.4511379476,18.4469616342,18.4427853209,18.4386090076,18.4344326942,18.4302563809,18.4260800676,18.4219037542,18.4177274409,18.4135511276,18.4093748142,18.4051985009,18.4010221876,18.3968458742,18.3926695609,18.3884932476,18.3843169342,18.3801406209,18.3759643076,18.3717879942,18.3676116809,18.3634353676,18.3592590542,18.3550827409,18.3509064276,18.3467301142,18.3425538009,18.3383774876,18.3342011742,18.3300248609,18.3258485476,18.3216722342,18.3174959209,18.3133196076,18.3091432943,18.3049669809,18.3007906676,18.2966143543,18.2924380409,18.2882617276,18.2840854143,18.2799091009,18.2757327876,18.2715564743,18.2673801609,18.2632038476,18.2590275343,18.2548512209,18.2506749076,18.2464985943,18.2423222809,18.2381459676,18.2339696543,18.2297933409,18.2256170276,18.2214407143,18.2172644009,18.2130880876,18.2089117743,18.2047354609,18.2005591476,18.1963828343,18.1922065209,18.1880302076,18.1838538943,18.1796775809,18.1755012676,18.1713249543,18.1671486409,18.1629723276,18.1587960143,18.1546197009,18.1504433876,18.1462670743,18.1420907609,18.1379144476,18.1337381343,18.1295618209,18.1253855076,18.1212091943,18.1170328809,18.1128565676,18.1086802543,18.1045039409,18.1003276276,18.0961513143,18.0919750009,18.0877986876,18.0836223743,18.0794460609,18.0752697476,18.0710934343,18.0669171209,18.0627408076,18.0585644943,18.0543881809,18.0502118676,18.0460355543,18.0418592409,18.0376829276,18.0335066143,18.0293303009,18.0251539876,18.0209776743,18.0168013609,18.0126250476,18.0084487343,18.0042724209,18.0000961076,17.9959197943,17.991743481,17.9875671676,17.9833908543,17.979214541,17.9750382276,17.9708619143,17.966685601,17.9625092876,17.9583329743,17.954156661,17.9499803476,17.9458040343,17.941627721,17.9374514076,17.9332750943,17.929098781,17.9249224676,17.9207461543,17.916569841,17.9123935276,17.9082172143,17.904040901,17.8998645876,17.8956882743,17.891511961,17.8873356476,17.8831593343,17.878983021,17.8748067076,17.8706303943,17.866454081,17.8622777676,17.8581014543,17.853925141,17.8497488276,17.8455725143,17.841396201,17.8372198876,17.8330435743,17.828867261,17.8246909476,17.8205146343,17.816338321,17.8121620076,17.8079856943,17.803809381,17.7996330676,17.7954567543,17.791280441,17.7871041276,17.7829278143,17.778751501,17.7745751876,17.7703988743,17.766222561,17.7620462476,17.7578699343,17.753693621,17.7495173076,17.7453409943,17.741164681,17.7369883676,17.7328120543,17.728635741,17.7244594276,17.7202831143,17.716106801,17.7119304876,17.7077541743,17.703577861,17.6994015476,17.6952252343,17.691048921,17.6868726077,17.6826962943,17.678519981,17.6743436677,17.6701673543,17.665991041,17.6618147277,17.6576384143,17.653462101,17.6492857877,17.6451094743,17.640933161,17.6367568477,17.6325805343,17.628404221,17.6242279077,17.6200515943,17.615875281,17.6116989677,17.6075226543,17.603346341,17.5991700277,17.5949937143,17.590817401,17.5866410877,17.5824647743,17.578288461,17.5741121477,17.5699358343,17.565759521,17.5615832077,17.5574068943,17.553230581,17.5490542677,17.5448779543,17.540701641,17.5365253277,17.5323490143,17.528172701,17.5239963877,17.5198200743,17.515643761,17.5114674477,17.5072911343,17.503114821,17.4989385077,17.4947621943,17.490585881,17.4864095677,17.4822332543,17.478056941,17.4738806277,17.4697043143,17.465528001,17.4613516877,17.4571753743,17.452999061,17.4488227477,17.4446464343,17.440470121,17.4362938077,17.4321174943,17.427941181,17.4237648677,17.4195885543,17.415412241,17.4112359277,17.4070596143,17.402883301,17.3987069877,17.3945306743,17.390354361,17.3861780477,17.3820017344,17.377825421,17.3736491077,17.3694727944,17.365296481,17.3611201677,17.3569438544,17.352767541,17.3485912277,17.3444149144,17.340238601,17.3360622877,17.3318859744,17.327709661,17.3235333477,17.3193570344,17.315180721,17.3110044077,17.3068280944,17.302651781,17.2984754677,17.2942991544,17.290122841,17.2859465277,17.2817702144,17.277593901,17.2734175877,17.2692412744,17.265064961,17.2608886477,17.2567123344,17.252536021,17.2483597077,17.2441833944,17.240007081,17.2358307677,17.2316544544,17.227478141,17.2233018277,17.2191255144,17.214949201,17.2107728877,17.2065965744,17.202420261,17.1982439477,17.1940676344,17.189891321,17.1857150077,17.1815386944,17.177362381,17.1731860677,17.1690097544,17.164833441,17.1606571277,17.1564808144,17.152304501,17.1481281877,17.1439518744,17.139775561,17.1355992477,17.1314229344,17.127246621,17.1230703077,17.1188939944,17.114717681,17.1105413677,17.1063650544,17.102188741,17.0980124277,17.0938361144,17.089659801,17.0854834877,17.0813071744,17.077130861,17.0729545477,17.0687782344,17.0646019211,17.0604256077,17.0562492944,17.0520729811,17.0478966677,17.0437203544,17.0395440411,17.0353677277,17.0311914144,17.0270151011,17.0228387877,17.0186624744,17.0144861611,17.0103098477,17.0061335344,17.0019572211,16.9977809077,16.9936045944,16.9894282811,16.9852519677,16.9810756544,16.9768993411,16.9727230277,16.9685467144,16.9643704011,16.9601940877,16.9560177744,16.9518414611,16.9476651477,16.9434888344,16.9393125211,16.9351362077,16.9309598944,16.9267835811,16.9226072677,16.9184309544,16.9142546411,16.9100783277,16.9059020144,16.9017257011,16.8975493877,16.8933730744,16.8891967611,16.8850204477,16.8808441344,16.8766678211,16.8724915077,16.8683151944,16.8641388811,16.8599625677,16.8557862544,16.8516099411,16.8474336277,16.8432573144,16.8390810011,16.8349046877,16.8307283744,16.8265520611,16.8223757477,16.8181994344,16.8140231211,16.8098468077,16.8056704944,16.8014941811,16.7973178677,16.7931415544,16.7889652411,16.7847889277,16.7806126144,16.7764363011,16.7722599877,16.7680836744,16.7639073611,16.7597310478,16.7555547344,16.7513784211,16.7472021078,16.7430257944,16.7388494811,16.7346731678,16.7304968544,16.7263205411,16.7221442278,16.7179679144,16.7137916011,16.7096152878,16.7054389744,16.7012626611,16.6970863478,16.6929100344,16.6887337211,16.6845574078,16.6803810944,16.6762047811,16.6720284678,16.6678521544,16.6636758411,16.6594995278,16.6553232144,16.6511469011,16.6469705878,16.6427942744,16.6386179611,16.6344416478,16.6302653344,16.6260890211,16.6219127078,16.6177363944,16.6135600811,16.6093837678,16.6052074544,16.6010311411,16.5968548278,16.5926785144,16.5885022011,16.5843258878,16.5801495744,16.5759732611,16.5717969478,16.5676206344,16.5634443211,16.5592680078,16.5550916944,16.5509153811,16.5467390678,16.5425627544,16.5383864411,16.5342101278,16.5300338144,16.5258575011,16.5216811878,16.5175048744,16.5133285611,16.5091522478,16.5049759344,16.5007996211,16.4966233078,16.4924469944,16.4882706811,16.4840943678,16.4799180544,16.4757417411,16.4715654278,16.4673891144,16.4632128011,16.4590364878,16.4548601744,16.4506838611,16.4465075478,16.4423312345,16.4381549211,16.4339786078,16.4298022945,16.4256259811,16.4214496678,16.4172733545,16.4130970411,16.4089207278,16.4047444145,16.4005681011,16.3963917878,16.3922154745,16.3880391611,16.3838628478,16.3796865345,16.3755102211,16.3713339078,16.3671575945,16.3629812811,16.3588049678,16.3546286545,16.3504523411,16.3462760278,16.3420997145,16.3379234011,16.3337470878,16.3295707745,16.3253944611,16.3212181478,16.3170418345,16.3128655211,16.3086892078,16.3045128945,16.3003365811,16.2962719862,16.2922073913,16.2881427964,16.2840782016,16.2800136067,16.2759490118,16.2718844169,16.267819822,16.2637552271,16.2596906322,16.2556260373,16.2515614424,16.2474968475,16.2434322526,16.2393676577,16.2353030628,16.2312384679,16.227173873,16.2231092781,16.2190446832,16.2149800883,16.2109154935,16.2068508986,16.2027863037,16.1987217088,16.1946571139,16.190592519,16.1865279241,16.1824633292,16.1783987343,16.1743341394,16.1702695445,16.1662049496,16.1621403547,16.1580757598,16.1540111649,16.14994657,16.1458819751,16.1418173802,16.1377527853,16.1336881905,16.1296235956,16.1255590007,16.1214944058,16.1174298109,16.113365216,16.1093006211,16.1052360262,16.1011714313,16.0971068364,16.0930422415,16.0889776466,16.0849130517,16.0808484568,16.0767838619,16.072719267,16.0686546721,16.0645900772,16.0605254823,16.0564608875,16.0523962926,16.0483316977,16.0442671028,16.0402025079,16.036137913,16.0320733181,16.0280087232,16.0239441283,16.0198795334,16.0158149385,16.0117503436,16.0076857487,16.0036211538,15.9995565589,15.995491964,15.9914273691,15.9873627742,15.9832981794,15.9792335845,15.9751689896,15.9711043947,15.9670397998,15.9629752049,15.95891061,15.9548460151,15.9507814202,15.9467168253,15.9426522304,15.9385876355,15.9345230406,15.9304584457,15.9263938508,15.9223292559,15.918264661,15.9142000661,15.9101354712,15.9060708764,15.9020062815,15.8979416866,15.8938770917,15.8898124968,15.8857479019,15.881683307,15.8776187121,15.8735541172,15.8694895223,15.8654249274,15.8613603325,15.8572957376,15.8532311427,15.8491665478,15.8451019529,15.841037358,15.8369727631,15.8329081682,15.8288435734,15.8247789785,15.8207143836,15.8166497887,15.8125851938,15.8085205989,15.804456004,15.8003914091,15.7963268142,15.7922622193,15.7881976244,15.7841330295,15.7800684346,15.7760038397,15.7719392448,15.7678746499,15.763810055,15.7597454601,15.7556808653,15.7516162704,15.7475516755,15.7434870806,15.7394224857,15.7353578908,15.7312932959,15.727228701,15.7231641061,15.7190995112,15.7150349163,15.7109703214,15.7069057265,15.7028411316,15.6987765367,15.6947119418,15.6906473469,15.686582752,15.6825181571,15.6784535623,15.6743889674,15.6703243725,15.6662597776,15.6621951827,15.6581305878,15.6540659929,15.650001398,15.6459368031,15.6418722082,15.6378076133,15.6337430184,15.6296784235,15.6256138286,15.6215492337,15.6174846388,15.6134200439,15.609355449,15.6052908541,15.6012262593,15.5971616644,15.5930970695,15.5890324746,15.5849678797,15.5809032848,15.5768386899,15.572774095,15.5687095001,15.5646449052,15.5605803103,15.5565157154,15.5524511205,15.5483865256,15.5443219307,15.5402573358,15.5361927409,15.532128146,15.5280635512,15.5239989563,15.5199343614,15.5158697665,15.5118051716,15.5077405767,15.5036759818,15.4996113869,15.495546792,15.4914821971,15.4874176022,15.4833530073,15.4792884124,15.4752238175,15.4711592226,15.4670946277,15.4630300328,15.4589654379,15.454900843,15.4508362482,15.4467716533,15.4427070584,15.4386424635,15.4345778686,15.4305132737,15.4264486788,15.4223840839,15.418319489,15.4142548941,15.4101902992,15.4061257043,15.4020611094,15.3979965145,15.3939319196,15.3898673247,15.3858027298,15.3817381349,15.37767354,15.3736089452,15.3695443503,15.3654797554,15.3614151605,15.3573505656,15.3532859707,15.3492213758,15.3451567809,15.341092186,15.3370275911,15.3329629962,15.3288984013,15.3248338064,15.3207692115,15.3167046166,15.3126400217,15.3085754268,15.3045108319,15.3004462371,15.2963816422,15.2923170473,15.2882524524,15.2841878575,15.2801232626,15.2760586677,15.2719940728,15.2679294779,15.263864883,15.2598002881,15.2557356932,15.2516710983,15.2476065034,15.2435419085,15.2394773136,15.2354127187,15.2313481238,15.2272835289,15.2232189341,15.2191543392,15.2150897443,15.2110251494,15.2069605545,15.2028959596,15.1988313647,15.1947667698,15.1907021749,15.18663758,15.1825729851,15.1785083902,15.1744437953,15.1703792004,15.1663146055,15.1622500106,15.1581854157,15.1541208208,15.1500562259,15.1459916311,15.1419270362,15.1378624413,15.1337978464,15.1297332515,15.1256686566,15.1216040617,15.1175394668,15.1134748719,15.109410277,15.1053456821,15.1012810872,15.0972164923,15.0931518974,15.0890873025,15.0850227076,15.0809581127,15.0768935178,15.072828923,15.0687643281,15.0646997332,15.0606351383,15.0565705434,15.0525059485,15.0484413536,15.0443767587,15.0403121638,15.0362475689,15.032182974,15.0281183791,15.0240537842,15.0199891893,15.0159245944,15.0118599995,15.0077954046,15.0037308097,14.9996662148,14.99560162,14.9915370251,14.9874724302,14.9834078353,14.9793432404,14.9752786455,14.9712140506,14.9671494557,14.9630848608,14.9590202659,14.954955671,14.9508910761,14.9468264812,14.9427618863,14.9386972914,14.9346326965,14.9305681016,14.9265035067,14.9224389118,14.918374317,14.9143097221,14.9102451272,14.9061805323,14.9021159374,14.8980513425,14.8939867476,14.8899221527,14.8858575578,14.8817929629,14.877728368,14.8736637731,14.8695991782,14.8655345833,14.8614699884,14.8574053935,14.8533407986,14.8492762037,14.8452116089,14.841147014,14.8370824191,14.8330178242,14.8289532293,14.8248886344,14.8208240395,14.8167594446,14.8126948497,14.8086302548,14.8045656599,14.800501065,14.7964364701,14.7923718752,14.7883072803,14.7842426854,14.7801780905,14.7761134956,14.7720489007,14.7679843059,14.763919711,14.7598551161,14.7557905212,14.7517259263,14.7476613314,14.7435967365,14.7395321416,14.7354675467,14.7314029518,14.7273383569,14.723273762,14.7192091671,14.7151445722,14.7110799773,14.7070153824,14.7029507875,14.6988861926,14.6948215977,14.6907570029,14.686692408,14.6826278131,14.6785632182,14.6744986233,14.6704340284,14.6663694335,14.6623048386,14.6582402437,14.6541756488,14.6501110539,14.646046459,14.6419818641,14.6379172692,14.6338526743,14.6297880794,14.6257234845,14.6216588896,14.6175942948,14.6135296999,14.609465105,14.6054005101,14.6013359152,14.5972713203,14.5932067254,14.5891421305,14.5850775356,14.5810129407,14.5769483458,14.5728837509,14.568819156,14.5647545611,14.5606899662,14.5566253713,14.5525607764,14.5484961815,14.5444315866,14.5403669918,14.5363023969,14.532237802,14.5281732071,14.5241086122,14.5200440173,14.5159794224,14.5119148275,14.5078502326,14.5037856377,14.4997210428,14.4956564479,14.491591853,14.4875272581,14.4834626632,14.4793980683,14.4753334734,14.4712688785,14.4672042836,14.4631396888,14.4590750939,14.455010499,14.4509459041,14.4468813092,14.4428167143,14.4387521194,14.4346875245,14.4306229296,14.4265583347,14.4224937398,14.4184291449,14.41436455,14.4102999551,14.4062353602,14.4021707653,14.3981061704,14.3940415755,14.3899769807,14.3859123858,14.3818477909,14.377783196,14.3737186011,14.3696540062,14.3655894113,14.3615248164,14.3574602215,14.3533956266,14.3493310317,14.3452664368,14.3412018419,14.337137247,14.3330726521,14.3290080572,14.3249434623,14.3208788674,14.3168142725,14.3127496777,14.3086850828,14.3046204879,14.300555893,14.2964912981,14.2924267032,14.2883621083,14.2842975134,14.2802329185,14.2761683236,14.2721037287,14.2680391338,14.2639745389,14.259909944,14.2558453491,14.2517807542,14.2477161593,14.2436515644,14.2395869695,14.2355223747,14.2314577798,14.2273931849,14.22332859,14.2192639951,14.2151994002,14.2111348053,14.2070702104,14.2030056155,14.1989410206,14.1948764257,14.1908118308,14.1867472359,14.182682641,14.1786180461,14.1745534512,14.1704888563,14.1664242614,14.1623596666,14.1582950717,14.1542304768,14.1501658819,14.146101287,14.1420366921,14.1379720972,14.1339075023,14.1298429074,14.1257783125,14.1217137176,14.1176491227,14.1135845278,14.1095199329,14.105455338,14.1013907431,14.0973261482,14.0932615533,14.0891969584,14.0851323636,14.0810677687,14.0770031738,14.0729385789,14.068873984,14.0648093891,14.0607447942,14.0566801993,14.0526156044,14.0485510095,14.0444864146,14.0404218197,14.0363572248,14.0322926299,14.028228035,14.0241634401,14.0200988452,14.0160342503,14.0119696554,14.0079050606,14.0038404657,13.9997758708,13.9957112759,13.991646681,13.9875820861,13.9835174912,13.9794528963,13.9753883014,13.9713237065,13.9672591116,13.9631945167,13.9591299218,13.9550653269,13.951000732,13.9469361371,13.9428715422,13.9388069473,13.9347423525,13.9306777576,13.9266131627,13.9225485678,13.9184839729,13.914419378,13.9103547831,13.9062901882,13.9022255933,13.8981609984,13.8940964035,13.8900318086,13.8859672137,13.8819026188,13.8778380239,13.873773429,13.8697088341,13.8656442392,13.8615796443,13.8575150495,13.8534504546,13.8493858597,13.8453212648,13.8413935127,13.8374657607,13.8335380087,13.8296102566,13.8256825046,13.8217547526,13.8178270006,13.8138992485,13.8099714965,13.8060437445,13.8021159924,13.7981882404,13.7942604884,13.7903327363,13.7864049843,13.7824772323,13.7785494803,13.7746217282,13.7706939762,13.7667662242,13.7628384721,13.7589107201,13.7549829681,13.7510552161,13.747127464,13.743199712,13.73927196,13.7353442079,13.7314164559,13.7274887039,13.7235609518,13.7196331998,13.7157054478,13.7117776958,13.7078499437,13.7039221917,13.6999944397,13.6960666876,13.6921389356,13.6882111836,13.6842834315,13.6803556795,13.6764279275,13.6725001755,13.6685724234,13.6646446714,13.6607169194,13.6567891673,13.6528614153,13.6489336633,13.6450059112,13.6410781592,13.6371504072,13.6332226552,13.6292949031,13.6253671511,13.6214393991,13.617511647,13.613583895,13.609656143,13.6057283909,13.6018006389,13.5978728869,13.5939451349,13.5900173828,13.5860896308,13.5821618788,13.5782341267,13.5743063747,13.5703786227,13.5664508706,13.5625231186,13.5585953666,13.5546676146,13.5507398625,13.5468121105,13.5428843585,13.5389566064,13.5350288544,13.5311011024,13.5271733503,13.5232455983,13.5193178463,13.5153900943,13.5114623422,13.5075345902,13.5036068382,13.4996790861,13.4957513341,13.4918235821,13.4878958301,13.483968078,13.480040326,13.476112574,13.4721848219,13.4682570699,13.4643293179,13.4604015658,13.4564738138,13.4525460618,13.4486183098,13.4446905577,13.4407628057,13.4368350537,13.4329073016,13.4289795496,13.4250517976,13.4211240455,13.4171962935,13.4132685415,13.4093407895,13.4054130374,13.4014852854,13.3975575334,13.3936297813,13.3897020293,13.3857742773,13.3818465252,13.3779187732,13.3739910212,13.3700632692,13.3661355171,13.3622077651,13.3582800131,13.354352261,13.350424509,13.346496757,13.3425690049,13.3386412529,13.3347135009,13.3307857489,13.3268579968,13.3229302448,13.3190024928,13.3150747407,13.3111469887,13.3072192367,13.3032914846,13.2993637326,13.2954359806,13.2915082286,13.2875804765,13.2836527245,13.2797249725,13.2757972204,13.2718694684,13.2679417164,13.2640139643,13.2600862123,13.2561584603,13.2522307083,13.2483029562,13.2443752042,13.2404474522,13.2365197001,13.2325919481,13.2286641961,13.224736444,13.220808692,13.21688094,13.212953188,13.2090254359,13.2050976839,13.2011699319,13.1972421798,13.1933144278,13.1893866758,13.1854589238,13.1815311717,13.1776034197,13.1736756677,13.1697479156,13.1658201636,13.1618924116,13.1579646595,13.1540369075,13.1501091555,13.1461814035,13.1422536514,13.1383258994,13.1343981474,13.1304703953,13.1265426433,13.1226148913,13.1186871392,13.1147593872,13.1108316352,13.1069038832,13.1029761311,13.0990483791,13.0951206271,13.091192875,13.087265123,13.083337371,13.0794096189,13.0754818669,13.0715541149,13.0676263629,13.0636986108,13.0597708588,13.0558431068,13.0519153547,13.0479876027,13.0440598507,13.0401320986,13.0362043466,13.0322765946,13.0283488426,13.0244210905,13.0204933385,13.0165655865,13.0126378344,13.0087100824,13.0047823304,13.0008545783,12.9969268263,12.9929990743,12.9890713223,12.9851435702,12.9812158182,12.9772880662,12.9733603141,12.9694325621,12.9655048101,12.961577058,12.957649306,12.953721554,12.949793802,12.9458660499,12.9419382979,12.9380105459,12.9340827938,12.9301550418,12.9262272898,12.9222995377,12.9183717857,12.9144440337,12.9105162817,12.9065885296,12.9026607776,12.8987330256,12.8948052735,12.8908775215,12.8869497695,12.8830220175,12.8790942654,12.8751665134,12.8712387614,12.8673110093,12.8633832573,12.8594555053,12.8555277532,12.8516000012,12.8476722492,12.8437444972,12.8398167451,12.8358889931,12.8319612411,12.828033489,12.824105737,12.820177985,12.8162502329,12.8123224809,12.8083947289,12.8044669769,12.8005392248,12.7966114728,12.7926837208,12.7887559687,12.7848282167,12.7809004647,12.7769727126,12.7730449606,12.7691172086,12.7651894566,12.7612617045,12.7573339525,12.7534062005,12.7494784484,12.7455506964,12.7416229444,12.7376951923,12.7337674403,12.7298396883,12.7259119363,12.7219841842,12.7180564322,12.7141286802,12.7102009281,12.7062731761,12.7023454241,12.698417672,12.69448992,12.690562168,12.686634416,12.6827066639,12.6787789119,12.6748511599,12.6709234078,12.6669956558,12.6630679038,12.6591401517,12.6552123997,12.6512846477,12.6473568957,12.6434291436,12.6395013916,12.6355736396,12.6316458875,12.6277181355,12.6237903835,12.6198626314,12.6159348794,12.6120071274,12.6080793754,12.6041516233,12.6002238713,12.5962961193,12.5923683672,12.5884406152,12.5845128632,12.5805851112,12.5766573591,12.5727296071,12.5688018551,12.564874103,12.560946351,12.557018599,12.5530908469,12.5491630949,12.5452353429,12.5413075909,12.5373798388,12.5334520868,12.5295243348,12.5255965827,12.5216688307,12.5177410787,12.5138133266,12.5098855746,12.5059578226,12.5020300706,12.4981023185,12.4941745665,12.4902468145,12.4863190624,12.4823913104,12.4784635584,12.4745358063,12.4706080543,12.4666803023,12.4627525503,12.4588247982,12.4548970462,12.4509692942,12.4470415421,12.4431137901,12.4391860381,12.435258286,12.431330534,12.427402782,12.42347503,12.4195472779,12.4156195259,12.4116917739,12.4077640218,12.4038362698,12.3999085178,12.3959807657,12.3920530137,12.3881252617,12.3841975097,12.3802697576,12.3763420056,12.3724142536,12.3684865015,12.3645587495,12.3606309975,12.3567032454,12.3527754934,12.3488477414,12.3449199894,12.3409922373,12.3370644853,12.3331367333,12.3292089812,12.3252812292,12.3213534772,12.3174257251,12.3134979731,12.3095702211,12.3056424691,12.301714717,12.297786965,12.293859213,12.2899314609,12.2860037089,12.2820759569,12.2781482049,12.2742204528,12.2702927008,12.2663649488,12.2624371967,12.2585094447,12.2545816927,12.2506539406,12.2467261886,12.2427984366,12.2388706846,12.2349429325,12.2310151805,12.2270874285,12.2231596764,12.2192319244,12.2153041724,12.2113764203,12.2074486683,12.2035209163,12.1995931643,12.1956654122,12.1917376602,12.1878099082,12.1838821561,12.1799544041,12.1760266521,12.1720989,12.168171148,12.164243396,12.160315644,12.1563878919,12.1524601399,12.1485323879,12.1446046358,12.1406768838,12.1367491318,12.1328213797,12.1288936277,12.1249658757,12.1210381237,12.1171103716,12.1131826196,12.1092548676,12.1053271155,12.1013993635,12.0974716115,12.0935438594,12.0896161074,12.0856883554,12.0817606034,12.0778328513,12.0739050993,12.0699773473,12.0660495952,12.0621218432,12.0581940912,12.0542663391,12.0503385871,12.0464108351,12.0424830831,12.038555331,12.034627579,12.030699827,12.0267720749,12.0228443229,12.0189165709,12.0149888189,12.0110610668,12.0071333148,12.0032055628,11.9992778107,11.9953500587,11.9914223067,11.9874945546,11.9835668026,11.9796390506,11.9757112986,11.9717835465,11.9678557945,11.9639280425,11.9600002904,11.9560725384,11.9521447864,11.9482170343,11.9442892823,11.9403615303,11.9364337783,11.9325060262,11.9285782742,11.9246505222,11.9207227701,11.9167950181,11.9128672661,11.908939514,11.905011762,11.90108401,11.897156258,11.8932285059,11.8893007539,11.8853730019,11.8814452498,11.8775174978,11.8735897458,11.8696619937,11.8657342417,11.8618064897,11.8578787377,11.8539509856,11.8500232336,11.8460954816,11.8421677295,11.8382399775,11.8343122255,11.8303844734,11.8264567214,11.8225289694,11.8186012174,11.8146734653,11.8107457133,11.8068179613,11.8028902092,11.7989624572,11.7950347052,11.7911069531,11.7871792011,11.7832514491,11.7793236971,11.775395945,11.771468193,11.767540441,11.7636126889,11.7596849369,11.7557571849,11.7518294328,11.7479016808,11.7439739288,11.7400461768,11.7361184247,11.7321906727,11.7282629207,11.7243351686,11.7204074166,11.7164796646,11.7125519126,11.7086241605,11.7046964085,11.7007686565,11.6968409044,11.6929131524,11.6889854004,11.6850576483,11.6811298963,11.6772021443,11.6732743923,11.6693466402,11.6654188882,11.6614911362,11.6575633841,11.6536356321,11.6497078801,11.645780128,11.641852376,11.637924624,11.633996872,11.6300691199,11.6261413679,11.6222136159,11.6182858638,11.6143581118,11.6104303598,11.6065026077,11.6025748557,11.5986471037,11.5947193517,11.5907915996,11.5868638476,11.5829360956,11.5790083435,11.5750805915,11.5711528395,11.5672250874,11.5632973354,11.5593695834,11.5554418314,11.5515140793,11.5475863273,11.5436585753,11.5397308232,11.5358030712,11.5318753192,11.5279475671,11.5240198151,11.5200920631,11.5161643111,11.512236559,11.508308807,11.504381055,11.5004533029,11.4965255509,11.4925977989,11.4886700468,11.4847422948,11.4808145428,11.4768867908,11.4729590387,11.4691079899,11.465256941,11.4614058921,11.4575548432,11.4537037944,11.4498527455,11.4460016966,11.4421506478,11.4382995989,11.43444855,11.4305975011,11.4267464523,11.4228954034,11.4190443545,11.4151933056,11.4113422568,11.4074912079,11.403640159,11.3997891102,11.3959380613,11.3920870124,11.3882359635,11.3843849147,11.3805338658,11.3766828169,11.3728317681,11.3689807192,11.3651296703,11.3612786214,11.3574275726,11.3535765237,11.3497254748,11.345874426,11.3420233771,11.3381723282,11.3343212793,11.3304702305,11.3266191816,11.3227681327,11.3189170838,11.315066035,11.3112149861,11.3073639372,11.3035128884,11.2996618395,11.2958107906,11.2919597417,11.2881086929,11.284257644,11.2804065951,11.2765555463,11.2727044974,11.2688534485,11.2650023996,11.2611513508,11.2573003019,11.253449253,11.2495982042,11.2457471553,11.2418961064,11.2380450575,11.2341940087,11.2303429598,11.2264919109,11.222640862,11.2187898132,11.2149387643,11.2110877154,11.2072366666,11.2033856177,11.1995345688,11.1956835199,11.1918324711,11.1879814222,11.1841303733,11.1802793245,11.1764282756,11.1725772267,11.1687261778,11.164875129,11.1610240801,11.1571730312,11.1533219824,11.1494709335,11.1456198846,11.1417688357,11.1379177869,11.134066738,11.1302156891,11.1263646402,11.1225135914,11.1186625425,11.1148114936,11.1109604448,11.1071093959,11.103258347,11.0994072981,11.0955562493,11.0917052004,11.0878541515,11.0840031027,11.0801520538,11.0763010049,11.072449956,11.0685989072,11.0647478583,11.0608968094,11.0570457605,11.0531947117,11.0493436628,11.0454926139,11.0416415651,11.0377905162,11.0339394673,11.0300884184,11.0262373696,11.0223863207,11.0185352718,11.014684223,11.0108331741,11.0069821252,11.0031310763,10.9992800275,10.9954289786,10.9915779297,10.9877268809,10.983875832,10.9800247831,10.9761737342,10.9723226854,10.9684716365,10.9646205876,10.9607695387,10.9569184899,10.953067441,10.9492163921,10.9453653433,10.9415142944,10.9376632455,10.9338121966,10.9299611478,10.9261100989,10.92225905,10.9184080012,10.9145569523,10.9107059034,10.9068548545,10.9030038057,10.8991527568,10.8953017079,10.8914506591,10.8875996102,10.8837485613,10.8798975124,10.8760464636,10.8721954147,10.8683443658,10.8644933169,10.8606422681,10.8567912192,10.8529401703,10.8490891215,10.8452380726,10.8413870237,10.8375359748,10.833684926,10.8298338771,10.8259828282,10.8221317794,10.8182807305,10.8144296816,10.8105786327,10.8067275839,10.802876535,10.7990254861,10.7951744373,10.7913233884,10.7874723395,10.7836212906,10.7797702418,10.7759191929,10.772068144,10.7682170951,10.7643660463,10.7605149974,10.7566639485,10.7528128997,10.7489618508,10.7451108019,10.741259753,10.7374087042,10.7335576553,10.7297066064,10.7258555576,10.7220045087,10.7181534598,10.7143024109,10.7104513621,10.7066003132,10.7027492643,10.6988982155,10.6950471666,10.6911961177,10.6873450688,10.68349402,10.6796429711,10.6757919222,10.6719408733,10.6680898245,10.6642387756,10.6603877267,10.6565366779,10.652685629,10.6488345801,10.6449835312,10.6411324824,10.6372814335,10.6334303846,10.6295793358,10.6257282869,10.621877238,10.6180261891,10.6141751403,10.6103240914,10.6064730425,10.6026219937,10.5987709448,10.5949198959,10.591068847,10.5872177982,10.5833667493,10.5795157004,10.5756646515,10.5718136027,10.5679625538,10.5641115049,10.5602604561,10.5564094072,10.5525583583,10.5487073094,10.5448562606,10.5410052117,10.5371541628,10.533303114,10.5294520651,10.5256010162,10.5217499673,10.5178989185,10.5140478696,10.5101968207,10.5063457719,10.502494723,10.4986436741,10.4947926252,10.4909415764,10.4870905275,10.4832394786,10.4793884297,10.4755373809,10.471686332,10.4678352831,10.4639842343,10.4601331854,10.4562821365,10.4524310876,10.4485800388,10.4447289899,10.440877941,10.4370268922,10.4331758433,10.4293247944,10.4254737455,10.4216226967,10.4177716478,10.4139205989,10.41006955,10.4062185012,10.4023674523,10.3985164034,10.3946653546,10.3908143057,10.3869632568,10.3831122079,10.3792611591,10.3754101102,10.3715590613,10.3677080125,10.3638569636,10.3600059147,10.3561548658,10.352303817,10.3484527681,10.3446017192,10.3407506704,10.3368996215,10.3330485726,10.3291975237,10.3253464749,10.321495426,10.3176443771,10.3137933282,10.3099422794,10.3060912305,10.3022401816,10.2983891328,10.2945380839,10.290687035,10.2868359861,10.2829849373,10.2791338884,10.2752828395,10.2714317907,10.2675807418,10.2637296929,10.259878644,10.2560275952,10.2521765463,10.2483254974,10.2444744486,10.2406233997,10.2367723508,10.2329213019,10.2290702531,10.2252192042,10.2213681553,10.2175171064,10.2136660576,10.2098150087,10.2059639598,10.202112911,10.1982618621,10.1944108132,10.1905597643,10.1867087155,10.1828576666,10.1790066177,10.1751555689,10.17130452,10.1674534711,10.1636024222,10.1597513734,10.1559003245,10.1520492756,10.1481982268,10.1443471779,10.140496129,10.1366450801,10.1327940313,10.1289429824,10.1250919335,10.1212408846,10.1173898358,10.1135387869,10.109687738,10.1058366892,10.1019856403,10.0981345914,10.0942835425,10.0904324937,10.0865814448,10.0827303959,10.0788793471,10.0750282982,10.0711772493,10.0673262004,10.0634751516,10.0596241027,10.0557730538,10.051922005,10.0480709561,10.0442199072,10.0403688583,10.0365178095,10.0326667606,10.0288157117,10.0249646628,10.021113614,10.0172625651,10.0134115162,10.0095604674,10.0057094185,10.0018583696,9.99800732074,9.99415627187,9.990305223,9.98645417413,9.98260312526,9.97875207638,9.97490102751,9.97104997864,9.96719892977,9.96334788089,9.95949683202,9.95564578315,9.95179473428,9.94794368541,9.94409263653,9.94024158766,9.93639053879,9.93253948992,9.92868844105,9.92483739217,9.9209863433,9.91713529443,9.91328424556,9.90943319669,9.90558214781,9.90173109894,9.89788005007,9.8940290012,9.89017795233,9.88632690345,9.88247585458,9.87862480571,9.87477375684,9.87092270797,9.86707165909,9.86322061022,9.85936956135,9.85551851248,9.85166746361,9.84781641473,9.84396536586,9.84011431699,9.83626326812,9.83241221925,9.82856117037,9.8247101215,9.82085907263,9.81700802376,9.81315697489,9.80930592601,9.80545487714,9.80160382827,9.7977527794,9.79390173053,9.79005068165,9.78619963278,9.78234858391,9.77849753504,9.77464648617,9.77079543729,9.76694438842,9.76309333955,9.75924229068,9.75539124181,9.75154019293,9.74768914406,9.74383809519,9.73998704632,9.73613599745,9.73228494857,9.7284338997,9.72458285083,9.72073180196,9.71688075309,9.71302970421,9.70917865534,9.70532760647,9.7014765576,9.69762550873,9.69377445985,9.68992341098,9.68607236211,9.68222131324,9.67837026437,9.67451921549,9.67066816662,9.66681711775,9.66296606888,9.65911502,9.65526397113,9.65141292226,9.64756187339,9.64371082452,9.63985977564,9.63600872677,9.6321576779,9.62830662903,9.62445558016,9.62060453128,9.61675348241,9.61290243354,9.60905138467,9.6052003358,9.60134928692,9.59749823805,9.59364718918,9.58979614031,9.58594509144,9.58209404256,9.57824299369,9.57439194482,9.57054089595,9.56668984708,9.5628387982,9.55898774933,9.55513670046,9.55128565159,9.54743460272,9.54358355384,9.53973250497,9.5358814561,9.53203040723,9.52817935836,9.52432830948,9.52047726061,9.51662621174,9.51277516287,9.508924114,9.50507306512,9.50122201625,9.49737096738,9.49351991851,9.48966886964,9.48581782076,9.48196677189,9.47811572302,9.47426467415,9.47041362528,9.4665625764,9.46271152753,9.45886047866,9.45500942979,9.45115838092,9.44730733204,9.44345628317,9.4396052343,9.43575418543,9.43190313656,9.42805208768,9.42420103881,9.42034998994,9.41649894107,9.4126478922,9.40879684332,9.40494579445,9.40109474558,9.39724369671,9.39339264784,9.38954159896,9.38569055009,9.38183950122,9.37798845235,9.37413740348,9.3702863546,9.36643530573,9.36258425686,9.35873320799,9.35488215912,9.35103111024,9.34718006137,9.3433290125,9.33947796363,9.33562691475,9.33177586588,9.32792481701,9.32407376814,9.32022271927,9.31637167039,9.31252062152,9.30866957265,9.30481852378,9.30096747491,9.29711642603,9.29326537716,9.28941432829,9.28556327942,9.28171223055,9.27786118167,9.2740101328,9.27015908393,9.26630803506,9.26245698619,9.25860593731,9.25475488844,9.25090383957,9.2470527907,9.24320174183,9.23935069295,9.23549964408,9.23164859521,9.22779754634,9.22394649747,9.22009544859,9.21624439972,9.21239335085,9.20854230198,9.20469125311,9.20084020423,9.19698915536,9.19313810649,9.18928705762,9.18543600875,9.18158495987,9.177733911,9.17388286213,9.17003181326,9.16618076439,9.16232971551,9.15847866664,9.15462761777,9.1507765689,9.14692552003,9.14493984925,9.14295417848,9.1409685077,9.13898283693,9.13699716616,9.13501149538,9.13302582461,9.13104015384,9.12905448306,9.12706881229,9.12508314152,9.12309747074,9.12111179997,9.1191261292,9.11714045842,9.11515478765,9.11316911687,9.1111834461,9.10919777533,9.10721210455,9.10522643378,9.10324076301,9.10125509223,9.09926942146,9.09728375069,9.09529807991,9.09331240914,9.09132673836,9.08934106759,9.08735539682,9.08536972604,9.08338405527,9.0813983845,9.07941271372,9.07742704295,9.07544137218,9.0734557014,9.07147003063,9.06948435985,9.06749868908,9.06551301831,9.06352734753,9.06154167676,9.05955600599,9.05757033521,9.05558466444,9.05359899367,9.05161332289,9.04962765212,9.04764198134,9.04565631057,9.0436706398,9.04168496902,9.03969929825,9.03771362748,9.0357279567,9.03374228593,9.03175661516,9.02977094438,9.02778527361,9.02579960283,9.02381393206,9.02182826129,9.01984259051,9.01785691974,9.01587124897,9.01388557819,9.01189990742,9.00991423665,9.00792856587,9.0059428951,9.00395722433,9.00197155355,8.99998588278,8.998000212,8.99601454123,8.99402887046,8.99204319968,8.99005752891,8.98807185814,8.98608618736,8.98410051659,8.98211484582,8.98012917504,8.97814350427,8.97615783349,8.97417216272,8.97218649195,8.97020082117,8.9682151504,8.96622947963,8.96424380885,8.96225813808,8.96027246731,8.95828679653,8.95630112576,8.95431545498,8.95232978421,8.95034411344,8.94835844266,8.94637277189,8.94438710112,8.94240143034,8.94041575957,8.9384300888,8.93644441802,8.93445874725,8.93247307647,8.9304874057,8.92850173493,8.92651606415,8.92453039338,8.92254472261,8.92055905183,8.91857338106,8.91658771029,8.91460203951,8.91261636874,8.91063069796,8.90864502719,8.90665935642,8.90467368564,8.90268801487,8.9007023441,8.89871667332,8.89673100255,8.89474533178,8.892759661,8.89077399023,8.88878831946,8.88680264868,8.88481697791,8.88283130713,8.88084563636,8.87885996559,8.87687429481,8.87488862404,8.87290295327,8.87091728249,8.86893161172,8.86694594095,8.86496027017,8.8629745994,8.86098892862,8.85900325785,8.85701758708,8.8550319163,8.85304624553,8.85106057476,8.84907490398,8.84708923321,8.84510356244,8.84311789166,8.84113222089,8.83914655011,8.83716087934,8.83517520857,8.83318953779,8.83120386702,8.82921819625,8.82723252547,8.8252468547,8.82326118393,8.82127551315,8.81928984238,8.8173041716,8.81531850083,8.81333283006,8.81134715928,8.80936148851,8.80737581774,8.80539014696,8.80340447619,8.80141880542,8.79943313464,8.79744746387,8.79546179309,8.79347612232,8.79149045155,8.78950478077,8.78751911,8.78553343923,8.78354776845,8.78156209768,8.77957642691,8.77759075613,8.77560508536,8.77361941459,8.77163374381,8.76964807304,8.76766240226,8.76567673149,8.76369106072,8.76170538994,8.75971971917,8.7577340484,8.75574837762,8.75376270685,8.75177703608,8.7497913653,8.74780569453,8.74582002375,8.74383435298,8.74184868221,8.73986301143,8.73787734066,8.73589166989,8.73390599911,8.73192032834,8.72993465757,8.72794898679,8.72596331602,8.72397764524,8.72199197447,8.7200063037,8.71802063292,8.71603496215,8.71404929138,8.7120636206,8.71007794983,8.70809227906,8.70610660828,8.70412093751,8.70213526673,8.70014959596,8.69816392519,8.69617825441,8.69419258364,8.69220691287,8.69022124209,8.68823557132,8.68624990055,8.68426422977,8.682278559,8.68029288823,8.67830721745,8.67632154668,8.6743358759,8.67235020513,8.67036453436,8.66837886358,8.66639319281,8.66440752204,8.66242185126,8.66043618049,8.65845050972,8.65646483894,8.65447916817,8.65249349739,8.65050782662,8.64852215585,8.64653648507,8.6445508143,8.64256514353,8.64057947275,8.63859380198,8.63660813121,8.63462246043,8.63263678966,8.63065111888,8.62866544811,8.62667977734,8.62469410656,8.62270843579,8.62072276502,8.61873709424,8.61675142347,8.6147657527,8.61278008192,8.61079441115,8.60880874037,8.6068230696,8.60483739883,8.60285172805,8.60086605728,8.59888038651,8.59689471573,8.59490904496,8.59292337419,8.59093770341,8.58895203264,8.58696636186,8.58498069109,8.58299502032,8.58100934954,8.57902367877,8.577038008,8.57505233722,8.57306666645,8.57108099568,8.5690953249,8.56710965413,8.56512398336,8.56313831258,8.56115264181,8.55916697103,8.55718130026,8.55519562949,8.55320995871,8.55122428794,8.54923861717,8.54725294639,8.54526727562,8.54328160485,8.54129593407,8.5393102633,8.53732459252,8.53533892175,8.53335325098,8.5313675802,8.52938190943,8.52739623866,8.52541056788,8.52342489711,8.52143922634,8.51945355556,8.51746788479,8.51548221401,8.51349654324,8.51151087247,8.50952520169,8.50753953092,8.50555386015,8.50356818937,8.5015825186,8.49959684783,8.49761117705,8.49562550628,8.4936398355,8.49165416473,8.48966849396,8.48768282318,8.48569715241,8.48371148164,8.48172581086,8.47974014009,8.47775446932,8.47576879854,8.47378312777,8.47179745699,8.46981178622,8.46782611545,8.46584044467,8.4638547739,8.46186910313,8.45988343235,8.45789776158,8.45591209081,8.45392642003,8.45194074926,8.44995507849,8.44796940771,8.44598373694,8.44399806616,8.44201239539,8.44002672462,8.43804105384,8.43605538307,8.4340697123,8.43208404152,8.43009837075,8.42811269998,8.4261270292,8.42414135843,8.42215568765,8.42017001688,8.41818434611,8.41619867533,8.41421300456,8.41222733379,8.41024166301,8.40825599224,8.40627032147,8.40428465069,8.40229897992,8.40031330914,8.39832763837,8.3963419676,8.39435629682,8.39237062605,8.39038495528,8.3883992845,8.38641361373,8.38442794296,8.38244227218,8.38045660141,8.37847093063,8.37648525986,8.37449958909,8.37251391831,8.37052824754,8.36854257677,8.36655690599,8.36457123522,8.36258556445,8.36059989367,8.3586142229,8.35662855212,8.35464288135,8.35265721058,8.3506715398,8.34868586903,8.34670019826,8.34471452748,8.34272885671,8.34074318594,8.33875751516,8.33677184439,8.33478617362,8.33280050284,8.33081483207,8.32882916129,8.32684349052,8.32485781975,8.32287214897,8.3208864782,8.31890080743,8.31691513665,8.31492946588,8.31294379511,8.31095812433,8.30897245356,8.30698678278,8.30500111201,8.30301544124,8.30102977046,8.29904409969,8.29705842892,8.29507275814,8.29308708737,8.2911014166,8.28911574582,8.28713007505,8.28514440427,8.2831587335,8.28117306273,8.27918739195,8.27720172118,8.27521605041,8.27323037963,8.27124470886,8.26925903809,8.26727336731,8.26528769654,8.26330202576,8.26131635499,8.25933068422,8.25734501344,8.25535934267,8.2533736719,8.25138800112,8.24940233035,8.24741665958,8.2454309888,8.24344531803,8.24145964726,8.23947397648,8.23748830571,8.23550263493,8.23351696416,8.23153129339,8.22954562261,8.22755995184,8.22557428107,8.22358861029,8.22160293952,8.21961726875,8.21763159797,8.2156459272,8.21366025642,8.21167458565,8.20968891488,8.2077032441,8.20571757333,8.20373190256,8.20174623178,8.19976056101,8.19777489024,8.19578921946,8.19380354869,8.19181787791,8.18983220714,8.18784653637,8.18586086559,8.18387519482,8.18188952405,8.17990385327,8.1779181825,8.17593251173,8.17394684095,8.17196117018,8.1699754994,8.16798982863,8.16600415786,8.16401848708,8.16203281631,8.16004714554,8.15806147476,8.15607580399,8.15409013322,8.15210446244,8.15011879167,8.14813312089,8.14614745012,8.14416177935,8.14217610857,8.1401904378,8.13820476703,8.13621909625,8.13423342548,8.13224775471,8.13026208393,8.12827641316,8.12629074239,8.12430507161,8.12231940084,8.12033373006,8.11834805929,8.11636238852,8.11437671774,8.11239104697,8.1104053762,8.10841970542,8.10643403465,8.10444836388,8.1024626931,8.10047702233,8.09849135155,8.09650568078,8.09452001001,8.09253433923,8.09054866846,8.08856299769,8.08657732691,8.08459165614,8.08260598537,8.08062031459,8.07863464382,8.07664897304,8.07466330227,8.0726776315,8.07069196072,8.06870628995,8.06672061918,8.0647349484,8.06274927763,8.06076360686,8.05877793608,8.05679226531,8.05480659453,8.05282092376,8.05083525299,8.04884958221,8.04686391144,8.04487824067,8.04289256989,8.04090689912,8.03892122835,8.03693555757,8.0349498868,8.03296421602,8.03097854525,8.02899287448,8.0270072037,8.02502153293,8.02303586216,8.02105019138,8.01906452061,8.01707884984,8.01509317906,8.01310750829,8.01112183752,8.00913616674,8.00715049597,8.00516482519,8.00317915442,8.00119348365,7.99920781287,7.9972221421,7.99523647133,7.99325080055,7.99126512978,7.98927945901,7.98729378823,7.98530811746,7.98332244668,7.98133677591,7.97935110514,7.97736543436,7.97537976359,7.97339409282,7.97140842204,7.96942275127,7.9674370805,7.96545140972,7.96346573895,7.96148006817,7.9594943974,7.95750872663,7.95552305585,7.95353738508,7.95155171431,7.94956604353,7.94758037276,7.94762668436,7.94767299596,7.94771930756,7.94776561916,7.94781193076,7.94785824236,7.94790455396,7.94795086556,7.94799717716,7.94804348876,7.94808980036,7.94813611196,7.94818242356,7.94822873516,7.94827504676,7.94832135836,7.94836766996,7.94841398156,7.94846029316,7.94850660476,7.94855291636,7.94859922796,7.94864553956,7.94869185116,7.94873816276,7.94878447436,7.94883078596,7.94887709756,7.94892340916,7.94896972076,7.94901603236,7.94906234396,7.94910865556,7.94915496716,7.94920127876,7.94924759036,7.94929390196,7.94934021356,7.94938652516,7.94943283676,7.94947914836,7.94952545996,7.94957177156,7.94961808316,7.94966439476,7.94971070636,7.94975701796,7.94980332956,7.94984964116,7.94989595276,7.94994226436,7.94998857596,7.95003488756,7.95008119916,7.95012751076,7.95017382236,7.95022013396,7.95026644556,7.95031275716,7.95035906876,7.95040538037,7.95045169197,7.95049800357,7.95054431517,7.95059062677,7.95063693837,7.95068324997,7.95072956157,7.95077587317,7.95082218477,7.95086849637,7.95091480797,7.95096111957,7.95100743117,7.95105374277,7.95110005437,7.95114636597,7.95119267757,7.95123898917,7.95128530077,7.95133161237,7.95137792397,7.95142423557,7.95147054717,7.95151685877,7.95156317037,7.95160948197,7.95165579357,7.95170210517,7.95174841677,7.95179472837,7.95184103997,7.95188735157,7.95193366317,7.95197997477,7.95202628637,7.95207259797,7.95211890957,7.95216522117,7.95221153277,7.95225784437,7.95230415597,7.95235046757,7.95239677917,7.95244309077,7.95248940237,7.95253571397,7.95258202557,7.95262833717,7.95267464877,7.95272096037,7.95276727197,7.95281358357,7.95285989517,7.95290620677,7.95295251837,7.95299882997,7.95304514157,7.95309145317,7.95313776477,7.95318407637,7.95323038797,7.95327669957,7.95332301117,7.95336932277,7.95341563437,7.95346194597,7.95350825757,7.95355456917,7.95360088077,7.95364719237,7.95369350397,7.95373981557,7.95378612717,7.95383243877,7.95387875037,7.95392506197,7.95397137357,7.95401768517,7.95406399677,7.95411030837,7.95415661997,7.95420293157,7.95424924317,7.95429555477,7.95434186637,7.95438817797,7.95443448957,7.95448080117,7.95452711277,7.95457342437,7.95461973597,7.95466604757,7.95471235917,7.95475867077,7.95480498237,7.95485129397,7.95489760557,7.95494391717,7.95499022877,7.95503654037,7.95508285197,7.95512916357,7.95517547517,7.95522178678,7.95526809838,7.95531440998,7.95536072158,7.95540703318,7.95545334478,7.95549965638,7.95554596798,7.95559227958,7.95563859118,7.95568490278,7.95573121438,7.95577752598,7.95582383758,7.95587014918,7.95591646078,7.95596277238,7.95600908398,7.95605539558,7.95610170718,7.95614801878,7.95619433038,7.95624064198,7.95628695358,7.95633326518,7.95637957678,7.95642588838,7.95647219998,7.95651851158,7.95656482318,7.95661113478,7.95665744638,7.95670375798,7.95675006958,7.95679638118,7.95684269278,7.95688900438,7.95693531598,7.95698162758,7.95702793918,7.95707425078,7.95712056238,7.95716687398,7.95721318558,7.95725949718,7.95730580878,7.95735212038,7.95739843198,7.95744474358,7.95749105518,7.95753736678,7.95758367838,7.95762998998,7.95767630158,7.95772261318,7.95776892478,7.95781523638,7.95786154798,7.95790785958,7.95795417118,7.95800048278,7.95804679438,7.95809310598,7.95813941758,7.95818572918,7.95823204078,7.95827835238,7.95832466398,7.95837097558,7.95841728718,7.95846359878,7.95850991038,7.95855622198,7.95860253358,7.95864884518,7.95869515678,7.95874146838,7.95878777998,7.95883409158,7.95888040318,7.95892671478,7.95897302638,7.95901933798,7.95906564958,7.95911196118,7.95915827278,7.95920458438,7.95925089598,7.95929720758,7.95934351918,7.95938983078,7.95943614238,7.95948245398,7.95952876558,7.95957507718,7.95962138878,7.95966770038,7.95971401198,7.95976032358,7.95980663518,7.95985294678,7.95989925838,7.95994556998,7.95999188158,7.96003819318,7.96008450479,7.96013081639,7.96017712799,7.96022343959,7.96026975119,7.96031606279,7.96036237439,7.96040868599,7.96045499759,7.96050130919,7.96054762079,7.96059393239,7.96064024399,7.96068655559,7.96073286719,7.96077917879,7.96082549039,7.96087180199,7.96091811359,7.96096442519,7.96101073679,7.96105704839,7.96110335999,7.96114967159,7.96119598319,7.96124229479,7.96128860639,7.96133491799,7.96138122959,7.96142754119,7.96147385279,7.96152016439,7.96156647599,7.96161278759,7.96165909919,7.96170541079,7.96175172239,7.96179803399,7.96184434559,7.96189065719,7.96193696879,7.96198328039,7.96202959199,7.96207590359,7.96212221519,7.96216852679,7.96221483839,7.96226114999,7.96230746159,7.96235377319,7.96240008479,7.96244639639,7.96249270799,7.96253901959,7.96258533119,7.96263164279,7.96267795439,7.96272426599,7.96277057759,7.96281688919,7.96286320079,7.96290951239,7.96295582399,7.96300213559,7.96304844719,7.96309475879,7.96314107039,7.96318738199,7.96323369359,7.96328000519,7.96332631679,7.96337262839,7.96341893999,7.96346525159,7.96351156319,7.96355787479,7.96360418639,7.96365049799,7.96369680959,7.96374312119,7.96378943279,7.96383574439,7.96388205599,7.96392836759,7.96397467919,7.96402099079,7.96406730239,7.96411361399,7.96415992559,7.96420623719,7.96425254879,7.96429886039,7.96434517199,7.96439148359,7.96443779519,7.96448410679,7.96453041839,7.96457672999,7.96462304159,7.96466935319,7.96471566479,7.96476197639,7.96480828799,7.96485459959,7.96490091119,7.9649472228,7.9649935344,7.965039846,7.9650861576,7.9651324692,7.9651787808,7.9652250924,7.965271404,7.9653177156,7.9653640272,7.9654103388,7.9654566504,7.965502962,7.9655492736,7.9655955852,7.9656418968,7.9656882084,7.96573452,7.9657808316,7.9658271432,7.9658734548,7.9659197664,7.965966078,7.9660123896,7.9660587012,7.9661050128,7.9661513244,7.966197636,7.9662439476,7.9662902592,7.9663365708,7.9663828824,7.966429194,7.9664755056,7.9665218172,7.9665681288,7.9666144404,7.966660752,7.9667070636,7.9667533752,7.9667996868,7.9668459984,7.96689231,7.9669386216,7.9669849332,7.9670312448,7.9670775564,7.967123868,7.9671701796,7.9672164912,7.9672628028,7.9673091144,7.967355426,7.9674017376,7.9674480492,7.9674943608,7.9675406724,7.967586984,7.9676332956,7.9676796072,7.9677259188,7.9677722304,7.967818542,7.9678648536,7.9679111652,7.9679574768,7.9680037884,7.9680501,7.9680964116,7.9681427232,7.9681890348,7.9682353464,7.968281658,7.9683279696,7.9683742812,7.9684205928,7.9684669044,7.968513216,7.9685595276,7.9686058392,7.9686521508,7.9686984624,7.968744774,7.9687910856,7.9688373972,7.9688837088,7.9689300204,7.968976332,7.9690226436,7.9690689552,7.9691152668,7.9691615784,7.96920789,7.9692542016,7.9693005132,7.9693468248,7.9693931364,7.969439448,7.9694857596,7.9695320712,7.9695783828,7.9696246944,7.969671006,7.9697173176,7.96976362921,7.96980994081,7.96985625241,7.96990256401,7.96994887561,7.96999518721,7.97004149881,7.97008781041,7.97013412201,7.97018043361,7.97022674521,7.97027305681,7.97031936841,7.97036568001,7.97041199161,7.97045830321,7.97050461481,7.97055092641,7.97059723801,7.97064354961,7.97068986121,7.97073617281,7.97078248441,7.97082879601,7.97087510761,7.97092141921,7.97096773081,7.97101404241,7.97106035401,7.97110666561,7.97115297721,7.97119928881,7.97124560041,7.97129191201,7.97133822361,7.97138453521,7.97143084681,7.97147715841,7.97152347001,7.97156978161,7.97161609321,7.97166240481,7.97170871641,7.97175502801,7.97180133961,7.97184765121,7.97189396281,7.97194027441,7.97198658601,7.97203289761,7.97207920921,7.97212552081,7.97217183241,7.97221814401,7.97226445561,7.97231076721,7.97235707881,7.97240339041,7.97244970201,7.97249601361,7.97254232521,7.97258863681,7.97263494841,7.97268126001,7.97272757161,7.97277388321,7.97282019481,7.97286650641,7.97291281801,7.97295912961,7.97300544121,7.97305175281,7.97309806441,7.97314437601,7.97319068761,7.97323699921,7.97328331081,7.97332962241,7.97337593401,7.97342224561,7.97346855721,7.97351486881,7.97356118041,7.97360749201,7.97365380361,7.97370011521,7.97374642681,7.97379273841,7.97383905001,7.97388536161,7.97393167321,7.97397798481,7.97402429641,7.97407060801,7.97411691961,7.97416323121,7.97420954281,7.97425585441,7.97430216601,7.97434847761,7.97439478921,7.97444110081,7.97448741241,7.97453372401,7.97458003561,7.97462634722,7.97467265882,7.97471897042,7.97476528202,7.97481159362,7.97485790522,7.97490421682,7.97495052842,7.97499684002,7.97504315162,7.97508946322,7.97513577482,7.97518208642,7.97522839802,7.97527470962,7.97532102122,7.97536733282,7.97541364442,7.97545995602,7.97550626762,7.97555257922,7.97757744,7.97960230078,7.98162716155,7.98365202233,7.98567688311,7.98770174389,7.98972660467,7.99175146545,7.99377632623,7.99580118701,7.99782604779,7.99985090857,8.00187576935,8.00390063012,8.0059254909,8.00795035168,8.00997521246,8.01200007324,8.01402493402,8.0160497948,8.01807465558,8.02009951636,8.02212437714,8.02414923792,8.02617409869,8.02819895947,8.03022382025,8.03224868103,8.03427354181,8.03629840259,8.03832326337,8.04034812415,8.04237298493,8.04439784571,8.04642270649,8.04844756726,8.05047242804,8.05249728882,8.0545221496,8.05654701038,8.05857187116,8.06059673194,8.06262159272,8.0646464535,8.06667131428,8.06869617506,8.07072103583,8.07274589661,8.07477075739,8.07679561817,8.07882047895,8.08084533973,8.08287020051,8.08489506129,8.08691992207,8.08894478285,8.09096964363,8.09299450441,8.09501936518,8.09704422596,8.09906908674,8.10109394752,8.1031188083,8.10514366908,8.10716852986,8.10919339064,8.11121825142,8.1132431122,8.11526797298,8.11729283375,8.11931769453,8.12134255531,8.12336741609,8.12539227687,8.12741713765,8.12944199843,8.13146685921,8.13349171999,8.13551658077,8.13754144155,8.13956630232,8.1415911631,8.14361602388,8.14564088466,8.14766574544,8.14969060622,8.151715467,8.15374032778,8.15576518856,8.15779004934,8.15981491012,8.16183977089,8.16386463167,8.16588949245,8.16791435323,8.16993921401,8.17196407479,8.17398893557,8.17601379635,8.17803865713,8.18006351791,8.18208837869,8.18411323946,8.18613810024,8.18816296102,8.1901878218,8.19221268258,8.19423754336,8.19626240414,8.19828726492,8.2003121257,8.20233698648,8.20436184726,8.20638670804,8.20841156881,8.21043642959,8.21246129037,8.21448615115,8.21651101193,8.21853587271,8.22056073349,8.22258559427,8.22461045505,8.22663531583,8.22866017661,8.23068503738,8.23270989816,8.23473475894,8.23675961972,8.2387844805,8.24080934128,8.24283420206,8.24485906284,8.24688392362,8.2489087844,8.25093364518,8.25295850595,8.25498336673,8.25700822751,8.25903308829,8.26105794907,8.26308280985,8.26510767063,8.26713253141,8.26915739219,8.27118225297,8.27320711375,8.27523197452,8.2772568353,8.27928169608,8.28130655686,8.28333141764,8.28535627842,8.2873811392,8.28940599998,8.29143086076,8.29345572154,8.29548058232,8.29750544309,8.29953030387,8.30155516465,8.30358002543,8.30560488621,8.30762974699,8.30965460777,8.31167946855,8.31370432933,8.31572919011,8.31775405089,8.31977891167,8.32180377244,8.32382863322,8.325853494,8.32787835478,8.32990321556,8.33192807634,8.33395293712,8.3359777979,8.33800265868,8.34002751946,8.34205238024,8.34407724101,8.34610210179,8.34812696257,8.35015182335,8.35217668413,8.35420154491,8.35622640569,8.35825126647,8.36027612725,8.36230098803,8.36432584881,8.36635070958,8.36837557036,8.37040043114,8.37242529192,8.3744501527,8.37647501348,8.37849987426,8.38052473504,8.38254959582,8.3845744566,8.38659931738,8.38862417815,8.39064903893,8.39267389971,8.39469876049,8.39672362127,8.39874848205,8.40077334283,8.40279820361,8.40482306439,8.40684792517,8.40887278595,8.41089764672,8.4129225075,8.41494736828,8.41697222906,8.41899708984,8.42102195062,8.4230468114,8.42507167218,8.42709653296,8.42912139374,8.43114625452,8.43317111529,8.43519597607,8.43722083685,8.43924569763,8.44127055841,8.44329541919,8.44532027997,8.44734514075,8.44937000153,8.45139486231,8.45341972309,8.45544458387,8.45746944464,8.45949430542,8.4615191662,8.46354402698,8.46556888776,8.46759374854,8.46961860932,8.4716434701,8.47366833088,8.47569319166,8.47771805244,8.47974291321,8.48176777399,8.48379263477,8.48581749555,8.48784235633,8.48986721711,8.49189207789,8.49391693867,8.49594179945,8.49796666023,8.49999152101,8.50201638178,8.50404124256,8.50606610334,8.50809096412,8.5101158249,8.51214068568,8.51416554646,8.51619040724,8.51821526802,8.5202401288,8.52226498958,8.52428985035,8.52631471113,8.52833957191,8.53036443269,8.53238929347,8.53441415425,8.53643901503,8.53846387581,8.54048873659,8.54251359737,8.54453845815,8.54656331892,8.5485881797,8.55061304048,8.55263790126,8.55466276204,8.55668762282,8.5587124836,8.56073734438,8.56276220516,8.56478706594,8.56681192672,8.5688367875,8.57086164827,8.57288650905,8.57491136983,8.57693623061,8.57896109139,8.58098595217,8.58301081295,8.58503567373,8.58706053451,8.58908539529,8.59111025607,8.59313511684,8.59515997762,8.5971848384,8.59920969918,8.60123455996,8.60325942074,8.60528428152,8.6073091423,8.60933400308,8.61135886386,8.61338372464,8.61540858541,8.61743344619,8.61945830697,8.62148316775,8.62350802853,8.62553288931,8.62755775009,8.62958261087,8.63160747165,8.63363233243,8.63565719321,8.63768205398,8.63970691476,8.64173177554,8.64375663632,8.6457814971,8.64780635788,8.64983121866,8.65185607944,8.65388094022,8.655905801,8.65793066178,8.65995552255,8.66198038333,8.66400524411,8.66603010489,8.66805496567,8.67007982645,8.67210468723,8.67412954801,8.67615440879,8.67817926957,8.68020413035,8.68222899113,8.6842538519,8.68627871268,8.68830357346,8.69032843424,8.69235329502,8.6943781558,8.69640301658,8.69842787736,8.70045273814,8.70247759892,8.7045024597,8.70652732047,8.70855218125,8.71057704203,8.71260190281,8.71462676359,8.71665162437,8.71867648515,8.72070134593,8.72272620671,8.72475106749,8.72677592827,8.72880078904,8.73082564982,8.7328505106,8.73487537138,8.73690023216,8.73892509294,8.74094995372,8.7429748145,8.74499967528,8.74702453606,8.74904939684,8.75107425761,8.75309911839,8.75512397917,8.75714883995,8.75917370073,8.76119856151,8.76322342229,8.76524828307,8.76727314385,8.76929800463,8.77132286541,8.77334772618,8.77537258696,8.77739744774,8.77942230852,8.7814471693,8.78347203008,8.78549689086,8.78752175164,8.78954661242,8.7915714732,8.79359633398,8.79562119475,8.79764605553,8.79967091631,8.80169577709,8.80372063787,8.80574549865,8.80777035943,8.80979522021,8.81182008099,8.81384494177,8.81586980255,8.81789466333,8.8199195241,8.82194438488,8.82396924566,8.82599410644,8.82801896722,8.830043828,8.83206868878,8.83409354956,8.83611841034,8.83814327112,8.8401681319,8.84219299267,8.84421785345,8.84624271423,8.84826757501,8.85029243579,8.85231729657,8.85434215735,8.85636701813,8.85839187891,8.86041673969,8.86244160047,8.86446646124,8.86649132202,8.8685161828,8.87054104358,8.87256590436,8.87459076514,8.87661562592,8.8786404867,8.88066534748,8.88269020826,8.88471506904,8.88673992981,8.88876479059,8.89078965137,8.89281451215,8.89483937293,8.89686423371,8.89888909449,8.90091395527,8.90293881605,8.90496367683,8.90698853761,8.90901339838,8.91103825916,8.91306311994,8.91508798072,8.9171128415,8.91913770228,8.92116256306,8.92318742384,8.92521228462,8.9272371454,8.92926200618,8.93128686696,8.93331172773,8.93533658851,8.93736144929,8.93938631007,8.94141117085,8.94343603163,8.94546089241,8.94748575319,8.94951061397,8.95153547475,8.95356033553,8.9555851963,8.95761005708,8.95963491786,8.96165977864,8.96368463942,8.9657095002,8.96773436098,8.96975922176,8.97178408254,8.97380894332,8.9758338041,8.97785866487,8.97988352565,8.98190838643,8.98393324721,8.98595810799,8.98798296877,8.99000782955,8.99203269033,8.99405755111,8.99608241189,8.99810727267,9.00013213344,9.00215699422,9.004181855,9.00620671578,9.00823157656,9.01025643734,9.01228129812,9.0143061589,9.01633101968,9.01835588046,9.02038074124,9.02240560201,9.02443046279,9.02645532357,9.02848018435,9.03050504513,9.03252990591,9.03455476669,9.03657962747,9.03860448825,9.04062934903,9.04265420981,9.04467907059,9.04670393136,9.04872879214,9.05075365292,9.0527785137,9.05480337448,9.05682823526,9.05885309604,9.06087795682,9.0629028176,9.06492767838,9.06695253916,9.06897739993,9.07100226071,9.07302712149,9.07505198227,9.07707684305,9.07910170383,9.08112656461,9.08315142539,9.08517628617,9.08720114695,9.08922600773,9.0912508685,9.09327572928,9.09530059006,9.09732545084,9.09935031162,9.1013751724,9.10340003318,9.10542489396,9.10744975474,9.10947461552,9.1114994763,9.11352433707,9.11554919785,9.11757405863,9.11959891941,9.12162378019,9.12364864097,9.12567350175,9.12769836253,9.12972322331,9.13174808409,9.13377294487,9.13579780564,9.13782266642,9.1398475272,9.14187238798,9.14389724876,9.14592210954,9.14794697032,9.1499718311,9.15199669188,9.15402155266,9.15604641344,9.15807127421,9.16009613499,9.16212099577,9.16414585655,9.16617071733,9.16819557811,9.17022043889,9.17224529967,9.17427016045,9.17629502123,9.17831988201,9.18034474279,9.18236960356,9.18439446434,9.18641932512,9.1884441859,9.19046904668,9.19249390746,9.19451876824,9.19654362902,9.1985684898,9.20177758783,9.20498668585,9.20819578388,9.21140488191,9.21461397994,9.21782307797,9.221032176,9.22424127403,9.22745037206,9.23065947009,9.23386856812,9.23707766614,9.24028676417,9.2434958622,9.24670496023,9.24991405826,9.25312315629,9.25633225432,9.25954135235,9.26275045038,9.2659595484,9.26916864643,9.27237774446,9.27558684249,9.27879594052,9.28200503855,9.28521413658,9.28842323461,9.29163233264,9.29484143066,9.29805052869,9.30125962672,9.30446872475,9.30767782278,9.31088692081,9.31409601884,9.31730511687,9.3205142149,9.32372331293,9.32693241095,9.33014150898,9.33335060701,9.33655970504,9.33976880307,9.3429779011,9.34618699913,9.34939609716,9.35260519519,9.35581429321,9.35902339124,9.36223248927,9.3654415873,9.36865068533,9.37185978336,9.37506888139,9.37827797942,9.38148707745,9.38469617547,9.3879052735,9.39111437153,9.39432346956,9.39753256759,9.40074166562,9.40395076365,9.40715986168,9.41036895971,9.41357805773,9.41678715576,9.41999625379,9.42320535182,9.42641444985,9.42962354788,9.43283264591,9.43604174394,9.43925084197,9.44245994,9.44566903802,9.44887813605,9.45208723408,9.45529633211,9.45850543014,9.46171452817,9.4649236262,9.46813272423,9.47134182226,9.47455092028,9.47776001831,9.48096911634,9.48417821437,9.4873873124,9.49059641043,9.49380550846,9.49701460649,9.50022370452,9.50343280254,9.50664190057,9.5098509986,9.51306009663,9.51626919466,9.51947829269,9.52268739072,9.52589648875,9.52910558678,9.5323146848,9.53552378283,9.53873288086,9.54194197889,9.54515107692,9.54836017495,9.55156927298,9.55477837101,9.55798746904,9.56119656707,9.56440566509,9.56761476312,9.57082386115,9.57403295918,9.57724205721,9.58045115524,9.58366025327,9.5868693513,9.59007844933,9.59328754735,9.59649664538,9.59970574341,9.60291484144,9.60612393947,9.6093330375,9.61254213553,9.61575123356,9.61896033159,9.62216942961,9.62537852764,9.62858762567,9.6317967237,9.63500582173,9.63821491976,9.64142401779,9.64463311582,9.64784221385,9.65105131188,9.6542604099,9.65746950793,9.66067860596,9.66388770399,9.66709680202,9.67030590005,9.67351499808,9.67672409611,9.67993319414,9.68314229216,9.68635139019,9.68956048822,9.69276958625,9.69597868428,9.69918778231,9.70239688034,9.70560597837,9.7088150764,9.71202417442,9.71523327245,9.71844237048,9.72165146851,9.72486056654,9.72806966457,9.7312787626,9.73448786063,9.73769695866,9.74090605668,9.74411515471,9.74732425274,9.75053335077,9.7537424488,9.75695154683,9.76016064486,9.76336974289,9.76657884092,9.76978793895,9.77299703697,9.776206135,9.77941523303,9.78262433106,9.78583342909,9.78904252712,9.79225162515,9.79546072318,9.79866982121,9.80187891923,9.80508801726,9.80829711529,9.81150621332,9.81471531135,9.81792440938,9.82113350741,9.82434260544,9.82755170347,9.83076080149,9.83396989952,9.83717899755,9.84038809558,9.84359719361,9.84680629164,9.85001538967,9.8532244877,9.85643358573,9.85964268375,9.86285178178,9.86606087981,9.86926997784,9.87247907587,9.8756881739,9.87889727193,9.88210636996,9.88531546799,9.88852456602,9.89173366404,9.89494276207,9.8981518601,9.90136095813,9.90457005616,9.90777915419,9.91098825222,9.91419735025,9.91740644828,9.9206155463,9.92382464433,9.92703374236,9.93024284039,9.93345193842,9.93666103645,9.93987013448,9.94307923251,9.94628833054,9.94949742856,9.95270652659,9.95591562462,9.95912472265,9.96233382068,9.96554291871,9.96875201674,9.97196111477,9.9751702128,9.97837931082,9.98158840885,9.98479750688,9.98800660491,9.99121570294,9.99442480097,9.997633899,10.000842997,10.0040520951,10.0072611931,10.0104702911,10.0136793891,10.0168884872,10.0200975852,10.0233066832,10.0265157813,10.0297248793,10.0329339773,10.0361430753,10.0393521734,10.0425612714,10.0457703694,10.0489794675,10.0521885655,10.0553976635,10.0586067615,10.0618158596,10.0650249576,10.0682340556,10.0714431537,10.0746522517,10.0778613497,10.0810704478,10.0842795458,10.0874886438,10.0906977418,10.0939068399,10.0971159379,10.1003250359,10.103534134,10.106743232,10.10995233,10.113161428,10.1163705261,10.1195796241,10.1227887221,10.1259978202,10.1292069182,10.1324160162,10.1356251142,10.1388342123,10.1420433103,10.1452524083,10.1484615064,10.1516706044,10.1548797024,10.1580888004,10.1612978985,10.1645069965,10.1677160945,10.1709251926,10.1741342906,10.1773433886,10.1805524866,10.1837615847,10.1869706827,10.1901797807,10.1933888788,10.1965979768,10.1998070748,10.2030161728,10.2062252709,10.2094343689,10.2126434669,10.215852565,10.219061663,10.222270761,10.2254798591,10.2286889571,10.2318980551,10.2351071531,10.2383162512,10.2415253492,10.2447344472,10.2479435453,10.2511526433,10.2543617413,10.2575708393,10.2607799374,10.2639890354,10.2671981334,10.2704072315,10.2736163295,10.2768254275,10.2800345255,10.2832436236,10.2864527216,10.2896618196,10.2928709177,10.2960800157,10.2992891137,10.3024982117,10.3057073098,10.3089164078,10.3121255058,10.3153346039,10.3185437019,10.3217527999,10.3249618979,10.328170996,10.331380094,10.334589192,10.3377982901,10.3410073881,10.3442164861,10.3474255842,10.3506346822,10.3538437802,10.3570528782,10.3602619763,10.3634710743,10.3666801723,10.3698892704,10.3730983684,10.3763074664,10.3795165644,10.3827256625,10.3859347605,10.3891438585,10.3923529566,10.3955620546,10.3987711526,10.4019802506,10.4051893487,10.4083984467,10.4116075447,10.4148166428,10.4180257408,10.4212348388,10.4244439368,10.4276530349,10.4308621329,10.4340712309,10.437280329,10.440489427,10.443698525,10.446907623,10.4501167211,10.4533258191,10.4565349171,10.4597440152,10.4629531132,10.4661622112,10.4693713092,10.4725804073,10.4757895053,10.4789986033,10.4822077014,10.4854167994,10.4886258974,10.4918349955,10.4950440935,10.4982531915,10.5014622895,10.5046713876,10.5078804856,10.5110895836,10.5142986817,10.5175077797,10.5207168777,10.5239259757,10.5271350738,10.5303441718,10.5335532698,10.5367623679,10.5399714659,10.5431805639,10.5463896619,10.54959876,10.552807858,10.556016956,10.5592260541,10.5624351521,10.5656442501,10.5688533481,10.5720624462,10.5752715442,10.5784806422,10.5816897403,10.5848988383,10.5881079363,10.5913170343,10.5945261324,10.5977352304,10.6009443284,10.6041534265,10.6073625245,10.6105716225,10.6137807206,10.6169898186,10.6201989166,10.6234080146,10.6266171127,10.6298262107,10.6330353087,10.6362444068,10.6394535048,10.6426626028,10.6458717008,10.6490807989,10.6522898969,10.6554989949,10.658708093,10.661917191,10.665126289,10.668335387,10.6715444851,10.6747535831,10.6779626811,10.6811717792,10.6843808772,10.6875899752,10.6907990732,10.6940081713,10.6972172693,10.7004263673,10.7036354654,10.7068445634,10.7100536614,10.7132627594,10.7164718575,10.7196809555,10.7228900535,10.7260991516,10.7293082496,10.7325173476,10.7357264457,10.7389355437,10.7421446417,10.7453537397,10.7485628378,10.7517719358,10.7549810338,10.7581901319,10.7613992299,10.7646083279,10.7678174259,10.771026524,10.774235622,10.77744472,10.7806538181,10.7838629161,10.7870720141,10.7902811121,10.7934902102,10.7966993082,10.7999084062,10.8031175043,10.8063266023,10.8095357003,10.8127447983,10.8159538964,10.8191629944,10.8223720924,10.8255811905,10.8287902885,10.8319993865,10.8352084845,10.8384175826,10.8416266806,10.8448357786,10.8480448767,10.8512539747,10.8544630727,10.8576721707,10.8608812688,10.8640903668,10.8672994648,10.8705085629,10.8737176609,10.8769267589,10.880135857,10.883344955,10.886554053,10.889763151,10.8929722491,10.8961813471,10.8993904451,10.9025995432,10.9058086412,10.9090177392,10.9122268372,10.9154359353,10.9186450333,10.9218541313,10.9250632294,10.9282723274,10.9314814254,10.9346905234,10.9378996215,10.9411087195,10.9443178175,10.9475269156,10.9507360136,10.9539451116,10.9571542096,10.9603633077,10.9635724057,10.9667815037,10.9699906018,10.9731996998,10.9764087978,10.9796178958,10.9828269939,10.9860360919,10.9892451899,10.992454288,10.995663386,10.998872484,11.0020815821,11.0052906801,11.0084997781,11.0117088761,11.0149179742,11.0181270722,11.0213361702,11.0245452683,11.0277543663,11.0309634643,11.0341725623,11.0373816604,11.0405907584,11.0437998564,11.0470089545,11.0502180525,11.0534271505,11.0566362485,11.0598453466,11.0630544446,11.0662635426,11.0694726407,11.0726817387,11.0758908367,11.0790999347,11.0823090328,11.0855181308,11.0887272288,11.0919363269,11.0951454249,11.0983545229,11.1015636209,11.104772719,11.107981817,11.111190915,11.1144000131,11.1176091111,11.1208182091,11.1240273071,11.1272364052,11.1304455032,11.1336546012,11.1368636993,11.1405018771,11.1441400549,11.1477782327,11.1514164105,11.1550545883,11.1586927661,11.1623309439,11.1659691217,11.1696072995,11.1732454773,11.1768836552,11.180521833,11.1841600108,11.1877981886,11.1914363664,11.1950745442,11.198712722,11.2023508998,11.2059890776,11.2096272554,11.2132654332,11.216903611,11.2205417889,11.2241799667,11.2278181445,11.2314563223,11.2350945001,11.2387326779,11.2423708557,11.2460090335,11.2496472113,11.2532853891,11.2569235669,11.2605617447,11.2641999226,11.2678381004,11.2714762782,11.275114456,11.2787526338,11.2823908116,11.2860289894,11.2896671672,11.293305345,11.2969435228,11.3005817006,11.3042198784,11.3078580562,11.3114962341,11.3151344119,11.3187725897,11.3224107675,11.3260489453,11.3296871231,11.3333253009,11.3369634787,11.3406016565,11.3442398343,11.3478780121,11.3515161899,11.3551543678,11.3587925456,11.3624307234,11.3660689012,11.369707079,11.3733452568,11.3769834346,11.3806216124,11.3842597902,11.387897968,11.3915361458,11.3951743236,11.3988125015,11.4024506793,11.4060888571,11.4097270349,11.4133652127,11.4170033905,11.4206415683,11.4242797461,11.4279179239,11.4315561017,11.4351942795,11.4388324573,11.4424706351,11.446108813,11.4497469908,11.4533851686,11.4570233464,11.4606615242,11.464299702,11.4679378798,11.4715760576,11.4752142354,11.4788524132,11.482490591,11.4861287688,11.4897669467,11.4934051245,11.4970433023,11.5006814801,11.5043196579,11.5079578357,11.5115960135,11.5152341913,11.5188723691,11.5225105469,11.5261487247,11.5297869025,11.5334250804,11.5370632582,11.540701436,11.5443396138,11.5479777916,11.5516159694,11.5552541472,11.558892325,11.5625305028,11.5661686806,11.5698068584,11.5734450362,11.5770832141,11.5807213919,11.5843595697,11.5879977475,11.5916359253,11.5952741031,11.5989122809,11.6025504587,11.6061886365,11.6098268143,11.6134649921,11.6171031699,11.6207413477,11.6243795256,11.6280177034,11.6316558812,11.635294059,11.6389322368,11.6425704146,11.6462085924,11.6498467702,11.653484948,11.6571231258,11.6607613036,11.6643994814,11.6680376593,11.6716758371,11.6753140149,11.6789521927,11.6825903705,11.6862285483,11.6898667261,11.6935049039,11.6971430817,11.7007812595,11.7044194373,11.7080576151,11.711695793,11.7153339708,11.7189721486,11.7226103264,11.7262485042,11.729886682,11.7335248598,11.7371630376,11.7408012154,11.7444393932,11.748077571,11.7517157488,11.7553539266,11.7589921045,11.7626302823,11.7662684601,11.7699066379,11.7735448157,11.7771829935,11.7808211713,11.7844593491,11.7880975269,11.7917357047,11.7953738825,11.7990120603,11.8026502382,11.806288416,11.8099265938,11.8135647716,11.8172029494,11.8208411272,11.824479305,11.8281174828,11.8317556606,11.8353938384,11.8390320162,11.842670194,11.8463083719,11.8499465497,11.8535847275,11.8572229053,11.8608610831,11.8644992609,11.8681374387,11.8717756165,11.8754137943,11.8790519721,11.8826901499,11.8863283277,11.8899665056,11.8936046834,11.8972428612,11.900881039,11.9045192168,11.9081573946,11.9117955724,11.9154337502,11.919071928,11.9227101058,11.9263482836,11.9299864614,11.9336246392,11.9372628171,11.9409009949,11.9445391727,11.9481773505,11.9518155283,11.9554537061,11.9590918839,11.9627300617,11.9663682395,11.9700064173,11.9736445951,11.9772827729,11.9809209508,11.9845591286,11.9881973064,11.9918354842,11.995473662,11.9991118398,12.0027500176,12.0063881954,12.0100263732,12.013664551,12.0173027288,12.0209409066,12.0245790845,12.0282172623,12.0318554401,12.0354936179,12.0391317957,12.0427699735,12.0464081513,12.0500463291,12.0536845069,12.0573226847,12.0609608625,12.0645990403,12.0682372181,12.071875396,12.0755135738,12.0791517516,12.0827899294,12.0864281072,12.090066285,12.0937044628,12.0973426406,12.1009808184,12.1046189962,12.108257174,12.1118953518,12.1155335297,12.1191717075,12.1228098853,12.1264480631,12.1300862409,12.1337244187,12.1373625965,12.1410007743,12.1446389521,12.1482771299,12.1519153077,12.1555534855,12.1591916634,12.1628298412,12.166468019,12.1701061968,12.1737443746,12.1773825524,12.1810207302,12.184658908,12.1882970858,12.1919352636,12.1955734414,12.1992116192,12.2028497971,12.2064879749,12.2101261527,12.2137643305,12.2174025083,12.2210406861,12.2246788639,12.2283170417,12.2319552195,12.2355933973,12.2392315751,12.2428697529,12.2465079307,12.2501461086,12.2537842864,12.2574224642,12.261060642,12.2646988198,12.2683369976,12.2719751754,12.2756133532,12.279251531,12.2828897088,12.2865278866,12.2901660644,12.2938042423,12.2974424201,12.3010805979,12.3047187757,12.3083569535,12.3119951313,12.3156333091,12.3192714869,12.3229096647,12.3265478425,12.3301860203,12.3338241981,12.337462376,12.3411005538,12.3447387316,12.3483769094,12.3520150872,12.355653265,12.3592914428,12.3629296206,12.3665677984,12.3702059762,12.373844154,12.3774823318,12.3811205096,12.3847586875,12.3883968653,12.3920350431,12.3956732209,12.3993113987,12.4029495765,12.4065877543,12.4102259321,12.4138641099,12.4175022877,12.4211404655,12.4247786433,12.4284168212,12.432054999,12.4356931768,12.4393313546,12.4429695324,12.4466077102,12.450245888,12.4538840658,12.4575222436,12.4611604214,12.4647985992,12.468436777,12.4720749549,12.4757131327,12.4793513105,12.4829894883,12.4866276661,12.4902658439,12.4939040217,12.4975421995,12.5011803773,12.5048185551,12.5084567329,12.5120949107,12.5157330886,12.5193712664,12.5230094442,12.526647622,12.5302857998,12.5339239776,12.5375621554,12.5412003332,12.544838511,12.5484766888,12.5521148666,12.5557530444,12.5593912222,12.5630294001,12.5666675779,12.5703057557,12.5739439335,12.5775821113,12.5812202891,12.5848584669,12.5884966447,12.5921348225,12.5957730003,12.5994111781,12.6030493559,12.6066875338,12.6103257116,12.6139638894,12.6176020672,12.621240245,12.6248784228,12.6285166006,12.6321547784,12.6357929562,12.639431134,12.6430693118,12.6467074896,12.6503456675,12.6539838453,12.6576220231,12.6612602009,12.6648983787,12.6685365565,12.6721747343,12.6758129121,12.6794510899,12.6830892677,12.6867274455,12.6903656233,12.6940038011,12.697641979,12.7012801568,12.7049183346,12.7085565124,12.7121946902,12.715832868,12.7194710458,12.7231092236,12.7267474014,12.7303855792,12.734023757,12.7376619348,12.7413001127,12.7449382905,12.7485764683,12.7522146461,12.7558528239,12.7594910017,12.7631291795,12.7667673573,12.7704055351,12.7740437129,12.7776818907,12.7813200685,12.7849582464,12.7885964242,12.792234602,12.7958727798,12.7995109576,12.8031491354,12.8067873132,12.810425491,12.8140636688,12.8177018466,12.8213400244,12.8249782022,12.8286163801,12.8322545579,12.8358927357,12.8395309135,12.8431690913,12.8468072691,12.8504454469,12.8540836247,12.8577218025,12.8613599803,12.8649981581,12.8686363359,12.8722745137,12.8759126916,12.8795508694,12.8831890472,12.886827225,12.8904654028,12.8941035806,12.8977417584,12.9013799362,12.905018114,12.9086562918,12.9122944696,12.9159326474,12.9195708253,12.9232090031,12.9268471809,12.9304853587,12.9341235365,12.9377617143,12.9413998921,12.9450380699,12.9486762477,12.9523144255,12.9559526033,12.9595907811,12.963228959,12.9668671368,12.9705053146,12.9741434924,12.9777816702,12.981419848,12.9850580258,12.9886962036,12.9923343814,12.9959725592,12.999610737,13.0032489148,13.0068870926,13.0105252705,13.0141634483,13.0178016261,13.0214398039,13.0250779817,13.0287161595,13.0323543373,13.0359925151,13.0396306929,13.0432688707,13.0469070485,13.0505452263,13.0541834042,13.057821582,13.0614597598,13.0650979376,13.0687361154,13.0723742932,13.076012471,13.0796506488,13.0832888266,13.0869270044,13.0905651822,13.09420336,13.0978415379,13.1014797157,13.1051178935,13.1087560713,13.1123942491,13.1160324269,13.1196706047,13.1233087825,13.1269469603,13.1305851381,13.1342233159,13.1378614937,13.1414996716,13.1451378494,13.1487760272,13.152414205,13.1560523828,13.1596905606,13.1633287384,13.1669669162,13.170605094,13.1742432718,13.1778814496,13.1815196274,13.1851578052,13.1887959831,13.1924341609,13.1960723387,13.1997105165,13.2033486943,13.2069868721,13.2106250499,13.2142632277,13.2179014055,13.2215395833,13.2251777611,13.2288159389,13.2324541168,13.2360922946,13.2397304724,13.2433686502,13.247006828,13.2506450058,13.2542831836,13.2579213614,13.2615595392,13.265197717,13.2688358948,13.2724740726,13.2761122505,13.2797504283,13.2833886061,13.2870267839,13.2906649617,13.2943031395,13.2979413173,13.3015794951,13.3052176729,13.3088558507,13.3124940285,13.3161322063,13.3197703841,13.323408562,13.3270467398,13.3306849176,13.3343230954,13.3377767767,13.341230458,13.3446841393,13.3481378206,13.3515915019,13.3550451833,13.3584988646,13.3619525459,13.3654062272,13.3688599085,13.3723135898,13.3757672711,13.3792209524,13.3826746337,13.3861283151,13.3895819964,13.3930356777,13.396489359,13.3999430403,13.4033967216,13.4068504029,13.4103040842,13.4137577656,13.4172114469,13.4206651282,13.4241188095,13.4275724908,13.4310261721,13.4344798534,13.4379335347,13.441387216,13.4448408974,13.4482945787,13.45174826,13.4552019413,13.4586556226,13.4621093039,13.4655629852,13.4690166665,13.4724703479,13.4759240292,13.4793777105,13.4828313918,13.4862850731,13.4897387544,13.4931924357,13.496646117,13.5000997983,13.5035534797,13.507007161,13.5104608423,13.5139145236,13.5173682049,13.5208218862,13.5242755675,13.5277292488,13.5311829302,13.5346366115,13.5380902928,13.5415439741,13.5449976554,13.5484513367,13.551905018,13.5553586993,13.5588123806,13.562266062,13.5657197433,13.5691734246,13.5726271059,13.5760807872,13.5795344685,13.5829881498,13.5864418311,13.5898955124,13.5933491938,13.5968028751,13.6002565564,13.6037102377,13.607163919,13.6106176003,13.6140712816,13.6175249629,13.6209786443,13.6244323256,13.6278860069,13.6313396882,13.6347933695,13.6382470508,13.6417007321,13.6451544134,13.6486080947,13.6520617761,13.6555154574,13.6589691387,13.66242282,13.6658765013,13.6693301826,13.6727838639,13.6762375452,13.6796912266,13.6831449079,13.6865985892,13.6900522705,13.6935059518,13.6969596331,13.7004133144,13.7038669957,13.707320677,13.7107743584,13.7142280397,13.717681721,13.7211354023,13.7245890836,13.7280427649,13.7314964462,13.7349501275,13.7384038089,13.7418574902,13.7453111715,13.7487648528,13.7522185341,13.7556722154,13.7591258967,13.762579578,13.7660332593,13.7694869407,13.772940622,13.7763943033,13.7798479846,13.7833016659,13.7867553472,13.7902090285,13.7936627098,13.7971163912,13.8005700725,13.8040237538,13.8074774351,13.8109311164,13.8143847977,13.817838479,13.8212921603,13.8247458416,13.828199523,13.8316532043,13.8351068856,13.8385605669,13.8420142482,13.8454679295,13.8489216108,13.8523752921,13.8558289735,13.8592826548,13.8627363361,13.8661900174,13.8696436987,13.87309738,13.8765510613,13.8800047426,13.8834584239,13.8869121053,13.8903657866,13.8938194679,13.8972731492,13.9007268305,13.9041805118,13.9076341931,13.9110878744,13.9145415558,13.9179952371,13.9214489184,13.9249025997,13.928356281,13.9318099623,13.9352636436,13.9387173249,13.9421710062,13.9456246876,13.9490783689,13.9525320502,13.9559857315,13.9594394128,13.9628930941,13.9663467754,13.9698004567,13.9732541381,13.9767078194,13.9801615007,13.983615182,13.9870688633,13.9905225446,13.9939762259,13.9974299072,14.0008835885,14.0043372699,14.0077909512,14.0112446325,14.0146983138,14.0181519951,14.0216056764,14.0250593577,14.028513039,14.0319667204,14.0354204017,14.038874083,14.0423277643,14.0457814456,14.0492351269,14.0526888082,14.0561424895,14.0595961708,14.0630498522,14.0665035335,14.0699572148,14.0734108961,14.0768645774,14.0803182587,14.08377194,14.0872256213,14.0906793027,14.094132984,14.0975866653,14.1010403466,14.1044940279,14.1079477092,14.1114013905,14.1148550718,14.1183087531,14.1217624345,14.1252161158,14.1286697971,14.1321234784,14.1355771597,14.139030841,14.1424845223,14.1459382036,14.149391885,14.1528455663,14.1562992476,14.1597529289,14.1632066102,14.1666602915,14.1701139728,14.1735676541,14.1770213354,14.1804750168,14.1839286981,14.1873823794,14.1908360607,14.194289742,14.1977434233,14.2011971046,14.2046507859,14.2081044673,14.2115581486,14.2150118299,14.2184655112,14.2219191925,14.2253728738,14.2288265551,14.2322802364,14.2357339177,14.2391875991,14.2426412804,14.2460949617,14.249548643,14.2530023243,14.2564560056,14.2599096869,14.2633633682,14.2668170495,14.2702707309,14.2737244122,14.2771780935,14.2806317748,14.2840854561,14.2875391374,14.2909928187,14.2944465,14.2979001814,14.3013538627,14.304807544,14.3082612253,14.3117149066,14.3151685879,14.3186222692,14.3220759505,14.3255296318,14.3289833132,14.3324369945,14.3358906758,14.3393443571,14.3427980384,14.3462517197,14.349705401,14.3531590823,14.3566127637,14.360066445,14.3635201263,14.3669738076,14.3704274889,14.3738811702,14.3773348515,14.3807885328,14.3842422141,14.3876958955,14.3911495768,14.3946032581,14.3980569394,14.4015106207,14.404964302,14.4084179833,14.4118716646,14.415325346,14.4187790273,14.4222327086,14.4256863899,14.4291400712,14.4325937525,14.4360474338,14.4395011151,14.4429547964,14.4464084778,14.4498621591,14.4533158404,14.4567695217,14.460223203,14.4636768843,14.4671305656,14.4705842469,14.4740379283,14.4774916096,14.4809452909,14.4843989722,14.4878526535,14.4913063348,14.4947600161,14.4982136974,14.5016673787,14.5051210601,14.5085747414,14.5120284227,14.515482104,14.5189357853,14.5223894666,14.5258431479,14.5292968292,14.5327505106,14.5362041919,14.5396578732,14.5431115545,14.5465652358,14.5500189171,14.5534725984,14.5569262797,14.560379961,14.5638336424,14.5672873237,14.570741005,14.5741946863,14.5776483676,14.5811020489,14.5845557302,14.5880094115,14.5914630929,14.5949167742,14.5983704555,14.6018241368,14.6052778181,14.6087314994,14.6121851807,14.615638862,14.6190925433,14.6225462247,14.625999906,14.6294535873,14.6329072686,14.6363609499,14.6398146312,14.6432683125,14.6467219938,14.6501756752,14.6536293565,14.6570830378,14.6605367191,14.6639904004,14.6674440817,14.670897763,14.6743514443,14.6778051256,14.681258807,14.6847124883,14.6881661696,14.6916198509,14.6950735322,14.6985272135,14.7019808948,14.7054345761,14.7088882575,14.7123419388,14.7157956201,14.7192493014,14.7227029827,14.726156664,14.7296103453,14.7330640266,14.7365177079,14.7399713893,14.7434250706,14.7468787519,14.7503324332,14.7537861145,14.7572397958,14.7606934771,14.7641471584,14.7676008398,14.7710545211,14.7745082024,14.7779618837,14.781415565,14.7848692463,14.7883229276,14.7917766089,14.7952302902,14.7986839716,14.8021376529,14.8055913342,14.8090450155,14.8124986968,14.8159523781,14.8194060594,14.8228597407,14.8263134221,14.8297671034,14.8332207847,14.836674466,14.8401281473,14.8435818286,14.8470355099,14.8504891912,14.8539428725,14.8573965539,14.8608502352,14.8643039165,14.8677575978,14.8712112791,14.8746649604,14.8781186417,14.881572323,14.8850260044,14.8884796857,14.891933367,14.8953870483,14.8988407296,14.9022944109,14.9057480922,14.9092017735,14.9126554548,14.9161091362,14.9195628175,14.9230164988,14.9264701801,14.9299238614,14.9333775427,14.936831224,14.9402849053,14.9437385867,14.947192268,14.9506459493,14.9540996306,14.9575533119,14.9610069932,14.9644606745,14.9679143558,14.9713680371,14.9748217185,14.9782753998,14.9817290811,14.9851827624,14.9886364437,14.992090125,14.9955438063,14.9989974876,15.0024511689,15.0059048503,15.0093585316,15.0128122129,15.0162658942,15.0197195755,15.0231732568,15.0266269381,15.0300806194,15.0335343008,15.0369879821,15.0404416634,15.0438953447,15.047349026,15.0508027073,15.0542563886,15.0577100699,15.0611637512,15.0646174326,15.0680711139,15.0715247952,15.0749784765,15.0784321578,15.0818858391,15.0853395204,15.0887932017,15.0922468831,15.0957005644,15.0991542457,15.102607927,15.1060616083,15.1095152896,15.1129689709,15.1164226522,15.1198763335,15.1233300149,15.1267836962,15.1302373775,15.1336910588,15.1371447401,15.1405984214,15.1440521027,15.147505784,15.1509594654,15.1544131467,15.157866828,15.1613205093,15.1647741906,15.1682278719,15.1716815532,15.1751352345,15.1785889158,15.1820425972,15.1854962785,15.1889499598,15.1924036411,15.1958573224,15.1993110037,15.202764685,15.2062183663,15.2096720477,15.213125729,15.2165794103,15.2200330916,15.2234867729,15.2269404542,15.2303941355,15.2338478168,15.2373014981,15.2407551795,15.2442088608,15.2476625421,15.2511162234,15.2545699047,15.258023586,15.2614772673,15.2649309486,15.26838463,15.2718383113,15.2752919926,15.2787456739,15.2821993552,15.2856530365,15.2891067178,15.2925603991,15.2960140804,15.2994677618,15.3029214431,15.3063751244,15.3098288057,15.313282487,15.3167361683,15.3201898496,15.3236435309,15.3270972123,15.3305508936,15.3340045749,15.3374582562,15.3409119375,15.3443656188,15.3478193001,15.3512729814,15.3547266627,15.3581803441,15.3616340254,15.3650877067,15.368541388,15.3719950693,15.3754487506,15.3789024319,15.3823561132,15.3858097946,15.3892634759,15.3927171572,15.3961708385,15.3996245198,15.4030782011,15.4065318824,15.4099855637,15.413439245,15.4168929264,15.4203466077,15.4227689171,15.4251912265,15.4276135359,15.4300358453,15.4324581547,15.4348804641,15.4373027735,15.4397250829,15.4421473923,15.4445697017,15.4469920111,15.4494143205,15.4518366299,15.4542589393,15.4566812487,15.4591035581,15.4615258675,15.4639481769,15.4663704863,15.4687927957,15.4712151051,15.4736374145,15.4760597239,15.4784820333,15.4809043427,15.4833266521,15.4857489615,15.4881712709,15.4905935803,15.4930158897,15.4954381991,15.4978605085,15.500282818,15.5027051274,15.5051274368,15.5075497462,15.5099720556,15.512394365,15.5148166744,15.5172389838,15.5196612932,15.5220836026,15.524505912,15.5269282214,15.5293505308,15.5317728402,15.5341951496,15.536617459,15.5390397684,15.5414620778,15.5438843872,15.5463066966,15.548729006,15.5511513154,15.5535736248,15.5559959342,15.5584182436,15.560840553,15.5632628624,15.5656851718,15.5681074812,15.5705297906,15.5729521,15.5753744094,15.5777967188,15.5802190282,15.5826413376,15.585063647,15.5874859564,15.5899082658,15.5923305752,15.5947528846,15.5971751941,15.5995975035,15.6020198129,15.6044421223,15.6068644317,15.6092867411,15.6117090505,15.6141313599,15.6165536693,15.6189759787,15.6213982881,15.6238205975,15.6262429069,15.6286652163,15.6310875257,15.6335098351,15.6359321445,15.6383544539,15.6407767633,15.6431990727,15.6456213821,15.6480436915,15.6504660009,15.6528883103,15.6553106197,15.6577329291,15.6601552385,15.6625775479,15.6649998573,15.6674221667,15.6698444761,15.6722667855,15.6746890949,15.6771114043,15.6795337137,15.6819560231,15.6843783325,15.6868006419,15.6892229513,15.6916452607,15.6940675702,15.6964898796,15.698912189,15.7013344984,15.7037568078,15.7061791172,15.7086014266,15.711023736,15.7134460454,15.7158683548,15.7182906642,15.7207129736,15.723135283,15.7255575924,15.7279799018,15.7304022112,15.7328245206,15.73524683,15.7376691394,15.7400914488,15.7425137582,15.7449360676,15.747358377,15.7497806864,15.7522029958,15.7546253052,15.7570476146,15.759469924,15.7618922334,15.7643145428,15.7667368522,15.7691591616,15.771581471,15.7740037804,15.7764260898,15.7788483992,15.7812707086,15.783693018,15.7861153274,15.7885376368,15.7909599463,15.7933822557,15.7958045651,15.7982268745,15.8006491839,15.8030714933,15.8054938027,15.8079161121,15.8103384215,15.8127607309,15.8151830403,15.8176053497,15.8200276591,15.8224499685,15.8248722779,15.8272945873,15.8297168967,15.8321392061,15.8345615155,15.8369838249,15.8394061343,15.8418284437,15.8442507531,15.8466730625,15.8490953719,15.8515176813,15.8539399907,15.8563623001,15.8587846095,15.8612069189,15.8636292283,15.8660515377,15.8684738471,15.8708961565,15.8733184659,15.8757407753,15.8781630847,15.8805853941,15.8830077035,15.8854300129,15.8878523224,15.8902746318,15.8926969412,15.8951192506,15.89754156,15.8999638694,15.9023861788,15.9048084882,15.9072307976,15.909653107,15.9120754164,15.9144977258,15.9169200352,15.9193423446,15.921764654,15.9241869634,15.9266092728,15.9290315822,15.9314538916,15.933876201,15.9362985104,15.9387208198,15.9411431292,15.9435654386,15.945987748,15.9484100574,15.9508323668,15.9532546762,15.9556769856,15.958099295,15.9605216044,15.9629439138,15.9653662232,15.9677885326,15.970210842,15.9726331514,15.9750554608,15.9774777702,15.9799000796,15.982322389,15.9847446984,15.9871670079,15.9895893173,15.9920116267,15.9944339361,15.9968562455,15.9992785549,16.0017008643,16.0041231737,16.0065454831,16.0089677925,16.0113901019,16.0138124113,16.0162347207,16.0186570301,16.0210793395,16.0235016489,16.0259239583,16.0283462677,16.0307685771,16.0331908865,16.0356131959,16.0380355053,16.0404578147,16.0428801241,16.0453024335,16.0477247429,16.0501470523,16.0525693617,16.0549916711,16.0574139805,16.0598362899,16.0622585993,16.0646809087,16.0671032181,16.0695255275,16.0719478369,16.0743701463,16.0767924557,16.0792147651,16.0816370745,16.084059384,16.0864816934,16.0889040028,16.0913263122,16.0937486216,16.096170931,16.0985932404,16.1010155498,16.1034378592,16.1058601686,16.108282478,16.1107047874,16.1131270968,16.1155494062,16.1179717156,16.120394025,16.1228163344,16.1252386438,16.1276609532,16.1300832626,16.132505572,16.1349278814,16.1373501908,16.1397725002,16.1421948096,16.144617119,16.1470394284,16.1494617378,16.1518840472,16.1543063566,16.156728666,16.1591509754,16.1615732848,16.1639955942,16.1664179036,16.168840213,16.1712625224,16.1736848318,16.1761071412,16.1785294506,16.1809517601,16.1833740695,16.1857963789,16.1882186883,16.1906409977,16.1930633071,16.1954856165,16.1979079259,16.2003302353,16.2027525447,16.2051748541,16.2075971635,16.2100194729,16.2124417823,16.2148640917,16.2172864011,16.2197087105,16.2221310199,16.2245533293,16.2269756387,16.2293979481,16.2318202575,16.2342425669,16.2366648763,16.2390871857,16.2415094951,16.2439318045,16.2463541139,16.2487764233,16.2511987327,16.2536210421,16.2560433515,16.2584656609,16.2608879703,16.2633102797,16.2657325891,16.2681548985,16.2705772079,16.2729995173,16.2754218267,16.2778441362,16.2802664456,16.282688755,16.2851110644,16.2875333738,16.2899556832,16.2923779926,16.294800302,16.2972226114,16.2996449208,16.3020672302,16.3044895396,16.306911849,16.3093341584,16.3117564678,16.3141787772,16.3166010866,16.319023396,16.3214457054,16.3238680148,16.3262903242,16.3287126336,16.331134943,16.3335572524,16.3359795618,16.3384018712,16.3408241806,16.34324649,16.3456687994,16.3480911088,16.3505134182,16.3529357276,16.355358037,16.3577803464,16.3602026558,16.3626249652,16.3650472746,16.367469584,16.3698918934,16.3723142028,16.3747365123,16.3771588217,16.3795811311,16.3820034405,16.3844257499,16.3868480593,16.3892703687,16.3916926781,16.3941149875,16.3965372969,16.3989596063,16.4013819157,16.4038042251,16.4062265345,16.4086488439,16.4110711533,16.4134934627,16.4159157721,16.4183380815,16.4207603909,16.4231827003,16.4256050097,16.4280273191,16.4304496285,16.4328719379,16.4352942473,16.4377165567,16.4401388661,16.4425611755,16.4449834849,16.4474057943,16.4498281037,16.4522504131,16.4546727225,16.4570950319,16.4595173413,16.4619396507,16.4643619601,16.4667842695,16.4692065789,16.4716288884,16.4740511978,16.4764735072,16.4788958166,16.481318126,16.4837404354,16.4861627448,16.4885850542,16.4910073636,16.493429673,16.4958519824,16.4982742918,16.5006966012,16.5031189106,16.50554122,16.5079635294,16.5103858388,16.5128081482,16.5152304576,16.517652767,16.5200750764,16.5224973858,16.5249196952,16.5273420046,16.529764314,16.5321866234,16.5346089328,16.5370312422,16.5394535516,16.541875861,16.5442981704,16.5467204798,16.5491427892,16.5515650986,16.553987408,16.5564097174,16.5588320268,16.5612543362,16.5636766456,16.566098955,16.5685212644,16.5709435739,16.5733658833,16.5757881927,16.5782105021,16.5806328115,16.5830551209,16.5854774303,16.5878997397,16.5903220491,16.5927443585,16.5951666679,16.5975889773,16.6000112867,16.6024335961,16.6048559055,16.6072782149,16.6097005243,16.6121228337,16.6145451431,16.6169674525,16.6193897619,16.6218120713,16.6242343807,16.6266566901,16.6290789995,16.6315013089,16.6339236183,16.6363459277,16.6387682371,16.6411905465,16.6436128559,16.6460351653,16.6484574747,16.6508797841,16.6533020935,16.6557244029,16.6581467123,16.6605690217,16.6629913311,16.6654136405,16.66783595,16.6702582594,16.6726805688,16.6751028782,16.6775251876,16.679947497,16.6823698064,16.6847921158,16.6872144252,16.6896367346,16.692059044,16.6944813534,16.6969036628,16.6993259722,16.7017482816,16.704170591,16.7065929004,16.7090152098,16.7114375192,16.7138598286,16.716282138,16.7187044474,16.7211267568,16.7235490662,16.7259713756,16.728393685,16.7308159944,16.7332383038,16.7356606132,16.7380829226,16.740505232,16.7429275414,16.7453498508,16.7477721602,16.7501944696,16.752616779,16.7550390884,16.7574613978,16.7598837072,16.7623060166,16.7647283261,16.7671506355,16.7695729449,16.7719952543,16.7744175637,16.7768398731,16.7792621825,16.7816844919,16.7841068013,16.7865291107,16.7889514201,16.7913737295,16.7937960389,16.7962183483,16.7986406577,16.8010629671,16.8034852765,16.8059075859,16.8083298953,16.8107522047,16.8131745141,16.8155968235,16.8180191329,16.8204414423,16.8228637517,16.8252860611,16.8277083705,16.8301306799,16.8325529893,16.8349752987,16.8373976081,16.8398199175,16.8422422269,16.8446645363,16.8470868457,16.8495091551,16.8519314645,16.8543537739,16.8567760833,16.8591983927,16.8616207022,16.8640430116,16.866465321,16.8688876304,16.8713099398,16.8737322492,16.8761545586,16.878576868,16.8809991774,16.8834214868,16.8842929516,16.8851644165,16.8860358813,16.8869073462,16.8877788111,16.8886502759,16.8895217408,16.8903932056,16.8912646705,16.8921361353,16.8930076002,16.893879065,16.8947505299,16.8956219948,16.8964934596,16.8973649245,16.8982363893,16.8991078542,16.899979319,16.9008507839,16.9017222488,16.9025937136,16.9034651785,16.9043366433,16.9052081082,16.906079573,16.9069510379,16.9078225028,16.9086939676,16.9095654325,16.9104368973,16.9113083622,16.912179827,16.9130512919,16.9139227567,16.9147942216,16.9156656865,16.9165371513,16.9174086162,16.918280081,16.9191515459,16.9200230107,16.9208944756,16.9217659405,16.9226374053,16.9235088702,16.924380335,16.9252517999,16.9261232647,16.9269947296,16.9278661944,16.9287376593,16.9296091242,16.930480589,16.9313520539,16.9322235187,16.9330949836,16.9339664484,16.9348379133,16.9357093782,16.936580843,16.9374523079,16.9383237727,16.9391952376,16.9400667024,16.9409381673,16.9418096321,16.942681097,16.9435525619,16.9444240267,16.9452954916,16.9461669564,16.9470384213,16.9479098861,16.948781351,16.9496528159,16.9505242807,16.9513957456,16.9522672104,16.9531386753,16.9540101401,16.954881605,16.9557530698,16.9566245347,16.9574959996,16.9583674644,16.9592389293,16.9601103941,16.960981859,16.9618533238,16.9627247887,16.9635962536,16.9644677184,16.9653391833,16.9662106481,16.967082113,16.9679535778,16.9688250427,16.9696965076,16.9705679724,16.9714394373,16.9723109021,16.973182367,16.9740538318,16.9749252967,16.9757967615,16.9766682264,16.9775396913,16.9784111561,16.979282621,16.9801540858,16.9810255507,16.9818970155,16.9827684804,16.9836399453,16.9845114101,16.985382875,16.9862543398,16.9871258047,16.9879972695,16.9888687344,16.9897401992,16.9906116641,16.991483129,16.9923545938,16.9932260587,16.9940975235,16.9949689884,16.9958404532,16.9967119181,16.997583383,16.9984548478,16.9993263127,17.0001977775,17.0010692424,17.0019407072,17.0028121721,17.0036836369,17.0045551018,17.0054265667,17.0062980315,17.0071694964,17.0080409612,17.0089124261,17.0097838909,17.0106553558,17.0115268207,17.0123982855,17.0132697504,17.0141412152,17.0150126801,17.0158841449,17.0167556098,17.0176270746,17.0184985395,17.0193700044,17.0202414692,17.0211129341,17.0219843989,17.0228558638,17.0237273286,17.0245987935,17.0254702584,17.0263417232,17.0272131881,17.0280846529,17.0289561178,17.0298275826,17.0306990475,17.0315705123,17.0324419772,17.0333134421,17.0341849069,17.0350563718,17.0359278366,17.0367993015,17.0376707663,17.0385422312,17.0394136961,17.0402851609,17.0411566258,17.0420280906,17.0428995555,17.0437710203,17.0446424852,17.0455139501,17.0463854149,17.0472568798,17.0481283446,17.0489998095,17.0498712743,17.0507427392,17.051614204,17.0524856689,17.0533571338,17.0542285986,17.0551000635,17.0559715283,17.0568429932,17.057714458,17.0585859229,17.0594573878,17.0603288526,17.0612003175,17.0620717823,17.0629432472,17.063814712,17.0646861769,17.0655576417,17.0664291066,17.0673005715,17.0681720363,17.0690435012,17.069914966,17.0707864309,17.0716578957,17.0725293606,17.0734008255,17.0742722903,17.0751437552,17.07601522,17.0768866849,17.0777581497,17.0786296146,17.0795010794,17.0803725443,17.0812440092,17.082115474,17.0829869389,17.0838584037,17.0847298686,17.0856013334,17.0864727983,17.0873442632,17.088215728,17.0890871929,17.0899586577,17.0908301226,17.0917015874,17.0925730523,17.0934445171,17.094315982,17.0951874469,17.0960589117,17.0969303766,17.0978018414,17.0986733063,17.0995447711,17.100416236,17.1012877009,17.1021591657,17.1030306306,17.1039020954,17.1047735603,17.1056450251,17.10651649,17.1073879549,17.1082594197,17.1091308846,17.1100023494,17.1108738143,17.1117452791,17.112616744,17.1134882088,17.1143596737,17.1152311386,17.1161026034,17.1169740683,17.1178455331,17.118716998,17.1195884628,17.1204599277,17.1213313926,17.1222028574,17.1230743223,17.1239457871,17.124817252,17.1256887168,17.1265601817,17.1274316465,17.1283031114,17.1291745763,17.1300460411,17.130917506,17.1317889708,17.1326604357,17.1335319005,17.1344033654,17.1352748303,17.1361462951,17.13701776,17.1378892248,17.1387606897,17.1396321545,17.1405036194,17.1413750842,17.1422465491,17.143118014,17.1439894788,17.1448609437,17.1457324085,17.1466038734,17.1474753382,17.1483468031,17.149218268,17.1500897328,17.1509611977,17.1518326625,17.1527041274,17.1535755922,17.1544470571,17.1553185219,17.1561899868,17.1570614517,17.1579329165,17.1588043814,17.1596758462,17.1605473111,17.1614187759,17.1622902408,17.1631617057,17.1640331705,17.1649046354,17.1657761002,17.1666475651,17.1675190299,17.1683904948,17.1692619597,17.1701334245,17.1710048894,17.1718763542,17.1727478191,17.1736192839,17.1744907488,17.1753622136,17.1762336785,17.1771051434,17.1779766082,17.1788480731,17.1797195379,17.1805910028,17.1814624676,17.1823339325,17.1832053974,17.1840768622,17.1849483271,17.1858197919,17.1866912568,17.1875627216,17.1884341865,17.1893056513,17.1901771162,17.1910485811,17.1919200459,17.1927915108,17.1936629756,17.1945344405,17.1954059053,17.1962773702,17.1971488351,17.1980202999,17.1988917648,17.1997632296,17.2006346945,17.2015061593,17.2023776242,17.203249089,17.2041205539,17.2049920188,17.2058634836,17.2067349485,17.2076064133,17.2084778782,17.209349343,17.2102208079,17.2110922728,17.2119637376,17.2128352025,17.2137066673,17.2145781322,17.215449597,17.2163210619,17.2171925267,17.2180639916,17.2189354565,17.2198069213,17.2206783862,17.221549851,17.2224213159,17.2232927807,17.2241642456,17.2250357105,17.2259071753,17.2267786402,17.227650105,17.2285215699,17.2293930347,17.2302644996,17.2311359645,17.2320074293,17.2328788942,17.233750359,17.2346218239,17.2354932887,17.2363647536,17.2372362184,17.2381076833,17.2389791482,17.239850613,17.2407220779,17.2415935427,17.2424650076,17.2433364724,17.2442079373,17.2450794022,17.245950867,17.2468223319,17.2476937967,17.2485652616,17.2494367264,17.2503081913,17.2511796561,17.252051121,17.2529225859,17.2537940507,17.2546655156,17.2555369804,17.2564084453,17.2572799101,17.258151375,17.2590228399,17.2598943047,17.2607657696,17.2616372344,17.2625086993,17.2633801641,17.264251629,17.2651230938,17.2659945587,17.2668660236,17.2677374884,17.2686089533,17.2694804181,17.270351883,17.2712233478,17.2720948127,17.2729662776,17.2738377424,17.2747092073,17.2755806721,17.276452137,17.2773236018,17.2781950667,17.2790665315,17.2799379964,17.2808094613,17.2816809261,17.282552391,17.2834238558,17.2842953207,17.2851667855,17.2860382504,17.2869097153,17.2877811801,17.288652645,17.2895241098,17.2903955747,17.2912670395,17.2921385044,17.2930099692,17.2938814341,17.294752899,17.2956243638,17.2964958287,17.2973672935,17.2982387584,17.2991102232,17.2999816881,17.300853153,17.3017246178,17.3025960827,17.3034675475,17.3043390124,17.3052104772,17.3060819421,17.306953407,17.3078248718,17.3086963367,17.3095678015,17.3104392664,17.3113107312,17.3121821961,17.3130536609,17.3139251258,17.3147965907,17.3156680555,17.3165395204,17.3174109852,17.3182824501,17.3191539149,17.3200253798,17.3208968447,17.3217683095,17.3226397744,17.3235112392,17.3243827041,17.3252541689,17.3261256338,17.3269970986,17.3278685635,17.3287400284,17.3296114932,17.3304829581,17.3313544229,17.3322258878,17.3330973526,17.3339688175,17.3348402824,17.3357117472,17.3365832121,17.3374546769,17.3383261418,17.3391976066,17.3400690715,17.3409405363,17.3418120012,17.3426834661,17.3435549309,17.3444263958,17.3452978606,17.3461693255,17.3470407903,17.3479122552,17.3487837201,17.3496551849,17.3505266498,17.3513981146,17.3522695795,17.3531410443,17.3540125092,17.354883974,17.3557554389,17.3566269038,17.3574983686,17.3583698335,17.3592412983,17.3601127632,17.360984228,17.3618556929,17.3627271578,17.3635986226,17.3644700875,17.3653415523,17.3662130172,17.367084482,17.3679559469,17.3688274118,17.3696988766,17.3705703415,17.3714418063,17.3723132712,17.373184736,17.3740562009,17.3749276657,17.3757991306,17.3766705955,17.3775420603,17.3784135252,17.37928499,17.3801564549,17.3810279197,17.3818993846,17.3827708495,17.3836423143,17.3845137792,17.385385244,17.3862567089,17.3871281737,17.3879996386,17.3888711034,17.3897425683,17.3906140332,17.391485498,17.3923569629,17.3932284277,17.3940998926,17.3949713574,17.3958428223,17.3967142872,17.397585752,17.3984572169,17.3993286817,17.4002001466,17.4010716114,17.4019430763,17.4028145411,17.403686006,17.4045574709,17.4054289357,17.4063004006,17.4071718654,17.4080433303,17.4089147951,17.40978626,17.4091779447,17.4085696295,17.4079613142,17.4073529989,17.4067446837,17.4061363684,17.4055280531,17.4049197379,17.4043114226,17.4037031073,17.403094792,17.4024864768,17.4018781615,17.4012698462,17.400661531,17.4000532157,17.3994449004,17.3988365852,17.3982282699,17.3976199546,17.3970116394,17.3964033241,17.3957950088,17.3951866936,17.3945783783,17.393970063,17.3933617478,17.3927534325,17.3921451172,17.391536802,17.3909284867,17.3903201714,17.3897118561,17.3891035409,17.3884952256,17.3878869103,17.3872785951,17.3866702798,17.3860619645,17.3854536493,17.384845334,17.3842370187,17.3836287035,17.3830203882,17.3824120729,17.3818037577,17.3811954424,17.3805871271,17.3799788119,17.3793704966,17.3787621813,17.378153866,17.3775455508,17.3769372355,17.3763289202,17.375720605,17.3751122897,17.3745039744,17.3738956592,17.3732873439,17.3726790286,17.3720707134,17.3714623981,17.3708540828,17.3702457676,17.3696374523,17.369029137,17.3684208218,17.3678125065,17.3672041912,17.366595876,17.3659875607,17.3653792454,17.3647709301,17.3641626149,17.3635542996,17.3629459843,17.3623376691,17.3617293538,17.3611210385,17.3605127233,17.359904408,17.3592960927,17.3586877775,17.3580794622,17.3574711469,17.3568628317,17.3562545164,17.3556462011,17.3550378859,17.3544295706,17.3538212553,17.3532129401,17.3526046248,17.3519963095,17.3513879942,17.350779679,17.3501713637,17.3495630484,17.3489547332,17.3483464179,17.3477381026,17.3471297874,17.3465214721,17.3459131568,17.3453048416,17.3446965263,17.344088211,17.3434798958,17.3428715805,17.3422632652,17.34165495,17.3410466347,17.3404383194,17.3398300041,17.3392216889,17.3386133736,17.3380050583,17.3373967431,17.3367884278,17.3361801125,17.3355717973,17.334963482,17.3343551667,17.3337468515,17.3331385362,17.3325302209,17.3319219057,17.3313135904,17.3307052751,17.3300969599,17.3294886446,17.3288803293,17.3282720141,17.3276636988,17.3270553835,17.3264470682,17.325838753,17.3252304377,17.3246221224,17.3240138072,17.3234054919,17.3227971766,17.3221888614,17.3215805461,17.3209722308,17.3203639156,17.3197556003,17.319147285,17.3185389698,17.3179306545,17.3173223392,17.316714024,17.3161057087,17.3154973934,17.3148890782,17.3142807629,17.3136724476,17.3130641323,17.3124558171,17.3118475018,17.3112391865,17.3106308713,17.310022556,17.3094142407,17.3088059255,17.3081976102,17.3075892949,17.3069809797,17.3063726644,17.3057643491,17.3051560339,17.3045477186,17.3039394033,17.3033310881,17.3027227728,17.3021144575,17.3015061422,17.300897827,17.3002895117,17.2996811964,17.2990728812,17.2984645659,17.2978562506,17.2972479354,17.2966396201,17.2960313048,17.2954229896,17.2948146743,17.294206359,17.2935980438,17.2929897285,17.2923814132,17.291773098,17.2911647827,17.2905564674,17.2899481522,17.2893398369,17.2887315216,17.2881232063,17.2875148911,17.2869065758,17.2862982605,17.2856899453,17.28508163,17.2844733147,17.2838649995,17.2832566842,17.2826483689,17.2820400537,17.2814317384,17.2808234231,17.2802151079,17.2796067926,17.2789984773,17.2783901621,17.2777818468,17.2771735315,17.2765652163,17.275956901,17.2753485857,17.2747402704,17.2741319552,17.2735236399,17.2729153246,17.2723070094,17.2716986941,17.2710903788,17.2704820636,17.2698737483,17.269265433,17.2686571178,17.2680488025,17.2674404872,17.266832172,17.2662238567,17.2656155414,17.2650072262,17.2643989109,17.2637905956,17.2631822803,17.2625739651,17.2619656498,17.2613573345,17.2607490193,17.260140704,17.2595323887,17.2589240735,17.2583157582,17.2577074429,17.2570991277,17.2564908124,17.2558824971,17.2552741819,17.2546658666,17.2540575513,17.2534492361,17.2528409208,17.2522326055,17.2516242903,17.251015975,17.2504076597,17.2497993444,17.2491910292,17.2485827139,17.2479743986,17.2473660834,17.2467577681,17.2461494528,17.2455411376,17.2449328223,17.244324507,17.2437161918,17.2431078765,17.2424995612,17.241891246,17.2412829307,17.2406746154,17.2400663002,17.2394579849,17.2388496696,17.2382413544,17.2376330391,17.2370247238,17.2364164085,17.2358080933,17.235199778,17.2345914627,17.2339831475,17.2333748322,17.2327665169,17.2321582017,17.2315498864,17.2309415711,17.2303332559,17.2297249406,17.2291166253,17.2285083101,17.2278999948,17.2272916795,17.2266833643,17.226075049,17.2254667337,17.2248584184,17.2242501032,17.2236417879,17.2230334726,17.2224251574,17.2218168421,17.2212085268,17.2206002116,17.2199918963,17.219383581,17.2187752658,17.2181669505,17.2175586352,17.21695032,17.2163420047,17.2157336894,17.2151253742,17.2145170589,17.2139087436,17.2133004284,17.2126921131,17.2120837978,17.2114754825,17.2108671673,17.210258852,17.2096505367,17.2090422215,17.2084339062,17.2078255909,17.2072172757,17.2066089604,17.2060006451,17.2053923299,17.2047840146,17.2041756993,17.2035673841,17.2029590688,17.2023507535,17.2017424383,17.201134123,17.2005258077,17.1999174925,17.1993091772,17.1987008619,17.1980925466,17.1974842314,17.1968759161,17.1962676008,17.1956592856,17.1950509703,17.194442655,17.1938343398,17.1932260245,17.1926177092,17.192009394,17.1914010787,17.1907927634,17.1901844482,17.1895761329,17.1889678176,17.1883595024,17.1877511871,17.1871428718,17.1865345565,17.1859262413,17.185317926,17.1847096107,17.1841012955,17.1834929802,17.1828846649,17.1822763497,17.1816680344,17.1810597191,17.1804514039,17.1798430886,17.1792347733,17.1786264581,17.1780181428,17.1774098275,17.1768015123,17.176193197,17.1755848817,17.1749765665,17.1743682512,17.1737599359,17.1731516206,17.1725433054,17.1719349901,17.1713266748,17.1707183596,17.1701100443,17.169501729,17.1688934138,17.1682850985,17.1676767832,17.167068468,17.1664601527,17.1658518374,17.1652435222,17.1646352069,17.1640268916,17.1634185764,17.1628102611,17.1622019458,17.1615936306,17.1609853153,17.160377,17.1597686847,17.1591603695,17.1585520542,17.1579437389,17.1573354237,17.1567271084,17.1561187931,17.1555104779,17.1549021626,17.1542938473,17.1536855321,17.1530772168,17.1524689015,17.1518605863,17.151252271,17.1506439557,17.1500356405,17.1494273252,17.1488190099,17.1482106946,17.1476023794,17.1469940641,17.1463857488,17.1457774336,17.1451691183,17.144560803,17.1439524878,17.1433441725,17.1427358572,17.142127542,17.1415192267,17.1409109114,17.1403025962,17.1396942809,17.1390859656,17.1384776504,17.1378693351,17.1372610198,17.1366527046,17.1360443893,17.135436074,17.1348277587,17.1342194435,17.1336111282,17.1330028129,17.1323944977,17.1317861824,17.1311778671,17.1305695519,17.1299612366,17.1293529213,17.1287446061,17.1281362908,17.1275279755,17.1269196603,17.126311345,17.1257030297,17.1250947145,17.1244863992,17.1238780839,17.1232697687,17.1226614534,17.1220531381,17.1214448228,17.1208365076,17.1202281923,17.119619877,17.1190115618,17.1184032465,17.1177949312,17.117186616,17.1165783007,17.1159699854,17.1153616702,17.1147533549,17.1141450396,17.1135367244,17.1129284091,17.1123200938,17.1117117786,17.1111034633,17.110495148,17.1098868327,17.1092785175,17.1086702022,17.1080618869,17.1074535717,17.1068452564,17.1062369411,17.1056286259,17.1050203106,17.1044119953,17.1038036801,17.1031953648,17.1025870495,17.1019787343,17.101370419,17.1007621037,17.1001537885,17.0995454732,17.0989371579,17.0983288427,17.0977205274,17.0971122121,17.0965038968,17.0958955816,17.0952872663,17.094678951,17.0940706358,17.0934623205,17.0928540052,17.09224569,17.0916373747,17.0910290594,17.0904207442,17.0898124289,17.0892041136,17.0885957984,17.0879874831,17.0873791678,17.0867708526,17.0861625373,17.085554222,17.0849459068,17.0843375915,17.0837292762,17.0831209609,17.0825126457,17.0819043304,17.0812960151,17.0806876999,17.0800793846,17.0794710693,17.0788627541,17.0782544388,17.0776461235,17.0770378083,17.076429493,17.0758211777,17.0752128625,17.0746045472,17.0739962319,17.0733879167,17.0727796014,17.0721712861,17.0715629708,17.0709546556,17.0703463403,17.069738025,17.0691297098,17.0685213945,17.0679130792,17.067304764,17.0666964487,17.0660881334,17.0654798182,17.0648715029,17.0642631876,17.0636548724,17.0630465571,17.0624382418,17.0618299266,17.0612216113,17.060613296,17.0600049808,17.0593966655,17.0587883502,17.0581800349,17.0575717197,17.0569634044,17.0563550891,17.0557467739,17.0551384586,17.0545301433,17.0539218281,17.0533135128,17.0527051975,17.0520968823,17.051488567,17.0508802517,17.0502719365,17.0496636212,17.0490553059,17.0484469907,17.0478386754,17.0472303601,17.0466220449,17.0460137296,17.0454054143,17.044797099,17.0441887838,17.0435804685,17.0429721532,17.042363838,17.0406760358,17.0389882336,17.0373004313,17.0356126291,17.0339248269,17.0322370247,17.0305492225,17.0288614203,17.0271736181,17.0254858159,17.0237980137,17.0221102115,17.0204224093,17.0187346071,17.0170468049,17.0153590026,17.0136712004,17.0119833982,17.010295596,17.0086077938,17.0069199916,17.0052321894,17.0035443872,17.001856585,17.0001687828,16.9984809806,16.9967931784,16.9951053761,16.9934175739,16.9917297717,16.9900419695,16.9883541673,16.9866663651,16.9849785629,16.9832907607,16.9816029585,16.9799151563,16.9782273541,16.9765395519,16.9748517497,16.9731639474,16.9714761452,16.969788343,16.9681005408,16.9664127386,16.9647249364,16.9630371342,16.961349332,16.9596615298,16.9579737276,16.9562859254,16.9545981232,16.9529103209,16.9512225187,16.9495347165,16.9478469143,16.9461591121,16.9444713099,16.9427835077,16.9410957055,16.9394079033,16.9377201011,16.9360322989,16.9343444967,16.9326566945,16.9309688922,16.92928109,16.9275932878,16.9259054856,16.9242176834,16.9225298812,16.920842079,16.9191542768,16.9174664746,16.9157786724,16.9140908702,16.912403068,16.9107152657,16.9090274635,16.9073396613,16.9056518591,16.9039640569,16.9022762547,16.9005884525,16.8989006503,16.8972128481,16.8955250459,16.8938372437,16.8921494415,16.8904616393,16.888773837,16.8870860348,16.8853982326,16.8837104304,16.8820226282,16.880334826,16.8786470238,16.8769592216,16.8752714194,16.8735836172,16.871895815,16.8702080128,16.8685202105,16.8668324083,16.8651446061,16.8634568039,16.8617690017,16.8600811995,16.8583933973,16.8567055951,16.8550177929,16.8533299907,16.8516421885,16.8499543863,16.8482665841,16.8465787818,16.8448909796,16.8432031774,16.8415153752,16.839827573,16.8381397708,16.8364519686,16.8347641664,16.8330763642,16.831388562,16.8297007598,16.8280129576,16.8263251553,16.8246373531,16.8229495509,16.8212617487,16.8195739465,16.8178861443,16.8161983421,16.8145105399,16.8128227377,16.8111349355,16.8094471333,16.8077593311,16.8060715289,16.8043837266,16.8026959244,16.8010081222,16.79932032,16.7976325178,16.7959447156,16.7942569134,16.7925691112,16.790881309,16.7891935068,16.7875057046,16.7858179024,16.7841301001,16.7824422979,16.7807544957,16.7790666935,16.7773788913,16.7756910891,16.7740032869,16.7723154847,16.7706276825,16.7689398803,16.7672520781,16.7655642759,16.7638764737,16.7621886714,16.7605008692,16.758813067,16.7571252648,16.7554374626,16.7537496604,16.7520618582,16.750374056,16.7486862538,16.7469984516,16.7453106494,16.7436228472,16.7419350449,16.7402472427,16.7385594405,16.7368716383,16.7351838361,16.7334960339,16.7318082317,16.7301204295,16.7284326273,16.7267448251,16.7250570229,16.7233692207,16.7216814185,16.7199936162,16.718305814,16.7166180118,16.7149302096,16.7132424074,16.7115546052,16.709866803,16.7081790008,16.7064911986,16.7048033964,16.7031155942,16.701427792,16.6997399897,16.6980521875,16.6963643853,16.6946765831,16.6929887809,16.6913009787,16.6896131765,16.6879253743,16.6862375721,16.6845497699,16.6828619677,16.6811741655,16.6794863633,16.677798561,16.6761107588,16.6744229566,16.6727351544,16.6710473522,16.66935955,16.6676717478,16.6659839456,16.6642961434,16.6626083412,16.660920539,16.6592327368,16.6575449345,16.6558571323,16.6541693301,16.6524815279,16.6507937257,16.6491059235,16.6474181213,16.6457303191,16.6440425169,16.6423547147,16.6406669125,16.6389791103,16.6372913081,16.6356035058,16.6339157036,16.6322279014,16.6305400992,16.628852297,16.6271644948,16.6254766926,16.6237888904,16.6221010882,16.620413286,16.6187254838,16.6170376816,16.6153498793,16.6136620771,16.6119742749,16.6102864727,16.6085986705,16.6069108683,16.6052230661,16.6035352639,16.6018474617,16.6001596595,16.5984718573,16.5967840551,16.5950962529,16.5934084506,16.5917206484,16.5900328462,16.588345044,16.5866572418,16.5849694396,16.5832816374,16.5815938352,16.579906033,16.5782182308,16.5765304286,16.5748426264,16.5731548241,16.5714670219,16.5697792197,16.5680914175,16.5664036153,16.5647158131,16.5630280109,16.5613402087,16.5596524065,16.5579646043,16.5562768021,16.5545889999,16.5529011976,16.5512133954,16.5495255932,16.547837791,16.5461499888,16.5444621866,16.5427743844,16.5410865822,16.53939878,16.5377109778,16.5360231756,16.5343353734,16.5326475712,16.5309597689,16.5292719667,16.5275841645,16.5258963623,16.5242085601,16.5225207579,16.5208329557,16.5191451535,16.5174573513,16.5157695491,16.5140817469,16.5123939447,16.5107061424,16.5090183402,16.507330538,16.5056427358,16.5039549336,16.5022671314,16.5005793292,16.498891527,16.4972037248,16.4955159226,16.4938281204,16.4921403182,16.490452516,16.4887647137,16.4870769115,16.4853891093,16.4837013071,16.4820135049,16.4803257027,16.4786379005,16.4769500983,16.4752622961,16.4735744939,16.4718866917,16.4701988895,16.4685110872,16.466823285,16.4651354828,16.4634476806,16.4617598784,16.4600720762,16.458384274,16.4566964718,16.4550086696,16.4533208674,16.4516330652,16.449945263,16.4482574608,16.4465696585,16.4448818563,16.4431940541,16.4415062519,16.4398184497,16.4381306475,16.4364428453,16.4347550431,16.4330672409,16.4313794387,16.4296916365,16.4280038343,16.426316032,16.4246282298,16.4229404276,16.4212526254,16.4195648232,16.417877021,16.4161892188,16.4145014166,16.4128136144,16.4111258122,16.40943801,16.4077502078,16.4060624056,16.4043746033,16.4026868011,16.4009989989,16.3993111967,16.3976233945,16.3959355923,16.3942477901,16.3925599879,16.3908721857,16.3891843835,16.3874965813,16.3858087791,16.3841209768,16.3824331746,16.3807453724,16.3790575702,16.377369768,16.3756819658,16.3739941636,16.3723063614,16.3706185592,16.368930757,16.3672429548,16.3655551526,16.3638673504,16.3621795481,16.3604917459,16.3588039437,16.3571161415,16.3554283393,16.3537405371,16.3520527349,16.3503649327,16.3486771305,16.3469893283,16.3453015261,16.3436137239,16.3419259216,16.3402381194,16.3385503172,16.336862515,16.3351747128,16.3334869106,16.3317991084,16.3301113062,16.328423504,16.3267357018,16.3250478996,16.3233600974,16.3216722952,16.3199844929,16.3182966907,16.3166088885,16.3149210863,16.3132332841,16.3115454819,16.3098576797,16.3081698775,16.3064820753,16.3047942731,16.3031064709,16.3014186687,16.2997308664,16.2980430642,16.296355262,16.2946674598,16.2929796576,16.2912918554,16.2896040532,16.287916251,16.2862284488,16.2845406466,16.2828528444,16.2811650422,16.27947724,16.2777894377,16.2761016355,16.2744138333,16.2727260311,16.2710382289,16.2693504267,16.2676626245,16.2659748223,16.2642870201,16.2625992179,16.2609114157,16.2592236135,16.2575358112,16.255848009,16.2541602068,16.2524724046,16.2507846024,16.2490968002,16.247408998,16.2457211958,16.2440333936,16.2423455914,16.2406577892,16.238969987,16.2372821848,16.2355943825,16.2339065803,16.2322187781,16.2305309759,16.2288431737,16.2271553715,16.2254675693,16.2237797671,16.2220919649,16.2204041627,16.2187163605,16.2170285583,16.215340756,16.2136529538,16.2119651516,16.2102773494,16.2085895472,16.206901745,16.2052139428,16.2035261406,16.2018383384,16.2001505362,16.198462734,16.1967749318,16.1950871296,16.1933993273,16.1917115251,16.1900237229,16.1883359207,16.1866481185,16.1849603163,16.1832725141,16.1815847119,16.1798969097,16.1782091075,16.1765213053,16.1748335031,16.1731457008,16.1714578986,16.1697700964,16.1680822942,16.166394492,16.1647066898,16.1630188876,16.1613310854,16.1596432832,16.157955481,16.1562676788,16.1545798766,16.1528920744,16.1512042721,16.1495164699,16.1478286677,16.1461408655,16.1444530633,16.1427652611,16.1410774589,16.1393896567,16.1377018545,16.1360140523,16.1343262501,16.1326384479,16.1309506456,16.1292628434,16.1275750412,16.125887239,16.1241994368,16.1225116346,16.1208238324,16.1191360302,16.117448228,16.1157604258,16.1140726236,16.1123848214,16.1106970192,16.1090092169,16.1073214147,16.1056336125,16.1039458103,16.1022580081,16.1005702059,16.0988824037,16.0971946015,16.0955067993,16.0938189971,16.0921311949,16.0904433927,16.0887555904,16.0870677882,16.085379986,16.0836921838,16.0820043816,16.0803165794,16.0786287772,16.076940975,16.0752531728,16.0735653706,16.0718775684,16.0701897662,16.068501964,16.0668141617,16.0651263595,16.0634385573,16.0617507551,16.0600629529,16.0583751507,16.0566873485,16.0549995463,16.0533117441,16.0516239419,16.0499361397,16.0482483375,16.0465605352,16.044872733,16.0431849308,16.0414971286,16.0398093264,16.0381215242,16.036433722,16.0347459198,16.0330581176,16.0313703154,16.0296825132,16.027994711,16.0263069088,16.0246191065,16.0229313043,16.0203915172,16.0178517301,16.015311943,16.0127721559,16.0102323688,16.0076925817,16.0051527946,16.0026130075,16.0000732204,15.9975334333,15.9949936462,15.9924538591,15.989914072,15.9873742849,15.9848344977,15.9822947106,15.9797549235,15.9772151364,15.9746753493,15.9721355622,15.9695957751,15.967055988,15.9645162009,15.9619764138,15.9594366267,15.9568968396,15.9543570525,15.9518172654,15.9492774783,15.9467376912,15.944197904,15.9416581169,15.9391183298,15.9365785427,15.9340387556,15.9314989685,15.9289591814,15.9264193943,15.9238796072,15.9213398201,15.918800033,15.9162602459,15.9137204588,15.9111806717,15.9086408846,15.9061010975,15.9035613104,15.9010215232,15.8984817361,15.895941949,15.8934021619,15.8908623748,15.8883225877,15.8857828006,15.8832430135,15.8807032264,15.8781634393,15.8756236522,15.8730838651,15.870544078,15.8680042909,15.8654645038,15.8629247167,15.8603849296,15.8578451424,15.8553053553,15.8527655682,15.8502257811,15.847685994,15.8451462069,15.8426064198,15.8400666327,15.8375268456,15.8349870585,15.8324472714,15.8299074843,15.8273676972,15.8248279101,15.822288123,15.8197483359,15.8172085488,15.8146687616,15.8121289745,15.8095891874,15.8070494003,15.8045096132,15.8019698261,15.799430039,15.7968902519,15.7943504648,15.7918106777,15.7892708906,15.7867311035,15.7841913164,15.7816515293,15.7791117422,15.7765719551,15.774032168,15.7714923808,15.7689525937,15.7664128066,15.7638730195,15.7613332324,15.7587934453,15.7562536582,15.7537138711,15.751174084,15.7486342969,15.7460945098,15.7435547227,15.7410149356,15.7384751485,15.7359353614,15.7333955743,15.7308557871,15.728316,15.7257762129,15.7232364258,15.7206966387,15.7181568516,15.7156170645,15.7130772774,15.7105374903,15.7079977032,15.7054579161,15.702918129,15.7003783419,15.6978385548,15.6952987677,15.6927589806,15.6902191935,15.6876794063,15.6851396192,15.6825998321,15.680060045,15.6775202579,15.6749804708,15.6724406837,15.6699008966,15.6673611095,15.6648213224,15.6622815353,15.6597417482,15.6572019611,15.654662174,15.6521223869,15.6495825998,15.6470428127,15.6445030255,15.6419632384,15.6394234513,15.6368836642,15.6343438771,15.63180409,15.6292643029,15.6267245158,15.6241847287,15.6216449416,15.6191051545,15.6165653674,15.6140255803,15.6114857932,15.6089460061,15.606406219,15.6038664319,15.6013266447,15.5987868576,15.5962470705,15.5937072834,15.5911674963,15.5886277092,15.5860879221,15.583548135,15.5810083479,15.5784685608,15.5759287737,15.5733889866,15.5708491995,15.5683094124,15.5657696253,15.5632298382,15.5606900511,15.5581502639,15.5556104768,15.5530706897,15.5505309026,15.5479911155,15.5454513284,15.5429115413,15.5403717542,15.5378319671,15.53529218,15.5327523929,15.5302126058,15.5276728187,15.5251330316,15.5225932445,15.5200534574,15.5175136702,15.5149738831,15.512434096,15.5098943089,15.5073545218,15.5048147347,15.5022749476,15.4997351605,15.4971953734,15.4946555863,15.4921157992,15.4895760121,15.487036225,15.4844964379,15.4819566508,15.4794168637,15.4768770766,15.4743372894,15.4717975023,15.4692577152,15.4667179281,15.464178141,15.4616383539,15.4590985668,15.4565587797,15.4540189926,15.4514792055,15.4489394184,15.4463996313,15.4438598442,15.4413200571,15.43878027,15.4362404829,15.4337006958,15.4311609086,15.4286211215,15.4260813344,15.4235415473,15.4210017602,15.4184619731,15.415922186,15.4133823989,15.4108426118,15.4083028247,15.4057630376,15.4032232505,15.4006834634,15.3981436763,15.3956038892,15.3930641021,15.390524315,15.3879845278,15.3854447407,15.3829049536,15.3803651665,15.3778253794,15.3752855923,15.3727458052,15.3702060181,15.367666231,15.3651264439,15.3625866568,15.3600468697,15.3575070826,15.3549672955,15.3524275084,15.3498877213,15.3473479342,15.344808147,15.3422683599,15.3397285728,15.3371887857,15.3346489986,15.3321092115,15.3295694244,15.3270296373,15.3244898502,15.3219500631,15.319410276,15.3168704889,15.3143307018,15.3117909147,15.3092511276,15.3067113405,15.3041715533,15.3016317662,15.2990919791,15.296552192,15.2940124049,15.2914726178,15.2889328307,15.2863930436,15.2838532565,15.2813134694,15.2787736823,15.2762338952,15.2736941081,15.271154321,15.2686145339,15.2660747468,15.2635349597,15.2609951725,15.2584553854,15.2559155983,15.2533758112,15.2508360241,15.248296237,15.2457564499,15.2432166628,15.2406768757,15.2381370886,15.2355973015,15.2330575144,15.2305177273,15.2279779402,15.2254381531,15.222898366,15.2203585789,15.2178187917,15.2152790046,15.2127392175,15.2101994304,15.2076596433,15.2051198562,15.2025800691,15.200040282,15.1975004949,15.1949607078,15.1924209207,15.1898811336,15.1873413465,15.1848015594,15.1822617723,15.1797219852,15.1771821981,15.1746424109,15.1721026238,15.1695628367,15.1670230496,15.1644832625,15.1619434754,15.1594036883,15.1568639012,15.1543241141,15.151784327,15.1492445399,15.1467047528,15.1441649657,15.1416251786,15.1390853915,15.1365456044,15.1340058173,15.1314660301,15.128926243,15.1263864559,15.1238466688,15.1213068817,15.1187670946,15.1162273075,15.1136875204,15.1111477333,15.1086079462,15.1060681591,15.103528372,15.1009885849,15.0984487978,15.0959090107,15.0933692236,15.0908294364,15.0882896493,15.0857498622,15.0832100751,15.080670288,15.0781305009,15.0755907138,15.0730509267,15.0705111396,15.0679713525,15.0654315654,15.0628917783,15.0603519912,15.0578122041,15.055272417,15.0527326299,15.0501928428,15.0476530556,15.0451132685,15.0425734814,15.0400336943,15.0374939072,15.0349541201,15.032414333,15.0298745459,15.0273347588,15.0247949717,15.0222551846,15.0197153975,15.0171756104,15.0146358233,15.0120960362,15.0095562491,15.007016462,15.0044766748,15.0019368877,14.9993971006,14.9968573135,14.9943175264,14.9917777393,14.9892379522,14.9866981651,14.984158378,14.9816185909,14.9790788038,14.9765390167,14.9739992296,14.9714594425,14.9689196554,14.9663798683,14.9638400812,14.961300294,14.9587605069,14.9562207198,14.9536809327,14.9511411456,14.9486013585,14.9460615714,14.9435217843,14.9409819972,14.9384422101,14.935902423,14.9333626359,14.9308228488,14.9282830617,14.9257432746,14.9232034875,14.9206637004,14.9181239132,14.9155841261,14.913044339,14.9105045519,14.9079647648,14.9054249777,14.9028851906,14.9003454035,14.8978056164,14.8952658293,14.8927260422,14.8901862551,14.887646468,14.8851066809,14.8825668938,14.8800271067,14.8774873195,14.8749475324,14.8724077453,14.8698679582,14.8673281711,14.864788384,14.8622485969,14.8597088098,14.8571690227,14.8546292356,14.8520894485,14.8495496614,14.8470098743,14.8444700872,14.8419303001,14.839390513,14.8368507259,14.8343109387,14.8317711516,14.8292313645,14.8266915774,14.8241517903,14.8216120032,14.8190722161,14.816532429,14.8139926419,14.8114528548,14.8089130677,14.8063732806,14.8038334935,14.8012937064,14.7987539193,14.7962141322,14.7936743451,14.7911345579,14.7885947708,14.7860549837,14.7835151966,14.7809754095,14.7784356224,14.7758958353,14.7733560482,14.7708162611,14.768276474,14.7657366869,14.7631968998,14.7606571127,14.7581173256,14.7555775385,14.7530377514,14.7504979643,14.7479581771,14.74541839,14.7428786029,14.7403388158,14.7377990287,14.7352592416,14.7327194545,14.7301796674,14.7276398803,14.7251000932,14.7225603061,14.720020519,14.7174807319,14.7149409448,14.7124011577,14.7098613706,14.7073215835,14.7047817963,14.7022420092,14.6997022221,14.697162435,14.6946226479,14.6920828608,14.6895430737,14.6870032866,14.6844634995,14.6819237124,14.6793839253,14.6768441382,14.6743043511,14.671764564,14.6692247769,14.6666849898,14.6641452026,14.6616054155,14.6590656284,14.6565258413,14.6539860542,14.6514462671,14.64890648,14.6463666929,14.6438269058,14.6412871187,14.6387473316,14.6362075445,14.6336677574,14.6311279703,14.6285881832,14.6260483961,14.623508609,14.6209688218,14.6184290347,14.6158892476,14.6133494605,14.6108096734,14.6082698863,14.6057300992,14.6031903121,14.600650525,14.5981107379,14.5955709508,14.5930311637,14.5904913766,14.5879515895,14.5854118024,14.5828720153,14.5803322282,14.577792441,14.5752526539,14.5727128668,14.5701730797,14.5676332926,14.5650935055,14.5625537184,14.5600139313,14.5574741442,14.5549343571,14.55239457,14.5498547829,14.5473149958,14.5447752087,14.5422354216,14.5396956345,14.5371558474,14.5346160602,14.5320762731,14.529536486,14.5269966989,14.5244569118,14.5219171247,14.5193773376,14.5168375505,14.5142977634,14.5117579763,14.5092181892,14.5066784021,14.504138615,14.5015988279,14.4990590408,14.4965192537,14.4939794665,14.4914396794,14.4888998923,14.4857172707,14.4825346491,14.4793520275,14.4761694058,14.4729867842,14.4698041626,14.466621541,14.4634389193,14.4602562977,14.4570736761,14.4538910545,14.4507084328,14.4475258112,14.4443431896,14.441160568,14.4379779463,14.4347953247,14.4316127031,14.4284300815,14.4252474598,14.4220648382,14.4188822166,14.4156995949,14.4125169733,14.4093343517,14.4061517301,14.4029691084,14.3997864868,14.3966038652,14.3934212436,14.3902386219,14.3870560003,14.3838733787,14.3806907571,14.3775081354,14.3743255138,14.3711428922,14.3679602706,14.3647776489,14.3615950273,14.3584124057,14.3552297841,14.3520471624,14.3488645408,14.3456819192,14.3424992976,14.3393166759,14.3361340543,14.3329514327,14.3297688111,14.3265861894,14.3234035678,14.3202209462,14.3170383246,14.3138557029,14.3106730813,14.3074904597,14.304307838,14.3011252164,14.2979425948,14.2947599732,14.2915773515,14.2883947299,14.2852121083,14.2820294867,14.278846865,14.2756642434,14.2724816218,14.2692990002,14.2661163785,14.2629337569,14.2597511353,14.2565685137,14.253385892,14.2502032704,14.2470206488,14.2438380272,14.2406554055,14.2374727839,14.2342901623,14.2311075407,14.227924919,14.2247422974,14.2215596758,14.2183770542,14.2151944325,14.2120118109,14.2088291893,14.2056465677,14.202463946,14.1992813244,14.1960987028,14.1929160812,14.1897334595,14.1865508379,14.1833682163,14.1801855946,14.177002973,14.1738203514,14.1706377298,14.1674551081,14.1642724865,14.1610898649,14.1579072433,14.1547246216,14.151542,14.1483593784,14.1451767568,14.1419941351,14.1388115135,14.1356288919,14.1324462703,14.1292636486,14.126081027,14.1228984054,14.1197157838,14.1165331621,14.1133505405,14.1101679189,14.1069852973,14.1038026756,14.100620054,14.0974374324,14.0942548108,14.0910721891,14.0878895675,14.0847069459,14.0815243243,14.0783417026,14.075159081,14.0719764594,14.0687938377,14.0656112161,14.0624285945,14.0592459729,14.0560633512,14.0528807296,14.049698108,14.0465154864,14.0433328647,14.0401502431,14.0369676215,14.0337849999,14.0306023782,14.0274197566,14.024237135,14.0210545134,14.0178718917,14.0146892701,14.0115066485,14.0083240269,14.0051414052,14.0019587836,13.998776162,13.9955935404,13.9924109187,13.9892282971,13.9860456755,13.9828630539,13.9796804322,13.9764978106,13.973315189,13.9701325674,13.9669499457,13.9637673241,13.9605847025,13.9574020809,13.9542194592,13.9510368376,13.947854216,13.9446715943,13.9414889727,13.9383063511,13.9351237295,13.9319411078,13.9287584862,13.9255758646,13.922393243,13.9192106213,13.9160279997,13.9128453781,13.9096627565,13.9064801348,13.9032975132,13.9001148916,13.89693227,13.8937496483,13.8905670267,13.8873844051,13.8842017835,13.8810191618,13.8778365402,13.8746539186,13.871471297,13.8682886753,13.8651060537,13.8619234321,13.8587408105,13.8555581888,13.8523755672,13.8491929456,13.846010324,13.8428277023,13.8396450807,13.8364624591,13.8332798374,13.8300972158,13.8269145942,13.8237319726,13.8205493509,13.8173667293,13.8141841077,13.8110014861,13.8078188644,13.8046362428,13.8014536212,13.7982709996,13.7950883779,13.7919057563,13.7887231347,13.7855405131,13.7823578914,13.7791752698,13.7759926482,13.7728100266,13.7696274049,13.7664447833,13.7632621617,13.7600795401,13.7568969184,13.7537142968,13.7505316752,13.7473490536,13.7441664319,13.7409838103,13.7378011887,13.7346185671,13.7314359454,13.7282533238,13.7250707022,13.7218880806,13.7187054589,13.7155228373,13.7123402157,13.709157594,13.7059749724,13.7027923508,13.6996097292,13.6964271075,13.6932444859,13.6900618643,13.6868792427,13.683696621,13.6805139994,13.6773313778,13.6741487562,13.6709661345,13.6677835129,13.6646008913,13.6614182697,13.658235648,13.6550530264,13.6518704048,13.6486877832,13.6455051615,13.6423225399,13.6391399183,13.6359572967,13.632774675,13.6295920534,13.6264094318,13.6232268102,13.6200441885,13.6168615669,13.6136789453,13.6104963237,13.607313702,13.6041310804,13.6009484588,13.5977658371,13.5945832155,13.5914005939,13.5882179723,13.5850353506,13.581852729,13.5786701074,13.5754874858,13.5723048641,13.5691222425,13.5659396209,13.5627569993,13.5595743776,13.556391756,13.5532091344,13.5500265128,13.5468438911,13.5436612695,13.5404786479,13.5372960263,13.5341134046,13.530930783,13.5277481614,13.5245655398,13.5213829181,13.5182002965,13.5150176749,13.5118350533,13.5086524316,13.50546981,13.5022871884,13.4991045668,13.4959219451,13.4927393235,13.4895567019,13.4863740803,13.4831914586,13.480008837,13.4768262154,13.4736435937,13.4704609721,13.4672783505,13.4640957289,13.4609131072,13.4577304856,13.454547864,13.4513652424,13.4481826207,13.4449999991,13.4418173775,13.4386347559,13.4354521342,13.4322695126,13.429086891,13.4259042694,13.4227216477,13.4195390261,13.4163564045,13.4131737829,13.4099911612,13.4068085396,13.403625918,13.4004432964,13.3972606747,13.3940780531,13.3908954315,13.3877128099,13.3845301882,13.3813475666,13.378164945,13.3749823234,13.3717997017,13.3686170801,13.3654344585,13.3622518368,13.3590692152,13.3558865936,13.352703972,13.3495213503,13.3463387287,13.3431561071,13.3399734855,13.3367908638,13.3336082422,13.3304256206,13.327242999,13.3240603773,13.3208777557,13.3176951341,13.3145125125,13.3113298908,13.3081472692,13.3049646476,13.301782026,13.2985994043,13.2954167827,13.2922341611,13.2890515395,13.2858689178,13.2826862962,13.2795036746,13.276321053,13.2731384313,13.2699558097,13.2667731881,13.2635905665,13.2604079448,13.2572253232,13.2540427016,13.25086008,13.2476774583,13.2444948367,13.2413122151,13.2381295934,13.2349469718,13.2317643502,13.2285817286,13.2253991069,13.2222164853,13.2190338637,13.2158512421,13.2126686204,13.2094859988,13.2063033772,13.2031207556,13.1999381339,13.1967555123,13.1935728907,13.1903902691,13.1872076474,13.1840250258,13.1808424042,13.1776597826,13.1744771609,13.1712945393,13.1681119177,13.1649292961,13.1617466744,13.1585640528,13.1553814312,13.1521988096,13.1490161879,13.1458335663,13.1426509447,13.1394683231,13.1362857014,13.1331030798,13.1299204582,13.1267378366,13.1235552149,13.1203725933,13.1171899717,13.11400735,13.1108247284,13.1076421068,13.1044594852,13.1012768635,13.0980942419,13.0949116203,13.0917289987,13.088546377,13.0853637554,13.0821811338,13.0789985122,13.0758158905,13.0726332689,13.0694506473,13.0662680257,13.063085404,13.0599027824,13.0567201608,13.0535375392,13.0503549175,13.0471722959,13.0439896743,13.0408070527,13.037624431,13.0344418094,13.0312591878,13.0280765662,13.0248939445,13.0217113229,13.0185287013,13.0153460797,13.012163458,13.0089808364,13.0057982148,13.0026155931,12.9994329715,12.9962503499,12.9930677283,12.9898851066,12.986702485,12.9835198634,12.9803372418,12.9771546201,12.9739719985,12.9707893769,12.9676067553,12.9644241336,12.961241512,12.9580588904,12.9548762688,12.9516936471,12.9485110255,12.9453284039,12.9421457823,12.9389631606,12.935780539,12.9325979174,12.9294152958,12.9262326741,12.9230500525,12.9198674309,12.9166848093,12.9135021876,12.910319566,12.9071369444,12.9039543228,12.9007717011,12.8975890795,12.8944064579,12.8912238363,12.8880412146,12.884858593,12.8816759714,12.8784933497,12.8753107281,12.8721281065,12.8689454849,12.8657628632,12.8625802416,12.85939762,12.8562149984,12.8530323767,12.8498497551,12.8466671335,12.8434845119,12.8403018902,12.8371192686,12.833936647,12.8307540254,12.8275714037,12.8243887821,12.8212061605,12.8180235389,12.8148409172,12.8116582956,12.808475674,12.8052930524,12.8021104307,12.7989278091,12.7957451875,12.7925625659,12.7893799442,12.7861973226,12.783014701,12.7798320794,12.7766494577,12.7734668361,12.7702842145,12.7671015928,12.7639189712,12.7607363496,12.757553728,12.7543711063,12.7511884847,12.7480058631,12.7448232415,12.7416406198,12.7384579982,12.7352753766,12.732092755,12.7289101333,12.7257275117,12.7225448901,12.7193622685,12.7161796468,12.7129970252,12.7098144036,12.706631782,12.7034491603,12.7002665387,12.6970839171,12.6939012955,12.6907186738,12.6875360522,12.6843534306,12.681170809,12.6779881873,12.6748055657,12.6716229441,12.6684403225,12.6652577008,12.6620750792,12.6588924576,12.655709836,12.6525272143,12.6493445927,12.6461619711,12.6429793494,12.6397967278,12.6366141062,12.6334314846,12.6302488629,12.6270662413,12.6238836197,12.6207009981,12.6175183764,12.6143357548,12.6111531332,12.6079705116,12.6047878899,12.6016052683,12.5984226467,12.5952400251,12.5920574034,12.5888747818,12.5856921602,12.5825095386,12.5793269169,12.5761442953,12.5729616737,12.5697790521,12.5665964304,12.5631749794,12.5597535283,12.5563320773,12.5529106262,12.5494891752,12.5460677241,12.5426462731,12.539224822,12.5358033709,12.5323819199,12.5289604688,12.5255390178,12.5221175667,12.5186961157,12.5152746646,12.5118532136,12.5084317625,12.5050103115,12.5015888604,12.4981674093,12.4947459583,12.4913245072,12.4879030562,12.4844816051,12.4810601541,12.477638703,12.474217252,12.4707958009,12.4673743499,12.4639528988,12.4605314477,12.4571099967,12.4536885456,12.4502670946,12.4468456435,12.4434241925,12.4400027414,12.4365812904,12.4331598393,12.4297383883,12.4263169372,12.4228954861,12.4194740351,12.416052584,12.412631133,12.4092096819,12.4057882309,12.4023667798,12.3989453288,12.3955238777,12.3921024267,12.3886809756,12.3852595245,12.3818380735,12.3784166224,12.3749951714,12.3715737203,12.3681522693,12.3647308182,12.3613093672,12.3578879161,12.3544664651,12.351045014,12.3476235629,12.3442021119,12.3407806608,12.3373592098,12.3339377587,12.3305163077,12.3270948566,12.3236734056,12.3202519545,12.3168305035,12.3134090524,12.3099876013,12.3065661503,12.3031446992,12.2997232482,12.2963017971,12.2928803461,12.289458895,12.286037444,12.2826159929,12.2791945419,12.2757730908,12.2723516397,12.2689301887,12.2655087376,12.2620872866,12.2586658355,12.2552443845,12.2518229334,12.2484014824,12.2449800313,12.2415585803,12.2381371292,12.2347156782,12.2312942271,12.227872776,12.224451325,12.2210298739,12.2176084229,12.2141869718,12.2107655208,12.2073440697,12.2039226187,12.2005011676,12.1970797166,12.1936582655,12.1902368144,12.1868153634,12.1833939123,12.1799724613,12.1765510102,12.1731295592,12.1697081081,12.1662866571,12.162865206,12.159443755,12.1560223039,12.1526008528,12.1491794018,12.1457579507,12.1423364997,12.1389150486,12.1354935976,12.1320721465,12.1286506955,12.1252292444,12.1218077934,12.1183863423,12.1149648912,12.1115434402,12.1081219891,12.1047005381,12.101279087,12.097857636,12.0944361849,12.0910147339,12.0875932828,12.0841718318,12.0807503807,12.0773289296,12.0739074786,12.0704860275,12.0670645765,12.0636431254,12.0602216744,12.0568002233,12.0533787723,12.0499573212,12.0465358702,12.0431144191,12.039692968,12.036271517,12.0328500659,12.0294286149,12.0260071638,12.0225857128,12.0191642617,12.0157428107,12.0123213596,12.0088999086,12.0054784575,12.0020570064,11.9986355554,11.9952141043,11.9917926533,11.9883712022,11.9849497512,11.9815283001,11.9781068491,11.974685398,11.971263947,11.9678424959,11.9644210449,11.9609995938,11.9575781427,11.9541566917,11.9507352406,11.9473137896,11.9438923385,11.9404708875,11.9370494364,11.9336279854,11.9302065343,11.9267850833,11.9233636322,11.9199421811,11.9165207301,11.913099279,11.909677828,11.9062563769,11.9028349259,11.8994134748,11.8959920238,11.8925705727,11.8891491217,11.8857276706,11.8823062195,11.8788847685,11.8754633174,11.8720418664,11.8686204153,11.8651989643,11.8617775132,11.8583560622,11.8549346111,11.8515131601,11.848091709,11.8446702579,11.8412488069,11.8378273558,11.8344059048,11.8309844537,11.8275630027,11.8241415516,11.8207201006,11.8172986495,11.8138771985,11.8104557474,11.8070342963,11.8036128453,11.8001913942,11.7967699432,11.7933484921,11.7899270411,11.78650559,11.783084139,11.7796626879,11.7762412369,11.7728197858,11.7693983347,11.7659768837,11.7625554326,11.7591339816,11.7557125305,11.7522910795,11.7488696284,11.7454481774,11.7420267263,11.7386052753,11.7351838242,11.7317623731,11.7283409221,11.724919471,11.72149802,11.7180765689,11.7146551179,11.7112336668,11.7078122158,11.7043907647,11.7009693137,11.6975478626,11.6941264115,11.6907049605,11.6872835094,11.6838620584,11.6804406073,11.6770191563,11.6735977052,11.6701762542,11.6667548031,11.6633333521,11.659911901,11.65649045,11.6530689989,11.6496475478,11.6462260968,11.6428046457,11.6393831947,11.6359617436,11.6325402926,11.6291188415,11.6256973905,11.6222759394,11.6188544884,11.6154330373,11.6120115862,11.6085901352,11.6051686841,11.6017472331,11.598325782,11.594904331,11.5914828799,11.5880614289,11.5846399778,11.5812185268,11.5777970757,11.5743756246,11.5709541736,11.5675327225,11.5641112715,11.5606898204,11.5572683694,11.5538469183,11.5504254673,11.5470040162,11.5435825652,11.5401611141,11.536739663,11.533318212,11.5298967609,11.5264753099,11.5230538588,11.5196324078,11.5162109567,11.5127895057,11.5093680546,11.5059466036,11.5025251525,11.4991037014,11.4956822504,11.4922607993,11.4888393483,11.4854178972,11.4819964462,11.4785749951,11.4751535441,11.471732093,11.468310642,11.4648891909,11.4614677398,11.4580462888,11.4546248377,11.4512033867,11.4477819356,11.4443604846,11.4409390335,11.4375175825,11.4340961314,11.4306746804,11.4272532293,11.4238317782,11.4204103272,11.4169888761,11.4135674251,11.410145974,11.406724523,11.4033030719,11.3998816209,11.3964601698,11.3930387188,11.3896172677,11.3861958166,11.3827743656,11.3793529145,11.3759314635,11.3725100124,11.3690885614,11.3656671103,11.3622456593,11.3588242082,11.3554027572,11.3519813061,11.3485598551,11.345138404,11.3417169529,11.3382955019,11.3348740508,11.3314525998,11.3280311487,11.3246096977,11.3211882466,11.3177667956,11.3143453445,11.3109238935,11.3075024424,11.3040809913,11.3006595403,11.2972380892,11.2938166382,11.2903951871,11.2869737361,11.283552285,11.280130834,11.2767093829,11.2732879319,11.2698664808,11.2664450297,11.2630235787,11.2596021276,11.2561806766,11.2527592255,11.2493377745,11.2459163234,11.2424948724,11.2390734213,11.2356519703,11.2322305192,11.2288090681,11.2253876171,11.221966166,11.218544715,11.2151232639,11.2117018129,11.2082803618,11.2048589108,11.2014374597,11.1980160087,11.1945945576,11.1911731065,11.1877516555,11.1843302044,11.1809087534,11.1774873023,11.1740658513,11.1706444002,11.1672229492,11.1638014981,11.1603800471,11.156958596,11.1535371449,11.1501156939,11.1466942428,11.1432727918,11.1398513407,11.1364298897,11.1330084386,11.1295869876,11.1261655365,11.1227440855,11.1193226344,11.1159011833,11.1124797323,11.1090582812,11.1056368302,11.1022153791,11.0987939281,11.095372477,11.091951026,11.0885295749,11.0851081239,11.0816866728,11.0782652217,11.0748437707,11.0714223196,11.0680008686,11.0645794175,11.0611579665,11.0577365154,11.0543150644,11.0508936133,11.0474721623,11.0440507112,11.0406292602,11.0372078091,11.033786358,11.030364907,11.0269434559,11.0235220049,11.0201005538,11.0166791028,11.0132576517,11.0098362007,11.0064147496,11.0029932986,10.9995718475,10.9961503964,10.9927289454,10.9893074943,10.9858860433,10.9824645922,10.9790431412,10.9756216901,10.9722002391,10.968778788,10.965357337,10.9619358859,10.9585144348,10.9550929838,10.9516715327,10.9482500817,10.9448286306,10.9414071796,10.9379857285,10.9345642775,10.9311428264,10.9277213754,10.9242999243,10.9208784732,10.9174570222,10.9140355711,10.9106141201,10.907192669,10.903771218,10.9003497669,10.8969283159,10.8935068648,10.8900854138,10.8866639627,10.8832425116,10.8798210606,10.8763996095,10.8729781585,10.8695567074,10.8661352564,10.8627138053,10.8592923543,10.8558709032,10.8524494522,10.8490280011,10.84560655,10.842185099,10.8387636479,10.8353421969,10.8319207458,10.8284992948,10.8250778437,10.8216563927,10.8182349416,10.8148134906,10.8113920395,10.8079705884,10.8045491374,10.8011276863,10.7977062353,10.7942847842,10.7908633332,10.7874418821,10.7840204311,10.78059898,10.777177529,10.7737560779,10.7703346269,10.7669131758,10.7634917247,10.7600702737,10.7566488226,10.7532273716,10.7498059205,10.7463844695,10.7429630184,10.7395415674,10.7361201163,10.7326986653,10.7292772142,10.7258557631,10.7224343121,10.719012861,10.71559141,10.7121699589,10.7087485079,10.7053270568,10.7019056058,10.6984841547,10.6950627037,10.6916412526,10.6882198015,10.6847983505,10.6813768994,10.6779554484,10.6745339973,10.6711125463,10.6676910952,10.6642696442,10.6608481931,10.6574267421,10.654005291,10.6505838399,10.6471623889,10.6437409378,10.6403194868,10.6368980357,10.6334765847,10.6300551336,10.6266336826,10.6232122315,10.6197907805,10.6163693294,10.6129478783,10.6095264273,10.6061049762,10.6026835252,10.5992620741,10.5958406231,10.592419172,10.588997721,10.5855762699,10.5821548189,10.5787333678,10.5753119167,10.5718904657,10.5684690146,10.5650475636,10.5616261125,10.5582046615,10.5547832104,10.5513617594,10.5479403083,10.5445188573,10.5410974062,10.5376759551,10.5342545041,10.530833053,10.527411602,10.5239901509,10.5205686999,10.5171472488,10.5137257978,10.5103043467,10.5068828957,10.5034614446,10.5000399935,10.4969546643,10.4938693351,10.4907840059,10.4876986767,10.4846133475,10.4815280183,10.4784426891,10.4753573598,10.4722720306,10.4691867014,10.4661013722,10.463016043,10.4599307138,10.4568453846,10.4537600554,10.4506747261,10.4475893969,10.4445040677,10.4414187385,10.4383334093,10.4352480801,10.4321627509,10.4290774216,10.4259920924,10.4229067632,10.419821434,10.4167361048,10.4136507756,10.4105654464,10.4074801172,10.4043947879,10.4013094587,10.3982241295,10.3951388003,10.3920534711,10.3889681419,10.3858828127,10.3827974835,10.3797121542,10.376626825,10.3735414958,10.3704561666,10.3673708374,10.3642855082,10.361200179,10.3581148497,10.3550295205,10.3519441913,10.3488588621,10.3457735329,10.3426882037,10.3396028745,10.3365175453,10.333432216,10.3303468868,10.3272615576,10.3241762284,10.3210908992,10.31800557,10.3149202408,10.3118349116,10.3087495823,10.3056642531,10.3025789239,10.2994935947,10.2964082655,10.2933229363,10.2902376071,10.2871522779,10.2840669486,10.2809816194,10.2778962902,10.274810961,10.2717256318,10.2686403026,10.2655549734,10.2624696441,10.2593843149,10.2562989857,10.2532136565,10.2501283273,10.2470429981,10.2439576689,10.2408723397,10.2377870104,10.2347016812,10.231616352,10.2285310228,10.2254456936,10.2223603644,10.2192750352,10.216189706,10.2131043767,10.2100190475,10.2069337183,10.2038483891,10.2007630599,10.1976777307,10.1945924015,10.1915070722,10.188421743,10.1853364138,10.1822510846,10.1791657554,10.1760804262,10.172995097,10.1699097678,10.1668244385,10.1637391093,10.1606537801,10.1575684509,10.1544831217,10.1513977925,10.1483124633,10.1452271341,10.1421418048,10.1390564756,10.1359711464,10.1328858172,10.129800488,10.1267151588,10.1236298296,10.1205445003,10.1174591711,10.1143738419,10.1112885127,10.1082031835,10.1051178543,10.1020325251,10.0989471959,10.0958618666,10.0927765374,10.0896912082,10.086605879,10.0835205498,10.0804352206,10.0773498914,10.0742645622,10.0711792329,10.0680939037,10.0650085745,10.0619232453,10.0588379161,10.0557525869,10.0526672577,10.0495819284,10.0464965992,10.04341127,10.0403259408,10.0372406116,10.0341552824,10.0310699532,10.027984624,10.0248992947,10.0218139655,10.0187286363,10.0156433071,10.0125579779,10.0094726487,10.0063873195,10.0033019903,10.000216661,9.99713133183,9.99404600261,9.9909606734,9.98787534419,9.98479001497,9.98170468576,9.97861935655,9.97553402733,9.97244869812,9.96936336891,9.9662780397,9.96319271048,9.96010738127,9.95702205206,9.95393672284,9.95085139363,9.94776606442,9.9446807352,9.94159540599,9.93851007678,9.93542474756,9.93233941835,9.92925408914,9.92616875993,9.92308343071,9.9199981015,9.91691277229,9.91382744307,9.91074211386,9.90765678465,9.90457145543,9.90148612622,9.89840079701,9.8953154678,9.89223013858,9.88914480937,9.88605948016,9.88297415094,9.87988882173,9.87680349252,9.8737181633,9.87063283409,9.86754750488,9.86446217567,9.86137684645,9.85829151724,9.85520618803,9.85212085881,9.8490355296,9.84595020039,9.84286487117,9.83977954196,9.83669421275,9.83360888354,9.83052355432,9.82743822511,9.8243528959,9.82126756668,9.81818223747,9.81509690826,9.81201157904,9.80892624983,9.80584092062,9.8027555914,9.79967026219,9.79658493298,9.79349960377,9.79041427455,9.78732894534,9.78424361613,9.78115828691,9.7780729577,9.77498762849,9.77190229927,9.76881697006,9.76573164085,9.76264631164,9.75956098242,9.75647565321,9.753390324,9.75030499478,9.74721966557,9.74413433636,9.74104900714,9.73796367793,9.73487834872,9.73179301951,9.72870769029,9.72562236108,9.72253703187,9.71945170265,9.71636637344,9.71328104423,9.71019571501,9.7071103858,9.70402505659,9.70093972737,9.69785439816,9.69476906895,9.69168373974,9.68859841052,9.68551308131,9.6824277521,9.67934242288,9.67625709367,9.67317176446,9.67008643524,9.66700110603,9.66391577682,9.66083044761,9.65774511839,9.65465978918,9.65157445997,9.64848913075,9.64540380154,9.64231847233,9.63923314311,9.6361478139,9.63306248469,9.62997715548,9.62689182626,9.62380649705,9.62072116784,9.61763583862,9.61455050941,9.6114651802,9.60837985098,9.60529452177,9.60220919256,9.59912386334,9.59603853413,9.59295320492,9.58986787571,9.58678254649,9.58369721728,9.58061188807,9.57752655885,9.57444122964,9.57135590043,9.56827057121,9.565185242,9.56209991279,9.55901458358,9.55592925436,9.55284392515,9.54975859594,9.54667326672,9.54358793751,9.5405026083,9.53741727908,9.53433194987,9.53124662066,9.52816129145,9.52507596223,9.52199063302,9.51890530381,9.51581997459,9.51273464538,9.50964931617,9.50656398695,9.50347865774,9.50039332853,9.49730799931,9.4942226701,9.49113734089,9.48805201168,9.48496668246,9.48188135325,9.47879602404,9.47571069482,9.47262536561,9.4695400364,9.46645470718,9.46336937797,9.46028404876,9.45719871955,9.45411339033,9.45102806112,9.44794273191,9.44485740269,9.44177207348,9.43868674427,9.43560141505,9.43251608584,9.42943075663,9.42634542742,9.4232600982,9.42017476899,9.41708943978,9.41400411056,9.41091878135,9.40783345214,9.40474812292,9.40166279371,9.3985774645,9.39549213529,9.39240680607,9.38932147686,9.38623614765,9.38315081843,9.38006548922,9.37698016001,9.37389483079,9.37080950158,9.36772417237,9.36463884315,9.36155351394,9.35846818473,9.35538285552,9.3522975263,9.34921219709,9.34612686788,9.34304153866,9.33995620945,9.33687088024,9.33378555102,9.33070022181,9.3276148926,9.32452956339,9.32144423417,9.31835890496,9.31527357575,9.31218824653,9.30910291732,9.30601758811,9.30293225889,9.29984692968,9.29676160047,9.29367627126,9.29059094204,9.28750561283,9.28442028362,9.2813349544,9.27824962519,9.27516429598,9.27207896676,9.26899363755,9.26590830834,9.26282297912,9.25973764991,9.2566523207,9.25356699149,9.25048166227,9.24739633306,9.24431100385,9.24122567463,9.23814034542,9.23505501621,9.23196968699,9.22888435778,9.22579902857,9.22271369936,9.21962837014,9.21654304093,9.21345771172,9.2103723825,9.20728705329,9.20420172408,9.20111639486,9.19803106565,9.19494573644,9.19186040723,9.18877507801,9.1856897488,9.18260441959,9.17951909037,9.17643376116,9.17334843195,9.17026310273,9.16717777352,9.16409244431,9.16100711509,9.15792178588,9.15483645667,9.15175112746,9.14866579824,9.14558046903,9.14249513982,9.1394098106,9.13632448139,9.13323915218,9.13015382296,9.12706849375,9.12398316454,9.12089783533,9.11781250611,9.1147271769,9.11164184769,9.10855651847,9.10547118926,9.10238586005,9.09930053083,9.09621520162,9.09312987241,9.0900445432,9.08695921398,9.08387388477,9.08078855556,9.07770322634,9.07461789713,9.07153256792,9.0684472387,9.06536190949,9.06227658028,9.05919125106,9.05610592185,9.05302059264,9.04993526343,9.04684993421,9.043764605,9.04067927579,9.03759394657,9.03450861736,9.03142328815,9.02833795893,9.02525262972,9.02216730051,9.0190819713,9.01599664208,9.01291131287,9.00982598366,9.00674065444,9.00365532523,9.00056999602,8.9974846668,8.99439933759,8.99131400838,8.98822867917,8.98514334995,8.98205802074,8.97897269153,8.97588736231,8.9728020331,8.96971670389,8.96663137467,8.96354604546,8.96046071625,8.95737538704,8.95429005782,8.95120472861,8.9481193994,8.94503407018,8.94194874097,8.93886341176,8.93577808254,8.93269275333,8.92960742412,8.9265220949,8.92343676569,8.92035143648,8.91726610727,8.91418077805,8.91109544884,8.90801011963,8.90492479041,8.9018394612,8.89875413199,8.89566880277,8.89258347356,8.88949814435,8.88641281514,8.88332748592,8.88024215671,8.8771568275,8.87407149828,8.87098616907,8.86790083986,8.86481551064,8.86173018143,8.85864485222,8.85555952301,8.85247419379,8.84938886458,8.84630353537,8.84321820615,8.84013287694,8.83704754773,8.83396221851,8.8308768893,8.82779156009,8.82470623087,8.82162090166,8.81853557245,8.81545024324,8.81236491402,8.80927958481,8.8061942556,8.80310892638,8.80002359717,8.79693826796,8.79385293874,8.79076760953,8.78768228032,8.78459695111,8.78151162189,8.77842629268,8.77534096347,8.77225563425,8.76917030504,8.76608497583,8.76299964661,8.7599143174,8.75682898819,8.75374365898,8.75065832976,8.74757300055,8.74448767134,8.74140234212,8.73831701291,8.7352316837,8.73214635448,8.72906102527,8.72597569606,8.72289036684,8.71980503763,8.71671970842,8.71363437921,8.71054904999,8.70746372078,8.70437839157,8.70129306235,8.69820773314,8.69512240393,8.69203707471,8.6889517455,8.68586641629,8.68278108708,8.67969575786,8.67661042865,8.67352509944,8.67043977022,8.66735444101,8.6642691118,8.66118378258,8.65809845337,8.65501312416,8.65192779495,8.64884246573,8.64575713652,8.64267180731,8.63958647809,8.63650114888,8.6342885886,8.63207602833,8.62986346805,8.62765090777,8.6254383475,8.62322578722,8.62101322694,8.61880066667,8.61658810639,8.61437554611,8.61216298584,8.60995042556,8.60773786528,8.60552530501,8.60331274473,8.60110018445,8.59888762418,8.5966750639,8.59446250362,8.59224994334,8.59003738307,8.58782482279,8.58561226251,8.58339970224,8.58118714196,8.57897458168,8.57676202141,8.57454946113,8.57233690085,8.57012434058,8.5679117803,8.56569922002,8.56348665975,8.56127409947,8.55906153919,8.55684897892,8.55463641864,8.55242385836,8.55021129809,8.54799873781,8.54578617753,8.54357361726,8.54136105698,8.5391484967,8.53693593643,8.53472337615,8.53251081587,8.5302982556,8.52808569532,8.52587313504,8.52366057476,8.52144801449,8.51923545421,8.51702289393,8.51481033366,8.51259777338,8.5103852131,8.50817265283,8.50596009255,8.50374753227,8.501534972,8.49932241172,8.49710985144,8.49489729117,8.49268473089,8.49047217061,8.48825961034,8.48604705006,8.48383448978,8.48162192951,8.47940936923,8.47719680895,8.47498424868,8.4727716884,8.47055912812,8.46834656785,8.46613400757,8.46392144729,8.46170888702,8.45949632674,8.45728376646,8.45507120618,8.45285864591,8.45064608563,8.44843352535,8.44622096508,8.4440084048,8.44179584452,8.43958328425,8.43737072397,8.43515816369,8.43294560342,8.43073304314,8.42852048286,8.42630792259,8.42409536231,8.42188280203,8.41967024176,8.41745768148,8.4152451212,8.41303256093,8.41082000065,8.40860744037,8.4063948801,8.40418231982,8.40196975954,8.39975719927,8.39754463899,8.39533207871,8.39311951844,8.39090695816,8.38869439788,8.38648183761,8.38426927733,8.38205671705,8.37984415677,8.3776315965,8.37541903622,8.37320647594,8.37099391567,8.36878135539,8.36656879511,8.36435623484,8.36214367456,8.35993111428,8.35771855401,8.35550599373,8.35329343345,8.35108087318,8.3488683129,8.34665575262,8.34444319235,8.34223063207,8.34001807179,8.33780551152,8.33559295124,8.33338039096,8.33116783069,8.32895527041,8.32674271013,8.32453014986,8.32231758958,8.3201050293,8.31789246903,8.31567990875,8.31346734847,8.31125478819,8.30904222792,8.30682966764,8.30461710736,8.30240454709,8.30019198681,8.29797942653,8.29576686626,8.29355430598,8.2913417457,8.28912918543,8.28691662515,8.28470406487,8.2824915046,8.28027894432,8.27806638404,8.27585382377,8.27364126349,8.27142870321,8.26921614294,8.26700358266,8.26479102238,8.26257846211,8.26036590183,8.25815334155,8.25594078128,8.253728221,8.25151566072,8.24930310045,8.24709054017,8.24487797989,8.24266541962,8.24045285934,8.23824029906,8.23602773878,8.23381517851,8.23160261823,8.22939005795,8.22717749768,8.2249649374,8.22275237712,8.22053981685,8.21832725657,8.21611469629,8.21390213602,8.21168957574,8.20947701546,8.20726445519,8.20505189491,8.20283933463,8.20062677436,8.19841421408,8.1962016538,8.19398909353,8.19177653325,8.18956397297,8.1873514127,8.18513885242,8.18292629214,8.18071373187,8.17850117159,8.17628861131,8.17407605104,8.17186349076,8.16965093048,8.1674383702,8.16522580993,8.16301324965,8.16080068937,8.1585881291,8.15637556882,8.15416300854,8.15195044827,8.14973788799,8.14752532771,8.14531276744,8.14310020716,8.14088764688,8.13867508661,8.13646252633,8.13424996605,8.13203740578,8.1298248455,8.12761228522,8.12539972495,8.12318716467,8.12097460439,8.11876204412,8.11654948384,8.11433692356,8.11212436329,8.10991180301,8.10769924273,8.10548668246,8.10327412218,8.1010615619,8.09884900163,8.09663644135,8.09442388107,8.09221132079,8.08999876052,8.08778620024,8.08557363996,8.08336107969,8.08114851941,8.07893595913,8.07672339886,8.07451083858,8.0722982783,8.07008571803,8.06787315775,8.06566059747,8.0634480372,8.06123547692,8.05902291664,8.05681035637,8.05459779609,8.05238523581,8.05017267554,8.04796011526,8.04574755498,8.04353499471,8.04132243443,8.03910987415,8.03689731388,8.0346847536,8.03247219332,8.03025963305,8.02804707277,8.02583451249,8.02362195221,8.02140939194,8.01919683166,8.01698427138,8.01477171111,8.01255915083,8.01034659055,8.00813403028,8.00592147,8.00370890972,8.00149634945,7.99928378917,7.99707122889,7.99485866862,7.99264610834,7.99043354806,7.98822098779,7.98600842751,7.98379586723,7.98158330696,7.97937074668,7.9771581864,7.97494562613,7.97273306585,7.97052050557,7.9683079453,7.96609538502,7.96388282474,7.96167026447,7.95945770419,7.95724514391,7.95503258364,7.95282002336,7.95060746308,7.9483949028,7.94618234253,7.94396978225,7.94175722197,7.9395446617,7.93733210142,7.93511954114,7.93290698087,7.93069442059,7.92848186031,7.92626930004,7.92405673976,7.92184417948,7.91963161921,7.91741905893,7.91520649865,7.91299393838,7.9107813781,7.90856881782,7.90635625755,7.90414369727,7.90193113699,7.89971857672,7.89750601644,7.89529345616,7.89308089589,7.89086833561,7.88865577533,7.88644321506,7.88423065478,7.8820180945,7.87980553422,7.87759297395,7.87538041367,7.87316785339,7.87095529312,7.86874273284,7.86653017256,7.86431761229,7.86210505201,7.85989249173,7.85767993146,7.85546737118,7.8532548109,7.85104225063,7.84882969035,7.84661713007,7.8444045698,7.84219200952,7.83997944924,7.83776688897,7.83555432869,7.83334176841,7.83112920814,7.82891664786,7.82670408758,7.82449152731,7.82227896703,7.82006640675,7.81785384648,7.8156412862,7.81342872592,7.81121616565,7.80900360537,7.80679104509,7.80457848481,7.80236592454,7.80015336426,7.79794080398,7.79572824371,7.79351568343,7.79130312315,7.78909056288,7.7868780026,7.78466544232,7.78245288205,7.78024032177,7.77802776149,7.77581520122,7.77360264094,7.77139008066,7.76917752039,7.76696496011,7.76475239983,7.76253983956,7.76032727928,7.758114719,7.75590215873,7.75368959845,7.75147703817,7.7492644779,7.74705191762,7.74483935734,7.74262679707,7.74041423679,7.73820167651,7.73598911623,7.73377655596,7.73156399568,7.7293514354,7.72713887513,7.72492631485,7.72271375457,7.7205011943,7.71828863402,7.71607607374,7.71386351347,7.71165095319,7.70943839291,7.70722583264,7.70501327236,7.70280071208,7.70058815181,7.69837559153,7.69616303125,7.69395047098,7.6917379107,7.68952535042,7.68731279015,7.68510022987,7.68288766959,7.68067510932,7.67846254904,7.67624998876,7.67403742849,7.67182486821,7.66961230793,7.66739974766,7.66518718738,7.6629746271,7.66076206682,7.65854950655,7.65633694627,7.65412438599,7.65191182572,7.64969926544,7.64748670516,7.64527414489,7.64306158461,7.64084902433,7.63863646406,7.63642390378,7.6342113435,7.63199878323,7.62978622295,7.62757366267,7.6253611024,7.62314854212,7.62093598184,7.61872342157,7.61651086129,7.61429830101,7.61208574074,7.60987318046,7.60766062018,7.60544805991,7.60323549963,7.60102293935,7.59881037908,7.5965978188,7.59438525852,7.59217269824,7.58996013797,7.58774757769,7.58553501741,7.58332245714,7.58110989686,7.57889733658,7.57668477631,7.57447221603,7.57225965575,7.57004709548,7.5678345352,7.56562197492,7.56340941465,7.56119685437,7.55898429409,7.55677173382,7.55455917354,7.55234661326,7.55013405299,7.54792149271,7.54570893243,7.54349637216,7.54128381188,7.5390712516,7.53685869133,7.53464613105,7.53243357077,7.5302210105,7.52800845022,7.52579588994,7.52358332967,7.52137076939,7.51915820911,7.51694564883,7.51473308856,7.51252052828,7.510307968,7.50809540773,7.50588284745,7.50367028717,7.5014577269,7.49924516662,7.49703260634,7.49482004607,7.49260748579,7.49039492551,7.48818236524,7.48596980496,7.48375724468,7.48154468441,7.47933212413,7.47711956385,7.47490700358,7.4726944433,7.47048188302,7.46826932275,7.46605676247,7.46384420219,7.46163164192,7.45941908164,7.45720652136,7.45499396109,7.45278140081,7.45056884053,7.44835628025,7.44614371998,7.4439311597,7.44171859942,7.43950603915,7.43729347887,7.43508091859,7.43286835832,7.43065579804,7.42844323776,7.42623067749,7.42401811721,7.42180555693,7.41959299666,7.41738043638,7.4151678761,7.41295531583,7.41074275555,7.40853019527,7.406317635,7.40410507472,7.40189251444,7.39967995417,7.39746739389,7.39525483361,7.39304227334,7.39082971306,7.38861715278,7.38640459251,7.38419203223,7.38197947195,7.37976691168,7.3775543514,7.37534179112,7.37312923084,7.37091667057,7.36870411029,7.36649155001,7.36427898974,7.36206642946,7.35985386918,7.35764130891,7.35542874863,7.35321618835,7.35100362808,7.3487910678,7.34657850752,7.34436594725,7.34215338697,7.33994082669,7.33772826642,7.33551570614,7.33330314586,7.33109058559,7.32887802531,7.32666546503,7.32445290476,7.32224034448,7.3200277842,7.31781522393,7.31560266365,7.31339010337,7.3111775431,7.30896498282,7.30675242254,7.30453986226,7.30232730199,7.30011474171,7.29940566969,7.29869659767,7.29798752565,7.29727845363,7.29656938161,7.29586030958,7.29515123756,7.29444216554,7.29373309352,7.2930240215,7.29231494948,7.29160587746,7.29089680544,7.29018773342,7.2894786614,7.28876958937,7.28806051735,7.28735144533,7.28664237331,7.28593330129,7.28522422927,7.28451515725,7.28380608523,7.28309701321,7.28238794118,7.28167886916,7.28096979714,7.28026072512,7.2795516531,7.27884258108,7.27813350906,7.27742443704,7.27671536502,7.27600629299,7.27529722097,7.27458814895,7.27387907693,7.27317000491,7.27246093289,7.27175186087,7.27104278885,7.27033371683,7.2696246448,7.26891557278,7.26820650076,7.26749742874,7.26678835672,7.2660792847,7.26537021268,7.26466114066,7.26395206864,7.26324299661,7.26253392459,7.26182485257,7.26111578055,7.26040670853,7.25969763651,7.25898856449,7.25827949247,7.25757042045,7.25686134842,7.2561522764,7.25544320438,7.25473413236,7.25402506034,7.25331598832,7.2526069163,7.25189784428,7.25118877226,7.25047970023,7.24977062821,7.24906155619,7.24835248417,7.24764341215,7.24693434013,7.24622526811,7.24551619609,7.24480712407,7.24409805205,7.24338898002,7.242679908,7.24197083598,7.24126176396,7.24055269194,7.23984361992,7.2391345479,7.23842547588,7.23771640386,7.23700733183,7.23629825981,7.23558918779,7.23488011577,7.23417104375,7.23346197173,7.23275289971,7.23204382769,7.23133475567,7.23062568364,7.22991661162,7.2292075396,7.22849846758,7.22778939556,7.22708032354,7.22637125152,7.2256621795,7.22495310748,7.22424403545,7.22353496343,7.22282589141,7.22211681939,7.22140774737,7.22069867535,7.21998960333,7.21928053131,7.21857145929,7.21786238726,7.21715331524,7.21644424322,7.2157351712,7.21502609918,7.21431702716,7.21360795514,7.21289888312,7.2121898111,7.21148073907,7.21077166705,7.21006259503,7.20935352301,7.20864445099,7.20793537897,7.20722630695,7.20651723493,7.20580816291,7.20509909089,7.20439001886,7.20368094684,7.20297187482,7.2022628028,7.20155373078,7.20084465876,7.20013558674,7.19942651472,7.1987174427,7.19800837067,7.19729929865,7.19659022663,7.19588115461,7.19517208259,7.19446301057,7.19375393855,7.19304486653,7.19233579451,7.19162672248,7.19091765046,7.19020857844,7.18949950642,7.1887904344,7.18808136238,7.18737229036,7.18666321834,7.18595414632,7.18524507429,7.18453600227,7.18382693025,7.18311785823,7.18240878621,7.18169971419,7.18099064217,7.18028157015,7.17957249813,7.1788634261,7.17815435408,7.17744528206,7.17673621004,7.17602713802,7.175318066,7.17460899398,7.17389992196,7.17319084994,7.17248177791,7.17177270589,7.17106363387,7.17035456185,7.16964548983,7.16893641781,7.16822734579,7.16751827377,7.16680920175,7.16610012973,7.1653910577,7.16468198568,7.16397291366,7.16326384164,7.16255476962,7.1618456976,7.16113662558,7.16042755356,7.15971848154,7.15900940951,7.15830033749,7.15759126547,7.15688219345,7.15617312143,7.15546404941,7.15475497739,7.15404590537,7.15333683335,7.15262776132,7.1519186893,7.15120961728,7.15050054526,7.14979147324,7.14908240122,7.1483733292,7.14766425718,7.14695518516,7.14624611313,7.14553704111,7.14482796909,7.14411889707,7.14340982505,7.14270075303,7.14199168101,7.14128260899,7.14057353697,7.13986446494,7.13915539292,7.1384463209,7.13773724888,7.13702817686,7.13631910484,7.13561003282,7.1349009608,7.13419188878,7.13348281675,7.13277374473,7.13206467271,7.13135560069,7.13064652867,7.12993745665,7.12922838463,7.12851931261,7.12781024059,7.12710116857,7.12639209654,7.12568302452,7.1249739525,7.12426488048,7.12355580846,7.12284673644,7.12213766442,7.1214285924,7.12071952038,7.12001044835,7.11930137633,7.11859230431,7.11788323229,7.11717416027,7.11646508825,7.11575601623,7.11504694421,7.11433787219,7.11362880016,7.11291972814,7.11221065612,7.1115015841,7.11079251208,7.11008344006,7.10937436804,7.10866529602,7.107956224,7.10724715197,7.10653807995,7.10582900793,7.10511993591,7.10441086389,7.10370179187,7.10299271985,7.10228364783,7.10157457581,7.10086550378,7.10015643176,7.09944735974,7.09873828772,7.0980292157,7.09732014368,7.09661107166,7.09590199964,7.09519292762,7.09448385559,7.09377478357,7.09306571155,7.09235663953,7.09164756751,7.09093849549,7.09022942347,7.08952035145,7.08881127943,7.08810220741,7.08739313538,7.08668406336,7.08597499134,7.08526591932,7.0845568473,7.08384777528,7.08313870326,7.08242963124,7.08172055922,7.08101148719,7.08030241517,7.07959334315,7.07888427113,7.07817519911,7.07746612709,7.07675705507,7.07604798305,7.07533891103,7.074629839,7.07392076698,7.07321169496,7.07250262294,7.07179355092,7.0710844789,7.07037540688,7.06966633486,7.06895726284,7.06824819081,7.06753911879,7.06683004677,7.06612097475,7.06541190273,7.06470283071,7.06399375869,7.06328468667,7.06257561465,7.06186654262,7.0611574706,7.06044839858,7.05973932656,7.05903025454,7.05832118252,7.0576121105,7.05690303848,7.05619396646,7.05548489443,7.05477582241,7.05406675039,7.05335767837,7.05264860635,7.05193953433,7.05123046231,7.05052139029,7.04981231827,7.04910324625,7.04839417422,7.0476851022,7.04697603018,7.04626695816,7.04555788614,7.04484881412,7.0441397421,7.04343067008,7.04272159806,7.04201252603,7.04130345401,7.04059438199,7.03988530997,7.03917623795,7.03846716593,7.03775809391,7.03704902189,7.03633994987,7.03563087784,7.03492180582,7.0342127338,7.03350366178,7.03279458976,7.03208551774,7.03137644572,7.0306673737,7.02995830168,7.02924922965,7.02854015763,7.02783108561,7.02712201359,7.02641294157,7.02570386955,7.02499479753,7.02428572551,7.02357665349,7.02286758146,7.02215850944,7.02144943742,7.0207403654,7.02003129338,7.01932222136,7.01861314934,7.01790407732,7.0171950053,7.01648593327,7.01577686125,7.01506778923,7.01435871721,7.01364964519,7.01294057317,7.01223150115,7.01152242913,7.01081335711,7.01010428508,7.00939521306,7.00868614104,7.00797706902,7.007267997,7.00655892498,7.00584985296,7.00514078094,7.00443170892,7.0037226369,7.00301356487,7.00230449285,7.00159542083,7.00088634881,7.00017727679,6.99946820477,6.99875913275,6.99805006073,6.99734098871,6.99663191668,6.99592284466,6.99521377264,6.99450470062,6.9937956286,6.99308655658,6.99237748456,6.99166841254,6.99095934052,6.99025026849,6.98954119647,6.98883212445,6.98812305243,6.98741398041,6.98670490839,6.98599583637,6.98528676435,6.98457769233,6.9838686203,6.98315954828,6.98245047626,6.98174140424,6.98103233222,6.9803232602,6.97961418818,6.97890511616,6.97819604414,6.97748697211,6.97677790009,6.97606882807,6.97535975605,6.97465068403,6.97394161201,6.97323253999,6.97252346797,6.97181439595,6.97110532392,6.9703962519,6.96968717988,6.96897810786,6.96826903584,6.96755996382,6.9668508918,6.96614181978,6.96543274776,6.96472367574,6.96401460371,6.96330553169,6.96259645967,6.96188738765,6.96117831563,6.96046924361,6.95976017159,6.95905109957,6.95834202755,6.95763295552,6.9569238835,6.95621481148,6.95550573946,6.95479666744,6.95408759542,6.9533785234,6.95266945138,6.95196037936,6.95125130733,6.95054223531,6.94983316329,6.94912409127,6.94841501925,6.94770594723,6.94699687521,6.94628780319,6.94557873117,6.94486965914,6.94416058712,6.9434515151,6.94274244308,6.94203337106,6.94132429904,6.94061522702,6.939906155,6.93919708298,6.93848801095,6.93777893893,6.93706986691,6.93636079489,6.93565172287,6.93494265085,6.93423357883,6.93352450681,6.93281543479,6.93210636276,6.93139729074,6.93068821872,6.9299791467,6.92927007468,6.92856100266,6.92785193064,6.92714285862,6.9264337866,6.92572471458,6.92501564255,6.92430657053,6.92359749851,6.92288842649,6.92217935447,6.92147028245,6.92076121043,6.92005213841,6.91934306639,6.91863399436,6.91792492234,6.91721585032,6.9165067783,6.91579770628,6.91508863426,6.91437956224,6.91367049022,6.9129614182,6.91225234617,6.91154327415,6.91083420213,6.91012513011,6.90941605809,6.90870698607,6.90799791405,6.90728884203,6.90657977001,6.90587069798,6.90516162596,6.90445255394,6.90374348192,6.9030344099,6.90232533788,6.90161626586,6.90090719384,6.90019812182,6.89948904979,6.89877997777,6.89807090575,6.89736183373,6.89665276171,6.89594368969,6.89523461767,6.89452554565,6.89381647363,6.8931074016,6.89239832958,6.89168925756,6.89098018554,6.89027111352,6.8895620415,6.88885296948,6.88814389746,6.88743482544,6.88672575342,6.88601668139,6.88530760937,6.88459853735,6.88388946533,6.88318039331,6.88247132129,6.88176224927,6.88105317725,6.88034410523,6.8796350332,6.87892596118,6.87821688916,6.87750781714,6.87679874512,6.8760896731,6.87538060108,6.87467152906,6.87396245704,6.87325338501,6.87254431299,6.87183524097,6.8728373239,6.87383940683,6.87484148976,6.87584357269,6.87684565561,6.87784773854,6.87884982147,6.8798519044,6.88085398733,6.88185607025,6.88285815318,6.88386023611,6.88486231904,6.88586440197,6.8868664849,6.88786856782,6.88887065075,6.88987273368,6.89087481661,6.89187689954,6.89287898247,6.89388106539,6.89488314832,6.89588523125,6.89688731418,6.89788939711,6.89889148004,6.89989356296,6.90089564589,6.90189772882,6.90289981175,6.90390189468,6.9049039776,6.90590606053,6.90690814346,6.90791022639,6.90891230932,6.90991439225,6.91091647517,6.9119185581,6.91292064103,6.91392272396,6.91492480689,6.91592688982,6.91692897274,6.91793105567,6.9189331386,6.91993522153,6.92093730446,6.92193938739,6.92294147031,6.92394355324,6.92494563617,6.9259477191,6.92694980203,6.92795188495,6.92895396788,6.92995605081,6.93095813374,6.93196021667,6.9329622996,6.93396438252,6.93496646545,6.93596854838,6.93697063131,6.93797271424,6.93897479717,6.93997688009,6.94097896302,6.94198104595,6.94298312888,6.94398521181,6.94498729474,6.94598937766,6.94699146059,6.94799354352,6.94899562645,6.94999770938,6.9509997923,6.95200187523,6.95300395816,6.95400604109,6.95500812402,6.95601020695,6.95701228987,6.9580143728,6.95901645573,6.96001853866,6.96102062159,6.96202270452,6.96302478744,6.96402687037,6.9650289533,6.96603103623,6.96703311916,6.96803520209,6.96903728501,6.97003936794,6.97104145087,6.9720435338,6.97304561673,6.97404769965,6.97504978258,6.97605186551,6.97705394844,6.97805603137,6.9790581143,6.98006019722,6.98106228015,6.98206436308,6.98306644601,6.98406852894,6.98507061187,6.98607269479,6.98707477772,6.98807686065,6.98907894358,6.99008102651,6.99108310944,6.99208519236,6.99308727529,6.99408935822,6.99509144115,6.99609352408,6.997095607,6.99809768993,6.99909977286,7.00010185579,7.00110393872,7.00210602165,7.00310810457,7.0041101875,7.00511227043,7.00611435336,7.00711643629,7.00811851922,7.00912060214,7.01012268507,7.011124768,7.01212685093,7.01312893386,7.01413101678,7.01513309971,7.01613518264,7.01713726557,7.0181393485,7.01914143143,7.02014351435,7.02114559728,7.02214768021,7.02314976314,7.02415184607,7.025153929,7.02615601192,7.02715809485,7.02816017778,7.02916226071,7.03016434364,7.03116642657,7.03216850949,7.03317059242,7.03417267535,7.03517475828,7.03617684121,7.03717892413,7.03818100706,7.03918308999,7.04018517292,7.04118725585,7.04218933878,7.0431914217,7.04419350463,7.04519558756,7.04619767049,7.04719975342,7.04820183635,7.04920391927,7.0502060022,7.05120808513,7.05221016806,7.05321225099,7.05421433392,7.05521641684,7.05621849977,7.0572205827,7.05822266563,7.05922474856,7.06022683148,7.06122891441,7.06223099734,7.06323308027,7.0642351632,7.06523724613,7.06623932905,7.06724141198,7.06824349491,7.06924557784,7.07024766077,7.0712497437,7.07225182662,7.07325390955,7.07425599248,7.07525807541,7.07626015834,7.07726224127,7.07826432419,7.07926640712,7.08026849005,7.08127057298,7.08227265591,7.08327473883,7.08427682176,7.08527890469,7.08628098762,7.08728307055,7.08828515348,7.0892872364,7.09028931933,7.09129140226,7.09229348519,7.09329556812,7.09429765105,7.09529973397,7.0963018169,7.09730389983,7.09830598276,7.09930806569,7.10031014862,7.10131223154,7.10231431447,7.1033163974,7.10431848033,7.10532056326,7.10632264618,7.10732472911,7.10832681204,7.10932889497,7.1103309779,7.11133306083,7.11233514375,7.11333722668,7.11433930961,7.11534139254,7.11634347547,7.1173455584,7.11834764132,7.11934972425,7.12035180718,7.12135389011,7.12235597304,7.12335805597,7.12436013889,7.12536222182,7.12636430475,7.12736638768,7.12836847061,7.12937055353,7.13037263646,7.13137471939,7.13237680232,7.13337888525,7.13438096818,7.1353830511,7.13638513403,7.13738721696,7.13838929989,7.13939138282,7.14039346575,7.14139554867,7.1423976316,7.14339971453,7.14440179746,7.14540388039,7.14640596332,7.14740804624,7.14841012917,7.1494122121,7.15041429503,7.15141637796,7.15241846088,7.15342054381,7.15442262674,7.15542470967,7.1564267926,7.15742887553,7.15843095845,7.15943304138,7.16043512431,7.16143720724,7.16243929017,7.1634413731,7.16444345602,7.16544553895,7.16644762188,7.16744970481,7.16845178774,7.16945387067,7.17045595359,7.17145803652,7.17246011945,7.17346220238,7.17446428531,7.17546636823,7.17646845116,7.17747053409,7.17847261702,7.17947469995,7.18047678288,7.1814788658,7.18248094873,7.18348303166,7.18448511459,7.18548719752,7.18648928045,7.18749136337,7.1884934463,7.18949552923,7.19049761216,7.19149969509,7.19250177802,7.19350386094,7.19450594387,7.1955080268,7.19651010973,7.19751219266,7.19851427558,7.19951635851,7.20051844144,7.20152052437,7.2025226073,7.20352469023,7.20452677315,7.20552885608,7.20653093901,7.20753302194,7.20853510487,7.2095371878,7.21053927072,7.21154135365,7.21254343658,7.21354551951,7.21454760244,7.21554968537,7.21655176829,7.21755385122,7.21855593415,7.21955801708,7.22056010001,7.22156218293,7.22256426586,7.22356634879,7.22456843172,7.22557051465,7.22657259758,7.2275746805,7.22857676343,7.22957884636,7.23058092929,7.23158301222,7.23258509515,7.23358717807,7.234589261,7.23559134393,7.23659342686,7.23759550979,7.23859759272,7.23959967564,7.24060175857,7.2416038415,7.24260592443,7.24360800736,7.24461009028,7.24561217321,7.24661425614,7.24761633907,7.248618422,7.24962050493,7.25062258785,7.25162467078,7.25262675371,7.25362883664,7.25463091957,7.2556330025,7.25663508542,7.25763716835,7.25863925128,7.25964133421,7.26064341714,7.26164550006,7.26264758299,7.26364966592,7.26465174885,7.26565383178,7.26665591471,7.26765799763,7.26866008056,7.26966216349,7.27066424642,7.27166632935,7.27266841228,7.2736704952,7.27467257813,7.27567466106,7.27667674399,7.27767882692,7.27868090985,7.27968299277,7.2806850757,7.28168715863,7.28268924156,7.28369132449,7.28469340741,7.28569549034,7.28669757327,7.2876996562,7.28870173913,7.28970382206,7.29070590498,7.29170798791,7.29271007084,7.29371215377,7.2947142367,7.29571631963,7.29671840255,7.29772048548,7.29872256841,7.29972465134,7.30072673427,7.3017288172,7.30273090012,7.30373298305,7.30473506598,7.30573714891,7.30673923184,7.30774131476,7.30874339769,7.30974548062,7.31074756355,7.31174964648,7.31275172941,7.31375381233,7.31475589526,7.31575797819,7.31676006112,7.31776214405,7.31876422698,7.3197663099,7.32076839283,7.32177047576,7.32277255869,7.32377464162,7.32477672455,7.32577880747,7.3267808904,7.32778297333,7.32878505626,7.32978713919,7.33078922211,7.33179130504,7.33279338797,7.3337954709,7.33479755383,7.33579963676,7.33680171968,7.33780380261,7.33880588554,7.33980796847,7.3408100514,7.34181213433,7.34281421725,7.34381630018,7.34481838311,7.34582046604,7.34682254897,7.3478246319,7.34882671482,7.34982879775,7.35083088068,7.35183296361,7.35283504654,7.35383712946,7.35483921239,7.35584129532,7.35684337825,7.35784546118,7.35884754411,7.35984962703,7.36085170996,7.36185379289,7.36285587582,7.36385795875,7.36486004168,7.3658621246,7.36686420753,7.36786629046,7.36886837339,7.36987045632,7.37087253925,7.37187462217,7.3728767051,7.37387878803,7.37488087096,7.37588295389,7.37688503681,7.37788711974,7.37888920267,7.3798912856,7.38089336853,7.38189545146,7.38289753438,7.38389961731,7.38490170024,7.38590378317,7.3869058661,7.38790794903,7.38891003195,7.38991211488,7.39091419781,7.39191628074,7.39291836367,7.3939204466,7.39492252952,7.39592461245,7.39692669538,7.39792877831,7.39893086124,7.39993294416,7.40093502709,7.40193711002,7.40293919295,7.40394127588,7.40494335881,7.40594544173,7.40694752466,7.40794960759,7.40895169052,7.40995377345,7.41095585638,7.4119579393,7.41296002223,7.41396210516,7.41496418809,7.41596627102,7.41696835395,7.41797043687,7.4189725198,7.41997460273,7.42097668566,7.42197876859,7.42298085151,7.42398293444,7.42498501737,7.4259871003,7.42698918323,7.42799126616,7.42899334908,7.42999543201,7.43099751494,7.43199959787,7.4330016808,7.43400376373,7.43500584665,7.43600792958,7.43701001251,7.43801209544,7.43901417837,7.4400162613,7.44101834422,7.44202042715,7.44302251008,7.44402459301,7.44502667594,7.44602875886,7.44703084179,7.44803292472,7.44903500765,7.45003709058,7.45103917351,7.45204125643,7.45304333936,7.45404542229,7.45504750522,7.45604958815,7.45705167108,7.458053754,7.45905583693,7.46005791986,7.46106000279,7.46206208572,7.46306416865,7.46406625157,7.4650683345,7.46607041743,7.46707250036,7.46807458329,7.46907666621,7.47007874914,7.47108083207,7.472082915,7.47308499793,7.47408708086,7.47508916378,7.47609124671,7.47709332964,7.47946334127,7.48183335289,7.48420336452,7.48657337614,7.48894338777,7.49131339939,7.49368341102,7.49605342264,7.49842343427,7.50079344589,7.50316345752,7.50553346914,7.50790348077,7.51027349239,7.51264350402,7.51501351564,7.51738352727,7.51975353889,7.52212355052,7.52449356214,7.52686357377,7.52923358539,7.53160359702,7.53397360864,7.53634362027,7.53871363189,7.54108364352,7.54345365514,7.54582366677,7.54819367839,7.55056369002,7.55293370164,7.55530371327,7.55767372489,7.56004373652,7.56241374814,7.56478375977,7.56715377139,7.56952378302,7.57189379464,7.57426380627,7.57663381789,7.57900382952,7.58137384114,7.58374385277,7.58611386439,7.58848387602,7.59085388764,7.59322389927,7.59559391089,7.59796392252,7.60033393414,7.60270394577,7.60507395739,7.60744396902,7.60981398064,7.61218399227,7.61455400389,7.61692401552,7.61929402714,7.62166403877,7.62403405039,7.62640406202,7.62877407365,7.63114408527,7.6335140969,7.63588410852,7.63825412015,7.64062413177,7.6429941434,7.64536415502,7.64773416665,7.65010417827,7.6524741899,7.65484420152,7.65721421315,7.65958422477,7.6619542364,7.66432424802,7.66669425965,7.66906427127,7.6714342829,7.67380429452,7.67617430615,7.67854431777,7.6809143294,7.68328434102,7.68565435265,7.68802436427,7.6903943759,7.69276438752,7.69513439915,7.69750441077,7.6998744224,7.70224443402,7.70461444565,7.70698445727,7.7093544689,7.71172448052,7.71409449215,7.71646450377,7.7188345154,7.72120452702,7.72357453865,7.72594455027,7.7283145619,7.73068457352,7.73305458515,7.73542459677,7.7377946084,7.74016462002,7.74253463165,7.74490464327,7.7472746549,7.74964466652,7.75201467815,7.75438468977,7.7567547014,7.75912471302,7.76149472465,7.76386473627,7.7662347479,7.76860475952,7.77097477115,7.77334478277,7.7757147944,7.77808480602,7.78045481765,7.78282482927,7.7851948409,7.78756485252,7.78993486415,7.79230487577,7.7946748874,7.79704489902,7.79941491065,7.80178492228,7.8041549339,7.80652494553,7.80889495715,7.81126496878,7.8136349804,7.81600499203,7.81837500365,7.82074501528,7.8231150269,7.82548503853,7.82785505015,7.83022506178,7.8325950734,7.83496508503,7.83733509665,7.83970510828,7.8420751199,7.84444513153,7.84681514315,7.84918515478,7.8515551664,7.85392517803,7.85629518965,7.85866520128,7.8610352129,7.86340522453,7.86577523615,7.86814524778,7.8705152594,7.87288527103,7.87525528265,7.87762529428,7.8799953059,7.88236531753,7.88473532915,7.88710534078,7.8894753524,7.89184536403,7.89421537565,7.89658538728,7.8989553989,7.90132541053,7.90369542215,7.90606543378,7.9084354454,7.91080545703,7.91317546865,7.91554548028,7.9179154919,7.92028550353,7.92265551515,7.92502552678,7.9273955384,7.92976555003,7.93213556165,7.93450557328,7.9368755849,7.93924559653,7.94161560815,7.94398561978,7.9463556314,7.94872564303,7.95109565465,7.95346566628,7.9558356779,7.95820568953,7.96057570115,7.96294571278,7.9653157244,7.96768573603,7.97005574765,7.97242575928,7.97479577091,7.97716578253,7.97953579416,7.98190580578,7.98427581741,7.98664582903,7.98901584066,7.99138585228,7.99375586391,7.99612587553,7.99849588716,8.00086589878,8.00323591041,8.00560592203,8.00797593366,8.01034594528,8.01271595691,8.01508596853,8.01745598016,8.01982599178,8.02219600341,8.02456601503,8.02693602666,8.02930603828,8.03167604991,8.03404606153,8.03641607316,8.03878608478,8.04115609641,8.04352610803,8.04589611966,8.04826613128,8.05063614291,8.05300615453,8.05537616616,8.05774617778,8.06011618941,8.06248620103,8.06485621266,8.06722622428,8.06959623591,8.07196624753,8.07433625916,8.07670627078,8.07907628241,8.08144629403,8.08381630566,8.08618631728,8.08855632891,8.09092634053,8.09329635216,8.09566636378,8.09803637541,8.10040638703,8.10277639866,8.10514641028,8.10751642191,8.10988643353,8.11225644516,8.11462645678,8.11699646841,8.11936648003,8.12173649166,8.12410650328,8.12647651491,8.12884652653,8.13121653816,8.13358654978,8.13595656141,8.13832657303,8.14069658466,8.14306659628,8.14543660791,8.14780661954,8.15017663116,8.15254664279,8.15491665441,8.15728666604,8.15965667766,8.16202668929,8.16439670091,8.16676671254,8.16913672416,8.17150673579,8.17387674741,8.17624675904,8.17861677066,8.18098678229,8.18335679391,8.18572680554,8.18809681716,8.19046682879,8.19283684041,8.19520685204,8.19757686366,8.19994687529,8.20231688691,8.20468689854,8.20705691016,8.20942692179,8.21179693341,8.21416694504,8.21653695666,8.21890696829,8.22127697991,8.22364699154,8.22601700316,8.22838701479,8.23075702641,8.23312703804,8.23549704966,8.23786706129,8.24023707291,8.24260708454,8.24497709616,8.24734710779,8.24971711941,8.25208713104,8.25445714266,8.25682715429,8.25919716591,8.26156717754,8.26393718916,8.26630720079,8.26867721241,8.27104722404,8.27341723566,8.27578724729,8.27815725891,8.28052727054,8.28289728216,8.28526729379,8.28763730541,8.29000731704,8.29237732866,8.29474734029,8.29711735191,8.29948736354,8.30185737516,8.30422738679,8.30659739841,8.30896741004,8.31133742166,8.31370743329,8.31607744491,8.31844745654,8.32081746817,8.32318747979,8.32555749142,8.32792750304,8.33029751467,8.33266752629,8.33503753792,8.33740754954,8.33977756117,8.34214757279,8.34451758442,8.34688759604,8.34925760767,8.35162761929,8.35399763092,8.35636764254,8.35873765417,8.36110766579,8.36347767742,8.36584768904,8.36821770067,8.37058771229,8.37295772392,8.37532773554,8.37769774717,8.38006775879,8.38243777042,8.38480778204,8.38717779367,8.38954780529,8.39191781692,8.39428782854,8.39665784017,8.39902785179,8.40139786342,8.40376787504,8.40613788667,8.40850789829,8.41087790992,8.41324792154,8.41561793317,8.41798794479,8.42035795642,8.42272796804,8.42509797967,8.42746799129,8.42983800292,8.43220801454,8.43457802617,8.43694803779,8.43931804942,8.44168806104,8.44405807267,8.44642808429,8.44879809592,8.45116810754,8.45353811917,8.45590813079,8.45827814242,8.46064815404,8.46301816567,8.46538817729,8.46775818892,8.47012820054,8.47249821217,8.47486822379,8.47723823542,8.47960824704,8.48197825867,8.48434827029,8.48671828192,8.48908829354,8.49145830517,8.4938283168,8.49619832842,8.49856834005,8.50093835167,8.5033083633,8.50567837492,8.50804838655,8.51041839817,8.5127884098,8.51515842142,8.51752843305,8.51989844467,8.5222684563,8.52463846792,8.52700847955,8.52937849117,8.5317485028,8.53411851442,8.53648852605,8.53885853767,8.5412285493,8.54359856092,8.54596857255,8.54833858417,8.5507085958,8.55307860742,8.55544861905,8.55781863067,8.5601886423,8.56255865392,8.56492866555,8.56729867717,8.5696686888,8.57203870042,8.57440871205,8.57677872367,8.5791487353,8.58151874692,8.58388875855,8.58625877017,8.5886287818,8.59099879342,8.59336880505,8.59573881667,8.5981088283,8.60047883992,8.60284885155,8.60521886317,8.6075888748,8.60995888642,8.61232889805,8.61469890967,8.6170689213,8.61943893292,8.62180894455,8.62417895617,8.6265489678,8.62891897942,8.63128899105,8.63365900267,8.6360290143,8.63839902592,8.64076903755,8.64313904917,8.6455090608,8.64787907242,8.65024908405,8.65261909567,8.6549891073,8.65735911892,8.65972913055,8.66209914217,8.6644691538,8.66683916543,8.66920917705,8.67157918868,8.6739492003,8.67631921193,8.67868922355,8.68105923518,8.6834292468,8.68579925843,8.68816927005,8.69053928168,8.6929092933,8.69527930493,8.69764931655,8.70001932818,8.7023893398,8.70475935143,8.70712936305,8.70949937468,8.7118693863,8.71423939793,8.71660940955,8.71897942118,8.7213494328,8.72371944443,8.72608945605,8.72845946768,8.7308294793,8.73319949093,8.73556950255,8.73793951418,8.7403095258,8.74267953743,8.74504954905,8.74741956068,8.7497895723,8.75215958393,8.75452959555,8.75689960718,8.7592696188,8.76163963043,8.76400964205,8.76637965368,8.7687496653,8.77111967693,8.77348968855,8.77585970018,8.7782297118,8.78059972343,8.78296973505,8.78533974668,8.7877097583,8.79007976993,8.79244978155,8.79481979318,8.7971898048,8.79955981643,8.80192982805,8.80429983968,8.8066698513,8.80903986293,8.81140987455,8.81377988618,8.8161498978,8.81851990943,8.82088992105,8.82325993268,8.8256299443,8.82799995593,8.83036996755,8.83273997918,8.8351099908,8.83748000243,8.83985001406,8.84222002568,8.84459003731,8.84696004893,8.84933006056,8.85170007218,8.85407008381,8.85644009543,8.85881010706,8.86118011868,8.86355013031,8.86592014193,8.86829015356,8.87066016518,8.87303017681,8.87540018843,8.87777020006,8.88014021168,8.88251022331,8.88488023493,8.88725024656,8.88962025818,8.89199026981,8.89436028143,8.89673029306,8.89910030468,8.90147031631,8.90384032793,8.90621033956,8.90858035118,8.91159180549,8.91460325979,8.91761471409,8.9206261684,8.9236376227,8.926649077,8.92966053131,8.93267198561,8.93568343992,8.93869489422,8.94170634852,8.94471780283,8.94772925713,8.95074071144,8.95375216574,8.95676362004,8.95977507435,8.96278652865,8.96579798295,8.96880943726,8.97182089156,8.97483234587,8.97784380017,8.98085525447,8.98386670878,8.98687816308,8.98988961738,8.99290107169,8.99591252599,8.9989239803,9.0019354346,9.0049468889,9.00795834321,9.01096979751,9.01398125181,9.01699270612,9.02000416042,9.02301561473,9.02602706903,9.02903852333,9.03204997764,9.03506143194,9.03807288624,9.04108434055,9.04409579485,9.04710724916,9.05011870346,9.05313015776,9.05614161207,9.05915306637,9.06216452068,9.06517597498,9.06818742928,9.07119888359,9.07421033789,9.07722179219,9.0802332465,9.0832447008,9.08625615511,9.08926760941,9.09227906371,9.09529051802,9.09830197232,9.10131342662,9.10432488093,9.10733633523,9.11034778954,9.11335924384,9.11637069814,9.11938215245,9.12239360675,9.12540506105,9.12841651536,9.13142796966,9.13443942397,9.13745087827,9.14046233257,9.14347378688,9.14648524118,9.14949669549,9.15250814979,9.15551960409,9.1585310584,9.1615425127,9.164553967,9.16756542131,9.17057687561,9.17358832992,9.17659978422,9.17961123852,9.18262269283,9.18563414713,9.18864560143,9.19165705574,9.19466851004,9.19767996435,9.20069141865,9.20370287295,9.20671432726,9.20972578156,9.21273723586,9.21574869017,9.21876014447,9.22177159878,9.22478305308,9.22779450738,9.23080596169,9.23381741599,9.23682887029,9.2398403246,9.2428517789,9.24586323321,9.24887468751,9.25188614181,9.25489759612,9.25790905042,9.26092050473,9.26393195903,9.26694341333,9.26995486764,9.27296632194,9.27597777624,9.27898923055,9.28200068485,9.28501213916,9.28802359346,9.29103504776,9.29404650207,9.29705795637,9.30006941067,9.30308086498,9.30609231928,9.30910377359,9.31211522789,9.31512668219,9.3181381365,9.3211495908,9.3241610451,9.32717249941,9.33018395371,9.33319540802,9.33620686232,9.33921831662,9.34222977093,9.34524122523,9.34825267954,9.35126413384,9.35427558814,9.35728704245,9.36029849675,9.36330995105,9.36632140536,9.36933285966,9.37234431397,9.37535576827,9.37836722257,9.38137867688,9.38439013118,9.38740158548,9.39041303979,9.39342449409,9.3964359484,9.3994474027,9.402458857,9.40547031131,9.40848176561,9.41149321991,9.41450467422,9.41751612852,9.42052758283,9.42353903713,9.42655049143,9.42956194574,9.43257340004,9.43558485435,9.43859630865,9.44160776295,9.44461921726,9.44763067156,9.45064212586,9.45365358017,9.45666503447,9.45967648878,9.46268794308,9.46569939738,9.46871085169,9.47172230599,9.47473376029,9.4777452146,9.4807566689,9.48376812321,9.48677957751,9.48979103181,9.49280248612,9.49581394042,9.49882539472,9.50183684903,9.50484830333,9.50785975764,9.51087121194,9.51388266624,9.51689412055,9.51990557485,9.52291702915,9.52592848346,9.52893993776,9.53195139207,9.53496284637,9.53797430067,9.54098575498,9.54399720928,9.54700866359,9.55002011789,9.55303157219,9.5560430265,9.5590544808,9.5620659351,9.56507738941,9.56808884371,9.57110029802,9.57411175232,9.57712320662,9.58013466093,9.58314611523,9.58615756953,9.58916902384,9.59218047814,9.59519193245,9.59820338675,9.60121484105,9.60422629536,9.60723774966,9.61024920396,9.61326065827,9.61627211257,9.61928356688,9.62229502118,9.62530647548,9.62831792979,9.63132938409,9.6343408384,9.6373522927,9.640363747,9.64337520131,9.64638665561,9.64939810991,9.65240956422,9.65542101852,9.65843247283,9.66144392713,9.66445538143,9.66746683574,9.67047829004,9.67348974434,9.67650119865,9.67951265295,9.68252410726,9.68553556156,9.68854701586,9.69155847017,9.69456992447,9.69758137877,9.70059283308,9.70360428738,9.70661574169,9.70962719599,9.71263865029,9.7156501046,9.7186615589,9.72167301321,9.72468446751,9.72769592181,9.73070737612,9.73371883042,9.73673028472,9.73974173903,9.74275319333,9.74576464764,9.74877610194,9.75178755624,9.75479901055,9.75781046485,9.76082191915,9.76383337346,9.76684482776,9.76985628207,9.77286773637,9.77587919067,9.77889064498,9.78190209928,9.78491355358,9.78792500789,9.79093646219,9.7939479165,9.7969593708,9.7999708251,9.80298227941,9.80599373371,9.80900518801,9.81201664232,9.81502809662,9.81803955093,9.82105100523,9.82406245953,9.82707391384,9.83008536814,9.83309682245,9.83610827675,9.83911973105,9.84213118536,9.84514263966,9.84815409396,9.85116554827,9.85417700257,9.85718845688,9.86019991118,9.86321136548,9.86622281979,9.86923427409,9.87224572839,9.8752571827,9.878268637,9.88128009131,9.88429154561,9.88730299991,9.89031445422,9.89332590852,9.89633736282,9.89934881713,9.90236027143,9.90537172574,9.90838318004,9.91139463434,9.91440608865,9.91741754295,9.92042899726,9.92344045156,9.92645190586,9.92946336017,9.93247481447,9.93548626877,9.93849772308,9.94150917738,9.94452063169,9.94753208599,9.95054354029,9.9535549946,9.9565664489,9.9595779032,9.96258935751,9.96560081181,9.96861226612,9.97162372042,9.97463517472,9.97764662903,9.98065808333,9.98366953763,9.98668099194,9.98969244624,9.99270390055,9.99571535485,9.99872680915,10.0017382635,10.0047497178,10.0077611721,10.0107726264,10.0137840807,10.016795535,10.0198069893,10.0228184436,10.0258298979,10.0288413522,10.0318528065,10.0348642608,10.0378757151,10.0408871694,10.0438986237,10.046910078,10.0499215323,10.0529329866,10.0559444409,10.0589558952,10.0619673495,10.0649788038,10.0679902581,10.0710017124,10.0740131667,10.0770246211,10.0800360754,10.0830475297,10.086058984,10.0890704383,10.0920818926,10.0950933469,10.0981048012,10.1011162555,10.1041277098,10.1071391641,10.1101506184,10.1131620727,10.116173527,10.1191849813,10.1221964356,10.1252078899,10.1282193442,10.1312307985,10.1342422528,10.1372537071,10.1402651614,10.1432766157,10.14628807,10.1492995243,10.1523109786,10.155322433,10.1583338873,10.1613453416,10.1643567959,10.1673682502,10.1703797045,10.1733911588,10.1764026131,10.1794140674,10.1824255217,10.185436976,10.1884484303,10.1914598846,10.1944713389,10.1974827932,10.2004942475,10.2035057018,10.2065171561,10.2095286104,10.2125400647,10.215551519,10.2185629733,10.2215744276,10.2245858819,10.2275973362,10.2306087905,10.2336202448,10.2366316992,10.2396431535,10.2426546078,10.2456660621,10.2486775164,10.2516889707,10.254700425,10.2577118793,10.2607233336,10.2637347879,10.2667462422,10.2697576965,10.2727691508,10.2757806051,10.2787920594,10.2818035137,10.284814968,10.2878264223,10.2908378766,10.2938493309,10.2968607852,10.2998722395,10.3028836938,10.3058951481,10.3089066024,10.3119180567,10.3149295111,10.3179409654,10.3209524197,10.323963874,10.3269753283,10.3299867826,10.3329982369,10.3360096912,10.3390211455,10.3420325998,10.3450440541,10.3480555084,10.3510669627,10.354078417,10.3570898713,10.3601013256,10.3631127799,10.3661242342,10.3691356885,10.3721471428,10.3751585971,10.3781700514,10.3811815057,10.38419296,10.3872044143,10.3902158686,10.3932273229,10.3962387773,10.3992502316,10.4022616859,10.4052731402,10.4082845945,10.4112960488,10.4143075031,10.4173189574,10.4203304117,10.423341866,10.4263533203,10.4293647746,10.4323762289,10.4353876832,10.4383991375,10.4414105918,10.4444220461,10.4474335004,10.4504449547,10.453456409,10.4564678633,10.4594793176,10.4624907719,10.4655022262,10.4685136805,10.4715251348,10.4745365892,10.4775480435,10.4805594978,10.4835709521,10.4865824064,10.4895938607,10.492605315,10.4956167693,10.4986282236,10.5016396779,10.5046511322,10.5076625865,10.5106740408,10.5136854951,10.5166969494,10.5197084037,10.522719858,10.5257313123,10.5287427666,10.5317542209,10.5347656752,10.5377771295,10.5407885838,10.5438000381,10.5468114924,10.5498229467,10.5528344011,10.5558458554,10.5588573097,10.561868764,10.5648802183,10.5678916726,10.5709031269,10.5739145812,10.5769260355,10.5799374898,10.5829489441,10.5859603984,10.5889718527,10.591983307,10.5949947613,10.5980062156,10.6010176699,10.6040291242,10.6070405785,10.6100520328,10.6130634871,10.6160749414,10.6190863957,10.62209785,10.6251093043,10.6281207586,10.6311322129,10.6341436673,10.6371551216,10.6401665759,10.6431780302,10.6461894845,10.6492009388,10.6522123931,10.6552238474,10.6582353017,10.661246756,10.6642582103,10.6672696646,10.6702811189,10.6732925732,10.6763040275,10.6793154818,10.6823269361,10.6853383904,10.6883498447,10.691361299,10.6943727533,10.6973842076,10.7003956619,10.7034071162,10.7064185705,10.7094300248,10.7124414792,10.7154529335,10.7184643878,10.7214758421,10.7244872964,10.7274987507,10.7305243851,10.7335500195,10.736575654,10.7396012884,10.7426269228,10.7456525573,10.7486781917,10.7517038261,10.7547294606,10.757755095,10.7607807295,10.7638063639,10.7668319983,10.7698576328,10.7728832672,10.7759089016,10.7789345361,10.7819601705,10.7849858049,10.7880114394,10.7910370738,10.7940627082,10.7970883427,10.8001139771,10.8031396115,10.806165246,10.8091908804,10.8122165148,10.8152421493,10.8182677837,10.8212934182,10.8243190526,10.827344687,10.8303703215,10.8333959559,10.8364215903,10.8394472248,10.8424728592,10.8454984936,10.8485241281,10.8515497625,10.8545753969,10.8576010314,10.8606266658,10.8636523002,10.8666779347,10.8697035691,10.8727292035,10.875754838,10.8787804724,10.8818061068,10.8848317413,10.8878573757,10.8908830102,10.8939086446,10.896934279,10.8999599135,10.9029855479,10.9060111823,10.9090368168,10.9120624512,10.9150880856,10.9181137201,10.9211393545,10.9241649889,10.9271906234,10.9302162578,10.9332418922,10.9362675267,10.9392931611,10.9423187955,10.94534443,10.9483700644,10.9513956989,10.9544213333,10.9574469677,10.9604726022,10.9634982366,10.966523871,10.9695495055,10.9725751399,10.9756007743,10.9786264088,10.9816520432,10.9846776776,10.9877033121,10.9907289465,10.9937545809,10.9967802154,10.9998058498,11.0028314842,11.0058571187,11.0088827531,11.0119083875,11.014934022,11.0179596564,11.0209852909,11.0240109253,11.0270365597,11.0300621942,11.0330878286,11.036113463,11.0391390975,11.0421647319,11.0451903663,11.0482160008,11.0512416352,11.0542672696,11.0572929041,11.0603185385,11.0633441729,11.0663698074,11.0693954418,11.0724210762,11.0754467107,11.0784723451,11.0814979795,11.084523614,11.0875492484,11.0905748829,11.0936005173,11.0966261517,11.0996517862,11.1026774206,11.105703055,11.1087286895,11.1117543239,11.1147799583,11.1178055928,11.1208312272,11.1238568616,11.1268824961,11.1299081305,11.1329337649,11.1359593994,11.1389850338,11.1420106682,11.1450363027,11.1480619371,11.1510875716,11.154113206,11.1571388404,11.1601644749,11.1631901093,11.1662157437,11.1692413782,11.1722670126,11.175292647,11.1783182815,11.1813439159,11.1843695503,11.1873951848,11.1904208192,11.1934464536,11.1964720881,11.1994977225,11.2025233569,11.2055489914,11.2085746258,11.2116002602,11.2146258947,11.2176515291,11.2206771636,11.223702798,11.2267284324,11.2297540669,11.2327797013,11.2358053357,11.2388309702,11.2418566046,11.244882239,11.2479078735,11.2509335079,11.2539591423,11.2569847768,11.2600104112,11.2630360456,11.2660616801,11.2690873145,11.2721129489,11.2751385834,11.2781642178,11.2811898523,11.2842154867,11.2872411211,11.2902667556,11.29329239,11.2963180244,11.2993436589,11.3023692933,11.3053949277,11.3084205622,11.3114461966,11.314471831,11.3174974655,11.3205230999,11.3235487343,11.3265743688,11.3296000032,11.3326256376,11.3356512721,11.3386769065,11.3417025409,11.3447281754,11.3477538098,11.3507794443,11.3538050787,11.3568307131,11.3598563476,11.362881982,11.3659076164,11.3689332509,11.3719588853,11.3749845197,11.3780101542,11.3810357886,11.384061423,11.3870870575,11.3901126919,11.3931383263,11.3961639608,11.3991895952,11.4022152296,11.4052408641,11.4082664985,11.4112921329,11.4143177674,11.4173434018,11.4203690363,11.4233946707,11.4264203051,11.4294459396,11.432471574,11.4354972084,11.4385228429,11.4415484773,11.4445741117,11.4475997462,11.4506253806,11.453651015,11.4566766495,11.4597022839,11.4627279183,11.4657535528,11.4687791872,11.4718048216,11.4748304561,11.4778560905,11.480881725,11.4839073594,11.4869329938,11.4899586283,11.4929842627,11.4960098971,11.4990355316,11.502061166,11.5050868004,11.5081124349,11.5111380693,11.5141637037,11.5171893382,11.5202149726,11.523240607,11.5262662415,11.5292918759,11.5323175103,11.5353431448,11.5383687792,11.5413944136,11.5444200481,11.5474456825,11.550471317,11.5534969514,11.5565225858,11.5595482203,11.5625738547,11.5655994891,11.5686251236,11.571650758,11.5746763924,11.5777020269,11.5807276613,11.5837532957,11.5867789302,11.5898045646,11.592830199,11.5958558335,11.5988814679,11.6019071023,11.6049327368,11.6079583712,11.6109840057,11.6140096401,11.6170352745,11.620060909,11.6230865434,11.6261121778,11.6291378123,11.6321634467,11.6351890811,11.6382147156,11.64124035,11.6442659844,11.6472916189,11.6503172533,11.6533428877,11.6563685222,11.6593941566,11.662419791,11.6654454255,11.6684710599,11.6714966943,11.6745223288,11.6775479632,11.6805735977,11.6835992321,11.6866248665,11.689650501,11.6926761354,11.6957017698,11.6987274043,11.7017530387,11.7047786731,11.7078043076,11.710829942,11.7138555764,11.7168812109,11.7199068453,11.7229324797,11.7259581142,11.7289837486,11.732009383,11.7350350175,11.7380606519,11.7410862863,11.7441119208,11.7471375552,11.7501631897,11.7531888241,11.7562144585,11.759240093,11.7622657274,11.7652913618,11.7683169963,11.7713426307,11.7743682651,11.7773938996,11.780419534,11.7834451684,11.7864708029,11.7894964373,11.7925220717,11.7955477062,11.7985733406,11.801598975,11.8046246095,11.8076502439,11.8106758784,11.8137015128,11.8167271472,11.8197527817,11.8227784161,11.8258040505,11.828829685,11.8318553194,11.8348809538,11.8379065883,11.8409322227,11.8439578571,11.8469834916,11.850009126,11.8530347604,11.8560603949,11.8590860293,11.8621116637,11.8651372982,11.8681629326,11.871188567,11.8742142015,11.8772398359,11.8802654704,11.8832911048,11.8863167392,11.8893423737,11.8923680081,11.8953936425,11.898419277,11.9014449114,11.9044705458,11.9074961803,11.9105218147,11.9135474491,11.9165730836,11.919598718,11.9226243524,11.9256499869,11.9286756213,11.9317012557,11.9347268902,11.9377525246,11.9407781591,11.9438037935,11.9468294279,11.9498550624,11.9528806968,11.9559063312,11.9589319657,11.9619576001,11.9649832345,11.968008869,11.9710345034,11.9740601378,11.9770857723,11.9801114067,11.9831370411,11.9861626756,11.98918831,11.9922139444,11.9952395789,11.9982652133,12.0012908477,12.0043164822,12.0073421166,12.0103677511,12.0133933855,12.0164190199,12.0194446544,12.0224702888,12.0254959232,12.0285215577,12.0315471921,12.0345728265,12.037598461,12.0406240954,12.0436497298,12.0466753643,12.0497009987,12.0527266331,12.0557522676,12.058777902,12.0618035364,12.0648291709,12.0678548053,12.0708804398,12.0739060742,12.0769317086,12.0799573431,12.0829829775,12.0860086119,12.0890342464,12.0920598808,12.0950855152,12.0981111497,12.1011367841,12.1041624185,12.107188053,12.1102136874,12.1132393218,12.1162649563,12.1192905907,12.1223162251,12.1253418596,12.128367494,12.1313931284,12.1344187629,12.1374443973,12.1404700318,12.1434956662,12.1465213006,12.1495469351,12.1525725695,12.1555982039,12.1586238384,12.1616494728,12.1646751072,12.1677007417,12.1707263761,12.1737520105,12.176777645,12.1798032794,12.1828289138,12.1858545483,12.1888801827,12.1919058171,12.1949314516,12.197957086,12.2009827204,12.2040083549,12.2070339893,12.2100596238,12.2130852582,12.2161108926,12.2191365271,12.2221621615,12.2251877959,12.2282134304,12.2312390648,12.2342646992,12.2372903337,12.2403159681,12.2433416025,12.246367237,12.2493928714,12.2524185058,12.2554441403,12.2584697747,12.2614954091,12.2645210436,12.267546678,12.2705723125,12.2735979469,12.2766235813,12.2796492158,12.2826748502,12.2857004846,12.2887261191,12.2917517535,12.2947773879,12.2978030224,12.3008286568,12.3038542912,12.3068799257,12.3099055601,12.3129311945,12.315956829,12.3189824634,12.3220080978,12.3250337323,12.3280593667,12.3310850011,12.3341106356,12.33713627,12.3401619045,12.3431875389,12.3462131733,12.3492388078,12.3522644422,12.3552900766,12.3583157111,12.3613413455,12.3643669799,12.3673926144,12.3704182488,12.3734438832,12.3764695177,12.3794951521,12.3825207865,12.385546421,12.3885720554,12.3915976898,12.3946233243,12.3976489587,12.4006745932,12.4037002276,12.406725862,12.4097514965,12.4127771309,12.4158027653,12.4188283998,12.4218540342,12.4248796686,12.4279053031,12.4309309375,12.4339565719,12.4369822064,12.4400078408,12.4430334752,12.4460591097,12.4490847441,12.4521103785,12.455136013,12.4581616474,12.4611872818,12.4642129163,12.4672385507,12.4702641852,12.4732898196,12.476315454,12.4793410885,12.4823667229,12.4853923573,12.4884179918,12.4914436262,12.4944692606,12.4974948951,12.5005205295,12.5035461639,12.5065717984,12.5095974328,12.5126230672,12.5156487017,12.5186743361,12.5216999705,12.524725605,12.5277512394,12.5307768738,12.5338025083,12.5368281427,12.5398537772,12.5428794116,12.545905046,12.5489306805,12.5519563149,12.5549819493,12.5575519085,12.5601218677,12.562691827,12.5652617862,12.5678317454,12.5704017046,12.5729716638,12.575541623,12.5781115822,12.5806815414,12.5832515006,12.5858214598,12.5883914191,12.5909613783,12.5935313375,12.5961012967,12.5986712559,12.6012412151,12.6038111743,12.6063811335,12.6089510927,12.6115210519,12.6140910111,12.6166609704,12.6192309296,12.6218008888,12.624370848,12.6269408072,12.6295107664,12.6320807256,12.6346506848,12.637220644,12.6397906032,12.6423605624,12.6449305217,12.6475004809,12.6500704401,12.6526403993,12.6552103585,12.6577803177,12.6603502769,12.6629202361,12.6654901953,12.6680601545,12.6706301138,12.673200073,12.6757700322,12.6783399914,12.6809099506,12.6834799098,12.686049869,12.6886198282,12.6911897874,12.6937597466,12.6963297058,12.6988996651,12.7014696243,12.7040395835,12.7066095427,12.7091795019,12.7117494611,12.7143194203,12.7168893795,12.7194593387,12.7220292979,12.7245992571,12.7271692164,12.7297391756,12.7323091348,12.734879094,12.7374490532,12.7400190124,12.7425889716,12.7451589308,12.74772889,12.7502988492,12.7528688085,12.7554387677,12.7580087269,12.7605786861,12.7631486453,12.7657186045,12.7682885637,12.7708585229,12.7734284821,12.7759984413,12.7785684005,12.7811383598,12.783708319,12.7862782782,12.7888482374,12.7914181966,12.7939881558,12.796558115,12.7991280742,12.8016980334,12.8042679926,12.8068379518,12.8094079111,12.8119778703,12.8145478295,12.8171177887,12.8196877479,12.8222577071,12.8248276663,12.8273976255,12.8299675847,12.8325375439,12.8351075032,12.8376774624,12.8402474216,12.8428173808,12.84538734,12.8479572992,12.8505272584,12.8530972176,12.8556671768,12.858237136,12.8608070952,12.8633770545,12.8659470137,12.8685169729,12.8710869321,12.8736568913,12.8762268505,12.8787968097,12.8813667689,12.8839367281,12.8865066873,12.8890766465,12.8916466058,12.894216565,12.8967865242,12.8993564834,12.9019264426,12.9044964018,12.907066361,12.9096363202,12.9122062794,12.9147762386,12.9173461979,12.9199161571,12.9224861163,12.9250560755,12.9276260347,12.9301959939,12.9327659531,12.9353359123,12.9379058715,12.9404758307,12.9430457899,12.9456157492,12.9481857084,12.9507556676,12.9533256268,12.955895586,12.9584655452,12.9610355044,12.9636054636,12.9661754228,12.968745382,12.9713153412,12.9738853005,12.9764552597,12.9790252189,12.9815951781,12.9841651373,12.9867350965,12.9893050557,12.9918750149,12.9944449741,12.9970149333,12.9995848926,13.0021548518,13.004724811,13.0072947702,13.0098647294,13.0124346886,13.0150046478,13.017574607,13.0201445662,13.0227145254,13.0252844846,13.0278544439,13.0304244031,13.0329943623,13.0355643215,13.0381342807,13.0407042399,13.0432741991,13.0458441583,13.0484141175,13.0509840767,13.0535540359,13.0561239952,13.0586939544,13.0612639136,13.0638338728,13.066403832,13.0689737912,13.0715437504,13.0741137096,13.0766836688,13.079253628,13.0818235873,13.0843935465,13.0869635057,13.0895334649,13.0921034241,13.0946733833,13.0972433425,13.0998133017,13.1023832609,13.1049532201,13.1075231793,13.1100931386,13.1126630978,13.115233057,13.1178030162,13.1203729754,13.1229429346,13.1255128938,13.128082853,13.1306528122,13.1332227714,13.1357927306,13.1383626899,13.1409326491,13.1435026083,13.1460725675,13.1486425267,13.1512124859,13.1537824451,13.1563524043,13.1589223635,13.1614923227,13.164062282,13.1666322412,13.1692022004,13.1717721596,13.1743421188,13.176912078,13.1794820372,13.1820519964,13.1846219556,13.1871919148,13.189761874,13.1923318333,13.1949017925,13.1974717517,13.2000417109,13.2026116701,13.2051816293,13.2077515885,13.2103215477,13.2128915069,13.2154614661,13.2180314253,13.2206013846,13.2231713438,13.225741303,13.2283112622,13.2308812214,13.2334511806,13.2360211398,13.238591099,13.2411610582,13.2437310174,13.2463009767,13.2488709359,13.2514408951,13.2540108543,13.2565808135,13.2591507727,13.2617207319,13.2642906911,13.2668606503,13.2694306095,13.2720005687,13.274570528,13.2771404872,13.2797104464,13.2822804056,13.2848503648,13.287420324,13.2899902832,13.2925602424,13.2951302016,13.2977001608,13.30027012,13.3028400793,13.3054100385,13.3079799977,13.3105499569,13.3131199161,13.3156898753,13.3182598345,13.3208297937,13.3233997529,13.3259697121,13.3285396714,13.3311096306,13.3336795898,13.336249549,13.3388195082,13.3413894674,13.3439594266,13.3465293858,13.349099345,13.3516693042,13.3542392634,13.3568092227,13.3593791819,13.3619491411,13.3645191003,13.3670890595,13.3696590187,13.3722289779,13.3747989371,13.3773688963,13.3799388555,13.3825088147,13.385078774,13.3876487332,13.3902186924,13.3927886516,13.3953586108,13.39792857,13.4004985292,13.4030684884,13.4056384476,13.4082084068,13.4107783661,13.4133483253,13.4159182845,13.4184882437,13.4210582029,13.4236281621,13.4261981213,13.4287680805,13.4313380397,13.4339079989,13.4364779581,13.4390479174,13.4416178766,13.4441878358,13.446757795,13.4493277542,13.4518977134,13.4544676726,13.4570376318,13.459607591,13.4621775502,13.4647475094,13.4673174687,13.4698874279,13.4724573871,13.4750273463,13.4775973055,13.4801672647,13.4827372239,13.4853071831,13.4878771423,13.4904471015,13.4930170608,13.49558702,13.4981569792,13.5007269384,13.5032968976,13.5058668568,13.508436816,13.5110067752,13.5135767344,13.5161466936,13.5187166528,13.5212866121,13.5238565713,13.5264265305,13.5289964897,13.5315664489,13.5341364081,13.5367063673,13.5392763265,13.5418462857,13.5444162449,13.5469862041,13.5495561634,13.5521261226,13.5546960818,13.557266041,13.5598360002,13.5624059594,13.5649759186,13.5675458778,13.570115837,13.5726857962,13.5752557555,13.5778257147,13.5803956739,13.5829656331,13.5855355923,13.5881055515,13.5906755107,13.5932454699,13.5958154291,13.5983853883,13.6009553475,13.6035253068,13.606095266,13.6086652252,13.6112351844,13.6138051436,13.6163751028,13.618945062,13.6215150212,13.6240849804,13.6266549396,13.6292248988,13.6317948581,13.6343648173,13.6369347765,13.6395047357,13.6420746949,13.6446446541,13.6472146133,13.6497845725,13.6523545317,13.6549244909,13.6574944502,13.6600644094,13.6626343686,13.6652043278,13.667774287,13.6703442462,13.6729142054,13.6754841646,13.6780541238,13.680624083,13.6831940422,13.6857640015,13.6883339607,13.6909039199,13.6934738791,13.6960438383,13.6986137975,13.7011837567,13.7037537159,13.7063236751,13.7088936343,13.7114635935,13.7140335528,13.716603512,13.7191734712,13.7217434304,13.7243133896,13.7268833488,13.729453308,13.7320232672,13.7345932264,13.7371631856,13.7397331449,13.7423031041,13.7448730633,13.7474430225,13.7500129817,13.7525829409,13.7551529001,13.7577228593,13.7602928185,13.7628627777,13.7654327369,13.7680026962,13.7705726554,13.7731426146,13.7757125738,13.778282533,13.7808524922,13.7834224514,13.7859924106,13.7885623698,13.791132329,13.7937022882,13.7962722475,13.7988422067,13.8014121659,13.8039821251,13.8065520843,13.8091220435,13.8116920027,13.8142619619,13.8168319211,13.8194018803,13.8219718396,13.8245417988,13.827111758,13.8296817172,13.8322516764,13.8348216356,13.8373915948,13.839961554,13.8425315132,13.8451014724,13.8476714316,13.8502413909,13.8528113501,13.8553813093,13.8579512685,13.8605212277,13.8630911869,13.8656611461,13.8682311053,13.8708010645,13.8733710237,13.8759409829,13.8785109422,13.8810809014,13.8836508606,13.8862208198,13.888790779,13.8913607382,13.8939306974,13.8965006566,13.8990706158,13.901640575,13.9042105343,13.9067804935,13.9093504527,13.9119204119,13.9144903711,13.9170603303,13.9196302895,13.9222002487,13.9247702079,13.9273401671,13.9299101263,13.9324800856,13.9350500448,13.937620004,13.9401899632,13.9427599224,13.9453298816,13.9478998408,13.9504698,13.9530397592,13.9556097184,13.9581796776,13.9607496369,13.9633195961,13.9658895553,13.9684595145,13.9710294737,13.9735994329,13.9761693921,13.9787393513,13.9813093105,13.9838792697,13.986449229,13.9890191882,13.9915891474,13.9941591066,13.9967290658,13.999299025,14.0018689842,14.0044389434,14.0070089026,14.0095788618,14.012148821,14.0147187803,14.0172887395,14.0198586987,14.0224286579,14.0249986171,14.0275685763,14.0301385355,14.0327084947,14.0352784539,14.0378484131,14.0404183723,14.0429883316,14.0455582908,14.04812825,14.0506982092,14.0532681684,14.0558381276,14.0584080868,14.060978046,14.0635480052,14.0661179644,14.0686879237,14.0712578829,14.0738278421,14.0763978013,14.0789677605,14.0815377197,14.0841076789,14.0866776381,14.0892475973,14.0918175565,14.0943875157,14.096957475,14.0995274342,14.1020973934,14.1046673526,14.1072373118,14.1090045011,14.1107716903,14.1125388796,14.1143060689,14.1160732582,14.1178404474,14.1196076367,14.121374826,14.1231420153,14.1249092045,14.1266763938,14.1284435831,14.1302107724,14.1319779616,14.1337451509,14.1355123402,14.1372795295,14.1390467187,14.140813908,14.1425810973,14.1443482866,14.1461154758,14.1478826651,14.1496498544,14.1514170437,14.1531842329,14.1549514222,14.1567186115,14.1584858008,14.16025299,14.1620201793,14.1637873686,14.1655545579,14.1673217471,14.1690889364,14.1708561257,14.172623315,14.1743905042,14.1761576935,14.1779248828,14.1796920721,14.1814592613,14.1832264506,14.1849936399,14.1867608292,14.1885280184,14.1902952077,14.192062397,14.1938295863,14.1955967755,14.1973639648,14.1991311541,14.2008983434,14.2026655326,14.2044327219,14.2061999112,14.2079671005,14.2097342897,14.211501479,14.2132686683,14.2150358576,14.2168030468,14.2185702361,14.2203374254,14.2221046147,14.2238718039,14.2256389932,14.2274061825,14.2291733718,14.230940561,14.2327077503,14.2344749396,14.2362421289,14.2380093181,14.2397765074,14.2415436967,14.243310886,14.2450780752,14.2468452645,14.2486124538,14.2503796431,14.2521468323,14.2539140216,14.2556812109,14.2574484002,14.2592155894,14.2609827787,14.262749968,14.2645171573,14.2662843465,14.2680515358,14.2698187251,14.2715859144,14.2733531036,14.2751202929,14.2768874822,14.2786546715,14.2804218607,14.28218905,14.2839562393,14.2857234286,14.2874906178,14.2892578071,14.2910249964,14.2927921857,14.2945593749,14.2963265642,14.2980937535,14.2998609428,14.301628132,14.3033953213,14.3051625106,14.3069296999,14.3086968891,14.3104640784,14.3122312677,14.313998457,14.3157656462,14.3175328355,14.3193000248,14.3210672141,14.3228344033,14.3246015926,14.3263687819,14.3281359712,14.3299031604,14.3316703497,14.333437539,14.3352047283,14.3369719175,14.3387391068,14.3405062961,14.3422734854,14.3440406746,14.3458078639,14.3475750532,14.3493422425,14.3511094317,14.352876621,14.3546438103,14.3564109996,14.3581781888,14.3599453781,14.3617125674,14.3634797567,14.3652469459,14.3670141352,14.3687813245,14.3705485138,14.372315703,14.3740828923,14.3758500816,14.3776172709,14.3793844601,14.3811516494,14.3829188387,14.384686028,14.3864532172,14.3882204065,14.3899875958,14.3917547851,14.3935219743,14.3952891636,14.3970563529,14.3988235422,14.4005907314,14.4023579207,14.40412511,14.4058922993,14.4076594885,14.4094266778,14.4111938671,14.4129610564,14.4147282456,14.4164954349,14.4182626242,14.4200298135,14.4217970027,14.423564192,14.4253313813,14.4270985706,14.4288657598,14.4306329491,14.4324001384,14.4341673277,14.4359345169,14.4377017062,14.4394688955,14.4412360848,14.443003274,14.4447704633,14.4465376526,14.4483048419,14.4500720311,14.4518392204,14.4536064097,14.455373599,14.4571407882,14.4589079775,14.4606751668,14.4624423561,14.4642095453,14.4659767346,14.4677439239,14.4695111132,14.4712783024,14.4730454917,14.474812681,14.4765798703,14.4783470595,14.4801142488,14.4818814381,14.4836486274,14.4854158166,14.4871830059,14.4889501952,14.4907173845,14.4924845737,14.494251763,14.4960189523,14.4977861416,14.4995533308,14.5013205201,14.5030877094,14.5048548987,14.5066220879,14.5083892772,14.5101564665,14.5119236558,14.513690845,14.5154580343,14.5172252236,14.5189924129,14.5207596021,14.5225267914,14.5242939807,14.52606117,14.5278283592,14.5295955485,14.5313627378,14.5331299271,14.5348971163,14.5366643056,14.5384314949,14.5401986842,14.5419658734,14.5437330627,14.545500252,14.5472674413,14.5490346305,14.5508018198,14.5525690091,14.5543361983,14.5561033876,14.5578705769,14.5596377662,14.5614049554,14.5631721447,14.564939334,14.5667065233,14.5684737125,14.5702409018,14.5720080911,14.5737752804,14.5755424696,14.5773096589,14.5790768482,14.5808440375,14.5826112267,14.584378416,14.5861456053,14.5879127946,14.5896799838,14.5914471731,14.5932143624,14.5949815517,14.5967487409,14.5985159302,14.6002831195,14.6020503088,14.603817498,14.6055846873,14.6073518766,14.6091190659,14.6108862551,14.6126534444,14.6144206337,14.616187823,14.6179550122,14.6197222015,14.6214893908,14.6232565801,14.6250237693,14.6267909586,14.6285581479,14.6303253372,14.6320925264,14.6338597157,14.635626905,14.6373940943,14.6391612835,14.6409284728,14.6426956621,14.6444628514,14.6462300406,14.6479972299,14.6497644192,14.6515316085,14.6532987977,14.655065987,14.6568331763,14.6586003656,14.6603675548,14.6621347441,14.6639019334,14.6656691227,14.6674363119,14.6692035012,14.6709706905,14.6727378798,14.674505069,14.6762722583,14.6780394476,14.6798066369,14.6815738261,14.6833410154,14.6851082047,14.686875394,14.6886425832,14.6904097725,14.6921769618,14.6939441511,14.6957113403,14.6974785296,14.6992457189,14.7010129082,14.7027800974,14.7045472867,14.706314476,14.7080816653,14.7098488545,14.7116160438,14.7133832331,14.7151504224,14.7169176116,14.7186848009,14.7204519902,14.7222191795,14.7239863687,14.725753558,14.7275207473,14.7292879366,14.7310551258,14.7328223151,14.7345895044,14.7363566937,14.7381238829,14.7398910722,14.7416582615,14.7434254508,14.74519264,14.7469598293,14.7487270186,14.7504942079,14.7522613971,14.7540285864,14.7557957757,14.757562965,14.7593301542,14.7610973435,14.7628645328,14.7646317221,14.7663989113,14.7681661006,14.7699332899,14.7717004792,14.7734676684,14.7752348577,14.777002047,14.7787692363,14.7805364255,14.7823036148,14.7840708041,14.7858379934,14.7876051826,14.7893723719,14.7911395612,14.7929067505,14.7946739397,14.796441129,14.7982083183,14.7999755076,14.8017426968,14.8035098861,14.8052770754,14.8070442647,14.8088114539,14.8105786432,14.8123458325,14.8141130218,14.815880211,14.8176474003,14.8194145896,14.8211817789,14.8229489681,14.8247161574,14.8264833467,14.828250536,14.8300177252,14.8317849145,14.8335521038,14.8353192931,14.8370864823,14.8388536716,14.8406208609,14.8423880502,14.8441552394,14.8459224287,14.847689618,14.8494568073,14.8512239965,14.8529911858,14.8547583751,14.8565255644,14.8582927536,14.8600599429,14.8618271322,14.8635943215,14.8653615107,14.8671287,14.8688958893,14.8706630786,14.8724302678,14.8741974571,14.8759646464,14.8777318357,14.8794990249,14.8812662142,14.8830334035,14.8848005928,14.886567782,14.8883349713,14.8901021606,14.8918693499,14.8936365391,14.8954037284,14.8971709177,14.898938107,14.9007052962,14.9024724855,14.9042396748,14.9060068641,14.9077740533,14.9095412426,14.9113084319,14.9130756212,14.9148428104,14.9166099997,14.918377189,14.9201443783,14.9219115675,14.9236787568,14.9254459461,14.9272131354,14.9289803246,14.9307475139,14.9325147032,14.9342818925,14.9360490817,14.937816271,14.9395834603,14.9413506496,14.9431178388,14.9448850281,14.9466522174,14.9484194067,14.9501865959,14.9519537852,14.9537209745,14.9554881638,14.957255353,14.9590225423,14.9607897316,14.9625569209,14.9643241101,14.9660912994,14.9678584887,14.969625678,14.9713928672,14.9731600565,14.9749272458,14.9766944351,14.9784616243,14.9802288136,14.9819960029,14.9837631922,14.9855303814,14.9872975707,14.98906476,14.9908319493,14.9925991385,14.9943663278,14.9961335171,14.9979007064,14.9996678956,15.0014350849,15.0032022742,15.0049694635,15.0067366527,15.008503842,15.0102710313,15.0120382206,15.0138054098,15.0155725991,15.0173397884,15.0191069777,15.0208741669,15.0226413562,15.0244085455,15.0261757348,15.027942924,15.0297101133,15.0314773026,15.0332444919,15.0350116811,15.0367788704,15.0385460597,15.040313249,15.0420804382,15.0438476275,15.0456148168,15.0473820061,15.0491491953,15.0509163846,15.0526835739,15.0544507632,15.0562179524,15.0579851417,15.059752331,15.0615195203,15.0632867095,15.0650538988,15.0668210881,15.0685882774,15.0703554666,15.0721226559,15.0738898452,15.0756570345,15.0774242237,15.079191413,15.0809586023,15.0827257916,15.0844929808,15.0862601701,15.0880273594,15.0897945487,15.0915617379,15.0933289272,15.0950961165,15.0968633058,15.098630495,15.1003976843,15.1021648736,15.1039320629,15.1056992521,15.1074664414,15.1092336307,15.11100082,15.1127680092,15.1145351985,15.1163023878,15.1180695771,15.1198367663,15.1216039556,15.1233711449,15.1251383342,15.1269055234,15.1286727127,15.130439902,15.1322070913,15.1339742805,15.1357414698,15.1375086591,15.1392758484,15.1410430376,15.1428102269,15.1445774162,15.1463446055,15.1481117947,15.149878984,15.1516461733,15.1534133626,15.1551805518,15.1569477411,15.1587149304,15.1604821197,15.1622493089,15.1640164982,15.1657836875,15.1675508768,15.169318066,15.1710852553,15.1728524446,15.1746196339,15.1755283898,15.1764371458,15.1773459018,15.1782546578,15.1791634137,15.1800721697,15.1809809257,15.1818896817,15.1827984376,15.1837071936,15.1846159496,15.1855247056,15.1864334615,15.1873422175,15.1882509735,15.1891597295,15.1900684855,15.1909772414,15.1918859974,15.1927947534,15.1937035094,15.1946122653,15.1955210213,15.1964297773,15.1973385333,15.1982472892,15.1991560452,15.2000648012,15.2009735572,15.2018823132,15.2027910691,15.2036998251,15.2046085811,15.2055173371,15.206426093,15.207334849,15.208243605,15.209152361,15.2100611169,15.2109698729,15.2118786289,15.2127873849,15.2136961409,15.2146048968,15.2155136528,15.2164224088,15.2173311648,15.2182399207,15.2191486767,15.2200574327,15.2209661887,15.2218749446,15.2227837006,15.2236924566,15.2246012126,15.2255099686,15.2264187245,15.2273274805,15.2282362365,15.2291449925,15.2300537484,15.2309625044,15.2318712604,15.2327800164,15.2336887723,15.2345975283,15.2355062843,15.2364150403,15.2373237963,15.2382325522,15.2391413082,15.2400500642,15.2409588202,15.2418675761,15.2427763321,15.2436850881,15.2445938441,15.2455026,15.246411356,15.247320112,15.248228868,15.249137624,15.2500463799,15.2509551359,15.2518638919,15.2527726479,15.2536814038,15.2545901598,15.2554989158,15.2564076718,15.2573164277,15.2582251837,15.2591339397,15.2600426957,15.2609514516,15.2618602076,15.2627689636,15.2636777196,15.2645864756,15.2654952315,15.2664039875,15.2673127435,15.2682214995,15.2691302554,15.2700390114,15.2709477674,15.2718565234,15.2727652793,15.2736740353,15.2745827913,15.2754915473,15.2764003033,15.2773090592,15.2782178152,15.2791265712,15.2800353272,15.2809440831,15.2818528391,15.2827615951,15.2836703511,15.284579107,15.285487863,15.286396619,15.287305375,15.288214131,15.2891228869,15.2900316429,15.2909403989,15.2918491549,15.2927579108,15.2936666668,15.2945754228,15.2954841788,15.2963929347,15.2973016907,15.2982104467,15.2991192027,15.3000279587,15.3009367146,15.3018454706,15.3027542266,15.3036629826,15.3045717385,15.3054804945,15.3063892505,15.3072980065,15.3082067624,15.3091155184,15.3100242744,15.3109330304,15.3118417864,15.3127505423,15.3136592983,15.3145680543,15.3154768103,15.3163855662,15.3172943222,15.3182030782,15.3191118342,15.3200205901,15.3209293461,15.3218381021,15.3227468581,15.3236556141,15.32456437,15.325473126,15.326381882,15.327290638,15.3281993939,15.3291081499,15.3300169059,15.3309256619,15.3318344178,15.3327431738,15.3336519298,15.3345606858,15.3354694417,15.3363781977,15.3372869537,15.3381957097,15.3391044657,15.3400132216,15.3409219776,15.3418307336,15.3427394896,15.3436482455,15.3445570015,15.3454657575,15.3463745135,15.3472832694,15.3481920254,15.3491007814,15.3500095374,15.3509182934,15.3518270493,15.3527358053,15.3536445613,15.3545533173,15.3554620732,15.3563708292,15.3572795852,15.3581883412,15.3590970971,15.3600058531,15.3609146091,15.3618233651,15.3627321211,15.363640877,15.364549633,15.365458389,15.366367145,15.3672759009,15.3681846569,15.3690934129,15.3700021689,15.3709109248,15.3718196808,15.3727284368,15.3736371928,15.3745459488,15.3754547047,15.3763634607,15.3772722167,15.3781809727,15.3790897286,15.3799984846,15.3809072406,15.3818159966,15.3827247525,15.3836335085,15.3845422645,15.3854510205,15.3863597765,15.3872685324,15.3881772884,15.3890860444,15.3899948004,15.3909035563,15.3918123123,15.3927210683,15.3936298243,15.3945385802,15.3954473362,15.3963560922,15.3972648482,15.3981736042,15.3990823601,15.3999911161,15.4008998721,15.4018086281,15.402717384,15.40362614,15.404534896,15.405443652,15.4063524079,15.4072611639,15.4081699199,15.4090786759,15.4099874318,15.4108961878,15.4118049438,15.4127136998,15.4136224558,15.4145312117,15.4154399677,15.4163487237,15.4172574797,15.4181662356,15.4190749916,15.4199837476,15.4208925036,15.4218012595,15.4227100155,15.4236187715,15.4245275275,15.4254362835,15.4263450394,15.4272537954,15.4281625514,15.4290713074,15.4299800633,15.4308888193,15.4317975753,15.4327063313,15.4336150872,15.4345238432,15.4354325992,15.4363413552,15.4372501112,15.4381588671,15.4390676231,15.4399763791,15.4408851351,15.441793891,15.442702647,15.443611403,15.444520159,15.4454289149,15.4463376709,15.4472464269,15.4481551829,15.4490639389,15.4499726948,15.4508814508,15.4517902068,15.4526989628,15.4536077187,15.4545164747,15.4554252307,15.4563339867,15.4572427426,15.4581514986,15.4590602546,15.4599690106,15.4608777666,15.4617865225,15.4626952785,15.4636040345,15.4645127905,15.4654215464,15.4663303024,15.4672390584,15.4681478144,15.4690565703,15.4699653263,15.4708740823,15.4717828383,15.4726915943,15.4736003502,15.4745091062,15.4754178622,15.4763266182,15.4772353741,15.4781441301,15.4790528861,15.4799616421,15.480870398,15.481779154,15.48268791,15.483596666,15.4845054219,15.4854141779,15.4863229339,15.4872316899,15.4881404459,15.4890492018,15.4899579578,15.4908667138,15.4917754698,15.4926842257,15.4935929817,15.4945017377,15.4954104937,15.4963192496,15.4972280056,15.4981367616,15.4990455176,15.4999542736,15.5008630295,15.5017717855,15.5026805415,15.5035892975,15.5044980534,15.5054068094,15.5063155654,15.5072243214,15.5081330773,15.5090418333,15.5099505893,15.5108593453,15.5117681013,15.5126768572,15.5135856132,15.5144943692,15.5154031252,15.5163118811,15.5172206371,15.5181293931,15.5190381491,15.519946905,15.520855661,15.521764417,15.522673173,15.523581929,15.5244906849,15.5253994409,15.5263081969,15.5272169529,15.5281257088,15.5290344648,15.5299432208,15.5308519768,15.5317607327,15.5326694887,15.5335782447,15.5344870007,15.5353957567,15.5363045126,15.5372132686,15.5381220246,15.5390307806,15.5399395365,15.5408482925,15.5417570485,15.5426658045,15.5435745604,15.5444833164,15.5453920724,15.5463008284,15.5472095844,15.5481183403,15.5490270963,15.5499358523,15.5508446083,15.5517533642,15.5526621202,15.5535708762,15.5544796322,15.5553883881,15.5562971441,15.5572059001,15.5581146561,15.559023412,15.559932168,15.560840924,15.56174968,15.562658436,15.5635671919,15.5644759479,15.5653847039,15.5662934599,15.5672022158,15.5681109718,15.5690197278,15.5699284838,15.5708372397,15.5717459957,15.5726547517,15.5735635077,15.5744722637,15.5753810196,15.5762897756,15.5771985316,15.5781072876,15.5790160435,15.5799247995,15.5808335555,15.5817423115,15.5826510674,15.5835598234,15.5844685794,15.5853773354,15.5862860914,15.5871948473,15.5881036033,15.5890123593,15.5899211153,15.5908298712,15.5917386272,15.5926473832,15.5935561392,15.5944648951,15.5953736511,15.5962824071,15.5971911631,15.5980999191,15.599008675,15.599917431,15.600826187,15.601734943,15.6026436989,15.6035524549,15.6044612109,15.6053699669,15.6062787228,15.6071874788,15.6080962348,15.6090049908,15.6099137468,15.6108225027,15.6117312587,15.6126400147,15.6135487707,15.6144575266,15.6153662826,15.6162750386,15.6171837946,15.6180925505,15.6190013065,15.6199100625,15.6208188185,15.6217275745,15.6226363304,15.6235450864,15.6244538424,15.6253625984,15.6262713543,15.6271801103,15.6280888663,15.6289976223,15.6299063782,15.6308151342,15.6317238902,15.6326326462,15.6335414022,15.6344501581,15.6353589141,15.6362676701,15.6371764261,15.638085182,15.638993938,15.639902694,15.64081145,15.6417202059,15.6426289619,15.6435377179,15.6444464739,15.6453552298,15.6462639858,15.6471727418,15.6480814978,15.6489902538,15.6498990097,15.6508077657,15.6517165217,15.6526252777,15.6535340336,15.6544427896,15.6553515456,15.6562603016,15.6571690575,15.6580778135,15.6589865695,15.6598953255,15.6608040815,15.6617128374,15.6626215934,15.6635303494,15.6644391054,15.6653478613,15.6662566173,15.6671653733,15.6680741293,15.6689828852,15.6698916412,15.6708003972,15.6717091532,15.6726179092,15.6735266651,15.6744354211,15.6753441771,15.6762529331,15.677161689,15.678070445,15.678979201,15.679887957,15.6807967129,15.6817054689,15.6826142249,15.6835229809,15.6844317369,15.6853404928,15.6862492488,15.6871580048,15.6880667608,15.6889755167,15.6898842727,15.6907930287,15.6917017847,15.6926105406,15.6935192966,15.6944280526,15.6953368086,15.6962455646,15.6971543205,15.6980630765,15.6989718325,15.6998805885,15.7007893444,15.7016981004,15.7026068564,15.7035156124,15.7044243683,15.7053331243,15.7062418803,15.7071506363,15.7080593923,15.7089681482,15.7098769042,15.7107856602,15.7116944162,15.7126031721,15.7135119281,15.7144206841,15.7153294401,15.716238196,15.717146952,15.718055708,15.718964464,15.7198732199,15.7207819759,15.7216907319,15.7225994879,15.7235082439,15.7234662649,15.723424286,15.7233823071,15.7233403282,15.7232983493,15.7232563703,15.7232143914,15.7231724125,15.7231304336,15.7230884547,15.7230464757,15.7230044968,15.7229625179,15.722920539,15.7228785601,15.7228365812,15.7227946022,15.7227526233,15.7227106444,15.7226686655,15.7226266866,15.7225847076,15.7225427287,15.7225007498,15.7224587709,15.722416792,15.722374813,15.7223328341,15.7222908552,15.7222488763,15.7222068974,15.7221649184,15.7221229395,15.7220809606,15.7220389817,15.7219970028,15.7219550239,15.7219130449,15.721871066,15.7218290871,15.7217871082,15.7217451293,15.7217031503,15.7216611714,15.7216191925,15.7215772136,15.7215352347,15.7214932557,15.7214512768,15.7214092979,15.721367319,15.7213253401,15.7212833612,15.7212413822,15.7211994033,15.7211574244,15.7211154455,15.7210734666,15.7210314876,15.7209895087,15.7209475298,15.7209055509,15.720863572,15.720821593,15.7207796141,15.7207376352,15.7206956563,15.7206536774,15.7206116984,15.7205697195,15.7205277406,15.7204857617,15.7204437828,15.7204018039,15.7203598249,15.720317846,15.7202758671,15.7202338882,15.7201919093,15.7201499303,15.7201079514,15.7200659725,15.7200239936,15.7199820147,15.7199400357,15.7198980568,15.7198560779,15.719814099,15.7197721201,15.7197301412,15.7196881622,15.7196461833,15.7196042044,15.7195622255,15.7195202466,15.7194782676,15.7194362887,15.7193943098,15.7193523309,15.719310352,15.719268373,15.7192263941,15.7191844152,15.7191424363,15.7191004574,15.7190584784,15.7190164995,15.7189745206,15.7189325417,15.7188905628,15.7188485839,15.7188066049,15.718764626,15.7187226471,15.7186806682,15.7186386893,15.7185967103,15.7185547314,15.7185127525,15.7184707736,15.7184287947,15.7183868157,15.7183448368,15.7183028579,15.718260879,15.7182189001,15.7181769211,15.7181349422,15.7180929633,15.7180509844,15.7180090055,15.7179670266,15.7179250476,15.7178830687,15.7178410898,15.7177991109,15.717757132,15.717715153,15.7176731741,15.7176311952,15.7175892163,15.7175472374,15.7175052584,15.7174632795,15.7174213006,15.7173793217,15.7173373428,15.7172953639,15.7172533849,15.717211406,15.7171694271,15.7171274482,15.7170854693,15.7170434903,15.7170015114,15.7169595325,15.7169175536,15.7168755747,15.7168335957,15.7167916168,15.7167496379,15.716707659,15.7166656801,15.7166237011,15.7165817222,15.7165397433,15.7164977644,15.7164557855,15.7164138066,15.7163718276,15.7163298487,15.7162878698,15.7162458909,15.716203912,15.716161933,15.7161199541,15.7160779752,15.7160359963,15.7159940174,15.7159520384,15.7159100595,15.7158680806,15.7158261017,15.7157841228,15.7157421439,15.7157001649,15.715658186,15.7156162071,15.7155742282,15.7155322493,15.7154902703,15.7154482914,15.7154063125,15.7153643336,15.7153223547,15.7152803757,15.7152383968,15.7151964179,15.715154439,15.7151124601,15.7150704811,15.7150285022,15.7149865233,15.7149445444,15.7149025655,15.7148605866,15.7148186076,15.7147766287,15.7147346498,15.7146926709,15.714650692,15.714608713,15.7145667341,15.7145247552,15.7144827763,15.7144407974,15.7143988184,15.7143568395,15.7143148606,15.7142728817,15.7142309028,15.7141889238,15.7141469449,15.714104966,15.7140629871,15.7140210082,15.7139790293,15.7139370503,15.7138950714,15.7138530925,15.7138111136,15.7137691347,15.7137271557,15.7136851768,15.7136431979,15.713601219,15.7135592401,15.7135172611,15.7134752822,15.7134333033,15.7133913244,15.7133493455,15.7133073666,15.7132653876,15.7132234087,15.7131814298,15.7131394509,15.713097472,15.713055493,15.7130135141,15.7129715352,15.7129295563,15.7128875774,15.7128455984,15.7128036195,15.7127616406,15.7127196617,15.7126776828,15.7126357038,15.7125937249,15.712551746,15.7125097671,15.7124677882,15.7124258093,15.7123838303,15.7123418514,15.7122998725,15.7122578936,15.7122159147,15.7121739357,15.7121319568,15.7120899779,15.712047999,15.7120060201,15.7119640411,15.7119220622,15.7118800833,15.7118381044,15.7117961255,15.7117541465,15.7117121676,15.7116701887,15.7116282098,15.7115862309,15.711544252,15.711502273,15.7114602941,15.7114183152,15.7113763363,15.7113343574,15.7112923784,15.7112503995,15.7112084206,15.7111664417,15.7111244628,15.7110824838,15.7110405049,15.710998526,15.7109565471,15.7109145682,15.7108725893,15.7108306103,15.7107886314,15.7107466525,15.7107046736,15.7106626947,15.7106207157,15.7105787368,15.7105367579,15.710494779,15.7104528001,15.7104108211,15.7103688422,15.7103268633,15.7102848844,15.7102429055,15.7102009265,15.7101589476,15.7101169687,15.7100749898,15.7100330109,15.709991032,15.709949053,15.7099070741,15.7098650952,15.7098231163,15.7097811374,15.7097391584,15.7096971795,15.7096552006,15.7096132217,15.7095712428,15.7095292638,15.7094872849,15.709445306,15.7094033271,15.7093613482,15.7093193693,15.7092773903,15.7092354114,15.7091934325,15.7091514536,15.7091094747,15.7090674957,15.7090255168,15.7089835379,15.708941559,15.7088995801,15.7088576011,15.7088156222,15.7087736433,15.7087316644,15.7086896855,15.7086477065,15.7086057276,15.7085637487,15.7085217698,15.7084797909,15.708437812,15.708395833,15.7083538541,15.7083118752,15.7082698963,15.7082279174,15.7081859384,15.7081439595,15.7081019806,15.7080600017,15.7080180228,15.7079760438,15.7079340649,15.707892086,15.7078501071,15.7078081282,15.7077661492,15.7077241703,15.7076821914,15.7076402125,15.7075982336,15.7075562547,15.7075142757,15.7074722968,15.7074303179,15.707388339,15.7073463601,15.7073043811,15.7072624022,15.7072204233,15.7071784444,15.7071364655,15.7070944865,15.7070525076,15.7070105287,15.7069685498,15.7069265709,15.706884592,15.706842613,15.7068006341,15.7067586552,15.7067166763,15.7066746974,15.7066327184,15.7065907395,15.7065487606,15.7065067817,15.7064648028,15.7064228238,15.7063808449,15.706338866,15.7062968871,15.7062549082,15.7062129292,15.7061709503,15.7061289714,15.7060869925,15.7060450136,15.7060030347,15.7059610557,15.7059190768,15.7058770979,15.705835119,15.7057931401,15.7057511611,15.7057091822,15.7056672033,15.7056252244,15.7055832455,15.7055412665,15.7054992876,15.7054573087,15.7054153298,15.7053733509,15.7053313719,15.705289393,15.7052474141,15.7052054352,15.7051634563,15.7051214774,15.7050794984,15.7050375195,15.7049955406,15.7049535617,15.7049115828,15.7048696038,15.7048276249,15.704785646,15.7047436671,15.7047016882,15.7046597092,15.7046177303,15.7045757514,15.7045337725,15.7044917936,15.7044498147,15.7044078357,15.7043658568,15.7043238779,15.704281899,15.7042399201,15.7041979411,15.7041559622,15.7041139833,15.7040720044,15.7040300255,15.7039880465,15.7039460676,15.7039040887,15.7038621098,15.7038201309,15.7037781519,15.703736173,15.7036941941,15.7036522152,15.7036102363,15.7035682574,15.7035262784,15.7034842995,15.7034423206,15.7034003417,15.7033583628,15.7033163838,15.7032744049,15.703232426,15.7031904471,15.7031484682,15.7031064892,15.7030645103,15.7030225314,15.7029805525,15.7029385736,15.7028965947,15.7028546157,15.7028126368,15.7027706579,15.702728679,15.7026867001,15.7026447211,15.7026027422,15.7025607633,15.7025187844,15.7024768055,15.7024348265,15.7023928476,15.7023508687,15.7023088898,15.7022669109,15.7022249319,15.702182953,15.7021409741,15.7020989952,15.7020570163,15.7020150374,15.7019730584,15.7019310795,15.7018891006,15.7018471217,15.7018051428,15.7017631638,15.7017211849,15.701679206,15.7016372271,15.7015952482,15.7015532692,15.7015112903,15.7014693114,15.7014273325,15.7013853536,15.7013433746,15.7013013957,15.7012594168,15.7012174379,15.701175459,15.7011334801,15.7010915011,15.7010495222,15.7010075433,15.7009655644,15.7009235855,15.7008816065,15.7008396276,15.7007976487,15.7007556698,15.7007136909,15.7006717119,15.700629733,15.7005877541,15.7005457752,15.7005037963,15.7004618174,15.7004198384,15.7003778595,15.7003358806,15.7002939017,15.7002519228,15.7002099438,15.7001679649,15.700125986,15.7000840071,15.7000420282,15.7000000492,15.6999580703,15.6999160914,15.6998741125,15.6998321336,15.6997901546,15.6997481757,15.6997061968,15.6996642179,15.699622239,15.6995802601,15.6995382811,15.6994963022,15.6994543233,15.6994123444,15.6993703655,15.6993283865,15.6992864076,15.6992444287,15.6992024498,15.6991604709,15.6991184919,15.699076513,15.6990345341,15.6989925552,15.6989505763,15.6989085974,15.6988666184,15.6988246395,15.6987826606,15.6987406817,15.6986987028,15.6986567238,15.6986147449,15.698572766,15.6985307871,15.6984888082,15.6984468292,15.6984048503,15.6983628714,15.6983208925,15.6982789136,15.6982369346,15.6981949557,15.6981529768,15.6971588652,15.6961647535,15.6951706419,15.6941765302,15.6931824186,15.692188307,15.6911941953,15.6902000837,15.689205972,15.6882118604,15.6872177488,15.6862236371,15.6852295255,15.6842354138,15.6832413022,15.6822471905,15.6812530789,15.6802589673,15.6792648556,15.678270744,15.6772766323,15.6762825207,15.6752884091,15.6742942974,15.6733001858,15.6723060741,15.6713119625,15.6703178508,15.6693237392,15.6683296276,15.6673355159,15.6663414043,15.6653472926,15.664353181,15.6633590694,15.6623649577,15.6613708461,15.6603767344,15.6593826228,15.6583885111,15.6573943995,15.6564002879,15.6554061762,15.6544120646,15.6534179529,15.6524238413,15.6514297297,15.650435618,15.6494415064,15.6484473947,15.6474532831,15.6464591714,15.6454650598,15.6444709482,15.6434768365,15.6424827249,15.6414886132,15.6404945016,15.63950039,15.6385062783,15.6375121667,15.636518055,15.6355239434,15.6345298317,15.6335357201,15.6325416085,15.6315474968,15.6305533852,15.6295592735,15.6285651619,15.6275710503,15.6265769386,15.625582827,15.6245887153,15.6235946037,15.622600492,15.6216063804,15.6206122688,15.6196181571,15.6186240455,15.6176299338,15.6166358222,15.6156417106,15.6146475989,15.6136534873,15.6126593756,15.611665264,15.6106711523,15.6096770407,15.6086829291,15.6076888174,15.6066947058,15.6057005941,15.6047064825,15.6037123709,15.6027182592,15.6017241476,15.6007300359,15.5997359243,15.5987418126,15.597747701,15.5967535894,15.5957594777,15.5947653661,15.5937712544,15.5927771428,15.5917830312,15.5907889195,15.5897948079,15.5888006962,15.5878065846,15.5868124729,15.5858183613,15.5848242497,15.583830138,15.5828360264,15.5818419147,15.5808478031,15.5798536915,15.5788595798,15.5778654682,15.5768713565,15.5758772449,15.5748831332,15.5738890216,15.57289491,15.5719007983,15.5709066867,15.569912575,15.5689184634,15.5679243518,15.5669302401,15.5659361285,15.5649420168,15.5639479052,15.5629537935,15.5619596819,15.5609655703,15.5599714586,15.558977347,15.5579832353,15.5569891237,15.5559950121,15.5550009004,15.5540067888,15.5530126771,15.5520185655,15.5510244538,15.5500303422,15.5490362306,15.5480421189,15.5470480073,15.5460538956,15.545059784,15.5440656724,15.5430715607,15.5420774491,15.5410833374,15.5400892258,15.5390951141,15.5381010025,15.5371068909,15.5361127792,15.5351186676,15.5341245559,15.5331304443,15.5321363327,15.531142221,15.5301481094,15.5291539977,15.5281598861,15.5271657744,15.5261716628,15.5251775512,15.5241834395,15.5231893279,15.5221952162,15.5212011046,15.520206993,15.5192128813,15.5182187697,15.517224658,15.5162305464,15.5152364347,15.5142423231,15.5132482115,15.5122540998,15.5112599882,15.5102658765,15.5092717649,15.5082776533,15.5072835416,15.50628943,15.5052953183,15.5043012067,15.503307095,15.5023129834,15.5013188718,15.5003247601,15.4993306485,15.4983365368,15.4973424252,15.4963483136,15.4953542019,15.4943600903,15.4933659786,15.492371867,15.4913777553,15.4903836437,15.4893895321,15.4883954204,15.4874013088,15.4864071971,15.4854130855,15.4844189739,15.4834248622,15.4824307506,15.4814366389,15.4804425273,15.4794484156,15.478454304,15.4774601924,15.4764660807,15.4754719691,15.4744778574,15.4734837458,15.4724896342,15.4714955225,15.4705014109,15.4695072992,15.4685131876,15.4675190759,15.4665249643,15.4655308527,15.464536741,15.4635426294,15.4625485177,15.4615544061,15.4605602945,15.4595661828,15.4585720712,15.4575779595,15.4565838479,15.4555897362,15.4545956246,15.453601513,15.4526074013,15.4516132897,15.450619178,15.4496250664,15.4486309548,15.4476368431,15.4466427315,15.4456486198,15.4446545082,15.4436603965,15.4426662849,15.4416721733,15.4406780616,15.43968395,15.4386898383,15.4376957267,15.4367016151,15.4357075034,15.4347133918,15.4337192801,15.4327251685,15.4317310568,15.4307369452,15.4297428336,15.4287487219,15.4277546103,15.4267604986,15.425766387,15.4247722754,15.4237781637,15.4227840521,15.4217899404,15.4207958288,15.4198017171,15.4188076055,15.4178134939,15.4168193822,15.4158252706,15.4148311589,15.4138370473,15.4128429357,15.411848824,15.4108547124,15.4098606007,15.4088664891,15.4078723774,15.4068782658,15.4058841542,15.4048900425,15.4038959309,15.4029018192,15.4019077076,15.400913596,15.3999194843,15.3989253727,15.397931261,15.3969371494,15.3959430377,15.3949489261,15.3939548145,15.3929607028,15.3919665912,15.3909724795,15.3899783679,15.3889842563,15.3879901446,15.386996033,15.3860019213,15.3850078097,15.384013698,15.3830195864,15.3820254748,15.3810313631,15.3800372515,15.3790431398,15.3780490282,15.3770549166,15.3760608049,15.3750666933,15.3740725816,15.37307847,15.3720843583,15.3710902467,15.3700961351,15.3691020234,15.3681079118,15.3671138001,15.3661196885,15.3651255769,15.3641314652,15.3631373536,15.3621432419,15.3611491303,15.3601550186,15.359160907,15.3581667954,15.3571726837,15.3561785721,15.3551844604,15.3541903488,15.3531962372,15.3522021255,15.3512080139,15.3502139022,15.3492197906,15.3482256789,15.3472315673,15.3462374557,15.345243344,15.3442492324,15.3432551207,15.3422610091,15.3412668975,15.3402727858,15.3392786742,15.3382845625,15.3372904509,15.3362963392,15.3353022276,15.334308116,15.3333140043,15.3323198927,15.331325781,15.3303316694,15.3293375578,15.3283434461,15.3273493345,15.3263552228,15.3253611112,15.3243669995,15.3233728879,15.3223787763,15.3213846646,15.320390553,15.3193964413,15.3184023297,15.3174082181,15.3164141064,15.3154199948,15.3144258831,15.3134317715,15.3124376598,15.3114435482,15.3104494366,15.3094553249,15.3084612133,15.3074671016,15.30647299,15.3054788784,15.3044847667,15.3034906551,15.3024965434,15.3015024318,15.3005083201,15.2995142085,15.2985200969,15.2975259852,15.2965318736,15.2955377619,15.2945436503,15.2935495387,15.292555427,15.2915613154,15.2905672037,15.2895730921,15.2885789804,15.2875848688,15.2865907572,15.2855966455,15.2846025339,15.2836084222,15.2826143106,15.281620199,15.2806260873,15.2796319757,15.278637864,15.2776437524,15.2766496407,15.2756555291,15.2746614175,15.2736673058,15.2726731942,15.2716790825,15.2706849709,15.2696908593,15.2686967476,15.267702636,15.2667085243,15.2657144127,15.264720301,15.2637261894,15.2627320778,15.2617379661,15.2607438545,15.2597497428,15.2587556312,15.2577615196,15.2567674079,15.2557732963,15.2547791846,15.253785073,15.2527909613,15.2517968497,15.2508027381,15.2498086264,15.2488145148,15.2478204031,15.2468262915,15.2458321799,15.2448380682,15.2438439566,15.2428498449,15.2418557333,15.2408616216,15.23986751,15.2388733984,15.2378792867,15.2368851751,15.2358910634,15.2348969518,15.2339028402,15.2329087285,15.2319146169,15.2309205052,15.2299263936,15.2289322819,15.2279381703,15.2269440587,15.225949947,15.2249558354,15.2239617237,15.2229676121,15.2219735005,15.2209793888,15.2199852772,15.2189911655,15.2179970539,15.2170029422,15.2160088306,15.215014719,15.2140206073,15.2130264957,15.212032384,15.2110382724,15.2100441608,15.2090500491,15.2080559375,15.2070618258,15.2060677142,15.2050736025,15.2040794909,15.2030853793,15.2020912676,15.201097156,15.2001030443,15.1991089327,15.1981148211,15.1971207094,15.1961265978,15.1951324861,15.1941383745,15.1931442628,15.1921501512,15.1911560396,15.1901619279,15.1891678163,15.1881737046,15.187179593,15.1861854814,15.1851913697,15.1841972581,15.1832031464,15.1822090348,15.1812149231,15.1802208115,15.1792266999,15.1782325882,15.1772384766,15.1762443649,15.1752502533,15.1742561417,15.17326203,15.1722679184,15.1712738067,15.1702796951,15.1692855834,15.1682914718,15.1672973602,15.1663032485,15.1653091369,15.1643150252,15.1633209136,15.162326802,15.1613326903,15.1603385787,15.159344467,15.1583503554,15.1573562437,15.1563621321,15.1553680205,15.1543739088,15.1533797972,15.1523856855,15.1513915739,15.1503974623,15.1494033506,15.148409239,15.1474151273,15.1464210157,15.145426904,15.1444327924,15.1434386808,15.1424445691,15.1414504575,15.1404563458,15.1394622342,15.1384681226,15.1374740109,15.1364798993,15.1354857876,15.134491676,15.1334975643,15.1325034527,15.1315093411,15.1305152294,15.1295211178,15.1285270061,15.1275328945,15.1265387829,15.1255446712,15.1245505596,15.1235564479,15.1225623363,15.1215682246,15.120574113,15.1195800014,15.1185858897,15.1175917781,15.1165976664,15.1156035548,15.1146094432,15.1136153315,15.1126212199,15.1116271082,15.1106329966,15.1096388849,15.1086447733,15.1076506617,15.10665655,15.1056624384,15.1046683267,15.1036742151,15.1026801035,15.1016859918,15.1006918802,15.0996977685,15.0987036569,15.0977095452,15.09590442,15.0940992947,15.0922941694,15.0904890441,15.0886839188,15.0868787935,15.0850736682,15.0832685429,15.0814634176,15.0796582923,15.077853167,15.0760480417,15.0742429164,15.0724377912,15.0706326659,15.0688275406,15.0670224153,15.06521729,15.0634121647,15.0616070394,15.0598019141,15.0579967888,15.0561916635,15.0543865382,15.0525814129,15.0507762877,15.0489711624,15.0471660371,15.0453609118,15.0435557865,15.0417506612,15.0399455359,15.0381404106,15.0363352853,15.03453016,15.0327250347,15.0309199094,15.0291147842,15.0273096589,15.0255045336,15.0236994083,15.021894283,15.0200891577,15.0182840324,15.0164789071,15.0146737818,15.0128686565,15.0110635312,15.0092584059,15.0074532806,15.0056481554,15.0038430301,15.0020379048,15.0002327795,14.9984276542,14.9966225289,14.9948174036,14.9930122783,14.991207153,14.9894020277,14.9875969024,14.9857917771,14.9839866519,14.9821815266,14.9803764013,14.978571276,14.9767661507,14.9749610254,14.9731559001,14.9713507748,14.9695456495,14.9677405242,14.9659353989,14.9641302736,14.9623251484,14.9605200231,14.9587148978,14.9569097725,14.9551046472,14.9532995219,14.9514943966,14.9496892713,14.947884146,14.9460790207,14.9442738954,14.9424687701,14.9406636448,14.9388585196,14.9370533943,14.935248269,14.9334431437,14.9316380184,14.9298328931,14.9280277678,14.9262226425,14.9244175172,14.9226123919,14.9208072666,14.9190021413,14.9171970161,14.9153918908,14.9135867655,14.9117816402,14.9099765149,14.9081713896,14.9063662643,14.904561139,14.9027560137,14.9009508884,14.8991457631,14.8973406378,14.8955355126,14.8937303873,14.891925262,14.8901201367,14.8883150114,14.8865098861,14.8847047608,14.8828996355,14.8810945102,14.8792893849,14.8774842596,14.8756791343,14.873874009,14.8720688838,14.8702637585,14.8684586332,14.8666535079,14.8648483826,14.8630432573,14.861238132,14.8594330067,14.8576278814,14.8558227561,14.8540176308,14.8522125055,14.8504073803,14.848602255,14.8467971297,14.8449920044,14.8431868791,14.8413817538,14.8395766285,14.8377715032,14.8359663779,14.8341612526,14.8323561273,14.830551002,14.8287458767,14.8269407515,14.8251356262,14.8233305009,14.8215253756,14.8197202503,14.817915125,14.8161099997,14.8143048744,14.8124997491,14.8106946238,14.8088894985,14.8070843732,14.805279248,14.8034741227,14.8016689974,14.7998638721,14.7980587468,14.7962536215,14.7944484962,14.7926433709,14.7908382456,14.7890331203,14.787227995,14.7854228697,14.7836177445,14.7818126192,14.7800074939,14.7782023686,14.7763972433,14.774592118,14.7727869927,14.7709818674,14.7691767421,14.7673716168,14.7655664915,14.7637613662,14.7619562409,14.7601511157,14.7583459904,14.7565408651,14.7547357398,14.7529306145,14.7511254892,14.7493203639,14.7475152386,14.7457101133,14.743904988,14.7420998627,14.7402947374,14.7384896122,14.7366844869,14.7348793616,14.7330742363,14.731269111,14.7294639857,14.7276588604,14.7258537351,14.7240486098,14.7222434845,14.7204383592,14.7186332339,14.7168281087,14.7150229834,14.7132178581,14.7114127328,14.7096076075,14.7078024822,14.7059973569,14.7041922316,14.7023871063,14.700581981,14.6987768557,14.6969717304,14.6951666051,14.6933614799,14.6915563546,14.6897512293,14.687946104,14.6861409787,14.6843358534,14.6825307281,14.6807256028,14.6789204775,14.6771153522,14.6753102269,14.6735051016,14.6716999764,14.6698948511,14.6680897258,14.6662846005,14.6644794752,14.6626743499,14.6608692246,14.6590640993,14.657258974,14.6554538487,14.6536487234,14.6518435981,14.6500384728,14.6482333476,14.6464282223,14.644623097,14.6428179717,14.6410128464,14.6392077211,14.6374025958,14.6355974705,14.6337923452,14.6319872199,14.6301820946,14.6283769693,14.6265718441,14.6247667188,14.6229615935,14.6211564682,14.6193513429,14.6175462176,14.6157410923,14.613935967,14.6121308417,14.6103257164,14.6085205911,14.6067154658,14.6049103406,14.6031052153,14.60130009,14.5994949647,14.5976898394,14.5958847141,14.5940795888,14.5922744635,14.5904693382,14.5886642129,14.5868590876,14.5850539623,14.583248837,14.5814437118,14.5796385865,14.5778334612,14.5760283359,14.5742232106,14.5724180853,14.57061296,14.5688078347,14.5670027094,14.5651975841,14.5633924588,14.5615873335,14.5597822083,14.557977083,14.5561719577,14.5543668324,14.5525617071,14.5507565818,14.5489514565,14.5471463312,14.5453412059,14.5435360806,14.5417309553,14.53992583,14.5381207048,14.5363155795,14.5345104542,14.5327053289,14.5309002036,14.5290950783,14.527289953,14.5254848277,14.5236797024,14.5218745771,14.5200694518,14.5182643265,14.5164592012,14.514654076,14.5128489507,14.5110438254,14.5092387001,14.5074335748,14.5056284495,14.5038233242,14.5020181989,14.5002130736,14.4984079483,14.496602823,14.4947976977,14.4929925725,14.4911874472,14.4893823219,14.4875771966,14.4857720713,14.483966946,14.4821618207,14.4803566954,14.4785515701,14.4767464448,14.4749413195,14.4731361942,14.471331069,14.4695259437,14.4677208184,14.4659156931,14.4641105678,14.4623054425,14.4605003172,14.4586951919,14.4568900666,14.4550849413,14.453279816,14.4514746907,14.4496695654,14.4478644402,14.4460593149,14.4442541896,14.4424490643,14.440643939,14.4388388137,14.4370336884,14.4352285631,14.4334234378,14.4316183125,14.4298131872,14.4280080619,14.4262029367,14.4243978114,14.4225926861,14.4207875608,14.4189824355,14.4171773102,14.4153721849,14.4135670596,14.4117619343,14.409956809,14.4081516837,14.4063465584,14.4045414331,14.4027363079,14.4009311826,14.3991260573,14.397320932,14.3955158067,14.3937106814,14.3919055561,14.3901004308,14.3882953055,14.3864901802,14.3846850549,14.3828799296,14.3810748044,14.3792696791,14.3774645538,14.3756594285,14.3738543032,14.3720491779,14.3702440526,14.3684389273,14.366633802,14.3648286767,14.3630235514,14.3612184261,14.3594133009,14.3576081756,14.3558030503,14.353997925,14.3521927997,14.3503876744,14.3485825491,14.3467774238,14.3449722985,14.3431671732,14.3413620479,14.3395569226,14.3377517973,14.3359466721,14.3341415468,14.3323364215,14.3305312962,14.3287261709,14.3269210456,14.3251159203,14.323310795,14.3215056697,14.3197005444,14.3178954191,14.3160902938,14.3142851686,14.3124800433,14.310674918,14.3088697927,14.3070646674,14.3052595421,14.3034544168,14.3016492915,14.2998441662,14.2980390409,14.2962339156,14.2944287903,14.2926236651,14.2908185398,14.2890134145,14.2872082892,14.2854031639,14.2835980386,14.2817929133,14.279987788,14.2781826627,14.2763775374,14.2745724121,14.2727672868,14.2709621615,14.2691570363,14.267351911,14.2655467857,14.2637416604,14.2619365351,14.2601314098,14.2583262845,14.2565211592,14.2547160339,14.2529109086,14.2511057833,14.249300658,14.2474955328,14.2456904075,14.2438852822,14.2420801569,14.2402750316,14.2384699063,14.236664781,14.2348596557,14.2330545304,14.2312494051,14.2294442798,14.2276391545,14.2258340293,14.224028904,14.2222237787,14.2204186534,14.2186135281,14.2168084028,14.2150032775,14.2131981522,14.2113930269,14.2095879016,14.2077827763,14.205977651,14.2041725257,14.2023674005,14.2005622752,14.1987571499,14.1969520246,14.1951468993,14.193341774,14.1915366487,14.1897315234,14.1879263981,14.1861212728,14.1843161475,14.1825110222,14.180705897,14.1789007717,14.1770956464,14.1752905211,14.1734853958,14.1716802705,14.1698751452,14.1680700199,14.1662648946,14.1644597693,14.162654644,14.1608495187,14.1590443934,14.1572392682,14.1554341429,14.1536290176,14.1518238923,14.150018767,14.1482136417,14.1464085164,14.1446033911,14.1427982658,14.1409931405,14.1391880152,14.1373828899,14.1355777647,14.1337726394,14.1319675141,14.1301623888,14.1283572635,14.1265521382,14.1247470129,14.1229418876,14.1211367623,14.119331637,14.1175265117,14.1157213864,14.1139162612,14.1121111359,14.1103060106,14.1085008853,14.10669576,14.1048906347,14.1030855094,14.1012803841,14.0994752588,14.0976701335,14.0958650082,14.0940598829,14.0922547576,14.0904496324,14.0886445071,14.0868393818,14.0850342565,14.0832291312,14.0814240059,14.0796188806,14.0778137553,14.07600863,14.0742035047,14.0723983794,14.0705932541,14.0687881289,14.0669830036,14.0651778783,14.063372753,14.0615676277,14.0597625024,14.0579573771,14.0561522518,14.0543471265,14.0525420012,14.0507368759,14.0489317506,14.0471266254,14.0453215001,14.0435163748,14.0417112495,14.0399061242,14.0381009989,14.0362958736,14.0344907483,14.032685623,14.0308804977,14.0290753724,14.0272702471,14.0254651218,14.0236599966,14.0218548713,14.020049746,14.0182446207,14.0164394954,14.0146343701,14.0128292448,14.0110241195,14.0092189942,14.0074138689,14.004979888,14.0025459071,14.0001119262,13.9976779452,13.9952439643,13.9928099834,13.9903760025,13.9879420215,13.9855080406,13.9830740597,13.9806400788,13.9782060978,13.9757721169,13.973338136,13.9709041551,13.9684701742,13.9660361932,13.9636022123,13.9611682314,13.9587342505,13.9563002695,13.9538662886,13.9514323077,13.9489983268,13.9465643458,13.9441303649,13.941696384,13.9392624031,13.9368284222,13.9343944412,13.9319604603,13.9295264794,13.9270924985,13.9246585175,13.9222245366,13.9197905557,13.9173565748,13.9149225938,13.9124886129,13.910054632,13.9076206511,13.9051866701,13.9027526892,13.9003187083,13.8978847274,13.8954507465,13.8930167655,13.8905827846,13.8881488037,13.8857148228,13.8832808418,13.8808468609,13.87841288,13.8759788991,13.8735449181,13.8711109372,13.8686769563,13.8662429754,13.8638089945,13.8613750135,13.8589410326,13.8565070517,13.8540730708,13.8516390898,13.8492051089,13.846771128,13.8443371471,13.8419031661,13.8394691852,13.8370352043,13.8346012234,13.8321672424,13.8297332615,13.8272992806,13.8248652997,13.8224313188,13.8199973378,13.8175633569,13.815129376,13.8126953951,13.8102614141,13.8078274332,13.8053934523,13.8029594714,13.8005254904,13.7980915095,13.7956575286,13.7932235477,13.7907895668,13.7883555858,13.7859216049,13.783487624,13.7810536431,13.7786196621,13.7761856812,13.7737517003,13.7713177194,13.7688837384,13.7664497575,13.7640157766,13.7615817957,13.7591478147,13.7567138338,13.7542798529,13.751845872,13.7494118911,13.7469779101,13.7445439292,13.7421099483,13.7396759674,13.7372419864,13.7348080055,13.7323740246,13.7299400437,13.7275060627,13.7250720818,13.7226381009,13.72020412,13.7177701391,13.7153361581,13.7129021772,13.7104681963,13.7080342154,13.7056002344,13.7031662535,13.7007322726,13.6982982917,13.6958643107,13.6934303298,13.6909963489,13.688562368,13.686128387,13.6836944061,13.6812604252,13.6788264443,13.6763924634,13.6739584824,13.6715245015,13.6690905206,13.6666565397,13.6642225587,13.6617885778,13.6593545969,13.656920616,13.654486635,13.6520526541,13.6496186732,13.6471846923,13.6447507114,13.6423167304,13.6398827495,13.6374487686,13.6350147877,13.6325808067,13.6301468258,13.6277128449,13.625278864,13.622844883,13.6204109021,13.6179769212,13.6155429403,13.6131089593,13.6106749784,13.6082409975,13.6058070166,13.6033730357,13.6009390547,13.5985050738,13.5960710929,13.593637112,13.591203131,13.5887691501,13.5863351692,13.5839011883,13.5814672073,13.5790332264,13.5765992455,13.5741652646,13.5717312837,13.5692973027,13.5668633218,13.5644293409,13.56199536,13.559561379,13.5571273981,13.5546934172,13.5522594363,13.5498254553,13.5473914744,13.5449574935,13.5425235126,13.5400895316,13.5376555507,13.5352215698,13.5327875889,13.530353608,13.527919627,13.5254856461,13.5230516652,13.5206176843,13.5181837033,13.5157497224,13.5133157415,13.5108817606,13.5084477796,13.5060137987,13.5035798178,13.5011458369,13.498711856,13.496277875,13.4938438941,13.4914099132,13.4889759323,13.4865419513,13.4841079704,13.4816739895,13.4792400086,13.4768060276,13.4743720467,13.4719380658,13.4695040849,13.4670701039,13.464636123,13.4622021421,13.4597681612,13.4573341803,13.4549001993,13.4524662184,13.4500322375,13.4475982566,13.4451642756,13.4427302947,13.4402963138,13.4378623329,13.4354283519,13.432994371,13.4305603901,13.4281264092,13.4256924283,13.4232584473,13.4208244664,13.4183904855,13.4159565046,13.4135225236,13.4110885427,13.4086545618,13.4062205809,13.4037865999,13.401352619,13.3989186381,13.3964846572,13.3940506762,13.3916166953,13.3891827144,13.3867487335,13.3843147526,13.3818807716,13.3794467907,13.3770128098,13.3745788289,13.3721448479,13.369710867,13.3672768861,13.3648429052,13.3624089242,13.3599749433,13.3575409624,13.3551069815,13.3526730006,13.3502390196,13.3478050387,13.3453710578,13.3429370769,13.3405030959,13.338069115,13.3356351341,13.3332011532,13.3307671722,13.3283331913,13.3258992104,13.3234652295,13.3210312486,13.3185972676,13.3161632867,13.3137293058,13.3112953249,13.3088613439,13.306427363,13.3039933821,13.3015594012,13.2991254202,13.2966914393,13.2942574584,13.2918234775,13.2893894965,13.2869555156,13.2845215347,13.2820875538,13.2796535729,13.2772195919,13.274785611,13.2723516301,13.2699176492,13.2674836682,13.2650496873,13.2626157064,13.2601817255,13.2577477445,13.2553137636,13.2528797827,13.2504458018,13.2480118209,13.2455778399,13.243143859,13.2407098781,13.2382758972,13.2358419162,13.2334079353,13.2309739544,13.2285399735,13.2261059925,13.2236720116,13.2212380307,13.2188040498,13.2163700688,13.2139360879,13.211502107,13.2090681261,13.2066341452,13.2042001642,13.2017661833,13.1993322024,13.1968982215,13.1944642405,13.1920302596,13.1895962787,13.1871622978,13.1847283168,13.1822943359,13.179860355,13.1774263741,13.1749923932,13.1725584122,13.1701244313,13.1676904504,13.1652564695,13.1628224885,13.1603885076,13.1579545267,13.1555205458,13.1530865648,13.1506525839,13.148218603,13.1457846221,13.1433506411,13.1409166602,13.1384826793,13.1360486984,13.1336147175,13.1311807365,13.1287467556,13.1263127747,13.1238787938,13.1214448128,13.1190108319,13.116576851,13.1141428701,13.1117088891,13.1092749082,13.1068409273,13.1044069464,13.1019729655,13.0995389845,13.0971050036,13.0946710227,13.0922370418,13.0898030608,13.0873690799,13.084935099,13.0825011181,13.0800671371,13.0776331562,13.0751991753,13.0727651944,13.0703312134,13.0678972325,13.0654632516,13.0630292707,13.0605952898,13.0581613088,13.0557273279,13.053293347,13.0508593661,13.0484253851,13.0459914042,13.0435574233,13.0411234424,13.0386894614,13.0362554805,13.0338214996,13.0313875187,13.0289535378,13.0265195568,13.0240855759,13.021651595,13.0192176141,13.0167836331,13.0143496522,13.0119156713,13.0094816904,13.0070477094,13.0046137285,13.0021797476,12.9997457667,12.9973117857,12.9948778048,12.9924438239,12.990009843,12.9875758621,12.9851418811,12.9827079002,12.9802739193,12.9778399384,12.9754059574,12.9729719765,12.9705379956,12.9681040147,12.9656700337,12.9632360528,12.9608020719,12.958368091,12.9559341101,12.9535001291,12.9510661482,12.9486321673,12.9461981864,12.9437642054,12.9413302245,12.9388962436,12.9364622627,12.9340282817,12.9315943008,12.9291603199,12.926726339,12.924292358,12.9218583771,12.9194243962,12.9169904153,12.9145564344,12.9121224534,12.9096884725,12.9072544916,12.9048205107,12.9023865297,12.8999525488,12.8975185679,12.895084587,12.892650606,12.8902166251,12.8877826442,12.8853486633,12.8829146824,12.8804807014,12.8780467205,12.8756127396,12.8731787587,12.8707447777,12.8683107968,12.8658768159,12.863442835,12.861008854,12.8585748731,12.8561408922,12.8537069113,12.8512729303,12.8488389494,12.8464049685,12.8439709876,12.8415370067,12.8391030257,12.8366690448,12.8342350639,12.831801083,12.829367102,12.8269331211,12.8244991402,12.8220651593,12.8196311783,12.8171971974,12.8147632165,12.8123292356,12.8098952547,12.8074612737,12.8050272928,12.8025933119,12.800159331,12.79772535,12.7952913691,12.7928573882,12.7904234073,12.7879894263,12.7855554454,12.7831214645,12.7806874836,12.7782535026,12.7758195217,12.7733855408,12.7709515599,12.768517579,12.766083598,12.7636496171,12.7612156362,12.7587816553,12.7563476743,12.7539136934,12.7514797125,12.7490457316,12.7466117506,12.7441777697,12.7417437888,12.7393098079,12.736875827,12.734441846,12.7320078651,12.7295738842,12.7271399033,12.7247059223,12.7222719414,12.7198379605,12.7174039796,12.7149699986,12.7125360177,12.7101020368,12.7076680559,12.7052340749,12.702800094,12.7003661131,12.6979321322,12.6954981513,12.6930641703,12.6906301894,12.6881962085,12.6857622276,12.6833282466,12.6808942657,12.6784602848,12.6760263039,12.6735923229,12.671158342,12.6687243611,12.6662903802,12.6638563993,12.6614224183,12.6589884374,12.6565544565,12.6541204756,12.6516864946,12.6492525137,12.6468185328,12.6443845519,12.6419505709,12.63951659,12.6370826091,12.6346486282,12.6322146472,12.6297806663,12.6273466854,12.6249127045,12.6224787236,12.6200447426,12.6176107617,12.6151767808,12.6127427999,12.6103088189,12.607874838,12.6054408571,12.6030068762,12.6005728952,12.5981389143,12.5957049334,12.5932709525,12.5908369716,12.5884029906,12.5859690097,12.5835350288,12.5811010479,12.5786670669,12.576233086,12.5737991051,12.5713651242,12.5689311432,12.5664971623,12.5640631814,12.5616292005,12.5591952195,12.5567612386,12.5543272577,12.5518932768,12.5494592959,12.5470253149,12.544591334,12.5421573531,12.5397233722,12.5372893912,12.5344131508,12.5315369104,12.52866067,12.5257844296,12.5229081892,12.5200319488,12.5171557084,12.514279468,12.5114032276,12.5085269872,12.5056507468,12.5027745064,12.499898266,12.4970220256,12.4941457852,12.4912695448,12.4883933044,12.485517064,12.4826408236,12.4797645832,12.4768883428,12.4740121024,12.471135862,12.4682596216,12.4653833812,12.4625071408,12.4596309004,12.45675466,12.4538784196,12.4510021792,12.4481259388,12.4452496984,12.442373458,12.4394972176,12.4366209772,12.4337447368,12.4308684964,12.427992256,12.4251160156,12.4222397752,12.4193635348,12.4164872944,12.413611054,12.4107348136,12.4078585732,12.4049823328,12.4021060924,12.399229852,12.3963536116,12.3934773712,12.3906011308,12.3877248904,12.38484865,12.3819724096,12.3790961692,12.3762199288,12.3733436884,12.370467448,12.3675912076,12.3647149672,12.3618387268,12.3589624864,12.356086246,12.3532100056,12.3503337652,12.3474575248,12.3445812844,12.341705044,12.3388288036,12.3359525632,12.3330763228,12.3302000824,12.327323842,12.3244476016,12.3215713612,12.3186951208,12.3158188804,12.31294264,12.3100663996,12.3071901592,12.3043139188,12.3014376784,12.298561438,12.2956851976,12.2928089572,12.2899327168,12.2870564764,12.284180236,12.2813039956,12.2784277552,12.2755515148,12.2726752744,12.269799034,12.2669227936,12.2640465532,12.2611703128,12.2582940724,12.255417832,12.2525415916,12.2496653512,12.2467891108,12.2439128704,12.24103663,12.2381603896,12.2352841492,12.2324079088,12.2295316684,12.226655428,12.2237791876,12.2209029472,12.2180267068,12.2151504664,12.212274226,12.2093979856,12.2065217452,12.2036455048,12.2007692644,12.197893024,12.1950167836,12.1921405432,12.1892643028,12.1863880624,12.183511822,12.1806355816,12.1777593412,12.1748831008,12.1720068604,12.16913062,12.1662543796,12.1633781392,12.1605018988,12.1576256584,12.154749418,12.1518731776,12.1489969372,12.1461206968,12.1432444564,12.140368216,12.1374919756,12.1346157352,12.1317394948,12.1288632544,12.125987014,12.1231107736,12.1202345332,12.1173582928,12.1144820524,12.111605812,12.1087295716,12.1058533312,12.1029770908,12.1001008504,12.09722461,12.0943483696,12.0914721292,12.0885958888,12.0857196484,12.082843408,12.0799671676,12.0770909272,12.0742146868,12.0713384464,12.068462206,12.0655859656,12.0627097252,12.0598334848,12.0569572444,12.054081004,12.0512047636,12.0483285232,12.0454522828,12.0425760424,12.039699802,12.0368235616,12.0339473212,12.0310710808,12.0281948404,12.0253186,12.0224423596,12.0195661192,12.0166898788,12.0138136384,12.010937398,12.0080611576,12.0051849172,12.0023086768,11.9994324364,11.996556196,11.9936799556,11.9908037152,11.9879274748,11.9850512344,11.982174994,11.9792987536,11.9764225132,11.9735462728,11.9706700324,11.967793792,11.9649175516,11.9620413112,11.9591650708,11.9562888304,11.95341259,11.9505363496,11.9476601092,11.9447838688,11.9419076284,11.939031388,11.9361551476,11.9332789072,11.9304026668,11.9275264264,11.924650186,11.9217739456,11.9188977052,11.9160214648,11.9131452244,11.910268984,11.9073927436,11.9045165032,11.9016402628,11.8987640224,11.895887782,11.8930115416,11.8901353012,11.8872590608,11.8843828204,11.88150658,11.8786303396,11.8757540992,11.8728778588,11.8700016184,11.867125378,11.8642491376,11.8613728972,11.8584966568,11.8556204164,11.852744176,11.8498679356,11.8469916952,11.8441154548,11.8412392144,11.838362974,11.8354867336,11.8326104932,11.8297342528,11.8268580124,11.823981772,11.8211055316,11.8182292912,11.8153530508,11.8124768104,11.80960057,11.8067243296,11.8038480892,11.8009718488,11.7980956084,11.795219368,11.7923431276,11.7894668872,11.7865906468,11.7837144064,11.780838166,11.7779619256,11.7750856852,11.7722094448,11.7693332044,11.766456964,11.7635807236,11.7607044832,11.7578282428,11.7549520024,11.752075762,11.7491995216,11.7463232812,11.7434470408,11.7405708004,11.73769456,11.7348183196,11.7319420792,11.7290658388,11.7261895984,11.723313358,11.7204371176,11.7175608772,11.7146846368,11.7118083964,11.708932156,11.7060559156,11.7031796752,11.7003034348,11.6974271944,11.694550954,11.6916747136,11.6887984732,11.6859222328,11.6830459924,11.680169752,11.6772935116,11.6744172712,11.6715410308,11.6686647904,11.66578855,11.6629123096,11.6600360692,11.6571598288,11.6542835884,11.651407348,11.6485311076,11.6456548672,11.6427786268,11.6399023864,11.637026146,11.6341499056,11.6312736652,11.6283974248,11.6255211844,11.622644944,11.6197687036,11.6168924632,11.6140162228,11.6111399824,11.608263742,11.6053875016,11.6025112612,11.5996350208,11.5967587804,11.59388254,11.5910062996,11.5881300592,11.5852538188,11.5823775784,11.579501338,11.5766250976,11.5737488572,11.5708726168,11.5679963764,11.565120136,11.5622438956,11.5593676552,11.5564914148,11.5536151744,11.550738934,11.5478626936,11.5449864532,11.5421102128,11.5392339724,11.536357732,11.5334814916,11.5306052512,11.5277290108,11.5248527704,11.52197653,11.5191002896,11.5162240492,11.5133478088,11.5104715684,11.507595328,11.5047190876,11.5018428472,11.4989666068,11.4960903664,11.493214126,11.4903378856,11.4874616452,11.4845854048,11.4817091644,11.478832924,11.4759566836,11.4730804432,11.4702042028,11.4673279624,11.464451722,11.4615754816,11.4586992412,11.4558230008,11.4529467604,11.45007052,11.4471942796,11.4443180392,11.4414417988,11.4385655584,11.435689318,11.4328130776,11.4299368372,11.4270605968,11.4241843564,11.421308116,11.4184318756,11.4155556352,11.4126793948,11.4098031544,11.406926914,11.4040506736,11.4011744332,11.3982981928,11.3954219524,11.392545712,11.3896694716,11.3867932312,11.3839169908,11.3810407504,11.37816451,11.3752882696,11.3724120292,11.3695357888,11.3666595484,11.363783308,11.3609070676,11.3580308272,11.3551545868,11.3522783464,11.349402106,11.3465258656,11.3436496252,11.3407733848,11.3378971444,11.335020904,11.3321446636,11.3292684232,11.3263921828,11.3235159424,11.320639702,11.3177634616,11.3148872212,11.3120109808,11.3091347404,11.3062585,11.3033822596,11.3005060192,11.2976297788,11.2947535384,11.291877298,11.2890010576,11.2861248172,11.2832485768,11.2803723364,11.277496096,11.2746198556,11.2717436152,11.2688673748,11.2659911344,11.263114894,11.2602386536,11.2573624132,11.2544861728,11.2516099324,11.248733692,11.2458574516,11.2429812112,11.2401049708,11.2372287304,11.23435249,11.2314762496,11.2286000092,11.2257237688,11.2228475284,11.219971288,11.2170950476,11.2142188072,11.2113425668,11.2084663264,11.205590086,11.2027138456,11.1998376052,11.1969613648,11.1940851244,11.191208884,11.1883326436,11.1854564032,11.1825801628,11.1797039224,11.176827682,11.1739514416,11.1710752012,11.1681989608,11.1653227204,11.16244648,11.1595702396,11.1566939992,11.1538177588,11.1509415184,11.148065278,11.1451890376,11.1423127972,11.1394365568,11.1365603164,11.133684076,11.1308078356,11.1279315952,11.1250553548,11.1221791144,11.119302874,11.1164266336,11.1135503932,11.1106741528,11.1077979124,11.104921672,11.1020454316,11.0991691912,11.0962929508,11.0934167104,11.09054047,11.0876642296,11.0847879892,11.0819117488,11.0790355084,11.076159268,11.0732830276,11.0704067872,11.0675305468,11.0646543064,11.061778066,11.0589018256,11.0560255852,11.0531493448,11.0502731044,11.047396864,11.0445206236,11.0416443832,11.0387681428,11.0358919024,11.033015662,11.0301394216,11.0272631812,11.0243869408,11.0215107004,11.01863446,11.0157582196,11.0128819792,11.0100057388,11.0071294984,11.004253258,11.0013770176,10.9985007772,10.9956245368,10.9927482964,10.989872056,10.9869958156,10.9841195752,10.9812433348,10.9783670944,10.975490854,10.9726146136,10.9697383732,10.9668621327,10.9639858923,10.9611096519,10.9582334115,10.9553571711,10.9524809307,10.9496046903,10.9467284499,10.9438522095,10.9409759691,10.9380997287,10.9352234883,10.9323472479,10.9294710075,10.9265947671,10.9237185267,10.9208422863,10.9179660459,10.9150898055,10.9122135651,10.9093373247,10.9064610843,10.9035848439,10.9007086035,10.8978323631,10.8949561227,10.8920798823,10.8892036419,10.8863274015,10.8834511611,10.8805749207,10.8776986803,10.8748224399,10.8719461995,10.8690699591,10.8661937187,10.8633174783,10.8604412379,10.8575649975,10.8546887571,10.8518125167,10.8489362763,10.8460600359,10.8431837955,10.8403075551,10.8374313147,10.8345550743,10.8316788339,10.8288025935,10.8259263531,10.8230501127,10.8201738723,10.8172976319,10.8144213915,10.8115451511,10.8086689107,10.8057926703,10.8029164299,10.8000401895,10.7974241491,10.7948081086,10.7921920682,10.7895760277,10.7869599872,10.7843439468,10.7817279063,10.7791118658,10.7764958254,10.7738797849,10.7712637445,10.768647704,10.7660316635,10.7634156231,10.7607995826,10.7581835421,10.7555675017,10.7529514612,10.7503354208,10.7477193803,10.7451033398,10.7424872994,10.7398712589,10.7372552185,10.734639178,10.7320231375,10.7294070971,10.7267910566,10.7241750161,10.7215589757,10.7189429352,10.7163268948,10.7137108543,10.7110948138,10.7084787734,10.7058627329,10.7032466924,10.700630652,10.6980146115,10.6953985711,10.6927825306,10.6901664901,10.6875504497,10.6849344092,10.6823183687,10.6797023283,10.6770862878,10.6744702474,10.6718542069,10.6692381664,10.666622126,10.6640060855,10.6613900451,10.6587740046,10.6561579641,10.6535419237,10.6509258832,10.6483098427,10.6456938023,10.6430777618,10.6404617214,10.6378456809,10.6352296404,10.6326136,10.6299975595,10.627381519,10.6247654786,10.6221494381,10.6195333977,10.6169173572,10.6143013167,10.6116852763,10.6090692358,10.6064531954,10.6038371549,10.6012211144,10.598605074,10.5959890335,10.593372993,10.5907569526,10.5881409121,10.5855248717,10.5829088312,10.5802927907,10.5776767503,10.5750607098,10.5724446693,10.5698286289,10.5672125884,10.564596548,10.5619805075,10.559364467,10.5567484266,10.5541323861,10.5515163456,10.5489003052,10.5462842647,10.5436682243,10.5410521838,10.5384361433,10.5358201029,10.5332040624,10.530588022,10.5279719815,10.525355941,10.5227399006,10.5201238601,10.5175078196,10.5148917792,10.5122757387,10.5096596983,10.5070436578,10.5044276173,10.5018115769,10.4991955364,10.4965794959,10.4939634555,10.491347415,10.4887313746,10.4861153341,10.4834992936,10.4808832532,10.4782672127,10.4756511722,10.4730351318,10.4704190913,10.4678030509,10.4651870104,10.4625709699,10.4599549295,10.457338889,10.4547228486,10.4521068081,10.4494907676,10.4468747272,10.4442586867,10.4416426462,10.4390266058,10.4364105653,10.4337945249,10.4311784844,10.4285624439,10.4259464035,10.423330363,10.4207143225,10.4180982821,10.4154822416,10.4128662012,10.4102501607,10.4076341202,10.4050180798,10.4024020393,10.3997859988,10.3971699584,10.3945539179,10.3919378775,10.389321837,10.3867057965,10.3840897561,10.3814737156,10.3788576752,10.3762416347,10.3736255942,10.3710095538,10.3683935133,10.3657774728,10.3631614324,10.3605453919,10.3579293515,10.355313311,10.3526972705,10.3500812301,10.3474651896,10.3448491491,10.3422331087,10.3396170682,10.3370010278,10.3343849873,10.3317689468,10.3291529064,10.3265368659,10.3239208255,10.321304785,10.3186887445,10.3160727041,10.3134566636,10.3108406231,10.3082245827,10.3056085422,10.3029925018,10.3003764613,10.2977604208,10.2951443804,10.2925283399,10.2899122994,10.287296259,10.2846802185,10.2820641781,10.2794481376,10.2768320971,10.2742160567,10.2716000162,10.2689839757,10.2663679353,10.2637518948,10.2611358544,10.2585198139,10.2559037734,10.253287733,10.2506716925,10.2480556521,10.2454396116,10.2428235711,10.2402075307,10.2375914902,10.2349754497,10.2323594093,10.2297433688,10.2271273284,10.2245112879,10.2218952474,10.219279207,10.2166631665,10.214047126,10.2114310856,10.2088150451,10.2061990047,10.2035829642,10.2009669237,10.1983508833,10.1957348428,10.1931188023,10.1905027619,10.1878867214,10.185270681,10.1826546405,10.1800386,10.1774225596,10.1748065191,10.1721904787,10.1695744382,10.1669583977,10.1643423573,10.1617263168,10.1591102763,10.1564942359,10.1538781954,10.151262155,10.1486461145,10.146030074,10.1434140336,10.1407979931,10.1381819526,10.1355659122,10.1329498717,10.1303338313,10.1277177908,10.1251017503,10.1224857099,10.1198696694,10.1172536289,10.1146375885,10.112021548,10.1094055076,10.1067894671,10.1041734266,10.1015573862,10.0989413457,10.0963253053,10.0937092648,10.0910932243,10.0884771839,10.0858611434,10.0832451029,10.0806290625,10.078013022,10.0753969816,10.0727809411,10.0701649006,10.0675488602,10.0649328197,10.0623167792,10.0597007388,10.0570846983,10.0544686579,10.0518526174,10.0492365769,10.0466205365,10.044004496,10.0413884556,10.0387724151,10.0361563746,10.0335403342,10.0309242937,10.0283082532,10.0256922128,10.0230761723,10.0204601319,10.0178440914,10.0152280509,10.0126120105,10.00999597,10.0073799295,10.0047638891,10.0021478486,9.99953180816,9.9969157677,9.99429972723,9.99168368677,9.98906764631,9.98645160585,9.98383556539,9.98121952492,9.97860348446,9.975987444,9.97337140354,9.97075536308,9.96813932261,9.96552328215,9.96290724169,9.96029120123,9.95767516077,9.9550591203,9.95244307984,9.94982703938,9.94721099892,9.94459495846,9.94197891799,9.93936287753,9.93674683707,9.93413079661,9.93151475615,9.92889871568,9.92628267522,9.92366663476,9.9210505943,9.91843455384,9.91581851337,9.91320247291,9.91058643245,9.90797039199,9.90535435153,9.90273831106,9.9001222706,9.89750623014,9.89489018968,9.89227414921,9.88965810875,9.88704206829,9.88442602783,9.88180998737,9.8791939469,9.87657790644,9.87396186598,9.87134582552,9.86872978506,9.86611374459,9.86349770413,9.86088166367,9.85826562321,9.85564958275,9.85303354228,9.85041750182,9.84780146136,9.8451854209,9.84256938044,9.83995333997,9.83733729951,9.83472125905,9.83210521859,9.82948917813,9.82687313766,9.8242570972,9.82164105674,9.81902501628,9.81640897582,9.81379293535,9.81117689489,9.80856085443,9.80594481397,9.80332877351,9.80071273304,9.79809669258,9.79548065212,9.79286461166,9.7902485712,9.78763253073,9.78501649027,9.78240044981,9.77978440935,9.77716836889,9.77455232842,9.77193628796,9.7693202475,9.76670420704,9.76408816658,9.76147212611,9.75885608565,9.75624004519,9.75362400473,9.75100796427,9.7483919238,9.74577588334,9.74315984288,9.74054380242,9.73792776195,9.73531172149,9.73269568103,9.73007964057,9.72746360011,9.72484755964,9.72223151918,9.71961547872,9.71699943826,9.7143833978,9.71176735733,9.70915131687,9.70653527641,9.70391923595,9.70130319549,9.69868715502,9.69607111456,9.6934550741,9.69083903364,9.68822299318,9.68560695271,9.68299091225,9.68037487179,9.67775883133,9.67514279087,9.6725267504,9.66991070994,9.66729466948,9.66467862902,9.66206258856,9.65944654809,9.65683050763,9.65421446717,9.65159842671,9.64898238625,9.64636634578,9.64375030532,9.64113426486,9.6385182244,9.63590218394,9.63328614347,9.63067010301,9.62805406255,9.62543802209,9.62282198163,9.62020594116,9.6175899007,9.61497386024,9.61235781978,9.60974177932,9.60712573885,9.60450969839,9.60189365793,9.59927761747,9.59666157701,9.59404553654,9.59142949608,9.58881345562,9.58619741516,9.58358137469,9.58096533423,9.57834929377,9.57573325331,9.57311721285,9.57050117238,9.56788513192,9.56526909146,9.562653051,9.56003701054,9.55742097007,9.55480492961,9.55218888915,9.54957284869,9.54695680823,9.54434076776,9.5417247273,9.53910868684,9.53649264638,9.53387660592,9.53126056545,9.52864452499,9.52602848453,9.52341244407,9.52079640361,9.51818036314,9.51556432268,9.51294828222,9.51033224176,9.5077162013,9.50510016083,9.50248412037,9.49986807991,9.49725203945,9.49463599899,9.49201995852,9.48940391806,9.4867878776,9.48417183714,9.48155579668,9.47893975621,9.47632371575,9.47370767529,9.47109163483,9.46847559437,9.4658595539,9.46324351344,9.46062747298,9.45801143252,9.45539539206,9.45277935159,9.45016331113,9.44754727067,9.44493123021,9.44231518975,9.43969914928,9.43708310882,9.43446706836,9.4318510279,9.42923498743,9.42661894697,9.42400290651,9.42138686605,9.41877082559,9.41615478512,9.41353874466,9.4109227042,9.40830666374,9.40569062328,9.40307458281,9.40045854235,9.39784250189,9.39522646143,9.39261042097,9.3899943805,9.38737834004,9.38476229958,9.38214625912,9.37953021866,9.37691417819,9.37429813773,9.37168209727,9.36906605681,9.36645001635,9.36383397588,9.36121793542,9.35860189496,9.3559858545,9.35336981404,9.35075377357,9.34813773311,9.34552169265,9.34290565219,9.34028961173,9.33767357126,9.3350575308,9.33244149034,9.32982544988,9.32720940942,9.32459336895,9.32197732849,9.31936128803,9.31674524757,9.31412920711,9.31151316664,9.30889712618,9.30628108572,9.30366504526,9.3010490048,9.29843296433,9.29581692387,9.29320088341,9.29058484295,9.28796880249,9.28535276202,9.28273672156,9.2801206811,9.27750464064,9.27488860017,9.27227255971,9.26965651925,9.26704047879,9.26442443833,9.26180839786,9.2591923574,9.25657631694,9.25396027648,9.25134423602,9.24872819555,9.24611215509,9.24349611463,9.24088007417,9.23826403371,9.23564799324,9.23303195278,9.23041591232,9.22779987186,9.2251838314,9.22256779093,9.21995175047,9.21861752895,9.21728330742,9.2159490859,9.21461486437,9.21328064284,9.21194642132,9.21061219979,9.20927797827,9.20794375674,9.20660953522,9.20527531369,9.20394109217,9.20260687064,9.20127264912,9.19993842759,9.19860420606,9.19726998454,9.19593576301,9.19460154149,9.19326731996,9.19193309844,9.19059887691,9.18926465539,9.18793043386,9.18659621233,9.18526199081,9.18392776928,9.18259354776,9.18125932623,9.17992510471,9.17859088318,9.17725666166,9.17592244013,9.1745882186,9.17325399708,9.17191977555,9.17058555403,9.1692513325,9.16791711098,9.16658288945,9.16524866793,9.1639144464,9.16258022488,9.16124600335,9.15991178182,9.1585775603,9.15724333877,9.15590911725,9.15457489572,9.1532406742,9.15190645267,9.15057223115,9.14923800962,9.14790378809,9.14656956657,9.14523534504,9.14390112352,9.14256690199,9.14123268047,9.13989845894,9.13856423742,9.13723001589,9.13589579437,9.13456157284,9.13322735131,9.13189312979,9.13055890826,9.12922468674,9.12789046521,9.12655624369,9.12522202216,9.12388780064,9.12255357911,9.12121935758,9.11988513606,9.11855091453,9.11721669301,9.11588247148,9.11454824996,9.11321402843,9.11187980691,9.11054558538,9.10921136386,9.10787714233,9.1065429208,9.10520869928,9.10387447775,9.10254025623,9.1012060347,9.09987181318,9.09853759165,9.09720337013,9.0958691486,9.09453492707,9.09320070555,9.09186648402,9.0905322625,9.08919804097,9.08786381945,9.08652959792,9.0851953764,9.08386115487,9.08252693334,9.08119271182,9.07985849029,9.07852426877,9.07719004724,9.07585582572,9.07452160419,9.07318738267,9.07185316114,9.07051893962,9.06918471809,9.06785049656,9.06651627504,9.06518205351,9.06384783199,9.06251361046,9.06117938894,9.05984516741,9.05851094589,9.05717672436,9.05584250283,9.05450828131,9.05317405978,9.05183983826,9.05050561673,9.04917139521,9.04783717368,9.04650295216,9.04516873063,9.04383450911,9.04250028758,9.04116606605,9.03983184453,9.038497623,9.03716340148,9.03582917995,9.03449495843,9.0331607369,9.03182651538,9.03049229385,9.02915807232,9.0278238508,9.02648962927,9.02515540775,9.02382118622,9.0224869647,9.02115274317,9.01981852165,9.01848430012,9.01715007859,9.01581585707,9.01448163554,9.01314741402,9.01181319249,9.01047897097,9.00914474944,9.00781052792,9.00647630639,9.00514208487,9.00380786334,9.00247364181,9.00113942029,8.99980519876,8.99847097724,8.99713675571,8.99580253419,8.99446831266,8.99313409114,8.99179986961,8.99046564808,8.98913142656,8.98779720503,8.98646298351,8.98512876198,8.98379454046,8.98246031893,8.98112609741,8.97979187588,8.97845765436,8.97712343283,8.9757892113,8.97445498978,8.97312076825,8.97178654673,8.9704523252,8.96911810368,8.96778388215,8.96644966063,8.9651154391,8.96378121757,8.96244699605,8.96111277452,8.959778553,8.95844433147,8.95711010995,8.95577588842,8.9544416669,8.95310744537,8.95177322384,8.95043900232,8.94910478079,8.94777055927,8.94643633774,8.94510211622,8.94376789469,8.94243367317,8.94109945164,8.93976523012,8.93843100859,8.93709678706,8.93576256554,8.93442834401,8.93309412249,8.93175990096,8.93042567944,8.92909145791,8.92775723639,8.92642301486,8.92508879333,8.92375457181,8.92242035028,8.92108612876,8.91975190723,8.91841768571,8.91708346418,8.91574924266,8.91441502113,8.91308079961,8.91174657808,8.91041235655,8.90907813503,8.9077439135,8.90640969198,8.90507547045,8.90374124893,8.9024070274,8.90107280588,8.89973858435,8.89840436282,8.8970701413,8.89573591977,8.89440169825,8.89306747672,8.8917332552,8.89039903367,8.88906481215,8.88773059062,8.8863963691,8.88506214757,8.88372792604,8.88239370452,8.88105948299,8.87972526147,8.87839103994,8.87705681842,8.87572259689,8.87438837537,8.87305415384,8.87171993231,8.87038571079,8.86905148926,8.86771726774,8.86638304621,8.86504882469,8.86371460316,8.86238038164,8.86104616011,8.85971193858,8.85837771706,8.85704349553,8.85570927401,8.85437505248,8.85304083096,8.85170660943,8.85037238791,8.84903816638,8.84770394486,8.84636972333,8.8450355018,8.84370128028,8.84236705875,8.84103283723,8.8396986157,8.83836439418,8.83703017265,8.83569595113,8.8343617296,8.83302750807,8.83169328655,8.83035906502,8.8290248435,8.82769062197,8.82635640045,8.82502217892,8.8236879574,8.82235373587,8.82101951435,8.81968529282,8.81835107129,8.81701684977,8.81568262824,8.81434840672,8.81301418519,8.81167996367,8.81034574214,8.80901152062,8.80767729909,8.80634307756,8.80500885604,8.80367463451,8.80234041299,8.80100619146,8.79967196994,8.79833774841,8.79700352689,8.79566930536,8.79433508383,8.79300086231,8.79166664078,8.79033241926,8.78899819773,8.78766397621,8.78632975468,8.78499553316,8.78366131163,8.78232709011,8.78099286858,8.77965864705,8.77832442553,8.776990204,8.77565598248,8.77432176095,8.77298753943,8.7716533179,8.77031909638,8.76898487485,8.76765065332,8.7663164318,8.76498221027,8.76364798875,8.76231376722,8.7609795457,8.75964532417,8.75831110265,8.75697688112,8.7556426596,8.75430843807,8.75297421654,8.75163999502,8.75030577349,8.74897155197,8.74763733044,8.74630310892,8.74496888739,8.74363466587,8.74230044434,8.74096622281,8.73963200129,8.73829777976,8.73696355824,8.73562933671,8.73429511519,8.73296089366,8.73162667214,8.73029245061,8.72895822908,8.72762400756,8.72628978603,8.72495556451,8.72362134298,8.72228712146,8.72095289993,8.71961867841,8.71828445688,8.71695023536,8.71561601383,8.7142817923,8.71294757078,8.71161334925,8.71027912773,8.7089449062,8.70761068468,8.70627646315,8.70494224163,8.7036080201,8.70227379857,8.70093957705,8.69960535552,8.698271134,8.69693691247,8.69560269095,8.69426846942,8.6929342479,8.69160002637,8.69026580485,8.68893158332,8.68759736179,8.68626314027,8.68492891874,8.68359469722,8.68226047569,8.68092625417,8.67959203264,8.67825781112,8.67692358959,8.67558936806,8.67425514654,8.67292092501,8.67158670349,8.67025248196,8.66891826044,8.66758403891,8.66624981739,8.66491559586,8.66358137434,8.66224715281,8.66091293128,8.65957870976,8.65824448823,8.65691026671,8.65557604518,8.65424182366,8.65290760213,8.65157338061,8.65023915908,8.64890493755,8.64757071603,8.6462364945,8.64490227298,8.64356805145,8.64223382993,8.6408996084,8.63956538688,8.63823116535,8.63689694382,8.6355627223,8.63422850077,8.63289427925,8.63156005772,8.6302258362,8.62889161467,8.62755739315,8.62622317162,8.6248889501,8.62355472857,8.62222050704,8.62088628552,8.61955206399,8.61821784247,8.61688362094,8.61554939942,8.61421517789,8.61288095637,8.61154673484,8.61021251331,8.60887829179,8.60754407026,8.60620984874,8.60487562721,8.60354140569,8.60220718416,8.60087296264,8.59953874111,8.59820451959,8.59687029806,8.59553607653,8.59420185501,8.59286763348,8.59153341196,8.59019919043,8.58886496891,8.58753074738,8.58619652586,8.58486230433,8.5835280828,8.58219386128,8.58085963975,8.57952541823,8.5781911967,8.57685697518,8.57552275365,8.57418853213,8.5728543106,8.57152008907,8.57018586755,8.56885164602,8.5675174245,8.56618320297,8.56484898145,8.56351475992,8.5621805384,8.56084631687,8.55951209535,8.55817787382,8.55684365229,8.55550943077,8.55417520924,8.55284098772,8.55150676619,8.55017254467,8.54883832314,8.54750410162,8.54616988009,8.54483565856,8.54350143704,8.54216721551,8.54083299399,8.53949877246,8.53816455094,8.53683032941,8.53549610789,8.53416188636,8.53282766484,8.53149344331,8.53015922178,8.52882500026,8.52749077873,8.52615655721,8.52482233568,8.52348811416,8.52215389263,8.52081967111,8.51948544958,8.51815122805,8.51681700653,8.515482785,8.51414856348,8.51281434195,8.51148012043,8.5101458989,8.50881167738,8.50747745585,8.50614323433,8.5048090128,8.50347479127,8.50214056975,8.50080634822,8.4994721267,8.49813790517,8.49680368365,8.49546946212,8.4941352406,8.49280101907,8.49146679754,8.49013257602,8.48879835449,8.48746413297,8.48612991144,8.48479568992,8.48346146839,8.48212724687,8.48079302534,8.47945880381,8.47812458229,8.47679036076,8.47545613924,8.47412191771,8.47278769619,8.47145347466,8.47011925314,8.46878503161,8.46745081009,8.46611658856,8.46478236703,8.46344814551,8.46211392398,8.46077970246,8.45944548093,8.45811125941,8.45677703788,8.45544281636,8.45410859483,8.4527743733,8.45144015178,8.45010593025,8.44877170873,8.4474374872,8.44610326568,8.44476904415,8.44343482263,8.4421006011,8.44076637958,8.43943215805,8.43809793652,8.436763715,8.43542949347,8.43409527195,8.43276105042,8.4314268289,8.43009260737,8.42875838585,8.42742416432,8.42608994279,8.42475572127,8.42342149974,8.42208727822,8.42075305669,8.41941883517,8.41808461364,8.41675039212,8.41541617059,8.41408194906,8.41462296197,8.41516397487,8.41570498777,8.41624600067,8.41678701358,8.41732802648,8.41786903938,8.41841005228,8.41895106519,8.41949207809,8.42003309099,8.42057410389,8.4211151168,8.4216561297,8.4221971426,8.4227381555,8.4232791684,8.42382018131,8.42436119421,8.42490220711,8.42544322001,8.42598423292,8.42652524582,8.42706625872,8.42760727162,8.42814828453,8.42868929743,8.42923031033,8.42977132323,8.43031233614,8.43085334904,8.43139436194,8.43193537484,8.43247638774,8.43301740065,8.43355841355,8.43409942645,8.43464043935,8.43518145226,8.43572246516,8.43626347806,8.43680449096,8.43734550387,8.43788651677,8.43842752967,8.43896854257,8.43950955547,8.44005056838,8.44059158128,8.44113259418,8.44167360708,8.44221461999,8.44275563289,8.44329664579,8.44383765869,8.4443786716,8.4449196845,8.4454606974,8.4460017103,8.44654272321,8.44708373611,8.44762474901,8.44816576191,8.44870677481,8.44924778772,8.44978880062,8.45032981352,8.45087082642,8.45141183933,8.45195285223,8.45249386513,8.45303487803,8.45357589094,8.45411690384,8.45465791674,8.45519892964,8.45573994255,8.45628095545,8.45682196835,8.45736298125,8.45790399415,8.45844500706,8.45898601996,8.45952703286,8.46006804576,8.46060905867,8.46115007157,8.46169108447,8.46223209737,8.46277311028,8.46331412318,8.46385513608,8.46439614898,8.46493716188,8.46547817479,8.46601918769,8.46656020059,8.46710121349,8.4676422264,8.4681832393,8.4687242522,8.4692652651,8.46980627801,8.47034729091,8.47088830381,8.47142931671,8.47197032962,8.47251134252,8.47305235542,8.47359336832,8.47413438122,8.47467539413,8.47521640703,8.47575741993,8.47629843283,8.47683944574,8.47738045864,8.47792147154,8.47846248444,8.47900349735,8.47954451025,8.48008552315,8.48062653605,8.48116754896,8.48170856186,8.48224957476,8.48279058766,8.48333160056,8.48387261347,8.48441362637,8.48495463927,8.48549565217,8.48603666508,8.48657767798,8.48711869088,8.48765970378,8.48820071669,8.48874172959,8.48928274249,8.48982375539,8.4903647683,8.4909057812,8.4914467941,8.491987807,8.4925288199,8.49306983281,8.49361084571,8.49415185861,8.49469287151,8.49523388442,8.49577489732,8.49631591022,8.49685692312,8.49739793603,8.49793894893,8.49847996183,8.49902097473,8.49956198763,8.50010300054,8.50064401344,8.50118502634,8.50172603924,8.50226705215,8.50280806505,8.50334907795,8.50389009085,8.50443110376,8.50497211666,8.50551312956,8.50605414246,8.50659515537,8.50713616827,8.50767718117,8.50821819407,8.50875920697,8.50930021988,8.50984123278,8.51038224568,8.51092325858,8.51146427149,8.51200528439,8.51254629729,8.51308731019,8.5136283231,8.514169336,8.5147103489,8.5152513618,8.51579237471,8.51633338761,8.51687440051,8.51741541341,8.51795642631,8.51849743922,8.51903845212,8.51957946502,8.52012047792,8.52066149083,8.52120250373,8.52174351663,8.52228452953,8.52282554244,8.52336655534,8.52390756824,8.52444858114,8.52498959404,8.52553060695,8.52607161985,8.52661263275,8.52715364565,8.52769465856,8.52823567146,8.52877668436,8.52931769726,8.52985871017,8.53039972307,8.53094073597,8.53148174887,8.53202276178,8.53256377468,8.53310478758,8.53364580048,8.53418681338,8.53472782629,8.53526883919,8.53580985209,8.53635086499,8.5368918779,8.5374328908,8.5379739037,8.5385149166,8.53905592951,8.53959694241,8.54013795531,8.54067896821,8.54121998112,8.54176099402,8.54230200692,8.54284301982,8.54338403272,8.54392504563,8.54446605853,8.54500707143,8.54554808433,8.54608909724,8.54663011014,8.54717112304,8.54771213594,8.54825314885,8.54879416175,8.54933517465,8.54987618755,8.55041720045,8.55095821336,8.55149922626,8.55204023916,8.55258125206,8.55312226497,8.55366327787,8.55420429077,8.55474530367,8.55528631658,8.55582732948,8.55636834238,8.55690935528,8.55745036819,8.55799138109,8.55853239399,8.55907340689,8.55961441979,8.5601554327,8.5606964456,8.5612374585,8.5617784714,8.56231948431,8.56286049721,8.56340151011,8.56394252301,8.56448353592,8.56502454882,8.56556556172,8.56610657462,8.56664758753,8.56718860043,8.56772961333,8.56827062623,8.56881163913,8.56935265204,8.56989366494,8.57043467784,8.57097569074,8.57151670365,8.57205771655,8.57259872945,8.57313974235,8.57368075526,8.57422176816,8.57476278106,8.57530379396,8.57584480686,8.57638581977,8.57692683267,8.57746784557,8.57800885847,8.57854987138,8.57909088428,8.57963189718,8.58017291008,8.58071392299,8.58125493589,8.58179594879,8.58233696169,8.5828779746,8.5834189875,8.5839600004,8.5845010133,8.5850420262,8.58558303911,8.58612405201,8.58666506491,8.58720607781,8.58774709072,8.58828810362,8.58882911652,8.58937012942,8.58991114233,8.59045215523,8.59099316813,8.59153418103,8.59207519394,8.59261620684,8.59315721974,8.59369823264,8.59423924554,8.59478025845,8.59532127135,8.59586228425,8.59640329715,8.59694431006,8.59748532296,8.59802633586,8.59856734876,8.59910836167,8.59964937457,8.60019038747,8.60073140037,8.60127241328,8.60181342618,8.60235443908,8.60289545198,8.60343646488,8.60397747779,8.60451849069,8.60505950359,8.60560051649,8.6061415294,8.6066825423,8.6072235552,8.6077645681,8.60830558101,8.60884659391,8.60938760681,8.60992861971,8.61046963261,8.61101064552,8.61155165842,8.61209267132,8.61263368422,8.61317469713,8.61371571003,8.61425672293,8.61479773583,8.61533874874,8.61587976164,8.61642077454,8.61696178744,8.61750280035,8.61804381325,8.61858482615,8.61912583905,8.61966685195,8.62020786486,8.62074887776,8.62128989066,8.62183090356,8.62237191647,8.62291292937,8.62345394227,8.62399495517,8.62453596808,8.62507698098,8.62561799388,8.62615900678,8.62670001969,8.62724103259,8.62778204549,8.62832305839,8.62886407129,8.6294050842,8.6299460971,8.63048711,8.6310281229,8.63156913581,8.63211014871,8.63265116161,8.63319217451,8.63373318742,8.63427420032,8.63481521322,8.63535622612,8.63589723902,8.63643825193,8.63697926483,8.63752027773,8.63806129063,8.63860230354,8.63914331644,8.63968432934,8.64022534224,8.64076635515,8.64130736805,8.64184838095,8.64238939385,8.64293040676,8.64347141966,8.64401243256,8.64455344546,8.64509445836,8.64563547127,8.64617648417,8.64671749707,8.64725850997,8.64779952288,8.64834053578,8.64888154868,8.64942256158,8.64996357449,8.65050458739,8.65104560029,8.65158661319,8.6521276261,8.652668639,8.6532096519,8.6537506648,8.6542916777,8.65483269061,8.65537370351,8.65591471641,8.65645572931,8.65699674222,8.65753775512,8.65807876802,8.65861978092,8.65916079383,8.65970180673,8.66024281963,8.66078383253,8.66132484543,8.66186585834,8.66240687124,8.66294788414,8.66348889704,8.66402990995,8.66457092285,8.66511193575,8.66565294865,8.66619396156,8.66673497446,8.66727598736,8.66781700026,8.66835801317,8.66889902607,8.66944003897,8.66998105187,8.67052206477,8.67106307768,8.67160409058,8.67214510348,8.67268611638,8.67322712929,8.67376814219,8.67430915509,8.67485016799,8.6753911809,8.6759321938,8.6764732067,8.6770142196,8.67755523251,8.67809624541,8.67863725831,8.67917827121,8.67971928411,8.68026029702,8.68080130992,8.68134232282,8.68188333572,8.68242434863,8.68296536153,8.68350637443,8.68404738733,8.68458840024,8.68512941314,8.68567042604,8.68621143894,8.68675245185,8.68729346475,8.68783447765,8.68837549055,8.68891650345,8.68945751636,8.68999852926,8.69053954216,8.69108055506,8.69162156797,8.69216258087,8.69270359377,8.69324460667,8.69378561958,8.69432663248,8.69486764538,8.69540865828,8.69594967118,8.69649068409,8.69703169699,8.69757270989,8.69811372279,8.6986547357,8.6991957486,8.6997367615,8.7002777744,8.70081878731,8.70135980021,8.70190081311,8.70244182601,8.70298283892,8.70352385182,8.70406486472,8.70460587762,8.70514689052,8.70568790343,8.70622891633,8.70676992923,8.70731094213,8.70785195504,8.70839296794,8.70893398084,8.70947499374,8.71001600665,8.71055701955,8.71109803245,8.71163904535,8.71218005826,8.71272107116,8.71326208406,8.71380309696,8.71434410986,8.71488512277,8.71542613567,8.71596714857,8.71650816147,8.71704917438,8.71759018728,8.71813120018,8.71867221308,8.71921322599,8.71975423889,8.72029525179,8.72083626469,8.72137727759,8.7219182905,8.7224593034,8.7230003163,8.7235413292,8.72408234211,8.72462335501,8.72516436791,8.72570538081,8.72624639372,8.72678740662,8.72732841952,8.72786943242,8.72841044533,8.72895145823,8.72949247113,8.73003348403,8.73057449693,8.73111550984,8.73165652274,8.73219753564,8.73273854854,8.73327956145,8.73382057435,8.73436158725,8.73490260015,8.73544361306,8.73598462596,8.73652563886,8.73706665176,8.73760766467,8.73814867757,8.73868969047,8.73923070337,8.73977171627,8.74031272918,8.74085374208,8.74285925925,8.74486477643,8.74687029361,8.74887581078,8.75088132796,8.75288684513,8.75489236231,8.75689787949,8.75890339666,8.76090891384,8.76291443101,8.76491994819,8.76692546536,8.76893098254,8.77093649972,8.77294201689,8.77494753407,8.77695305124,8.77895856842,8.78096408559,8.78296960277,8.78497511995,8.78698063712,8.7889861543,8.79099167147,8.79299718865,8.79500270583,8.797008223,8.79901374018,8.80101925735,8.80302477453,8.8050302917,8.80703580888,8.80904132606,8.81104684323,8.81305236041,8.81505787758,8.81706339476,8.81906891193,8.82107442911,8.82307994629,8.82508546346,8.82709098064,8.82909649781,8.83110201499,8.83310753217,8.83511304934,8.83711856652,8.83912408369,8.84112960087,8.84313511804,8.84514063522,8.8471461524,8.84915166957,8.85115718675,8.85316270392,8.8551682211,8.85717373827,8.85917925545,8.86118477263,8.8631902898,8.86519580698,8.86720132415,8.86920684133,8.8712123585,8.87321787568,8.87522339286,8.87722891003,8.87923442721,8.88123994438,8.88324546156,8.88525097874,8.88725649591,8.88926201309,8.89126753026,8.89327304744,8.89527856461,8.89728408179,8.89928959897,8.90129511614,8.90330063332,8.90530615049,8.90731166767,8.90931718484,8.91132270202,8.9133282192,8.91533373637,8.91733925355,8.91934477072,8.9213502879,8.92335580508,8.92536132225,8.92736683943,8.9293723566,8.93137787378,8.93338339095,8.93538890813,8.93739442531,8.93939994248,8.94140545966,8.94341097683,8.94541649401,8.94742201118,8.94942752836,8.95143304554,8.95343856271,8.95544407989,8.95744959706,8.95945511424,8.96146063142,8.96346614859,8.96547166577,8.96747718294,8.96948270012,8.97148821729,8.97349373447,8.97549925165,8.97750476882,8.979510286,8.98151580317,8.98352132035,8.98552683752,8.9875323547,8.98953787188,8.99154338905,8.99354890623,8.9955544234,8.99755994058,8.99956545776,9.00157097493,9.00357649211,9.00558200928,9.00758752646,9.00959304363,9.01159856081,9.01360407799,9.01560959516,9.01761511234,9.01962062951,9.02162614669,9.02363166386,9.02563718104,9.02764269822,9.02964821539,9.03165373257,9.03365924974,9.03566476692,9.03767028409,9.03967580127,9.04168131845,9.04368683562,9.0456923528,9.04769786997,9.04970338715,9.05170890433,9.0537144215,9.05571993868,9.05772545585,9.05973097303,9.0617364902,9.06374200738,9.06574752456,9.06775304173,9.06975855891,9.07176407608,9.07376959326,9.07577511043,9.07778062761,9.07978614479,9.08179166196,9.08379717914,9.08580269631,9.08780821349,9.08981373067,9.09181924784,9.09382476502,9.09583028219,9.09783579937,9.09984131654,9.10184683372,9.1038523509,9.10585786807,9.10786338525,9.10986890242,9.1118744196,9.11387993677,9.11588545395,9.11789097113,9.1198964883,9.12190200548,9.12390752265,9.12591303983,9.12791855701,9.12992407418,9.13192959136,9.13393510853,9.13594062571,9.13794614288,9.13995166006,9.14195717724,9.14396269441,9.14596821159,9.14797372876,9.14997924594,9.15198476311,9.15399028029,9.15599579747,9.15800131464,9.16000683182,9.16201234899,9.16401786617,9.16602338334,9.16802890052,9.1700344177,9.17203993487,9.17404545205,9.17605096922,9.1780564864,9.18006200358,9.18206752075,9.18407303793,9.1860785551,9.18808407228,9.19008958945,9.19209510663,9.19410062381,9.19610614098,9.19811165816,9.20011717533,9.20212269251,9.20412820968,9.20613372686,9.20813924404,9.21014476121,9.21215027839,9.21415579556,9.21616131274,9.21816682992,9.22017234709,9.22217786427,9.22418338144,9.22618889862,9.22819441579,9.23019993297,9.23220545015,9.23421096732,9.2362164845,9.23822200167,9.24022751885,9.24223303602,9.2442385532,9.24624407038,9.24824958755,9.25025510473,9.2522606219,9.25426613908,9.25627165626,9.25827717343,9.26028269061,9.26228820778,9.26429372496,9.26629924213,9.26830475931,9.27031027649,9.27231579366,9.27432131084,9.27632682801,9.27833234519,9.28033786236,9.28234337954,9.28434889672,9.28635441389,9.28835993107,9.29036544824,9.29237096542,9.2943764826,9.29638199977,9.29838751695,9.30039303412,9.3023985513,9.30440406847,9.30640958565,9.30841510283,9.31042062,9.31242613718,9.31443165435,9.31643717153,9.3184426887,9.32044820588,9.32245372306,9.32445924023,9.32646475741,9.32847027458,9.33047579176,9.33248130893,9.33448682611,9.33649234329,9.33849786046,9.34050337764,9.34250889481,9.34451441199,9.34651992917,9.34852544634,9.35053096352,9.35253648069,9.35454199787,9.35654751504,9.35855303222,9.3605585494,9.36256406657,9.36456958375,9.36657510092,9.3685806181,9.37058613527,9.37259165245,9.37459716963,9.3766026868,9.37860820398,9.38061372115,9.38261923833,9.38462475551,9.38663027268,9.38863578986,9.39064130703,9.39264682421,9.39465234138,9.39665785856,9.39866337574,9.40066889291,9.40267441009,9.40467992726,9.40668544444,9.40869096161,9.41069647879,9.41270199597,9.41470751314,9.41671303032,9.41871854749,9.42072406467,9.42272958185,9.42473509902,9.4267406162,9.42874613337,9.43075165055,9.43275716772,9.4347626849,9.43676820208,9.43877371925,9.44077923643,9.4427847536,9.44479027078,9.44679578795,9.44880130513,9.45080682231,9.45281233948,9.45481785666,9.45682337383,9.45882889101,9.46083440818,9.46283992536,9.46484544254,9.46685095971,9.46885647689,9.47086199406,9.47286751124,9.47487302842,9.47687854559,9.47888406277,9.48088957994,9.48289509712,9.48490061429,9.48690613147,9.48891164865,9.49091716582,9.492922683,9.49492820017,9.49693371735,9.49893923452,9.5009447517,9.50295026888,9.50495578605,9.50696130323,9.5089668204,9.51097233758,9.51297785476,9.51498337193,9.51698888911,9.51899440628,9.52099992346,9.52300544063,9.52501095781,9.52701647499,9.52902199216,9.53102750934,9.53303302651,9.53503854369,9.53704406086,9.53904957804,9.54105509522,9.54306061239,9.54506612957,9.54707164674,9.54907716392,9.5510826811,9.55308819827,9.55509371545,9.55709923262,9.5591047498,9.56111026697,9.56311578415,9.56512130133,9.5671268185,9.56913233568,9.57113785285,9.57314337003,9.5751488872,9.57715440438,9.57915992156,9.58116543873,9.58317095591,9.58517647308,9.58718199026,9.58918750743,9.59119302461,9.59319854179,9.59520405896,9.59720957614,9.59921509331,9.60122061049,9.60322612767,9.60523164484,9.60723716202,9.60924267919,9.61124819637,9.61325371354,9.61525923072,9.6172647479,9.61927026507,9.62127578225,9.62328129942,9.6252868166,9.62729233377,9.62929785095,9.63130336813,9.6333088853,9.63531440248,9.63731991965,9.63932543683,9.64133095401,9.64333647118,9.64534198836,9.64734750553,9.64935302271,9.65135853988,9.65336405706,9.65536957424,9.65737509141,9.65938060859,9.66138612576,9.66339164294,9.66539716011,9.66740267729,9.66940819447,9.67141371164,9.67341922882,9.67542474599,9.67743026317,9.67943578035,9.68144129752,9.6834468147,9.68545233187,9.68745784905,9.68946336622,9.6914688834,9.69347440058,9.69547991775,9.69748543493,9.6994909521,9.70149646928,9.70350198645,9.70550750363,9.70751302081,9.70951853798,9.71152405516,9.71352957233,9.71553508951,9.71754060669,9.71954612386,9.72155164104,9.72355715821,9.72556267539,9.72756819256,9.72957370974,9.73157922692,9.73358474409,9.73559026127,9.73759577844,9.73960129562,9.74160681279,9.74361232997,9.74561784715,9.74762336432,9.7496288815,9.75163439867,9.75363991585,9.75564543302,9.7576509502,9.75965646738,9.76166198455,9.76366750173,9.7656730189,9.76767853608,9.76968405326,9.77168957043,9.77369508761,9.77570060478,9.77770612196,9.77971163913,9.78171715631,9.78372267349,9.78572819066,9.78773370784,9.78973922501,9.79174474219,9.79375025936,9.79575577654,9.79776129372,9.79976681089,9.80177232807,9.80377784524,9.80578336242,9.8077888796,9.80979439677,9.81179991395,9.81380543112,9.8158109483,9.81781646547,9.81982198265,9.82182749983,9.823833017,9.82583853418,9.82784405135,9.82984956853,9.8318550857,9.83386060288,9.83586612006,9.83787163723,9.83987715441,9.84188267158,9.84388818876,9.84589370594,9.84789922311,9.84990474029,9.85191025746,9.85391577464,9.85592129181,9.85792680899,9.85993232617,9.86193784334,9.86394336052,9.86594887769,9.86795439487,9.86995991204,9.87196542922,9.8739709464,9.87597646357,9.87798198075,9.87998749792,9.8819930151,9.88399853227,9.88600404945,9.88800956663,9.8900150838,9.89202060098,9.89402611815,9.89603163533,9.89803715251,9.90004266968,9.90204818686,9.90405370403,9.90605922121,9.90806473838,9.91007025556,9.91207577274,9.91408128991,9.91608680709,9.91809232426,9.92009784144,9.92210335861,9.92410887579,9.92611439297,9.92811991014,9.93012542732,9.93213094449,9.93413646167,9.93614197885,9.93814749602,9.9401530132,9.94215853037,9.94416404755,9.94616956472,9.9481750819,9.95018059908,9.95218611625,9.95500174272,9.95781736919,9.96063299566,9.96344862213,9.9662642486,9.96907987507,9.97189550154,9.974711128,9.97752675447,9.98034238094,9.98315800741,9.98597363388,9.98878926035,9.99160488682,9.99442051329,9.99723613976,10.0000517662,10.0028673927,10.0056830192,10.0084986456,10.0113142721,10.0141298986,10.016945525,10.0197611515,10.022576778,10.0253924044,10.0282080309,10.0310236574,10.0338392839,10.0366549103,10.0394705368,10.0422861633,10.0451017897,10.0479174162,10.0507330427,10.0535486691,10.0563642956,10.0591799221,10.0619955485,10.064811175,10.0676268015,10.070442428,10.0732580544,10.0760736809,10.0788893074,10.0817049338,10.0845205603,10.0873361868,10.0901518132,10.0929674397,10.0957830662,10.0985986926,10.1014143191,10.1042299456,10.1070455721,10.1098611985,10.112676825,10.1154924515,10.1183080779,10.1211237044,10.1239393309,10.1267549573,10.1295705838,10.1323862103,10.1352018367,10.1380174632,10.1408330897,10.1436487162,10.1464643426,10.1492799691,10.1520955956,10.154911222,10.1577268485,10.160542475,10.1633581014,10.1661737279,10.1689893544,10.1718049808,10.1746206073,10.1774362338,10.1802518603,10.1830674867,10.1858831132,10.1886987397,10.1915143661,10.1943299926,10.1971456191,10.1999612455,10.202776872,10.2055924985,10.2084081249,10.2112237514,10.2140393779,10.2168550044,10.2196706308,10.2224862573,10.2253018838,10.2281175102,10.2309331367,10.2337487632,10.2365643896,10.2393800161,10.2421956426,10.245011269,10.2478268955,10.250642522,10.2534581485,10.2562737749,10.2590894014,10.2619050279,10.2647206543,10.2675362808,10.2703519073,10.2731675337,10.2759831602,10.2787987867,10.2816144131,10.2844300396,10.2872456661,10.2900612925,10.292876919,10.2956925455,10.298508172,10.3013237984,10.3041394249,10.3069550514,10.3097706778,10.3125863043,10.3154019308,10.3182175572,10.3210331837,10.3238488102,10.3266644366,10.3294800631,10.3322956896,10.3351113161,10.3379269425,10.340742569,10.3435581955,10.3463738219,10.3491894484,10.3520050749,10.3548207013,10.3576363278,10.3604519543,10.3632675807,10.3660832072,10.3688988337,10.3717144602,10.3745300866,10.3773457131,10.3801613396,10.382976966,10.3857925925,10.388608219,10.3914238454,10.3942394719,10.3970550984,10.3998707248,10.4026863513,10.4055019778,10.4083176043,10.4111332307,10.4139488572,10.4167644837,10.4195801101,10.4223957366,10.4252113631,10.4280269895,10.430842616,10.4336582425,10.4364738689,10.4392894954,10.4421051219,10.4449207484,10.4477363748,10.4505520013,10.4533676278,10.4561832542,10.4589988807,10.4618145072,10.4646301336,10.4674457601,10.4702613866,10.473077013,10.4758926395,10.478708266,10.4815238925,10.4843395189,10.4871551454,10.4899707719,10.4927863983,10.4956020248,10.4984176513,10.5012332777,10.5040489042,10.5068645307,10.5096801571,10.5124957836,10.5153114101,10.5181270366,10.520942663,10.5237582895,10.526573916,10.5293895424,10.5322051689,10.5350207954,10.5378364218,10.5406520483,10.5434676748,10.5462833012,10.5490989277,10.5519145542,10.5547301806,10.5575458071,10.5603614336,10.5631770601,10.5659926865,10.568808313,10.5716239395,10.5744395659,10.5772551924,10.5800708189,10.5828864453,10.5857020718,10.5885176983,10.5913333247,10.5941489512,10.5969645777,10.5997802042,10.6025958306,10.6054114571,10.6082270836,10.61104271,10.6138583365,10.616673963,10.6194895894,10.6223052159,10.6251208424,10.6279364688,10.6307520953,10.6335677218,10.6363833483,10.6391989747,10.6420146012,10.6448302277,10.6476458541,10.6504614806,10.6532771071,10.6560927335,10.65890836,10.6617239865,10.6645396129,10.6673552394,10.6701708659,10.6729864924,10.6758021188,10.6786177453,10.6814333718,10.6842489982,10.6870646247,10.6898802512,10.6926958776,10.6955115041,10.6983271306,10.701142757,10.7039583835,10.70677401,10.7095896365,10.7124052629,10.7152208894,10.7180365159,10.7208521423,10.7236677688,10.7264833953,10.7292990217,10.7321146482,10.7349302747,10.7377459011,10.7405615276,10.7433771541,10.7461927806,10.749008407,10.7518240335,10.75463966,10.7574552864,10.7602709129,10.7630865394,10.7659021658,10.7687177923,10.7715334188,10.7743490452,10.7771646717,10.7799802982,10.7827959247,10.7856115511,10.7884271776,10.7912428041,10.7940584305,10.796874057,10.7996896835,10.8025053099,10.8053209364,10.8081365629,10.8109521893,10.8137678158,10.8165834423,10.8193990687,10.8222146952,10.8250303217,10.8278459482,10.8306615746,10.8334772011,10.8362928276,10.839108454,10.8419240805,10.844739707,10.8475553334,10.8503709599,10.8531865864,10.8560022128,10.8588178393,10.8616334658,10.8644490923,10.8672647187,10.8700803452,10.8728959717,10.8757115981,10.8785272246,10.8813428511,10.8841584775,10.886974104,10.8897897305,10.8926053569,10.8954209834,10.8982366099,10.9010522364,10.9038678628,10.9066834893,10.9094991158,10.9123147422,10.9151303687,10.9179459952,10.9207616216,10.9235772481,10.9263928746,10.929208501,10.9320241275,10.934839754,10.9376553805,10.9404710069,10.9432866334,10.9461022599,10.9489178863,10.9517335128,10.9545491393,10.9573647657,10.9601803922,10.9629960187,10.9658116451,10.9686272716,10.9714428981,10.9742585246,10.977074151,10.9798897775,10.982705404,10.9855210304,10.9883366569,10.9911522834,10.9939679098,10.9967835363,10.9995991628,11.0024147892,11.0052304157,11.0080460422,11.0108616687,11.0136772951,11.0164929216,11.0193085481,11.0221241745,11.024939801,11.0277554275,11.0305710539,11.0333866804,11.0362023069,11.0390179333,11.0418335598,11.0446491863,11.0474648128,11.0502804392,11.0530960657,11.0559116922,11.0587273186,11.0615429451,11.0643585716,11.067174198,11.0699898245,11.072805451,11.0756210774,11.0784367039,11.0812523304,11.0840679568,11.0868835833,11.0896992098,11.0925148363,11.0953304627,11.0981460892,11.1009617157,11.1037773421,11.1065929686,11.1094085951,11.1122242215,11.115039848,11.1178554745,11.1206711009,11.1234867274,11.1263023539,11.1291179804,11.1319336068,11.1347492333,11.1375648598,11.1403804862,11.1431961127,11.1460117392,11.1488273656,11.1516429921,11.1544586186,11.157274245,11.1600898715,11.162905498,11.1657211245,11.1685367509,11.1713523774,11.1741680039,11.1769836303,11.1797992568,11.1826148833,11.1854305097,11.1882461362,11.1910617627,11.1938773891,11.1966930156,11.1995086421,11.2023242686,11.205139895,11.2079555215,11.210771148,11.2135867744,11.2164024009,11.2192180274,11.2220336538,11.2248492803,11.2276649068,11.2304805332,11.2332961597,11.2361117862,11.2389274127,11.2417430391,11.2445586656,11.2473742921,11.2501899185,11.253005545,11.2558211715,11.2586367979,11.2614524244,11.2642680509,11.2670836773,11.2698993038,11.2727149303,11.2755305568,11.2783461832,11.2811618097,11.2839774362,11.2867930626,11.2896086891,11.2924243156,11.295239942,11.2980555685,11.300871195,11.3036868214,11.3065024479,11.3093180744,11.3121337008,11.3149493273,11.3177649538,11.3205805803,11.3233962067,11.3262118332,11.3290274597,11.3318430861,11.3346587126,11.3374743391,11.3402899655,11.343105592,11.3459212185,11.3487368449,11.3515524714,11.3543680979,11.3571837244,11.3599993508,11.3628149773,11.3656306038,11.3684462302,11.3712618567,11.3740774832,11.3768931096,11.3797087361,11.3825243626,11.385339989,11.3881556155,11.390971242,11.3937868685,11.3966024949,11.3994181214,11.4022337479,11.4050493743,11.4078650008,11.4106806273,11.4134962537,11.4163118802,11.4191275067,11.4219431331,11.4247587596,11.4275743861,11.4303900126,11.433205639,11.4360212655,11.438836892,11.4416525184,11.4444681449,11.4472837714,11.4500993978,11.4529150243,11.4557306508,11.4585462772,11.4613619037,11.4641775302,11.4669931567,11.4698087831,11.4726244096,11.4754400361,11.4782556625,11.481071289,11.4838869155,11.4867025419,11.4895181684,11.4923337949,11.4951494213,11.4979650478,11.5007806743,11.5035963008,11.5064119272,11.5092275537,11.5120431802,11.5148588066,11.5176744331,11.5204900596,11.523305686,11.5261213125,11.528936939,11.5317525654,11.5345681919,11.5373838184,11.5401994449,11.5430150713,11.5458306978,11.5486463243,11.5514619507,11.5542775772,11.5570932037,11.5599088301,11.5627244566,11.5655400831,11.5683557095,11.571171336,11.5739869625,11.5768025889,11.5796182154,11.5824338419,11.5852494684,11.5880650948,11.5908807213,11.5936963478,11.5965119742,11.5993276007,11.6021432272,11.6049588536,11.6077744801,11.6105901066,11.613405733,11.6162213595,11.619036986,11.6218526125,11.6246682389,11.6274838654,11.6302994919,11.6331151183,11.6359307448,11.6387463713,11.6415619977,11.6443776242,11.6471932507,11.6500088771,11.6528245036,11.655885136,11.6589457685,11.6620064009,11.6650670333,11.6681276658,11.6711882982,11.6742489306,11.677309563,11.6803701955,11.6834308279,11.6864914603,11.6895520928,11.6926127252,11.6956733576,11.69873399,11.7017946225,11.7048552549,11.7079158873,11.7109765198,11.7140371522,11.7170977846,11.720158417,11.7232190495,11.7262796819,11.7293403143,11.7324009467,11.7354615792,11.7385222116,11.741582844,11.7446434765,11.7477041089,11.7507647413,11.7538253737,11.7568860062,11.7599466386,11.763007271,11.7660679035,11.7691285359,11.7721891683,11.7752498007,11.7783104332,11.7813710656,11.784431698,11.7874923305,11.7905529629,11.7936135953,11.7966742277,11.7997348602,11.8027954926,11.805856125,11.8089167575,11.8119773899,11.8150380223,11.8180986547,11.8211592872,11.8242199196,11.827280552,11.8303411845,11.8334018169,11.8364624493,11.8395230817,11.8425837142,11.8456443466,11.848704979,11.8517656114,11.8548262439,11.8578868763,11.8609475087,11.8640081412,11.8670687736,11.870129406,11.8731900384,11.8762506709,11.8793113033,11.8823719357,11.8854325682,11.8884932006,11.891553833,11.8946144654,11.8976750979,11.9007357303,11.9037963627,11.9068569952,11.9099176276,11.91297826,11.9160388924,11.9190995249,11.9221601573,11.9252207897,11.9282814222,11.9313420546,11.934402687,11.9374633194,11.9405239519,11.9435845843,11.9466452167,11.9497058491,11.9527664816,11.955827114,11.9588877464,11.9619483789,11.9650090113,11.9680696437,11.9711302761,11.9741909086,11.977251541,11.9803121734,11.9833728059,11.9864334383,11.9894940707,11.9925547031,11.9956153356,11.998675968,12.0017366004,12.0047972329,12.0078578653,12.0109184977,12.0139791301,12.0170397626,12.020100395,12.0231610274,12.0262216599,12.0292822923,12.0323429247,12.0354035571,12.0384641896,12.041524822,12.0445854544,12.0476460868,12.0507067193,12.0537673517,12.0568279841,12.0598886166,12.062949249,12.0660098814,12.0690705138,12.0721311463,12.0751917787,12.0782524111,12.0813130436,12.084373676,12.0874343084,12.0904949408,12.0935555733,12.0966162057,12.0996768381,12.1027374706,12.105798103,12.1088587354,12.1119193678,12.1149800003,12.1180406327,12.1211012651,12.1241618976,12.12722253,12.1302831624,12.1333437948,12.1364044273,12.1394650597,12.1425256921,12.1455863246,12.148646957,12.1517075894,12.1547682218,12.1578288543,12.1608894867,12.1639501191,12.1670107515,12.170071384,12.1731320164,12.1761926488,12.1792532813,12.1823139137,12.1853745461,12.1884351785,12.191495811,12.1945564434,12.1976170758,12.2006777083,12.2037383407,12.2067989731,12.2098596055,12.212920238,12.2159808704,12.2190415028,12.2221021353,12.2251627677,12.2282234001,12.2312840325,12.234344665,12.2374052974,12.2404659298,12.2435265623,12.2465871947,12.2496478271,12.2527084595,12.255769092,12.2588297244,12.2618903568,12.2649509892,12.2680116217,12.2710722541,12.2741328865,12.277193519,12.2802541514,12.2833147838,12.2863754162,12.2894360487,12.2924966811,12.2955573135,12.298617946,12.3016785784,12.3047392108,12.3077998432,12.3108604757,12.3139211081,12.3169817405,12.320042373,12.3231030054,12.3261636378,12.3292242702,12.3322849027,12.3353455351,12.3384061675,12.3414668,12.3445274324,12.3475880648,12.3506486972,12.3537093297,12.3567699621,12.3598305945,12.3628912269,12.3659518594,12.3690124918,12.3720731242,12.3751337567,12.3781943891,12.3812550215,12.3843156539,12.3873762864,12.3904369188,12.3934975512,12.3965581837,12.3996188161,12.4026794485,12.4057400809,12.4088007134,12.4118613458,12.4149219782,12.4179826107,12.4210432431,12.4241038755,12.4271645079,12.4302251404,12.4332857728,12.4363464052,12.4394070377,12.4424676701,12.4455283025,12.4485889349,12.4516495674,12.4547101998,12.4577708322,12.4608314647,12.4638920971,12.4669527295,12.4700133619,12.4730739944,12.4761346268,12.4791952592,12.4822558916,12.4853165241,12.4883771565,12.4914377889,12.4944984214,12.4975590538,12.5006196862,12.5036803186,12.5067409511,12.5098015835,12.5128622159,12.5159228484,12.5189834808,12.5220441132,12.5251047456,12.5281653781,12.5312260105,12.5342866429,12.5373472754,12.5404079078,12.5434685402,12.5465291726,12.5495898051,12.5526504375,12.5557110699,12.5587717024,12.5618323348,12.5648929672,12.5679535996,12.5710142321,12.5740748645,12.5771354969,12.5801961293,12.5832567618,12.5863173942,12.5893780266,12.5924386591,12.5954992915,12.5985599239,12.6016205563,12.6046811888,12.6077418212,12.6108024536,12.6138630861,12.6169237185,12.6199843509,12.6230449833,12.6261056158,12.6291662482,12.6322268806,12.6352875131,12.6383481455,12.6414087779,12.6444694103,12.6475300428,12.6505906752,12.6536513076,12.6567119401,12.6597725725,12.6628332049,12.6658938373,12.6689544698,12.6720151022,12.6750757346,12.6781363671,12.6811969995,12.6842576319,12.6873182643,12.6903788968,12.6934395292,12.6965001616,12.699560794,12.7026214265,12.7056820589,12.7087426913,12.7118033238,12.7148639562,12.7179245886,12.720985221,12.7240458535,12.7271064859,12.7301671183,12.7332277508,12.7362883832,12.7393490156,12.742409648,12.7454702805,12.7485309129,12.7515915453,12.7546521778,12.7577128102,12.7607734426,12.763834075,12.7668947075,12.7699553399,12.7730159723,12.7760766048,12.7791372372,12.7821978696,12.785258502,12.7883191345,12.7913797669,12.7944403993,12.7975010317,12.8005616642,12.8036222966,12.806682929,12.8097435615,12.8128041939,12.8158648263,12.8189254587,12.8219860912,12.8250467236,12.828107356,12.8311679885,12.8342286209,12.8372892533,12.8403498857,12.8434105182,12.8464711506,12.849531783,12.8525924155,12.8556530479,12.8587136803,12.8617743127,12.8648349452,12.8678955776,12.87095621,12.8740168425,12.8770774749,12.8801381073,12.8831987397,12.8862593722,12.8893200046,12.892380637,12.8954412694,12.8985019019,12.9015625343,12.9046231667,12.9076837992,12.9107444316,12.913805064,12.9168656964,12.9199263289,12.9229869613,12.9260475937,12.9291082262,12.9321688586,12.935229491,12.9382901234,12.9413507559,12.9444113883,12.9474720207,12.9505326532,12.9535932856,12.956653918,12.9597145504,12.9627751829,12.9658358153,12.9688964477,12.9719570802,12.9750177126,12.978078345,12.9811389774,12.9841996099,12.9872602423,12.9903208747,12.9933815072,12.9964421396,12.999502772,13.0025634044,13.0056240369,13.0086846693,13.0117453017,13.0148059341,13.0178665666,13.020927199,13.0239878314,13.0270484639,13.0301090963,13.0331697287,13.0362303611,13.0392909936,13.042351626,13.0454122584,13.0484728909,13.0515335233,13.0545941557,13.0576547881,13.0607154206,13.063776053,13.0668366854,13.0698973179,13.0729579503,13.0760185827,13.0790792151,13.0821398476,13.08520048,13.0882611124,13.0913217449,13.0943823773,13.0974430097,13.1005036421,13.1035642746,13.106624907,13.1096855394,13.1127461718,13.1158068043,13.1188674367,13.1219280691,13.1249887016,13.128049334,13.1311099664,13.1341705988,13.1372312313,13.1402918637,13.1433524961,13.1464131286,13.149473761,13.1525343934,13.1555950258,13.1586556583,13.1617162907,13.1647769231,13.1678375556,13.170898188,13.1739588204,13.1770194528,13.1800800853,13.1831407177,13.1862013501,13.1892619826,13.192322615,13.1953832474,13.1984438798,13.2015045123,13.2045651447,13.2076257771,13.2106864096,13.213747042,13.2168076744,13.2198683068,13.2229289393,13.2259895717,13.2290502041,13.2321108365,13.235171469,13.2382321014,13.2412927338,13.2443533663,13.2474139987,13.2504746311,13.2535352635,13.256595896,13.2596565284,13.2627171608,13.2657777933,13.2688384257,13.2718990581,13.2749596905,13.278020323,13.2810809554,13.2841415878,13.2872022203,13.2902628527,13.2933234851,13.2963841175,13.29944475,13.3025053824,13.3055660148,13.3086266473,13.3116872797,13.3147479121,13.3178085445,13.320869177,13.3239298094,13.3269904418,13.3300510742,13.3331117067,13.3361723391,13.3392329715,13.342293604,13.3453542364,13.3484148688,13.3514755012,13.3545361337,13.3575967661,13.3606573985,13.363718031,13.3667786634,13.3698392958,13.3728999282,13.3759605607,13.3790211931,13.3820818255,13.385142458,13.3882030904,13.3912637228,13.3943243552,13.3973849877,13.4004456201,13.4035062525,13.406566885,13.4096275174,13.4126881498,13.4157487822,13.4188094147,13.4218700471,13.4249306795,13.4279913119,13.4310519444,13.4341125768,13.4371732092,13.4402338417,13.4432944741,13.4463551065,13.4494157389,13.4524763714,13.4555370038,13.4585976362,13.4616582687,13.4647189011,13.4677795335,13.4708401659,13.4739007984,13.4769614308,13.4800220632,13.4830826957,13.4861433281,13.4892039605,13.4922645929,13.4953252254,13.4983858578,13.5014464902,13.5038624559,13.5062784216,13.5086943873,13.511110353,13.5135263187,13.5159422844,13.5183582501,13.5207742158,13.5231901815,13.5256061472,13.5280221129,13.5304380786,13.5328540443,13.53527001,13.5376859757,13.5401019414,13.5425179071,13.5449338728,13.5473498385,13.5497658042,13.5521817699,13.5545977356,13.5570137013,13.559429667,13.5618456327,13.5642615984,13.5666775641,13.5690935298,13.5715094955,13.5739254612,13.5763414269,13.5787573926,13.5811733583,13.583589324,13.5860052897,13.5884212554,13.5908372211,13.5932531868,13.5956691525,13.5980851182,13.6005010839,13.6029170496,13.6053330153,13.607748981,13.6101649467,13.6125809124,13.6149968781,13.6174128438,13.6198288095,13.6222447752,13.6246607409,13.6270767066,13.6294926723,13.631908638,13.6343246037,13.6367405694,13.6391565351,13.6415725008,13.6439884665,13.6464044322,13.6488203979,13.6512363636,13.6536523293,13.656068295,13.6584842607,13.6609002264,13.6633161921,13.6657321578,13.6681481235,13.6705640892,13.6729800549,13.6753960206,13.6778119863,13.680227952,13.6826439177,13.6850598834,13.6874758491,13.6898918148,13.6923077805,13.6947237462,13.6971397119,13.6995556776,13.7019716433,13.704387609,13.7068035747,13.7092195404,13.7116355061,13.7140514718,13.7164674375,13.7188834032,13.7212993689,13.7237153346,13.7261313003,13.728547266,13.7309632317,13.7333791974,13.7357951631,13.7382111288,13.7406270945,13.7430430602,13.7454590259,13.7478749916,13.7502909573,13.752706923,13.7551228887,13.7575388544,13.7599548201,13.7623707858,13.7647867515,13.7672027172,13.7696186829,13.7720346486,13.7744506143,13.77686658,13.7792825457,13.7816985114,13.7841144771,13.7865304428,13.7889464085,13.7913623742,13.7937783399,13.7961943056,13.7986102713,13.801026237,13.8034422027,13.8058581683,13.808274134,13.8106900997,13.8131060654,13.8155220311,13.8179379968,13.8203539625,13.8227699282,13.8251858939,13.8276018596,13.8300178253,13.832433791,13.8348497567,13.8372657224,13.8396816881,13.8420976538,13.8445136195,13.8469295852,13.8493455509,13.8517615166,13.8541774823,13.856593448,13.8590094137,13.8614253794,13.8638413451,13.8662573108,13.8686732765,13.8710892422,13.8735052079,13.8759211736,13.8783371393,13.880753105,13.8831690707,13.8855850364,13.8880010021,13.8904169678,13.8928329335,13.8952488992,13.8976648649,13.9000808306,13.9024967963,13.904912762,13.9073287277,13.9097446934,13.9121606591,13.9145766248,13.9169925905,13.9194085562,13.9218245219,13.9242404876,13.9266564533,13.929072419,13.9314883847,13.9339043504,13.9363203161,13.9387362818,13.9411522475,13.9435682132,13.9459841789,13.9484001446,13.9508161103,13.953232076,13.9556480417,13.9580640074,13.9604799731,13.9628959388,13.9653119045,13.9677278702,13.9701438359,13.9725598016,13.9749757673,13.977391733,13.9798076987,13.9822236644,13.9846396301,13.9870555958,13.9894715615,13.9918875272,13.9943034929,13.9967194586,13.9991354243,14.00155139,14.0039673557,14.0063833214,14.0087992871,14.0112152528,14.0136312185,14.0160471842,14.0184631499,14.0208791156,14.0232950813,14.025711047,14.0281270127,14.0305429784,14.0329589441,14.0353749098,14.0377908755,14.0402068412,14.0426228069,14.0450387726,14.0474547383,14.049870704,14.0522866697,14.0547026354,14.0571186011,14.0595345668,14.0619505325,14.0643664982,14.0667824639,14.0691984296,14.0716143953,14.074030361,14.0764463267,14.0788622924,14.0812782581,14.0836942238,14.0861101895,14.0885261552,14.0909421209,14.0933580866,14.0957740523,14.098190018,14.1006059837,14.1030219494,14.1054379151,14.1078538808,14.1102698465,14.1126858122,14.1151017779,14.1175177436,14.1199337093,14.122349675,14.1247656407,14.1271816064,14.1295975721,14.1320135378,14.1344295035,14.1368454692,14.1392614349,14.1416774006,14.1440933663,14.146509332,14.1489252977,14.1513412634,14.1537572291,14.1561731948,14.1585891605,14.1610051262,14.1634210919,14.1658370576,14.1682530233,14.170668989,14.1730849547,14.1755009204,14.1779168861,14.1803328518,14.1827488175,14.1851647832,14.1875807489,14.1899967146,14.1924126803,14.194828646,14.1972446117,14.1996605774,14.2020765431,14.2044925088,14.2069084745,14.2093244401,14.2117404058,14.2141563715,14.2165723372,14.2189883029,14.2214042686,14.2238202343,14.2262362,14.2286521657,14.2310681314,14.2334840971,14.2359000628,14.2383160285,14.2407319942,14.2431479599,14.2455639256,14.2479798913,14.250395857,14.2528118227,14.2552277884,14.2576437541,14.2600597198,14.2624756855,14.2648916512,14.2673076169,14.2697235826,14.2721395483,14.274555514,14.2769714797,14.2793874454,14.2818034111,14.2842193768,14.2866353425,14.2890513082,14.2914672739,14.2938832396,14.2962992053,14.298715171,14.3011311367,14.3035471024,14.3059630681,14.3083790338,14.3107949995,14.3132109652,14.3156269309,14.3180428966,14.3204588623,14.322874828,14.3252907937,14.3277067594,14.3301227251,14.3325386908,14.3349546565,14.3373706222,14.3397865879,14.3422025536,14.3446185193,14.347034485,14.3494504507,14.3518664164,14.3542823821,14.3566983478,14.3591143135,14.3615302792,14.3639462449,14.3663622106,14.3687781763,14.371194142,14.3736101077,14.3760260734,14.3784420391,14.3808580048,14.3832739705,14.3856899362,14.3881059019,14.3905218676,14.3929378333,14.395353799,14.3977697647,14.4001857304,14.4026016961,14.4050176618,14.4074336275,14.4098495932,14.4122655589,14.4146815246,14.4170974903,14.419513456,14.4219294217,14.4243453874,14.4267613531,14.4291773188,14.4315932845,14.4340092502,14.4364252159,14.4388411816,14.4412571473,14.443673113,14.4460890787,14.4485050444,14.4509210101,14.4533369758,14.4557529415,14.4581689072,14.4605848729,14.4630008386,14.4654168043,14.46783277,14.4702487357,14.4726647014,14.4750806671,14.4774966328,14.4799125985,14.4823285642,14.4847445299,14.4871604956,14.4895764613,14.491992427,14.4944083927,14.4968243584,14.4992403241,14.5016562898,14.5040722555,14.5064882212,14.5089041869,14.5113201526,14.5137361183,14.516152084,14.5185680497,14.5209840154,14.5233999811,14.5258159468,14.5282319125,14.5306478782,14.5330638439,14.5354798096,14.5378957753,14.540311741,14.5427277067,14.5451436724,14.5475596381,14.5499756038,14.5523915695,14.5548075352,14.5572235009,14.5596394666,14.5620554323,14.564471398,14.5668873637,14.5693033294,14.5717192951,14.5741352608,14.5765512265,14.5789671922,14.5813831579,14.5837991236,14.5862150893,14.588631055,14.5910470207,14.5934629864,14.5958789521,14.5982949178,14.6007108835,14.6031268492,14.6055428149,14.6079587806,14.6103747462,14.6127907119,14.6152066776,14.6176226433,14.620038609,14.6224545747,14.6248705404,14.6272865061,14.6297024718,14.6321184375,14.6345344032,14.6369503689,14.6393663346,14.6417823003,14.644198266,14.6466142317,14.6490301974,14.6514461631,14.6538621288,14.6562780945,14.6586940602,14.6611100259,14.6635259916,14.6659419573,14.668357923,14.6707738887,14.6731898544,14.6756058201,14.6780217858,14.6804377515,14.6828537172,14.6852696829,14.6876856486,14.6901016143,14.69251758,14.6949335457,14.6973495114,14.6997654771,14.7021814428,14.7045974085,14.7070133742,14.7094293399,14.7118453056,14.7142612713,14.716677237,14.7190932027,14.7215091684,14.7239251341,14.7263410998,14.7287570655,14.7311730312,14.7335889969,14.7360049626,14.7384209283,14.740836894,14.7432528597,14.7456688254,14.7480847911,14.7505007568,14.7529167225,14.7553326882,14.7577486539,14.7601646196,14.7625805853,14.764996551,14.7674125167,14.7698284824,14.7722444481,14.7746604138,14.7770763795,14.7794923452,14.7819083109,14.7843242766,14.7867402423,14.789156208,14.7915721737,14.7939881394,14.7964041051,14.7988200708,14.8012360365,14.8036520022,14.8060679679,14.8084839336,14.8108998993,14.813315865,14.8157318307,14.8181477964,14.8205637621,14.8229797278,14.8253956935,14.8278116592,14.8302276249,14.8326435906,14.8350595563,14.837475522,14.8398914877,14.8423074534,14.8447234191,14.8471393848,14.8495553505,14.8519713162,14.8543872819,14.8568032476,14.8592192133,14.861635179,14.8640511447,14.8664671104,14.8688830761,14.8712990418,14.8737150075,14.8761309732,14.8785469389,14.8809629046,14.8833788703,14.885794836,14.8882108017,14.8906267674,14.8930427331,14.8954586988,14.8978746645,14.9002906302,14.9027065959,14.9051225616,14.9075385273,14.909954493,14.9123704587,14.9147864244,14.9172023901,14.9196183558,14.9220343215,14.9244502872,14.9268662529,14.9292822186,14.9316981843,14.93411415,14.9365301157,14.9389460814,14.9413620471,14.9437780128,14.9461939785,14.9486099442,14.9510259099,14.9534418756,14.9558578413,14.958273807,14.9606897727,14.961685664,14.9626815553,14.9636774466,14.9646733379,14.9656692292,14.9666651205,14.9676610118,14.9686569031,14.9696527944,14.9706486857,14.971644577,14.9726404683,14.9736363596,14.9746322509,14.9756281422,14.9766240335,14.9776199248,14.9786158161,14.9796117074,14.9806075987,14.9816034901,14.9825993814,14.9835952727,14.984591164,14.9855870553,14.9865829466,14.9875788379,14.9885747292,14.9895706205,14.9905665118,14.9915624031,14.9925582944,14.9935541857,14.994550077,14.9955459683,14.9965418596,14.9975377509,14.9985336422,14.9995295335,15.0005254248,15.0015213161,15.0025172074,15.0035130987,15.00450899,15.0055048814,15.0065007727,15.007496664,15.0084925553,15.0094884466,15.0104843379,15.0114802292,15.0124761205,15.0134720118,15.0144679031,15.0154637944,15.0164596857,15.017455577,15.0184514683,15.0194473596,15.0204432509,15.0214391422,15.0224350335,15.0234309248,15.0244268161,15.0254227074,15.0264185987,15.02741449,15.0284103813,15.0294062727,15.030402164,15.0313980553,15.0323939466,15.0333898379,15.0343857292,15.0353816205,15.0363775118,15.0373734031,15.0383692944,15.0393651857,15.040361077,15.0413569683,15.0423528596,15.0433487509,15.0443446422,15.0453405335,15.0463364248,15.0473323161,15.0483282074,15.0493240987,15.05031999,15.0513158813,15.0523117726,15.053307664,15.0543035553,15.0552994466,15.0562953379,15.0572912292,15.0582871205,15.0592830118,15.0602789031,15.0612747944,15.0622706857,15.063266577,15.0642624683,15.0652583596,15.0662542509,15.0672501422,15.0682460335,15.0692419248,15.0702378161,15.0712337074,15.0722295987,15.07322549,15.0742213813,15.0752172726,15.076213164,15.0772090553,15.0782049466,15.0792008379,15.0801967292,15.0811926205,15.0821885118,15.0831844031,15.0841802944,15.0851761857,15.086172077,15.0871679683,15.0881638596,15.0891597509,15.0901556422,15.0911515335,15.0921474248,15.0931433161,15.0941392074,15.0951350987,15.09613099,15.0971268813,15.0981227726,15.0991186639,15.1001145553,15.1011104466,15.1021063379,15.1031022292,15.1040981205,15.1050940118,15.1060899031,15.1070857944,15.1080816857,15.109077577,15.1100734683,15.1110693596,15.1120652509,15.1130611422,15.1140570335,15.1150529248,15.1160488161,15.1170447074,15.1180405987,15.11903649,15.1200323813,15.1210282726,15.1220241639,15.1230200552,15.1240159466,15.1250118379,15.1260077292,15.1270036205,15.1279995118,15.1289954031,15.1299912944,15.1309871857,15.131983077,15.1329789683,15.1339748596,15.1349707509,15.1359666422,15.1369625335,15.1379584248,15.1389543161,15.1399502074,15.1409460987,15.14194199,15.1429378813,15.1439337726,15.1449296639,15.1459255552,15.1469214465,15.1479173379,15.1489132292,15.1499091205,15.1509050118,15.1519009031,15.1528967944,15.1538926857,15.154888577,15.1558844683,15.1568803596,15.1578762509,15.1588721422,15.1598680335,15.1608639248,15.1618598161,15.1628557074,15.1638515987,15.16484749,15.1658433813,15.1668392726,15.1678351639,15.1688310552,15.1698269465,15.1708228379,15.1718187292,15.1728146205,15.1738105118,15.1748064031,15.1758022944,15.1767981857,15.177794077,15.1787899683,15.1797858596,15.1807817509,15.1817776422,15.1827735335,15.1837694248,15.1847653161,15.1857612074,15.1867570987,15.18775299,15.1887488813,15.1897447726,15.1907406639,15.1917365552,15.1927324465,15.1937283378,15.1947242292,15.1957201205,15.1967160118,15.1977119031,15.1987077944,15.1997036857,15.200699577,15.2016954683,15.2026913596,15.2036872509,15.2046831422,15.2056790335,15.2066749248,15.2076708161,15.2086667074,15.2096625987,15.21065849,15.2116543813,15.2126502726,15.2136461639,15.2146420552,15.2156379465,15.2166338378,15.2176297291,15.2186256205,15.2196215118,15.2206174031,15.2216132944,15.2226091857,15.223605077,15.2246009683,15.2255968596,15.2265927509,15.2275886422,15.2285845335,15.2295804248,15.2305763161,15.2315722074,15.2325680987,15.23356399,15.2345598813,15.2355557726,15.2365516639,15.2375475552,15.2385434465,15.2395393378,15.2405352291,15.2415311204,15.2425270118,15.2435229031,15.2445187944,15.2455146857,15.246510577,15.2475064683,15.2485023596,15.2494982509,15.2504941422,15.2514900335,15.2524859248,15.2534818161,15.2544777074,15.2554735987,15.25646949,15.2574653813,15.2584612726,15.2594571639,15.2604530552,15.2614489465,15.2624448378,15.2634407291,15.2644366204,15.2654325118,15.2664284031,15.2674242944,15.2684201857,15.269416077,15.2704119683,15.2714078596,15.2724037509,15.2733996422,15.2743955335,15.2753914248,15.2763873161,15.2773832074,15.2783790987,15.27937499,15.2803708813,15.2813667726,15.2823626639,15.2833585552,15.2843544465,15.2853503378,15.2863462291,15.2873421204,15.2883380117,15.2893339031,15.2903297944,15.2913256857,15.292321577,15.2933174683,15.2943133596,15.2953092509,15.2963051422,15.2973010335,15.2982969248,15.2992928161,15.3002887074,15.3012845987,15.30228049,15.3032763813,15.3042722726,15.3052681639,15.3062640552,15.3072599465,15.3082558378,15.3092517291,15.3102476204,15.3112435117,15.312239403,15.3132352944,15.3142311857,15.315227077,15.3162229683,15.3172188596,15.3182147509,15.3192106422,15.3202065335,15.3212024248,15.3221983161,15.3231942074,15.3241900987,15.32518599,15.3261818813,15.3271777726,15.3281736639,15.3291695552,15.3301654465,15.3311613378,15.3321572291,15.3331531204,15.3341490117,15.335144903,15.3361407943,15.3371366857,15.338132577,15.3391284683,15.3401243596,15.3411202509,15.3421161422,15.3431120335,15.3441079248,15.3451038161,15.3460997074,15.3470955987,15.34809149,15.3490873813,15.3500832726,15.3510791639,15.3520750552,15.3530709465,15.3540668378,15.3550627291,15.3560586204,15.3570545117,15.358050403,15.3590462943,15.3600421857,15.361038077,15.3620339683,15.3630298596,15.3640257509,15.3650216422,15.3660175335,15.3670134248,15.3680093161,15.3690052074,15.3700010987,15.37099699,15.3719928813,15.3729887726,15.3739846639,15.3749805552,15.3759764465,15.3769723378,15.3779682291,15.3789641204,15.3799600117,15.380955903,15.3819517943,15.3829476856,15.383943577,15.3849394683,15.3859353596,15.3869312509,15.3879271422,15.3889230335,15.3899189248,15.3909148161,15.3919107074,15.3929065987,15.39390249,15.3948983813,15.3958942726,15.3968901639,15.3978860552,15.3988819465,15.3998778378,15.4008737291,15.4018696204,15.4028655117,15.403861403,15.4048572943,15.4058531856,15.4068490769,15.4078449683,15.4088408596,15.4098367509,15.4108326422,15.4118285335,15.4128244248,15.4138203161,15.4148162074,15.4158120987,15.41680799,15.4178038813,15.4187997726,15.4197956639,15.4207915552,15.4217874465,15.4227833378,15.4237792291,15.4247751204,15.4257710117,15.426766903,15.4277627943,15.4287586856,15.4297545769,15.4307504682,15.4317463596,15.4327422509,15.4337381422,15.4347340335,15.4357299248,15.4367258161,15.4377217074,15.4387175987,15.43971349,15.4407093813,15.4417052726,15.4427011639,15.4436970552,15.4446929465,15.4456888378,15.4466847291,15.4476806204,15.4486765117,15.449672403,15.4506682943,15.4516641856,15.4526600769,15.4536559682,15.4546518596,15.4556477509,15.4566436422,15.4576395335,15.4586354248,15.4596313161,15.4606272074,15.4616230987,15.46261899,15.4636148813,15.4646107726,15.4656066639,15.4666025552,15.4675984465,15.4685943378,15.4695902291,15.4705861204,15.4715820117,15.472577903,15.4735737943,15.4745696856,15.4755655769,15.4765614682,15.4775573595,15.4785532509,15.4795491422,15.4805450335,15.4815409248,15.4825368161,15.4835327074,15.4845285987,15.48552449,15.4865203813,15.4875162726,15.4885121639,15.4895080552,15.4905039465,15.4914998378,15.4924957291,15.4934916204,15.4944875117,15.495483403,15.4964792943,15.4974751856,15.4984710769,15.4994669682,15.5004628595,15.5014587508,15.5024546422,15.5034505335,15.5044464248,15.5054423161,15.5064382074,15.5074340987,15.50842999,15.5094258813,15.5104217726,15.5114176639,15.5124135552,15.5134094465,15.5144053378,15.5154012291,15.5163971204,15.5173930117,15.518388903,15.5193847943,15.5203806856,15.5213765769,15.5223724682,15.5233683595,15.5243642508,15.5253601421,15.5263560335,15.5273519248,15.5283478161,15.5293437074,15.5303395987,15.53133549,15.5323313813,15.5333272726,15.5343231639,15.5353190552,15.5363149465,15.5373108378,15.5383067291,15.5393026204,15.5402985117,15.541294403,15.5422902943,15.5432861856,15.5442820769,15.5452779682,15.5462738595,15.5472697508,15.5482656421,15.5492615335,15.5502574248,15.5512533161,15.5522492074,15.5532450987,15.55424099,15.5552368813,15.5562327726,15.5572286639,15.5582245552,15.5592204465,15.5602163378,15.5612122291,15.5622081204,15.5616043904,15.5610006604,15.5603969304,15.5597932004,15.5591894704,15.5585857403,15.5579820103,15.5573782803,15.5567745503,15.5561708203,15.5555670903,15.5549633603,15.5543596303,15.5537559003,15.5531521703,15.5525484403,15.5519447102,15.5513409802,15.5507372502,15.5501335202,15.5495297902,15.5489260602,15.5483223302,15.5477186002,15.5471148702,15.5465111402,15.5459074101,15.5453036801,15.5446999501,15.5440962201,15.5434924901,15.5428887601,15.5422850301,15.5416813001,15.5410775701,15.5404738401,15.53987011,15.53926638,15.53866265,15.53805892,15.53745519,15.53685146,15.53624773,15.535644,15.53504027,15.53443654,15.53383281,15.5332290799,15.5326253499,15.5320216199,15.5314178899,15.5308141599,15.5302104299,15.5296066999,15.5290029699,15.5283992399,15.5277955099,15.5271917798,15.5265880498,15.5259843198,15.5253805898,15.5247768598,15.5241731298,15.5235693998,15.5229656698,15.5223619398,15.5217582098,15.5211544798,15.5205507497,15.5199470197,15.5193432897,15.5187395597,15.5181358297,15.5175320997,15.5169283697,15.5163246397,15.5157209097,15.5151171797,15.5145134496,15.5139097196,15.5133059896,15.5127022596,15.5120985296,15.5114947996,15.5108910696,15.5102873396,15.5096836096,15.5090798796,15.5084761495,15.5078724195,15.5072686895,15.5066649595,15.5060612295,15.5054574995,15.5048537695,15.5042500395,15.5036463095,15.5030425795,15.5024388495,15.5018351194,15.5012313894,15.5006276594,15.5000239294,15.4994201994,15.4988164694,15.4982127394,15.4976090094,15.4970052794,15.4964015494,15.4957978193,15.4951940893,15.4945903593,15.4939866293,15.4933828993,15.4927791693,15.4921754393,15.4915717093,15.4909679793,15.4903642493,15.4897605193,15.4891567892,15.4885530592,15.4879493292,15.4873455992,15.4867418692,15.4861381392,15.4855344092,15.4849306792,15.4843269492,15.4837232192,15.4831194891,15.4825157591,15.4819120291,15.4813082991,15.4807045691,15.4801008391,15.4794971091,15.4788933791,15.4782896491,15.4776859191,15.477082189,15.476478459,15.475874729,15.475270999,15.474667269,15.474063539,15.473459809,15.472856079,15.472252349,15.471648619,15.471044889,15.4704411589,15.4698374289,15.4692336989,15.4686299689,15.4680262389,15.4674225089,15.4668187789,15.4662150489,15.4656113189,15.4650075889,15.4644038588,15.4638001288,15.4631963988,15.4625926688,15.4619889388,15.4613852088,15.4607814788,15.4601777488,15.4595740188,15.4589702888,15.4583665588,15.4577628287,15.4571590987,15.4565553687,15.4559516387,15.4553479087,15.4547441787,15.4541404487,15.4535367187,15.4529329887,15.4523292587,15.4517255286,15.4511217986,15.4505180686,15.4499143386,15.4493106086,15.4487068786,15.4481031486,15.4474994186,15.4468956886,15.4462919586,15.4456882285,15.4450844985,15.4444807685,15.4438770385,15.4432733085,15.4426695785,15.4420658485,15.4414621185,15.4408583885,15.4402546585,15.4396509285,15.4390471984,15.4384434684,15.4378397384,15.4372360084,15.4366322784,15.4360285484,15.4354248184,15.4348210884,15.4342173584,15.4336136284,15.4330098983,15.4324061683,15.4318024383,15.4311987083,15.4305949783,15.4299912483,15.4293875183,15.4287837883,15.4281800583,15.4275763283,15.4269725983,15.4263688682,15.4257651382,15.4251614082,15.4245576782,15.4239539482,15.4233502182,15.4227464882,15.4221427582,15.4215390282,15.4209352982,15.4203315681,15.4197278381,15.4191241081,15.4185203781,15.4179166481,15.4173129181,15.4167091881,15.4161054581,15.4155017281,15.4148979981,15.414294268,15.413690538,15.413086808,15.412483078,15.411879348,15.411275618,15.410671888,15.410068158,15.409464428,15.408860698,15.408256968,15.4076532379,15.4070495079,15.4064457779,15.4058420479,15.4052383179,15.4046345879,15.4040308579,15.4034271279,15.4028233979,15.4022196679,15.4016159378,15.4010122078,15.4004084778,15.3998047478,15.3992010178,15.3985972878,15.3979935578,15.3973898278,15.3967860978,15.3961823678,15.3955786378,15.3949749077,15.3943711777,15.3937674477,15.3931637177,15.3925599877,15.3919562577,15.3913525277,15.3907487977,15.3901450677,15.3895413377,15.3889376076,15.3883338776,15.3877301476,15.3871264176,15.3865226876,15.3859189576,15.3853152276,15.3847114976,15.3841077676,15.3835040376,15.3829003075,15.3822965775,15.3816928475,15.3810891175,15.3804853875,15.3798816575,15.3792779275,15.3786741975,15.3780704675,15.3774667375,15.3768630075,15.3762592774,15.3756555474,15.3750518174,15.3744480874,15.3738443574,15.3732406274,15.3726368974,15.3720331674,15.3714294374,15.3708257074,15.3702219773,15.3696182473,15.3690145173,15.3684107873,15.3678070573,15.3672033273,15.3665995973,15.3659958673,15.3653921373,15.3647884073,15.3641846773,15.3635809472,15.3629772172,15.3623734872,15.3617697572,15.3611660272,15.3605622972,15.3599585672,15.3593548372,15.3587511072,15.3581473772,15.3575436471,15.3569399171,15.3563361871,15.3557324571,15.3551287271,15.3545249971,15.3539212671,15.3533175371,15.3527138071,15.3521100771,15.351506347,15.350902617,15.350298887,15.349695157,15.349091427,15.348487697,15.347883967,15.347280237,15.346676507,15.346072777,15.345469047,15.3448653169,15.3442615869,15.3436578569,15.3430541269,15.3424503969,15.3418466669,15.3412429369,15.3406392069,15.3400354769,15.3394317469,15.3388280168,15.3382242868,15.3376205568,15.3370168268,15.3364130968,15.3358093668,15.3352056368,15.3346019068,15.3339981768,15.3333944468,15.3327907168,15.3321869867,15.3315832567,15.3309795267,15.3303757967,15.3297720667,15.3291683367,15.3285646067,15.3279608767,15.3273571467,15.3267534167,15.3261496866,15.3255459566,15.3249422266,15.3243384966,15.3237347666,15.3231310366,15.3225273066,15.3219235766,15.3213198466,15.3207161166,15.3201123865,15.3195086565,15.3189049265,15.3183011965,15.3176974665,15.3170937365,15.3164900065,15.3158862765,15.3152825465,15.3146788165,15.3140750865,15.3134713564,15.3128676264,15.3122638964,15.3116601664,15.3110564364,15.3104527064,15.3098489764,15.3092452464,15.3086415164,15.3080377864,15.3074340563,15.3068303263,15.3062265963,15.3056228663,15.3050191363,15.3044154063,15.3038116763,15.3032079463,15.3026042163,15.3020004863,15.3013967563,15.3007930262,15.3001892962,15.2995855662,15.2989818362,15.2983781062,15.2977743762,15.2971706462,15.2965669162,15.2959631862,15.2953594562,15.2947557261,15.2941519961,15.2935482661,15.2929445361,15.2923408061,15.2917370761,15.2911333461,15.2905296161,15.2899258861,15.2893221561,15.288718426,15.288114696,15.287510966,15.286907236,15.286303506,15.285699776,15.285096046,15.284492316,15.283888586,15.283284856,15.282681126,15.2820773959,15.2814736659,15.2808699359,15.2802662059,15.2796624759,15.2790587459,15.2784550159,15.2778512859,15.2772475559,15.2766438259,15.2760400958,15.2754363658,15.2748326358,15.2742289058,15.2736251758,15.2730214458,15.2724177158,15.2718139858,15.2712102558,15.2706065258,15.2700027958,15.2693990657,15.2687953357,15.2681916057,15.2675878757,15.2669841457,15.2663804157,15.2657766857,15.2651729557,15.2645692257,15.2639654957,15.2633617656,15.2627580356,15.2621543056,15.2615505756,15.2609468456,15.2603431156,15.2597393856,15.2591356556,15.2585319256,15.2579281956,15.2573244655,15.2567207355,15.2561170055,15.2555132755,15.2549095455,15.2543058155,15.2537020855,15.2530983555,15.2524946255,15.2518908955,15.2512871655,15.2506834354,15.2500797054,15.2494759754,15.2488722454,15.2482685154,15.2476647854,15.2470610554,15.2464573254,15.2458535954,15.2452498654,15.2446461353,15.2440424053,15.2434386753,15.2428349453,15.2422312153,15.2416274853,15.2410237553,15.2404200253,15.2398162953,15.2392125653,15.2386088352,15.2380051052,15.2374013752,15.2367976452,15.2361939152,15.2355901852,15.2349864552,15.2343827252,15.2337789952,15.2331752652,15.2325715352,15.2319678051,15.2313640751,15.2307603451,15.2301566151,15.2295528851,15.2289491551,15.2283454251,15.2277416951,15.2271379651,15.2265342351,15.225930505,15.225326775,15.224723045,15.224119315,15.223515585,15.222911855,15.222308125,15.221704395,15.221100665,15.220496935,15.219893205,15.2192894749,15.2186857449,15.2180820149,15.2174782849,15.2168745549,15.2162708249,15.2156670949,15.2150633649,15.2144596349,15.2138559049,15.2132521748,15.2126484448,15.2120447148,15.2114409848,15.2108372548,15.2102335248,15.2096297948,15.2090260648,15.2084223348,15.2078186048,15.2072148747,15.2066111447,15.2060074147,15.2054036847,15.2047999547,15.2041962247,15.2035924947,15.2029887647,15.2023850347,15.2017813047,15.2011775747,15.2005738446,15.1999701146,15.1993663846,15.1987626546,15.1981589246,15.1975551946,15.1957667776,15.1939783606,15.1921899436,15.1904015265,15.1886131095,15.1868246925,15.1850362755,15.1832478585,15.1814594415,15.1796710245,15.1778826075,15.1760941904,15.1743057734,15.1725173564,15.1707289394,15.1689405224,15.1671521054,15.1653636884,15.1635752714,15.1617868543,15.1599984373,15.1582100203,15.1564216033,15.1546331863,15.1528447693,15.1510563523,15.1492679352,15.1474795182,15.1456911012,15.1439026842,15.1421142672,15.1403258502,15.1385374332,15.1367490162,15.1349605991,15.1331721821,15.1313837651,15.1295953481,15.1278069311,15.1260185141,15.1242300971,15.1224416801,15.120653263,15.118864846,15.117076429,15.115288012,15.113499595,15.111711178,15.109922761,15.108134344,15.1063459269,15.1045575099,15.1027690929,15.1009806759,15.0991922589,15.0974038419,15.0956154249,15.0938270078,15.0920385908,15.0902501738,15.0884617568,15.0866733398,15.0848849228,15.0830965058,15.0813080888,15.0795196717,15.0777312547,15.0759428377,15.0741544207,15.0723660037,15.0705775867,15.0687891697,15.0670007527,15.0652123356,15.0634239186,15.0616355016,15.0598470846,15.0580586676,15.0562702506,15.0544818336,15.0526934166,15.0509049995,15.0491165825,15.0473281655,15.0455397485,15.0437513315,15.0419629145,15.0401744975,15.0383860804,15.0365976634,15.0348092464,15.0330208294,15.0312324124,15.0294439954,15.0276555784,15.0258671614,15.0240787443,15.0222903273,15.0205019103,15.0187134933,15.0169250763,15.0151366593,15.0133482423,15.0115598253,15.0097714082,15.0079829912,15.0061945742,15.0044061572,15.0026177402,15.0008293232,14.9990409062,14.9972524892,14.9954640721,14.9936756551,14.9918872381,14.9900988211,14.9883104041,14.9865219871,14.9847335701,14.982945153,14.981156736,14.979368319,14.977579902,14.975791485,14.974003068,14.972214651,14.970426234,14.9686378169,14.9668493999,14.9650609829,14.9632725659,14.9614841489,14.9596957319,14.9579073149,14.9561188979,14.9543304808,14.9525420638,14.9507536468,14.9489652298,14.9471768128,14.9453883958,14.9435999788,14.9418115618,14.9400231447,14.9382347277,14.9364463107,14.9346578937,14.9328694767,14.9310810597,14.9292926427,14.9275042257,14.9257158086,14.9239273916,14.9221389746,14.9203505576,14.9185621406,14.9167737236,14.9149853066,14.9131968895,14.9114084725,14.9096200555,14.9078316385,14.9060432215,14.9042548045,14.9024663875,14.9006779705,14.8988895534,14.8971011364,14.8953127194,14.8935243024,14.8917358854,14.8899474684,14.8881590514,14.8863706344,14.8845822173,14.8827938003,14.8810053833,14.8792169663,14.8774285493,14.8756401323,14.8738517153,14.8720632983,14.8702748812,14.8684864642,14.8666980472,14.8649096302,14.8631212132,14.8613327962,14.8595443792,14.8577559621,14.8559675451,14.8541791281,14.8523907111,14.8506022941,14.8488138771,14.8470254601,14.8452370431,14.843448626,14.841660209,14.839871792,14.838083375,14.836294958,14.834506541,14.832718124,14.830929707,14.8291412899,14.8273528729,14.8255644559,14.8237760389,14.8219876219,14.8201992049,14.8184107879,14.8166223709,14.8148339538,14.8130455368,14.8112571198,14.8094687028,14.8076802858,14.8058918688,14.8041034518,14.8023150347,14.8005266177,14.7987382007,14.7969497837,14.7951613667,14.7933729497,14.7915845327,14.7897961157,14.7880076986,14.7862192816,14.7844308646,14.7826424476,14.7808540306,14.7790656136,14.7772771966,14.7754887796,14.7737003625,14.7719119455,14.7701235285,14.7683351115,14.7665466945,14.7647582775,14.7629698605,14.7611814435,14.7593930264,14.7576046094,14.7558161924,14.7540277754,14.7522393584,14.7504509414,14.7486625244,14.7468741073,14.7450856903,14.7432972733,14.7415088563,14.7397204393,14.7379320223,14.7361436053,14.7343551883,14.7325667712,14.7307783542,14.7289899372,14.7272015202,14.7254131032,14.7236246862,14.7218362692,14.7200478522,14.7182594351,14.7164710181,14.7146826011,14.7128941841,14.7111057671,14.7093173501,14.7075289331,14.7057405161,14.703952099,14.702163682,14.700375265,14.698586848,14.696798431,14.695010014,14.693221597,14.69143318,14.6896447629,14.6878563459,14.6860679289,14.6842795119,14.6824910949,14.6807026779,14.6789142609,14.6771258438,14.6753374268,14.6735490098,14.6717605928,14.6699721758,14.6681837588,14.6663953418,14.6646069248,14.6628185077,14.6610300907,14.6592416737,14.6574532567,14.6556648397,14.6538764227,14.6520880057,14.6502995887,14.6485111716,14.6467227546,14.6449343376,14.6431459206,14.6413575036,14.6395690866,14.6377806696,14.6359922526,14.6342038355,14.6324154185,14.6306270015,14.6288385845,14.6270501675,14.6252617505,14.6234733335,14.6216849164,14.6198964994,14.6181080824,14.6163196654,14.6145312484,14.6127428314,14.6109544144,14.6091659974,14.6073775803,14.6055891633,14.6038007463,14.6020123293,14.6002239123,14.5984354953,14.5966470783,14.5948586613,14.5930702442,14.5912818272,14.5894934102,14.5877049932,14.5859165762,14.5841281592,14.5823397422,14.5805513252,14.5787629081,14.5769744911,14.5751860741,14.5733976571,14.5716092401,14.5698208231,14.5680324061,14.566243989,14.564455572,14.562667155,14.560878738,14.559090321,14.557301904,14.555513487,14.55372507,14.5519366529,14.5501482359,14.5483598189,14.5465714019,14.5447829849,14.5429945679,14.5412061509,14.5394177339,14.5376293168,14.5358408998,14.5340524828,14.5322640658,14.5304756488,14.5286872318,14.5268988148,14.5251103978,14.5233219807,14.5215335637,14.5197451467,14.5179567297,14.5161683127,14.5143798957,14.5125914787,14.5108030616,14.5090146446,14.5072262276,14.5054378106,14.5036493936,14.5018609766,14.5000725596,14.4982841426,14.4964957255,14.4947073085,14.4929188915,14.4911304745,14.4893420575,14.4875536405,14.4857652235,14.4839768065,14.4821883894,14.4803999724,14.4786115554,14.4768231384,14.4750347214,14.4732463044,14.4714578874,14.4696694704,14.4678810533,14.4660926363,14.4643042193,14.4625158023,14.4607273853,14.4589389683,14.4571505513,14.4553621342,14.4535737172,14.4517853002,14.4499968832,14.4482084662,14.4464200492,14.4446316322,14.4428432152,14.4410547981,14.4392663811,14.4374779641,14.4356895471,14.4339011301,14.4321127131,14.4303242961,14.4285358791,14.426747462,14.424959045,14.423170628,14.421382211,14.419593794,14.417805377,14.41601696,14.414228543,14.4124401259,14.4106517089,14.4088632919,14.4070748749,14.4052864579,14.4034980409,14.4017096239,14.3999212069,14.3981327898,14.3963443728,14.3945559558,14.3927675388,14.3909791218,14.3891907048,14.3874022878,14.3856138707,14.3838254537,14.3820370367,14.3802486197,14.3784602027,14.3766717857,14.3748833687,14.3730949517,14.3713065346,14.3695181176,14.3677297006,14.3659412836,14.3641528666,14.3623644496,14.3605760326,14.3587876156,14.3569991985,14.3552107815,14.3534223645,14.3516339475,14.3498455305,14.3480571135,14.3462686965,14.3444802795,14.3426918624,14.3409034454,14.3391150284,14.3373266114,14.3355381944,14.3337497774,14.3319613604,14.3301729433,14.3283845263,14.3265961093,14.3248076923,14.3230192753,14.3212308583,14.3194424413,14.3176540243,14.3158656072,14.3140771902,14.3122887732,14.3105003562,14.3087119392,14.3069235222,14.3051351052,14.3033466882,14.3015582711,14.2997698541,14.2979814371,14.2961930201,14.2944046031,14.2926161861,14.2908277691,14.2890393521,14.287250935,14.285462518,14.283674101,14.281885684,14.280097267,14.27830885,14.276520433,14.2747320159,14.2729435989,14.2711551819,14.2693667649,14.2675783479,14.2657899309,14.2640015139,14.2622130969,14.2604246798,14.2586362628,14.2568478458,14.2550594288,14.2532710118,14.2514825948,14.2496941778,14.2479057608,14.2461173437,14.2443289267,14.2425405097,14.2407520927,14.2389636757,14.2371752587,14.2353868417,14.2335984247,14.2318100076,14.2300215906,14.2282331736,14.2264447566,14.2246563396,14.2228679226,14.2210795056,14.2192910885,14.2175026715,14.2157142545,14.2139258375,14.2121374205,14.2103490035,14.2085605865,14.2067721695,14.2049837524,14.2031953354,14.2014069184,14.1996185014,14.1978300844,14.1960416674,14.1942532504,14.1924648334,14.1906764163,14.1888879993,14.1870995823,14.1853111653,14.1835227483,14.1817343313,14.1799459143,14.1781574973,14.1763690802,14.1745806632,14.1727922462,14.1710038292,14.1692154122,14.1674269952,14.1656385782,14.1638501611,14.1620617441,14.1602733271,14.1584849101,14.1566964931,14.1549080761,14.1531196591,14.1513312421,14.149542825,14.147754408,14.145965991,14.144177574,14.142389157,14.14060074,14.138812323,14.137023906,14.1352354889,14.1334470719,14.1316586549,14.1298702379,14.1280818209,14.1262934039,14.1245049869,14.1227165699,14.1209281528,14.1191397358,14.1173513188,14.114882368,14.1124134172,14.1099444663,14.1074755155,14.1050065647,14.1025376138,14.100068663,14.0975997122,14.0951307614,14.0926618105,14.0901928597,14.0877239089,14.085254958,14.0827860072,14.0803170564,14.0778481056,14.0753791547,14.0729102039,14.0704412531,14.0679723022,14.0655033514,14.0630344006,14.0605654498,14.0580964989,14.0556275481,14.0531585973,14.0506896464,14.0482206956,14.0457517448,14.043282794,14.0408138431,14.0383448923,14.0358759415,14.0334069906,14.0309380398,14.028469089,14.0260001382,14.0235311873,14.0210622365,14.0185932857,14.0161243348,14.013655384,14.0111864332,14.0087174823,14.0062485315,14.0037795807,14.0013106299,13.998841679,13.9963727282,13.9939037774,13.9914348265,13.9889658757,13.9864969249,13.9840279741,13.9815590232,13.9790900724,13.9766211216,13.9741521707,13.9716832199,13.9692142691,13.9667453183,13.9642763674,13.9618074166,13.9593384658,13.9568695149,13.9544005641,13.9519316133,13.9494626625,13.9469937116,13.9445247608,13.94205581,13.9395868591,13.9371179083,13.9346489575,13.9321800067,13.9297110558,13.927242105,13.9247731542,13.9223042033,13.9198352525,13.9173663017,13.9148973509,13.9124284,13.9099594492,13.9074904984,13.9050215475,13.9025525967,13.9000836459,13.8976146951,13.8951457442,13.8926767934,13.8902078426,13.8877388917,13.8852699409,13.8828009901,13.8803320393,13.8778630884,13.8753941376,13.8729251868,13.8704562359,13.8679872851,13.8655183343,13.8630493835,13.8605804326,13.8581114818,13.855642531,13.8531735801,13.8507046293,13.8482356785,13.8457667277,13.8432977768,13.840828826,13.8383598752,13.8358909243,13.8334219735,13.8309530227,13.8284840718,13.826015121,13.8235461702,13.8210772194,13.8186082685,13.8161393177,13.8136703669,13.811201416,13.8087324652,13.8062635144,13.8037945636,13.8013256127,13.7988566619,13.7963877111,13.7939187602,13.7914498094,13.7889808586,13.7865119078,13.7840429569,13.7815740061,13.7791050553,13.7766361044,13.7741671536,13.7716982028,13.769229252,13.7667603011,13.7642913503,13.7618223995,13.7593534486,13.7568844978,13.754415547,13.7519465962,13.7494776453,13.7470086945,13.7445397437,13.7420707928,13.739601842,13.7371328912,13.7346639404,13.7321949895,13.7297260387,13.7272570879,13.724788137,13.7223191862,13.7198502354,13.7173812846,13.7149123337,13.7124433829,13.7099744321,13.7075054812,13.7050365304,13.7025675796,13.7000986288,13.6976296779,13.6951607271,13.6926917763,13.6902228254,13.6877538746,13.6852849238,13.682815973,13.6803470221,13.6778780713,13.6754091205,13.6729401696,13.6704712188,13.668002268,13.6655333172,13.6630643663,13.6605954155,13.6581264647,13.6556575138,13.653188563,13.6507196122,13.6482506613,13.6457817105,13.6433127597,13.6408438089,13.638374858,13.6359059072,13.6334369564,13.6309680055,13.6284990547,13.6260301039,13.6235611531,13.6210922022,13.6186232514,13.6161543006,13.6136853497,13.6112163989,13.6087474481,13.6062784973,13.6038095464,13.6013405956,13.5988716448,13.5964026939,13.5939337431,13.5914647923,13.5889958415,13.5865268906,13.5840579398,13.581588989,13.5791200381,13.5766510873,13.5741821365,13.5717131857,13.5692442348,13.566775284,13.5643063332,13.5618373823,13.5593684315,13.5568994807,13.5544305299,13.551961579,13.5494926282,13.5470236774,13.5445547265,13.5420857757,13.5396168249,13.5371478741,13.5346789232,13.5322099724,13.5297410216,13.5272720707,13.5248031199,13.5223341691,13.5198652183,13.5173962674,13.5149273166,13.5124583658,13.5099894149,13.5075204641,13.5050515133,13.5025825625,13.5001136116,13.4976446608,13.49517571,13.4927067591,13.4902378083,13.4877688575,13.4852999067,13.4828309558,13.480362005,13.4778930542,13.4754241033,13.4729551525,13.4704862017,13.4680172508,13.4655483,13.4630793492,13.4606103984,13.4581414475,13.4556724967,13.4532035459,13.450734595,13.4482656442,13.4457966934,13.4433277426,13.4408587917,13.4383898409,13.4359208901,13.4334519392,13.4309829884,13.4285140376,13.4260450868,13.4235761359,13.4211071851,13.4186382343,13.4161692834,13.4137003326,13.4112313818,13.408762431,13.4062934801,13.4038245293,13.4013555785,13.3988866276,13.3964176768,13.393948726,13.3914797752,13.3890108243,13.3865418735,13.3840729227,13.3816039718,13.379135021,13.3766660702,13.3741971194,13.3717281685,13.3692592177,13.3667902669,13.364321316,13.3618523652,13.3593834144,13.3569144636,13.3544455127,13.3519765619,13.3495076111,13.3470386602,13.3445697094,13.3421007586,13.3396318078,13.3371628569,13.3346939061,13.3322249553,13.3297560044,13.3272870536,13.3248181028,13.322349152,13.3198802011,13.3174112503,13.3149422995,13.3124733486,13.3100043978,13.307535447,13.3050664962,13.3025975453,13.3001285945,13.2976596437,13.2951906928,13.292721742,13.2902527912,13.2877838403,13.2853148895,13.2828459387,13.2803769879,13.277908037,13.2754390862,13.2729701354,13.2705011845,13.2680322337,13.2655632829,13.2630943321,13.2606253812,13.2581564304,13.2556874796,13.2532185287,13.2507495779,13.2482806271,13.2458116763,13.2433427254,13.2408737746,13.2384048238,13.2359358729,13.2334669221,13.2309979713,13.2285290205,13.2260600696,13.2235911188,13.221122168,13.2186532171,13.2161842663,13.2137153155,13.2112463647,13.2087774138,13.206308463,13.2038395122,13.2013705613,13.1989016105,13.1964326597,13.1939637089,13.191494758,13.1890258072,13.1865568564,13.1840879055,13.1816189547,13.1791500039,13.1766810531,13.1742121022,13.1717431514,13.1692742006,13.1668052497,13.1643362989,13.1618673481,13.1593983973,13.1569294464,13.1544604956,13.1519915448,13.1495225939,13.1470536431,13.1445846923,13.1421157415,13.1396467906,13.1371778398,13.134708889,13.1322399381,13.1297709873,13.1273020365,13.1248330857,13.1223641348,13.119895184,13.1174262332,13.1149572823,13.1124883315,13.1100193807,13.1075504298,13.105081479,13.1026125282,13.1001435774,13.0976746265,13.0952056757,13.0927367249,13.090267774,13.0877988232,13.0853298724,13.0828609216,13.0803919707,13.0779230199,13.0754540691,13.0729851182,13.0705161674,13.0680472166,13.0655782658,13.0631093149,13.0606403641,13.0581714133,13.0557024624,13.0532335116,13.0507645608,13.04829561,13.0458266591,13.0433577083,13.0408887575,13.0384198066,13.0359508558,13.033481905,13.0310129542,13.0285440033,13.0260750525,13.0236061017,13.0211371508,13.0186682,13.0161992492,13.0137302984,13.0112613475,13.0087923967,13.0063234459,13.003854495,13.0013855442,12.9989165934,12.9964476426,12.9939786917,12.9915097409,12.9890407901,12.9865718392,12.9841028884,12.9816339376,12.9791649868,12.9766960359,12.9742270851,12.9717581343,12.9692891834,12.9668202326,12.9643512818,12.961882331,12.9594133801,12.9569444293,12.9544754785,12.9520065276,12.9495375768,12.947068626,12.9445996751,12.9421307243,12.9396617735,12.9371928227,12.9347238718,12.932254921,12.9297859702,12.9273170193,12.9248480685,12.9223791177,12.9199101669,12.917441216,12.9149722652,12.9125033144,12.9100343635,12.9075654127,12.9050964619,12.9026275111,12.9001585602,12.8976896094,12.8952206586,12.8927517077,12.8902827569,12.8878138061,12.8853448553,12.8828759044,12.8804069536,12.8779380028,12.8754690519,12.8730001011,12.8705311503,12.8680621995,12.8655932486,12.8631242978,12.860655347,12.8581863961,12.8557174453,12.8532484945,12.8507795437,12.8483105928,12.845841642,12.8433726912,12.8409037403,12.8384347895,12.8359658387,12.8334968879,12.831027937,12.8285589862,12.8260900354,12.8236210845,12.8211521337,12.8186831829,12.8162142321,12.8137452812,12.8112763304,12.8088073796,12.8063384287,12.8038694779,12.8014005271,12.7989315763,12.7964626254,12.7939936746,12.7915247238,12.7890557729,12.7865868221,12.7841178713,12.7816489205,12.7791799696,12.7767110188,12.774242068,12.7717731171,12.7693041663,12.7668352155,12.7643662646,12.7618973138,12.759428363,12.7569594122,12.7544904613,12.7520215105,12.7495525597,12.7470836088,12.744614658,12.7421457072,12.7396767564,12.7372078055,12.7347388547,12.7322699039,12.729800953,12.7273320022,12.7248630514,12.7223941006,12.7199251497,12.7174561989,12.7149872481,12.7125182972,12.7100493464,12.7075803956,12.7051114448,12.7026424939,12.7001735431,12.6977045923,12.6952356414,12.6927666906,12.6902977398,12.687828789,12.6853598381,12.6828908873,12.6804219365,12.6779529856,12.6754840348,12.673015084,12.6705461332,12.6680771823,12.6656082315,12.6631392807,12.6606703298,12.658201379,12.6557324282,12.6532634774,12.6507945265,12.6483255757,12.6458566249,12.643387674,12.6409187232,12.6384497724,12.6359808216,12.6335118707,12.6310429199,12.6285739691,12.6261050182,12.6232870182,12.6204690181,12.617651018,12.614833018,12.6120150179,12.6091970178,12.6063790178,12.6035610177,12.6007430176,12.5979250175,12.5951070175,12.5922890174,12.5894710173,12.5866530173,12.5838350172,12.5810170171,12.5781990171,12.575381017,12.5725630169,12.5697450168,12.5669270168,12.5641090167,12.5612910166,12.5584730166,12.5556550165,12.5528370164,12.5500190164,12.5472010163,12.5443830162,12.5415650162,12.5387470161,12.535929016,12.5331110159,12.5302930159,12.5274750158,12.5246570157,12.5218390157,12.5190210156,12.5162030155,12.5133850155,12.5105670154,12.5077490153,12.5049310153,12.5021130152,12.4992950151,12.496477015,12.493659015,12.4908410149,12.4880230148,12.4852050148,12.4823870147,12.4795690146,12.4767510146,12.4739330145,12.4711150144,12.4682970143,12.4654790143,12.4626610142,12.4598430141,12.4570250141,12.454207014,12.4513890139,12.4485710139,12.4457530138,12.4429350137,12.4401170137,12.4372990136,12.4344810135,12.4316630134,12.4288450134,12.4260270133,12.4232090132,12.4203910132,12.4175730131,12.414755013,12.411937013,12.4091190129,12.4063010128,12.4034830128,12.4006650127,12.3978470126,12.3950290125,12.3922110125,12.3893930124,12.3865750123,12.3837570123,12.3809390122,12.3781210121,12.3753030121,12.372485012,12.3696670119,12.3668490118,12.3640310118,12.3612130117,12.3583950116,12.3555770116,12.3527590115,12.3499410114,12.3471230114,12.3443050113,12.3414870112,12.3386690112,12.3358510111,12.333033011,12.3302150109,12.3273970109,12.3245790108,12.3217610107,12.3189430107,12.3161250106,12.3133070105,12.3104890105,12.3076710104,12.3048530103,12.3020350103,12.2992170102,12.2963990101,12.29358101,12.29076301,12.2879450099,12.2851270098,12.2823090098,12.2794910097,12.2766730096,12.2738550096,12.2710370095,12.2682190094,12.2654010093,12.2625830093,12.2597650092,12.2569470091,12.2541290091,12.251311009,12.2484930089,12.2456750089,12.2428570088,12.2400390087,12.2372210087,12.2344030086,12.2315850085,12.2287670084,12.2259490084,12.2231310083,12.2203130082,12.2174950082,12.2146770081,12.211859008,12.209041008,12.2062230079,12.2034050078,12.2005870077,12.1977690077,12.1949510076,12.1921330075,12.1893150075,12.1864970074,12.1836790073,12.1808610073,12.1780430072,12.1752250071,12.1724070071,12.169589007,12.1667710069,12.1639530068,12.1611350068,12.1583170067,12.1554990066,12.1526810066,12.1498630065,12.1470450064,12.1442270064,12.1414090063,12.1385910062,12.1357730062,12.1329550061,12.130137006,12.1273190059,12.1245010059,12.1216830058,12.1188650057,12.1160470057,12.1132290056,12.1104110055,12.1075930055,12.1047750054,12.1019570053,12.0991390052,12.0963210052,12.0935030051,12.090685005,12.087867005,12.0850490049,12.0822310048,12.0794130048,12.0765950047,12.0737770046,12.0709590046,12.0681410045,12.0653230044,12.0625050043,12.0596870043,12.0568690042,12.0540510041,12.0512330041,12.048415004,12.0455970039,12.0427790039,12.0399610038,12.0371430037,12.0343250037,12.0315070036,12.0286890035,12.0258710034,12.0230530034,12.0202350033,12.0174170032,12.0145990032,12.0117810031,12.008963003,12.006145003,12.0033270029,12.0005090028,11.9976910027,11.9948730027,11.9920550026,11.9892370025,11.9864190025,11.9836010024,11.9807830023,11.9779650023,11.9751470022,11.9723290021,11.9695110021,11.966693002,11.9638750019,11.9610570018,11.9582390018,11.9554210017,11.9526030016,11.9497850016,11.9469670015,11.9441490014,11.9413310014,11.9385130013,11.9356950012,11.9328770012,11.9300590011,11.927241001,11.9244230009,11.9216050009,11.9187870008,11.9159690007,11.9131510007,11.9103330006,11.9075150005,11.9046970005,11.9018790004,11.8990610003,11.8962430002,11.8934250002,11.8906070001,11.887789,11.884971,11.8821529999,11.8793349998,11.8765169998,11.8736989997,11.8708809996,11.8680629996,11.8652449995,11.8624269994,11.8596089993,11.8567909993,11.8539729992,11.8511549991,11.8483369991,11.845518999,11.8427009989,11.8398829989,11.8370649988,11.8342469987,11.8314289987,11.8286109986,11.8257929985,11.8229749984,11.8201569984,11.8173389983,11.8145209982,11.8117029982,11.8088849981,11.806066998,11.803248998,11.8004309979,11.7976129978,11.7947949977,11.7919769977,11.7891589976,11.7863409975,11.7835229975,11.7807049974,11.7778869973,11.7750689973,11.7722509972,11.7694329971,11.7666149971,11.763796997,11.7609789969,11.7581609968,11.7553429968,11.7525249967,11.7497069966,11.7468889966,11.7440709965,11.7412529964,11.7384349964,11.7356169963,11.7327989962,11.7299809961,11.7271629961,11.724344996,11.7215269959,11.7187089959,11.7158909958,11.7130729957,11.7102549957,11.7074369956,11.7046189955,11.7018009955,11.6989829954,11.6961649953,11.6933469952,11.6905289952,11.6877109951,11.684892995,11.682074995,11.6792569949,11.6764389948,11.6736209948,11.6708029947,11.6679849946,11.6651669946,11.6623489945,11.6595309944,11.6567129943,11.6538949943,11.6510769942,11.6482589941,11.6454409941,11.642622994,11.6398049939,11.6369869939,11.6341689938,11.6313509937,11.6285329936,11.6257149936,11.6228969935,11.6200789934,11.6172609934,11.6144429933,11.6116249932,11.6088069932,11.6059889931,11.603170993,11.600352993,11.5975349929,11.5947169928,11.5918989927,11.5890809927,11.5862629926,11.5834449925,11.5806269925,11.5778089924,11.5749909923,11.5721729923,11.5693549922,11.5665369921,11.5637189921,11.560900992,11.5580829919,11.5552649918,11.5524469918,11.5496289917,11.5468109916,11.5439929916,11.5411749915,11.5383569914,11.5355389914,11.5327209913,11.5299029912,11.5270849911,11.5242669911,11.521448991,11.5186309909,11.5158129909,11.5129949908,11.5101769907,11.5073589907,11.5045409906,11.5017229905,11.4989049905,11.4960869904,11.4932689903,11.4904509902,11.4876329902,11.4848149901,11.48199699,11.47917899,11.4763609899,11.4735429898,11.4707249898,11.4679069897,11.4650889896,11.4622709896,11.4594529895,11.4566349894,11.4538169893,11.4509989893,11.4481809892,11.4453629891,11.4425449891,11.439726989,11.4369089889,11.4340909889,11.4312729888,11.4284549887,11.4256369886,11.4228189886,11.4200009885,11.4171829884,11.4143649884,11.4115469883,11.4087289882,11.4059109882,11.4030929881,11.400274988,11.397456988,11.3946389879,11.3918209878,11.3890029877,11.3861849877,11.3833669876,11.3805489875,11.3777309875,11.3749129874,11.3720949873,11.3692769873,11.3664589872,11.3636409871,11.360822987,11.358004987,11.3551869869,11.3523689868,11.3495509868,11.3467329867,11.3439149866,11.3410969866,11.3382789865,11.3354609864,11.3326429864,11.3298249863,11.3270069862,11.3241889861,11.3213709861,11.318552986,11.3157349859,11.3129169859,11.3100989858,11.3072809857,11.3044629857,11.3016449856,11.2988269855,11.2960089855,11.2931909854,11.2903729853,11.2875549852,11.2847369852,11.2819189851,11.279100985,11.276282985,11.2734649849,11.2706469848,11.2678289848,11.2650109847,11.2621929846,11.2593749845,11.2565569845,11.2537389844,11.2509209843,11.2481029843,11.2452849842,11.2424669841,11.2396489841,11.236830984,11.2340129839,11.2311949839,11.2283769838,11.2255589837,11.2227409836,11.2199229836,11.2171049835,11.2142869834,11.2114689834,11.2086509833,11.2058329832,11.2030149832,11.2001969831,11.197378983,11.194560983,11.1917429829,11.1889249828,11.1861069827,11.1832889827,11.1804709826,11.1776529825,11.1748349825,11.1720169824,11.1691989823,11.1663809823,11.1635629822,11.1607449821,11.157926982,11.155108982,11.1522909819,11.1494729818,11.1466549818,11.1438369817,11.1410189816,11.1382009816,11.1353829815,11.1325649814,11.1297469814,11.1269289813,11.1241109812,11.1212929811,11.1184749811,11.115656981,11.1128389809,11.1100209809,11.1072029808,11.1043849807,11.1015669807,11.0987489806,11.0959309805,11.0931129805,11.0902949804,11.0874769803,11.0846589802,11.0818409802,11.0790229801,11.07620498,11.07338698,11.0705689799,11.0677509798,11.0649329798,11.0621149797,11.0592969796,11.0564789795,11.0536609795,11.0508429794,11.0480249793,11.0452069793,11.0423889792,11.0395709791,11.0367529791,11.033934979,11.0311169789,11.0282989789,11.0254809788,11.0226629787,11.0198449786,11.0170269786,11.0142089785,11.0113909784,11.0085729784,11.0057549783,11.0029369782,11.0001189782,10.9973009781,10.994482978,10.991664978,10.9888469779,10.9860289778,10.9832109777,10.9803929777,10.9775749776,10.9747569775,10.9719389775,10.9691209774,10.9663029773,10.9634849773,10.9606669772,10.9578489771,10.955030977,10.952212977,10.9493949769,10.9465769768,10.9437589768,10.9409409767,10.9381229766,10.9353049766,10.9324869765,10.9296689764,10.9268509764,10.9240329763,10.9211664111,10.9182998459,10.9154332807,10.9125667155,10.9097001503,10.9068335851,10.9039670199,10.9011004547,10.8982338895,10.8953673243,10.8925007591,10.8896341939,10.8867676287,10.8839010635,10.8810344983,10.8781679331,10.8753013679,10.8724348027,10.8695682375,10.8667016723,10.8638351071,10.8609685418,10.8581019766,10.8552354114,10.8523688462,10.849502281,10.8466357158,10.8437691506,10.8409025854,10.8380360202,10.835169455,10.8323028898,10.8294363246,10.8265697594,10.8237031942,10.820836629,10.8179700638,10.8151034986,10.8122369334,10.8093703682,10.806503803,10.8036372378,10.8007706726,10.7979041074,10.7950375422,10.792170977,10.7893044118,10.7864378466,10.7835712814,10.7807047162,10.777838151,10.7749715858,10.7721050206,10.7692384554,10.7663718902,10.763505325,10.7606387598,10.7577721946,10.7549056294,10.7520390642,10.749172499,10.7463059338,10.7434393686,10.7405728034,10.7377062382,10.734839673,10.7319731078,10.7291065426,10.7262399774,10.7233734122,10.720506847,10.7176402818,10.7147737166,10.7119071514,10.7090405862,10.706174021,10.7033074558,10.7004408906,10.6975743254,10.6947077602,10.691841195,10.6889746298,10.6861080646,10.6832414994,10.6803749342,10.677508369,10.6746418037,10.6717752385,10.6689086733,10.6660421081,10.6631755429,10.6603089777,10.6574424125,10.6545758473,10.6517092821,10.6488427169,10.6459761517,10.6431095865,10.6402430213,10.6373764561,10.6345098909,10.6316433257,10.6287767605,10.6259101953,10.6230436301,10.6201770649,10.6173104997,10.6144439345,10.6115773693,10.6087108041,10.6058442389,10.6029776737,10.6001111085,10.5972445433,10.5943779781,10.5915114129,10.5886448477,10.5857782825,10.5829117173,10.5800451521,10.5771785869,10.5743120217,10.5714454565,10.5685788913,10.5657123261,10.5628457609,10.5599791957,10.5571126305,10.5542460653,10.5513795001,10.5485129349,10.5456463697,10.5427798045,10.5399132393,10.5370466741,10.5341801089,10.5313135437,10.5284469785,10.5255804133,10.5227138481,10.5198472829,10.5169807177,10.5141141525,10.5112475873,10.5083810221,10.5055144569,10.5026478917,10.4997813265,10.4969147613,10.4940481961,10.4911816309,10.4883150656,10.4854485004,10.4825819352,10.47971537,10.4768488048,10.4739822396,10.4711156744,10.4682491092,10.465382544,10.4625159788,10.4596494136,10.4567828484,10.4539162832,10.451049718,10.4481831528,10.4453165876,10.4424500224,10.4395834572,10.436716892,10.4338503268,10.4309837616,10.4281171964,10.4252506312,10.422384066,10.4195175008,10.4166509356,10.4137843704,10.4109178052,10.40805124,10.4051846748,10.4023181096,10.3994515444,10.3965849792,10.393718414,10.3908518488,10.3879852836,10.3851187184,10.3822521532,10.379385588,10.3765190228,10.3736524576,10.3707858924,10.3679193272,10.365052762,10.3621861968,10.3593196316,10.3564530664,10.3535865012,10.350719936,10.3478533708,10.3449868056,10.3421202404,10.3392536752,10.33638711,10.3335205448,10.3306539796,10.3277874144,10.3249208492,10.322054284,10.3191877188,10.3163211536,10.3134545884,10.3105880232,10.307721458,10.3048548928,10.3019883275,10.2991217623,10.2962551971,10.2933886319,10.2905220667,10.2876555015,10.2847889363,10.2819223711,10.2790558059,10.2761892407,10.2733226755,10.2704561103,10.2675895451,10.2647229799,10.2618564147,10.2589898495,10.2561232843,10.2532567191,10.2503901539,10.2475235887,10.2446570235,10.2417904583,10.2389238931,10.2360573279,10.2331907627,10.2303241975,10.2274576323,10.2245910671,10.2217245019,10.2188579367,10.2159913715,10.2131248063,10.2102582411,10.2073916759,10.2045251107,10.2016585455,10.1987919803,10.1959254151,10.1930588499,10.1901922847,10.1873257195,10.1844591543,10.1815925891,10.1787260239,10.1758594587,10.1729928935,10.1701263283,10.1672597631,10.1643931979,10.1615266327,10.1586600675,10.1557935023,10.1529269371,10.1500603719,10.1471938067,10.1443272415,10.1414606763,10.1385941111,10.1357275459,10.1328609807,10.1299944155,10.1271278503,10.1242612851,10.1213947199,10.1185281547,10.1156615895,10.1127950242,10.109928459,10.1070618938,10.1041953286,10.1013287634,10.0984621982,10.095595633,10.0927290678,10.0898625026,10.0869959374,10.0841293722,10.081262807,10.0783962418,10.0755296766,10.0726631114,10.0697965462,10.066929981,10.0640634158,10.0611968506,10.0583302854,10.0554637202,10.052597155,10.0497305898,10.0468640246,10.0439974594,10.0411308942,10.038264329,10.0353977638,10.0325311986,10.0296646334,10.0267980682,10.023931503,10.0210649378,10.0181983726,10.0153318074,10.0124652422,10.009598677,10.0067321118,10.0038655466,10.0009989814,9.99813241619,9.99526585099,9.99239928578,9.98953272058,9.98666615538,9.98379959018,9.98093302498,9.97806645978,9.97519989457,9.97233332937,9.96946676417,9.96660019897,9.96373363377,9.96086706857,9.95800050337,9.95513393816,9.95226737296,9.94940080776,9.94653424256,9.94366767736,9.94080111216,9.93793454695,9.93506798175,9.93220141655,9.92933485135,9.92646828615,9.92360172095,9.92073515575,9.91786859054,9.91500202534,9.91213546014,9.90926889494,9.90640232974,9.90353576454,9.90066919933,9.89780263413,9.89493606893,9.89206950373,9.88920293853,9.88633637333,9.88346980813,9.88060324292,9.87773667772,9.87487011252,9.87200354732,9.86913698212,9.86627041692,9.86340385171,9.86053728651,9.85767072131,9.85480415611,9.85193759091,9.84907102571,9.84620446051,9.8433378953,9.8404713301,9.8376047649,9.8347381997,9.8318716345,9.8290050693,9.8261385041,9.82327193889,9.82040537369,9.81753880849,9.81467224329,9.81180567809,9.80893911289,9.80607254768,9.80320598248,9.80033941728,9.79747285208,9.79460628688,9.79173972168,9.78887315648,9.78600659127,9.78314002607,9.78027346087,9.77740689567,9.77454033047,9.77167376527,9.76880720006,9.76594063486,9.76307406966,9.76020750446,9.75734093926,9.75447437406,9.75160780886,9.74874124365,9.74587467845,9.74300811325,9.74014154805,9.73727498285,9.73440841765,9.73154185244,9.72867528724,9.72580872204,9.72294215684,9.72007559164,9.71720902644,9.71434246124,9.71147589603,9.70860933083,9.70574276563,9.70287620043,9.70000963523,9.69714307003,9.69427650482,9.69140993962,9.68854337442,9.68567680922,9.68281024402,9.67994367882,9.67707711362,9.67421054841,9.67134398321,9.66847741801,9.66561085281,9.66274428761,9.65987772241,9.6570111572,9.654144592,9.6512780268,9.6484114616,9.6455448964,9.6426783312,9.639811766,9.63694520079,9.63407863559,9.63121207039,9.62834550519,9.62547893999,9.62261237479,9.61974580958,9.61687924438,9.61401267918,9.61114611398,9.60827954878,9.60541298358,9.60254641838,9.59967985317,9.59681328797,9.59394672277,9.59108015757,9.58821359237,9.58534702717,9.58248046196,9.57961389676,9.57674733156,9.57388076636,9.57101420116,9.56814763596,9.56528107076,9.56241450555,9.55954794035,9.55668137515,9.55381480995,9.55094824475,9.54808167955,9.54521511434,9.54234854914,9.53948198394,9.53661541874,9.53374885354,9.53088228834,9.52801572314,9.52514915793,9.52228259273,9.51941602753,9.51654946233,9.51368289713,9.51081633193,9.50794976672,9.50508320152,9.50221663632,9.49935007112,9.49648350592,9.49361694072,9.49075037552,9.48788381031,9.48501724511,9.48215067991,9.47928411471,9.47641754951,9.47355098431,9.4706844191,9.4678178539,9.4649512887,9.4620847235,9.4592181583,9.4563515931,9.4534850279,9.45061846269,9.44775189749,9.44488533229,9.44201876709,9.43915220189,9.43628563669,9.43341907148,9.43055250628,9.42768594108,9.42481937588,9.42195281068,9.41908624548,9.41621968028,9.41335311507,9.41048654987,9.40761998467,9.40475341947,9.40188685427,9.39902028907,9.39615372386,9.39328715866,9.39042059346,9.38755402826,9.38468746306,9.38182089786,9.37895433266,9.37608776745,9.37322120225,9.37035463705,9.36748807185,9.36462150665,9.36175494145,9.35888837624,9.35602181104,9.35315524584,9.35028868064,9.34742211544,9.34455555024,9.34168898504,9.33882241983,9.33595585463,9.33308928943,9.33022272423,9.32735615903,9.32448959383,9.32162302862,9.31875646342,9.31588989822,9.31302333302,9.31015676782,9.30729020262,9.30442363742,9.30155707221,9.29869050701,9.29582394181,9.29295737661,9.29009081141,9.28722424621,9.284357681,9.2814911158,9.2786245506,9.2757579854,9.2728914202,9.270024855,9.2671582898,9.26429172459,9.26142515939,9.25855859419,9.25569202899,9.25282546379,9.24995889859,9.24709233338,9.24422576818,9.24135920298,9.23849263778,9.23562607258,9.23275950738,9.22989294218,9.22702637697,9.22415981177,9.22129324657,9.21842668137,9.21556011617,9.21269355097,9.20982698576,9.20696042056,9.20409385536,9.20122729016,9.19836072496,9.19549415976,9.19262759456,9.1901320353,9.18763647605,9.1851409168,9.18264535755,9.1801497983,9.17765423905,9.17515867979,9.17266312054,9.17016756129,9.16767200204,9.16517644279,9.16268088353,9.16018532428,9.15768976503,9.15519420578,9.15269864653,9.15020308728,9.14770752802,9.14521196877,9.14271640952,9.14022085027,9.13772529102,9.13522973177,9.13273417251,9.13023861326,9.12774305401,9.12524749476,9.12275193551,9.12025637626,9.117760817,9.11526525775,9.1127696985,9.11027413925,9.10777858,9.10528302075,9.10278746149,9.10029190224,9.09779634299,9.09530078374,9.09280522449,9.09030966523,9.08781410598,9.08531854673,9.08282298748,9.08032742823,9.07783186898,9.07533630972,9.07284075047,9.07034519122,9.06784963197,9.06535407272,9.06285851347,9.06036295421,9.05786739496,9.05537183571,9.05287627646,9.05038071721,9.04788515796,9.0453895987,9.04289403945,9.0403984802,9.03790292095,9.0354073617,9.03291180244,9.03041624319,9.02792068394,9.02542512469,9.02292956544,9.02043400619,9.01793844693,9.01544288768,9.01294732843,9.01045176918,9.00795620993,9.00546065068,9.00296509142,9.00046953217,8.99797397292,8.99547841367,8.99298285442,8.99048729517,8.98799173591,8.98549617666,8.98300061741,8.98050505816,8.97800949891,8.97551393966,8.9730183804,8.97052282115,8.9680272619,8.96553170265,8.9630361434,8.96054058414,8.95804502489,8.95554946564,8.95305390639,8.95055834714,8.94806278789,8.94556722863,8.94307166938,8.94057611013,8.93808055088,8.93558499163,8.93308943238,8.93059387312,8.92809831387,8.92560275462,8.92310719537,8.92061163612,8.91811607687,8.91562051761,8.91312495836,8.91062939911,8.90813383986,8.90563828061,8.90314272135,8.9006471621,8.89815160285,8.8956560436,8.89316048435,8.8906649251,8.88816936584,8.88567380659,8.88317824734,8.88068268809,8.87818712884,8.87569156959,8.87319601033,8.87070045108,8.86820489183,8.86570933258,8.86321377333,8.86071821408,8.85822265482,8.85572709557,8.85323153632,8.85073597707,8.84824041782,8.84574485857,8.84324929931,8.84075374006,8.83825818081,8.83576262156,8.83326706231,8.83077150305,8.8282759438,8.82578038455,8.8232848253,8.82078926605,8.8182937068,8.81579814754,8.81330258829,8.81080702904,8.80831146979,8.80581591054,8.80332035129,8.80082479203,8.79832923278,8.79583367353,8.79333811428,8.79084255503,8.78834699578,8.78585143652,8.78335587727,8.78086031802,8.77836475877,8.77586919952,8.77337364026,8.77087808101,8.76838252176,8.76588696251,8.76339140326,8.76089584401,8.75840028475,8.7559047255,8.75340916625,8.750913607,8.74841804775,8.7459224885,8.74342692924,8.74093136999,8.73843581074,8.73594025149,8.73344469224,8.73094913299,8.72845357373,8.72595801448,8.72346245523,8.72096689598,8.71847133673,8.71597577748,8.71348021822,8.71098465897,8.70848909972,8.70599354047,8.70349798122,8.70100242196,8.69850686271,8.69601130346,8.69351574421,8.69102018496,8.68852462571,8.68602906645,8.6835335072,8.68103794795,8.6785423887,8.67604682945,8.6735512702,8.67105571094,8.66856015169,8.66606459244,8.66356903319,8.66107347394,8.65857791469,8.65608235543,8.65358679618,8.65109123693,8.64859567768,8.64610011843,8.64360455917,8.64110899992,8.63861344067,8.63611788142,8.63362232217,8.63112676292,8.62863120366,8.62613564441,8.62364008516,8.62114452591,8.61864896666,8.61615340741,8.61365784815,8.6111622889,8.60866672965,8.6061711704,8.60367561115,8.6011800519,8.59868449264,8.59618893339,8.59369337414,8.59119781489,8.58870225564,8.58620669638,8.58371113713,8.58121557788,8.57872001863,8.57622445938,8.57372890013,8.57123334087,8.56873778162,8.56624222237,8.56374666312,8.56125110387,8.55875554462,8.55625998536,8.55376442611,8.55126886686,8.54877330761,8.54627774836,8.54378218911,8.54128662985,8.5387910706,8.53629551135,8.5337999521,8.53130439285,8.5288088336,8.52631327434,8.52381771509,8.52132215584,8.51882659659,8.51633103734,8.51383547808,8.51133991883,8.50884435958,8.50634880033,8.50385324108,8.50135768183,8.49886212257,8.49636656332,8.49387100407,8.49137544482,8.48887988557,8.48638432632,8.48388876706,8.48139320781,8.47889764856,8.47640208931,8.47390653006,8.47141097081,8.46891541155,8.4664198523,8.46392429305,8.4614287338,8.45893317455,8.45643761529,8.45394205604,8.45144649679,8.44895093754,8.44645537829,8.44395981904,8.44146425978,8.43896870053,8.43647314128,8.43397758203,8.43148202278,8.42898646353,8.42649090427,8.42399534502,8.42149978577,8.41900422652,8.41650866727,8.41401310802,8.41151754876,8.40902198951,8.40652643026,8.40403087101,8.40153531176,8.39903975251,8.39654419325,8.394048634,8.39155307475,8.3890575155,8.38656195625,8.38406639699,8.38157083774,8.37907527849,8.37657971924,8.37408415999,8.37158860074,8.36909304148,8.36659748223,8.36410192298,8.36160636373,8.35911080448,8.35661524523,8.35411968597,8.35162412672,8.34912856747,8.34663300822,8.34413744897,8.34164188972,8.33914633046,8.33665077121,8.33415521196,8.33165965271,8.32916409346,8.3266685342,8.32417297495,8.3216774157,8.31918185645,8.3166862972,8.31419073795,8.31169517869,8.30919961944,8.30670406019,8.30420850094,8.30171294169,8.29921738244,8.29672182318,8.29422626393,8.29173070468,8.28923514543,8.28673958618,8.28424402693,8.28174846767,8.27925290842,8.27675734917,8.27426178992,8.27176623067,8.26927067142,8.26677511216,8.26427955291,8.26178399366,8.25928843441,8.25679287516,8.2542973159,8.25180175665,8.2493061974,8.24681063815,8.2443150789,8.24181951965,8.23932396039,8.23682840114,8.23433284189,8.23183728264,8.22934172339,8.22684616414,8.22435060488,8.22185504563,8.21935948638,8.21686392713,8.21436836788,8.21187280863,8.20937724937,8.20688169012,8.20438613087,8.20189057162,8.19939501237,8.19689945311,8.19440389386,8.19190833461,8.18941277536,8.18691721611,8.18442165686,8.1819260976,8.17943053835,8.1769349791,8.17443941985,8.1719438606,8.16944830135,8.16695274209,8.16445718284,8.16196162359,8.15946606434,8.15697050509,8.15447494584,8.15197938658,8.14948382733,8.14698826808,8.14449270883,8.14199714958,8.13950159033,8.13700603107,8.13451047182,8.13201491257,8.12951935332,8.12702379407,8.12452823481,8.12203267556,8.11953711631,8.11704155706,8.11454599781,8.11205043856,8.1095548793,8.10705932005,8.1045637608,8.10206820155,8.0995726423,8.09707708305,8.09458152379,8.09208596454,8.08959040529,8.08709484604,8.08459928679,8.08210372754,8.07960816828,8.07711260903,8.07461704978,8.07212149053,8.06962593128,8.06713037202,8.06463481277,8.06213925352,8.05964369427,8.05714813502,8.05465257577,8.05215701651,8.04966145726,8.04716589801,8.04467033876,8.04217477951,8.03967922026,8.037183661,8.03468810175,8.0321925425,8.02969698325,8.027201424,8.02470586475,8.02221030549,8.01971474624,8.01721918699,8.01472362774,8.01222806849,8.00973250924,8.00723694998,8.00474139073,8.00224583148,7.99975027223,7.99725471298,7.99475915372,7.99226359447,7.98976803522,7.98727247597,7.98477691672,7.98228135747,7.97978579821,7.97729023896,7.97479467971,7.97229912046,7.96980356121,7.96730800196,7.9648124427,7.96231688345,7.9598213242,7.95732576495,7.9548302057,7.95233464645,7.94983908719,7.94734352794,7.94484796869,7.94235240944,7.93985685019,7.93736129093,7.93486573168,7.93237017243,7.92987461318,7.92737905393,7.92488349468,7.92238793542,7.91989237617,7.91739681692,7.91490125767,7.91240569842,7.90991013917,7.90741457991,7.90491902066,7.90242346141,7.89992790216,7.89743234291,7.89493678366,7.8924412244,7.88994566515,7.8874501059,7.88495454665,7.8824589874,7.87996342815,7.87746786889,7.87497230964,7.87247675039,7.86998119114,7.86748563189,7.86499007263,7.86249451338,7.85999895413,7.85750339488,7.85500783563,7.85251227638,7.85001671712,7.84752115787,7.84502559862,7.84253003937,7.84003448012,7.83753892087,7.83504336161,7.83254780236,7.83005224311,7.82755668386,7.82506112461,7.82256556536,7.8200700061,7.81757444685,7.8150788876,7.81258332835,7.8100877691,7.80759220984,7.80509665059,7.80260109134,7.80010553209,7.79760997284,7.79511441359,7.79261885433,7.79012329508,7.78762773583,7.78513217658,7.78263661733,7.78014105808,7.77764549882,7.77514993957,7.77265438032,7.77015882107,7.76766326182,7.76516770257,7.76267214331,7.76017658406,7.75768102481,7.75518546556,7.75268990631,7.75019434706,7.7476987878,7.74520322855,7.7427076693,7.74021211005,7.7377165508,7.73522099154,7.73272543229,7.73022987304,7.72773431379,7.72523875454,7.72274319529,7.72024763603,7.71775207678,7.71525651753,7.71276095828,7.71026539903,7.70776983978,7.70527428052,7.70277872127,7.70028316202,7.69778760277,7.69529204352,7.69279648427,7.69030092501,7.68780536576,7.68530980651,7.68350871762,7.68170762872,7.67990653983,7.67810545093,7.67630436204,7.67450327315,7.67270218425,7.67090109536,7.66910000647,7.66729891757,7.66549782868,7.66369673978,7.66189565089,7.660094562,7.6582934731,7.65649238421,7.65469129532,7.65289020642,7.65108911753,7.64928802863,7.64748693974,7.64568585085,7.64388476195,7.64208367306,7.64028258417,7.63848149527,7.63668040638,7.63487931748,7.63307822859,7.6312771397,7.6294760508,7.62767496191,7.62587387302,7.62407278412,7.62227169523,7.62047060633,7.61866951744,7.61686842855,7.61506733965,7.61326625076,7.61146516187,7.60966407297,7.60786298408,7.60606189518,7.60426080629,7.6024597174,7.6006586285,7.59885753961,7.59705645071,7.59525536182,7.59345427293,7.59165318403,7.58985209514,7.58805100625,7.58624991735,7.58444882846,7.58264773956,7.58084665067,7.57904556178,7.57724447288,7.57544338399,7.5736422951,7.5718412062,7.57004011731,7.56823902841,7.56643793952,7.56463685063,7.56283576173,7.56103467284,7.55923358395,7.55743249505,7.55563140616,7.55383031726,7.55202922837,7.55022813948,7.54842705058,7.54662596169,7.5448248728,7.5430237839,7.54122269501,7.53942160611,7.53762051722,7.53581942833,7.53401833943,7.53221725054,7.53041616164,7.52861507275,7.52681398386,7.52501289496,7.52321180607,7.52141071718,7.51960962828,7.51780853939,7.51600745049,7.5142063616,7.51240527271,7.51060418381,7.50880309492,7.50700200603,7.50520091713,7.50339982824,7.50159873934,7.49979765045,7.49799656156,7.49619547266,7.49439438377,7.49259329488,7.49079220598,7.48899111709,7.48719002819,7.4853889393,7.48358785041,7.48178676151,7.47998567262,7.47818458373,7.47638349483,7.47458240594,7.47278131704,7.47098022815,7.46917913926,7.46737805036,7.46557696147,7.46377587258,7.46197478368,7.46017369479,7.45837260589,7.456571517,7.45477042811,7.45296933921,7.45116825032,7.44936716142,7.44756607253,7.44576498364,7.44396389474,7.44216280585,7.44036171696,7.43856062806,7.43675953917,7.43495845027,7.43315736138,7.43135627249,7.42955518359,7.4277540947,7.42595300581,7.42415191691,7.42235082802,7.42054973912,7.41874865023,7.41694756134,7.41514647244,7.41334538355,7.41154429466,7.40974320576,7.40794211687,7.40614102797,7.40433993908,7.40253885019,7.40073776129,7.3989366724,7.39713558351,7.39533449461,7.39353340572,7.39173231682,7.38993122793,7.38813013904,7.38632905014,7.38452796125,7.38272687235,7.38092578346,7.37912469457,7.37732360567,7.37552251678,7.37372142789,7.37192033899,7.3701192501,7.3683181612,7.36651707231,7.36471598342,7.36291489452,7.36111380563,7.35931271674,7.35751162784,7.35571053895,7.35390945005,7.35210836116,7.35030727227,7.34850618337,7.34670509448,7.34490400559,7.34310291669,7.3413018278,7.3395007389,7.33769965001,7.33589856112,7.33409747222,7.33229638333,7.33049529444,7.32869420554,7.32689311665,7.32509202775,7.32329093886,7.32148984997,7.31968876107,7.31788767218,7.31608658329,7.31428549439,7.3124844055,7.3106833166,7.30888222771,7.30708113882,7.30528004992,7.30347896103,7.30167787213,7.29987678324,7.29807569435,7.29627460545,7.29447351656,7.29267242767,7.29087133877,7.28907024988,7.28726916098,7.28546807209,7.2836669832,7.2818658943,7.28006480541,7.27826371652,7.27646262762,7.27466153873,7.27286044983,7.27105936094,7.26925827205,7.26745718315,7.26565609426,7.26385500537,7.26205391647,7.26025282758,7.25845173868,7.25665064979,7.2548495609,7.253048472,7.25124738311,7.24944629422,7.24764520532,7.24584411643,7.24404302753,7.24224193864,7.24044084975,7.23863976085,7.23683867196,7.23503758306,7.23323649417,7.23143540528,7.22963431638,7.22783322749,7.2260321386,7.2242310497,7.22242996081,7.22062887191,7.21882778302,7.21702669413,7.21522560523,7.21342451634,7.21162342745,7.20982233855,7.20802124966,7.20622016076,7.20441907187,7.20261798298,7.20081689408,7.19901580519,7.1972147163,7.1954136274,7.19361253851,7.19181144961,7.19001036072,7.18820927183,7.18640818293,7.18460709404,7.18280600515,7.18100491625,7.17920382736,7.17740273846,7.17560164957,7.17380056068,7.17199947178,7.17019838289,7.168397294,7.1665962051,7.16479511621,7.16299402731,7.16119293842,7.15939184953,7.15759076063,7.15578967174,7.15398858284,7.15218749395,7.15038640506,7.14858531616,7.14678422727,7.14498313838,7.14318204948,7.14138096059,7.13957987169,7.1377787828,7.13597769391,7.13417660501,7.13237551612,7.13057442723,7.12877333833,7.12697224944,7.12517116054,7.12337007165,7.12156898276,7.11976789386,7.11796680497,7.11616571608,7.11436462718,7.11256353829,7.11076244939,7.1089613605,7.10716027161,7.10535918271,7.10355809382,7.10175700493,7.09995591603,7.09815482714,7.09635373824,7.09455264935,7.09275156046,7.09095047156,7.08914938267,7.08734829377,7.08554720488,7.08374611599,7.08194502709,7.0801439382,7.07834284931,7.07654176041,7.07474067152,7.07293958262,7.07113849373,7.06933740484,7.06753631594,7.06573522705,7.06393413816,7.06213304926,7.06033196037,7.05853087147,7.05672978258,7.05492869369,7.05312760479,7.0513265159,7.04952542701,7.04772433811,7.04592324922,7.04412216032,7.04232107143,7.04051998254,7.03871889364,7.03691780475,7.03511671586,7.03331562696,7.03151453807,7.02971344917,7.02791236028,7.02611127139,7.02431018249,7.0225090936,7.02070800471,7.01890691581,7.01710582692,7.01530473802,7.01350364913,7.01170256024,7.00990147134,7.00810038245,7.00629929355,7.00449820466,7.00269711577,7.00089602687,6.99909493798,6.99729384909,6.99549276019,6.9936916713,6.9918905824,6.99008949351,6.98828840462,6.98648731572,6.98468622683,6.98288513794,6.98108404904,6.97928296015,6.97748187125,6.97568078236,6.97387969347,6.97207860457,6.97027751568,6.96847642679,6.96667533789,6.964874249,6.9630731601,6.96127207121,6.95947098232,6.95766989342,6.95586880453,6.95406771564,6.95226662674,6.95046553785,6.94866444895,6.94686336006,6.94506227117,6.94326118227,6.94146009338,6.93965900449,6.93785791559,6.9360568267,6.9342557378,6.93245464891,6.93065356002,6.92885247112,6.92705138223,6.92525029333,6.92344920444,6.92164811555,6.91984702665,6.91804593776,6.91624484887,6.91444375997,6.91264267108,6.91084158218,6.90904049329,6.9072394044,6.9054383155,6.90363722661,6.90183613772,6.90003504882,6.89823395993,6.89643287103,6.89463178214,6.89283069325,6.89102960435,6.88922851546,6.88742742657,6.88562633767,6.88382524878,6.88202415988,6.88022307099,6.8784219821,6.8766208932,6.87481980431,6.87301871542,6.87121762652,6.86941653763,6.86761544873,6.86581435984,6.86401327095,6.86221218205,6.86041109316,6.85861000426,6.85680891537,6.85500782648,6.85320673758,6.85140564869,6.8496045598,6.8478034709,6.84600238201,6.84420129311,6.84240020422,6.84059911533,6.83879802643,6.83699693754,6.83519584865,6.83339475975,6.83159367086,6.82979258196,6.82799149307,6.82619040418,6.82438931528,6.82258822639,6.8207871375,6.8189860486,6.81718495971,6.81538387081,6.81358278192,6.81178169303,6.80998060413,6.80817951524,6.80637842635,6.80457733745,6.80277624856,6.80097515966,6.79917407077,6.79737298188,6.79557189298,6.79377080409,6.7919697152,6.7901686263,6.78836753741,6.78656644851,6.78476535962,6.78296427073,6.78116318183,6.77936209294,6.77756100404,6.77575991515,6.77395882626,6.77215773736,6.77035664847,6.76855555958,6.76675447068,6.76495338179,6.76315229289,6.761351204,6.75955011511,6.75774902621,6.75594793732,6.75414684843,6.75234575953,6.75054467064,6.74874358174,6.74694249285,6.74514140396,6.74334031506,6.74153922617,6.73973813728,6.73793704838,6.73613595949,6.73433487059,6.7325337817,6.73073269281,6.72893160391,6.72713051502,6.72532942613,6.72352833723,6.72172724834,6.71992615944,6.71812507055,6.71632398166,6.71452289276,6.71272180387,6.71092071497,6.70911962608,6.70731853719,6.70551744829,6.7037163594,6.70191527051,6.70011418161,6.69831309272,6.69651200382,6.69471091493,6.69290982604,6.69110873714,6.68930764825,6.68750655936,6.68570547046,6.68390438157,6.68210329267,6.68030220378,6.67850111489,6.67670002599,6.6748989371,6.67309784821,6.67129675931,6.66949567042,6.66769458152,6.66589349263,6.66409240374,6.66229131484,6.66049022595,6.65868913706,6.65688804816,6.65508695927,6.65328587037,6.65148478148,6.64968369259,6.64788260369,6.6460815148,6.64428042591,6.64247933701,6.64067824812,6.63887715922,6.63707607033,6.63527498144,6.63347389254,6.63167280365,6.62987171475,6.62807062586,6.62626953697,6.62446844807,6.62266735918,6.62086627029,6.61906518139,6.6172640925,6.6154630036,6.61366191471,6.61186082582,6.61005973692,6.60825864803,6.60645755914,6.60465647024,6.60285538135,6.60105429245,6.59925320356,6.59745211467,6.5967994973,6.59614687993,6.59549426256,6.59484164519,6.59418902782,6.59353641045,6.59288379308,6.59223117571,6.59157855834,6.59092594097,6.5902733236,6.58962070623,6.58896808886,6.58831547149,6.58766285412,6.58701023675,6.58635761938,6.58570500201,6.58505238464,6.58439976727,6.5837471499,6.58309453253,6.58244191516,6.58178929779,6.58113668042,6.58048406305,6.57983144568,6.57917882831,6.57852621094,6.57787359357,6.5772209762,6.57656835883,6.57591574146,6.57526312409,6.57461050672,6.57395788935,6.57330527198,6.57265265461,6.57200003724,6.57134741987,6.5706948025,6.57004218513,6.56938956775,6.56873695038,6.56808433301,6.56743171564,6.56677909827,6.5661264809,6.56547386353,6.56482124616,6.56416862879,6.56351601142,6.56286339405,6.56221077668,6.56155815931,6.56090554194,6.56025292457,6.5596003072,6.55894768983,6.55829507246,6.55764245509,6.55698983772,6.55633722035,6.55568460298,6.55503198561,6.55437936824,6.55372675087,6.5530741335,6.55242151613,6.55176889876,6.55111628139,6.55046366402,6.54981104665,6.54915842928,6.54850581191,6.54785319454,6.54720057717,6.5465479598,6.54589534243,6.54524272506,6.54459010769,6.54393749032,6.54328487295,6.54263225558,6.54197963821,6.54132702084,6.54067440347,6.5400217861,6.53936916873,6.53871655136,6.53806393399,6.53741131662,6.53675869925,6.53610608188,6.53545346451,6.53480084714,6.53414822977,6.5334956124,6.53284299503,6.53219037766,6.53153776029,6.53088514292,6.53023252555,6.52957990818,6.52892729081,6.52827467344,6.52762205607,6.5269694387,6.52631682133,6.52566420396,6.52501158659,6.52435896922,6.52370635185,6.52305373448,6.52240111711,6.52174849974,6.52109588237,6.520443265,6.51979064763,6.51913803026,6.51848541289,6.51783279552,6.51718017815,6.51652756078,6.51587494341,6.51522232604,6.51456970867,6.5139170913,6.51326447393,6.51261185656,6.51195923919,6.51130662182,6.51065400445,6.51000138708,6.50934876971,6.50869615234,6.50804353497,6.5073909176,6.50673830023,6.50608568286,6.50543306549,6.50478044812,6.50412783075,6.50347521338,6.50282259601,6.50216997864,6.50151736127,6.5008647439,6.50021212653,6.49955950916,6.49890689179,6.49825427442,6.49760165705,6.49694903968,6.49629642231,6.49564380494,6.49499118757,6.4943385702,6.49368595283,6.49303333546,6.49238071809,6.49172810072,6.49107548335,6.49042286598,6.48977024861,6.48911763124,6.48846501387,6.4878123965,6.48715977913,6.48650716176,6.48585454439,6.48520192702,6.48454930965,6.48389669228,6.48324407491,6.48259145754,6.48193884017,6.4812862228,6.48063360543,6.47998098806,6.47932837069,6.47867575332,6.47802313595,6.47737051858,6.47671790121,6.47606528384,6.47541266647,6.4747600491,6.47410743173,6.47345481436,6.47280219699,6.47214957962,6.47149696225,6.47084434488,6.47019172751,6.46953911014,6.46888649277,6.4682338754,6.46758125803,6.46692864066,6.46627602329,6.46562340592,6.46497078855,6.46431817118,6.46366555381,6.46301293644,6.46236031907,6.4617077017,6.46105508433,6.46040246696,6.45974984959,6.45909723222,6.45844461485,6.45779199748,6.45713938011,6.45648676274,6.45583414537,6.455181528,6.45452891063,6.45387629326,6.45322367589,6.45257105852,6.45191844115,6.45126582378,6.45061320641,6.44996058904,6.44930797167,6.4486553543,6.44800273693,6.44735011956,6.44669750219,6.44604488482,6.44539226745,6.44473965008,6.44408703271,6.44343441534,6.44278179797,6.4421291806,6.44147656323,6.44082394586,6.44017132849,6.43951871112,6.43886609375,6.43821347638,6.43756085901,6.43690824164,6.43625562427,6.4356030069,6.43495038953,6.43429777216,6.43364515479,6.43299253742,6.43233992005,6.43168730268,6.43103468531,6.43038206794,6.42972945057,6.4290768332,6.42842421583,6.42777159846,6.42711898109,6.42646636372,6.42581374635,6.42516112898,6.42450851161,6.42385589424,6.42320327687,6.4225506595,6.42189804213,6.42124542476,6.42059280739,6.41994019002,6.41928757265,6.41863495528,6.41798233791,6.41732972054,6.41667710317,6.4160244858,6.41537186843,6.41471925106,6.41406663369,6.41341401632,6.41276139895,6.41210878158,6.41145616421,6.41080354684,6.41015092947,6.40949831209,6.40884569472,6.40819307735,6.40754045998,6.40688784261,6.40623522524,6.40558260787,6.4049299905,6.40427737313,6.40362475576,6.40297213839,6.40231952102,6.40166690365,6.40101428628,6.40036166891,6.39970905154,6.39905643417,6.3984038168,6.39775119943,6.39709858206,6.39644596469,6.39579334732,6.39514072995,6.39448811258,6.39383549521,6.39318287784,6.39253026047,6.3918776431,6.39122502573,6.39057240836,6.38991979099,6.38926717362,6.38861455625,6.38796193888,6.38730932151,6.38665670414,6.38600408677,6.3853514694,6.38469885203,6.38404623466,6.38339361729,6.38274099992,6.38208838255,6.38143576518,6.38078314781,6.38013053044,6.37947791307,6.3788252957,6.37817267833,6.37752006096,6.37686744359,6.37621482622,6.37556220885,6.37490959148,6.37425697411,6.37360435674,6.37295173937,6.372299122,6.37164650463,6.37099388726,6.37034126989,6.36968865252,6.36903603515,6.36838341778,6.36773080041,6.36707818304,6.36642556567,6.3657729483,6.36512033093,6.36446771356,6.36381509619,6.36316247882,6.36250986145,6.36185724408,6.36120462671,6.36055200934,6.35989939197,6.3592467746,6.35859415723,6.35794153986,6.35728892249,6.35663630512,6.35598368775,6.35533107038,6.35467845301,6.35402583564,6.35337321827,6.3527206009,6.35206798353,6.35141536616,6.35076274879,6.35011013142,6.34945751405,6.34880489668,6.34815227931,6.34749966194,6.34684704457,6.3461944272,6.34554180983,6.34488919246,6.34423657509,6.34358395772,6.34293134035,6.34227872298,6.34162610561,6.34097348824,6.34032087087,6.3396682535,6.33901563613,6.33836301876,6.33771040139,6.33705778402,6.33640516665,6.33575254928,6.33509993191,6.33444731454,6.33379469717,6.3331420798,6.33248946243,6.33183684506,6.33118422769,6.33053161032,6.32987899295,6.32922637558,6.32857375821,6.32792114084,6.32726852347,6.3266159061,6.32596328873,6.32531067136,6.32465805399,6.32400543662,6.32335281925,6.32270020188,6.32204758451,6.32139496714,6.32074234977,6.3200897324,6.31943711503,6.31878449766,6.31813188029,6.31747926292,6.31682664555,6.31617402818,6.31552141081,6.31486879344,6.31421617607,6.3135635587,6.31291094133,6.31225832396,6.31160570659,6.31095308922,6.31030047185,6.30964785448,6.30899523711,6.30834261974,6.30769000237,6.307037385,6.30638476763,6.30573215026,6.30507953289,6.30442691552,6.30377429815,6.30312168078,6.30246906341,6.30181644604,6.30116382867,6.3005112113,6.29985859393,6.29920597656,6.29855335919,6.29790074182,6.29724812445,6.29659550708,6.29594288971,6.29529027234,6.29463765497,6.2939850376,6.29333242023,6.29267980286,6.29202718549,6.29137456812,6.29072195075,6.29006933338,6.28941671601,6.28876409864,6.28811148127,6.2874588639,6.28680624653,6.28615362916,6.28550101179,6.28484839442,6.28419577705,6.28354315968,6.28289054231,6.28223792494,6.28158530757,6.2809326902,6.28028007283,6.27962745546,6.27897483809,6.27832222072,6.27766960335,6.27701698598,6.27636436861,6.27571175124,6.27505913387,6.2744065165,6.27375389913,6.27310128176,6.27244866439,6.27179604702,6.27114342965,6.27049081228,6.26983819491,6.26918557754,6.26853296017,6.2678803428,6.26722772543,6.26657510806,6.26592249069,6.26526987332,6.26461725595,6.26396463858,6.26331202121,6.26265940384,6.26200678647,6.2613541691,6.26070155173,6.26004893436,6.25939631699,6.25874369962,6.25809108225,6.25743846488,6.25678584751,6.25613323014,6.25548061277,6.2548279954,6.25417537803,6.25352276066,6.25287014329,6.25221752592,6.25156490855,6.25091229118,6.2502596738,6.24960705643,6.24895443906,6.24830182169,6.24764920432,6.24699658695,6.24634396958,6.24569135221,6.24503873484,6.24438611747,6.2437335001,6.24308088273,6.24242826536,6.24177564799,6.24112303062,6.24047041325,6.23981779588,6.23916517851,6.23851256114,6.23785994377,6.2372073264,6.23655470903,6.23590209166,6.23524947429,6.23459685692,6.23394423955,6.23329162218,6.23263900481,6.23198638744,6.23133377007,6.2306811527,6.23002853533,6.22937591796,6.22872330059,6.22807068322,6.22741806585,6.22676544848,6.22611283111,6.22546021374,6.22480759637,6.224154979,6.22350236163,6.22284974426,6.22219712689,6.22154450952,6.22089189215,6.22023927478,6.21958665741,6.21893404004,6.21828142267,6.2176288053,6.21697618793,6.21632357056,6.21567095319,6.21501833582,6.21436571845,6.21371310108,6.21306048371,6.21240786634,6.21175524897,6.2111026316,6.21045001423,6.20979739686,6.20914477949,6.20849216212,6.20783954475,6.20718692738,6.20653431001,6.20588169264,6.20522907527,6.2045764579,6.20392384053,6.20327122316,6.20408432131,6.20489741946,6.20571051761,6.20652361575,6.2073367139,6.20814981205,6.2089629102,6.20977600835,6.21058910649,6.21140220464,6.21221530279,6.21302840094,6.21384149909,6.21465459724,6.21546769538,6.21628079353,6.21709389168,6.21790698983,6.21872008798,6.21953318612,6.22034628427,6.22115938242,6.22197248057,6.22278557872,6.22359867686,6.22441177501,6.22522487316,6.22603797131,6.22685106946,6.2276641676,6.22847726575,6.2292903639,6.23010346205,6.2309165602,6.23172965834,6.23254275649,6.23335585464,6.23416895279,6.23498205094,6.23579514908,6.23660824723,6.23742134538,6.23823444353,6.23904754168,6.23986063983,6.24067373797,6.24148683612,6.24229993427,6.24311303242,6.24392613057,6.24473922871,6.24555232686,6.24636542501,6.24717852316,6.24799162131,6.24880471945,6.2496178176,6.25043091575,6.2512440139,6.25205711205,6.25287021019,6.25368330834,6.25449640649,6.25530950464,6.25612260279,6.25693570093,6.25774879908,6.25856189723,6.25937499538,6.26018809353,6.26100119168,6.26181428982,6.26262738797,6.26344048612,6.26425358427,6.26506668242,6.26587978056,6.26669287871,6.26750597686,6.26831907501,6.26913217316,6.2699452713,6.27075836945,6.2715714676,6.27238456575,6.2731976639,6.27401076204,6.27482386019,6.27563695834,6.27645005649,6.27726315464,6.27807625278,6.27888935093,6.27970244908,6.28051554723,6.28132864538,6.28214174353,6.28295484167,6.28376793982,6.28458103797,6.28539413612,6.28620723427,6.28702033241,6.28783343056,6.28864652871,6.28945962686,6.29027272501,6.29108582315,6.2918989213,6.29271201945,6.2935251176,6.29433821575,6.29515131389,6.29596441204,6.29677751019,6.29759060834,6.29840370649,6.29921680463,6.30002990278,6.30084300093,6.30165609908,6.30246919723,6.30328229538,6.30409539352,6.30490849167,6.30572158982,6.30653468797,6.30734778612,6.30816088426,6.30897398241,6.30978708056,6.31060017871,6.31141327686,6.312226375,6.31303947315,6.3138525713,6.31466566945,6.3154787676,6.31629186574,6.31710496389,6.31791806204,6.31873116019,6.31954425834,6.32035735648,6.32117045463,6.32198355278,6.32279665093,6.32360974908,6.32442284723,6.32523594537,6.32604904352,6.32686214167,6.32767523982,6.32848833797,6.32930143611,6.33011453426,6.33092763241,6.33174073056,6.33255382871,6.33336692685,6.334180025,6.33499312315,6.3358062213,6.33661931945,6.33743241759,6.33824551574,6.33905861389,6.33987171204,6.34068481019,6.34149790833,6.34231100648,6.34312410463,6.34393720278,6.34475030093,6.34556339907,6.34637649722,6.34718959537,6.34800269352,6.34881579167,6.34962888982,6.35044198796,6.35125508611,6.35206818426,6.35288128241,6.35369438056,6.3545074787,6.35532057685,6.356133675,6.35694677315,6.3577598713,6.35857296944,6.35938606759,6.36019916574,6.36101226389,6.36182536204,6.36263846018,6.36345155833,6.36426465648,6.36507775463,6.36589085278,6.36670395092,6.36751704907,6.36833014722,6.36914324537,6.36995634352,6.37076944167,6.37158253981,6.37239563796,6.37320873611,6.37402183426,6.37483493241,6.37564803055,6.3764611287,6.37727422685,6.378087325,6.37890042315,6.37971352129,6.38052661944,6.38133971759,6.38215281574,6.38296591389,6.38377901203,6.38459211018,6.38540520833,6.38621830648,6.38703140463,6.38784450277,6.38865760092,6.38947069907,6.39028379722,6.39109689537,6.39190999352,6.39272309166,6.39353618981,6.39434928796,6.39516238611,6.39597548426,6.3967885824,6.39760168055,6.3984147787,6.39922787685,6.400040975,6.40085407314,6.40166717129,6.40248026944,6.40329336759,6.40410646574,6.40491956388,6.40573266203,6.40654576018,6.40735885833,6.40817195648,6.40898505462,6.40979815277,6.41061125092,6.41142434907,6.41223744722,6.41305054537,6.41386364351,6.41467674166,6.41548983981,6.41630293796,6.41711603611,6.41792913425,6.4187422324,6.41955533055,6.4203684287,6.42118152685,6.42199462499,6.42280772314,6.42362082129,6.42443391944,6.42524701759,6.42606011573,6.42687321388,6.42768631203,6.42849941018,6.42931250833,6.43012560647,6.43093870462,6.43175180277,6.43256490092,6.43337799907,6.43419109722,6.43500419536,6.43581729351,6.43663039166,6.43744348981,6.43825658796,6.4390696861,6.43988278425,6.4406958824,6.44150898055,6.4423220787,6.44313517684,6.44394827499,6.44476137314,6.44557447129,6.44638756944,6.44720066758,6.44801376573,6.44882686388,6.44963996203,6.45045306018,6.45126615832,6.45207925647,6.45289235462,6.45370545277,6.45451855092,6.45533164906,6.45614474721,6.45695784536,6.45777094351,6.45858404166,6.45939713981,6.46021023795,6.4610233361,6.46183643425,6.4626495324,6.46346263055,6.46427572869,6.46508882684,6.46590192499,6.46671502314,6.46752812129,6.46834121943,6.46915431758,6.46996741573,6.47078051388,6.47159361203,6.47240671017,6.47321980832,6.47403290647,6.47484600462,6.47565910277,6.47647220091,6.47728529906,6.47809839721,6.47891149536,6.47972459351,6.48053769166,6.4813507898,6.48216388795,6.4829769861,6.48379008425,6.4846031824,6.48541628054,6.48622937869,6.48704247684,6.48785557499,6.48866867314,6.48948177128,6.49029486943,6.49110796758,6.49192106573,6.49273416388,6.49354726202,6.49436036017,6.49517345832,6.49598655647,6.49679965462,6.49761275276,6.49842585091,6.49923894906,6.50005204721,6.50086514536,6.50167824351,6.50249134165,6.5033044398,6.50411753795,6.5049306361,6.50574373425,6.50655683239,6.50736993054,6.50818302869,6.50899612684,6.50980922499,6.51062232313,6.51143542128,6.51224851943,6.51306161758,6.51387471573,6.51468781387,6.51550091202,6.51631401017,6.51712710832,6.51794020647,6.51875330461,6.51956640276,6.52037950091,6.52119259906,6.52200569721,6.52281879536,6.5236318935,6.52444499165,6.5252580898,6.52607118795,6.5268842861,6.52769738424,6.52851048239,6.52932358054,6.53013667869,6.53094977684,6.53176287498,6.53257597313,6.53338907128,6.53420216943,6.53501526758,6.53582836572,6.53664146387,6.53745456202,6.53826766017,6.53908075832,6.53989385646,6.54070695461,6.54152005276,6.54233315091,6.54314624906,6.5439593472,6.54477244535,6.5455855435,6.54639864165,6.5472117398,6.54802483795,6.54883793609,6.54965103424,6.55046413239,6.55127723054,6.55209032869,6.55290342683,6.55371652498,6.55452962313,6.55534272128,6.55615581943,6.55696891757,6.55778201572,6.55859511387,6.55940821202,6.56022131017,6.56103440831,6.56184750646,6.56266060461,6.56347370276,6.56428680091,6.56509989905,6.5659129972,6.56672609535,6.5675391935,6.56835229165,6.5691653898,6.56997848794,6.57079158609,6.57160468424,6.57241778239,6.57323088054,6.57404397868,6.57485707683,6.57567017498,6.57648327313,6.57729637128,6.57810946942,6.57892256757,6.57973566572,6.58054876387,6.58136186202,6.58217496016,6.58298805831,6.58380115646,6.58461425461,6.58542735276,6.5862404509,6.58705354905,6.5878666472,6.58867974535,6.5894928435,6.59030594165,6.59111903979,6.59193213794,6.59274523609,6.59355833424,6.59437143239,6.59518453053,6.59599762868,6.59681072683,6.59762382498,6.59843692313,6.59925002127,6.60006311942,6.60087621757,6.60168931572,6.60250241387,6.60331551201,6.60412861016,6.60494170831,6.60575480646,6.60656790461,6.60738100275,6.6081941009,6.60900719905,6.6098202972,6.61063339535,6.6114464935,6.61225959164,6.61307268979,6.61388578794,6.61469888609,6.61551198424,6.61632508238,6.61713818053,6.61795127868,6.61876437683,6.61957747498,6.62039057312,6.62120367127,6.62201676942,6.62282986757,6.62364296572,6.62445606386,6.62526916201,6.62608226016,6.62689535831,6.62770845646,6.6285215546,6.62933465275,6.6301477509,6.63096084905,6.6317739472,6.63258704535,6.63340014349,6.63421324164,6.63502633979,6.63583943794,6.63665253609,6.63746563423,6.63827873238,6.63909183053,6.63990492868,6.64071802683,6.64153112497,6.64234422312,6.64315732127,6.64397041942,6.64478351757,6.64559661571,6.64640971386,6.64722281201,6.64803591016,6.64884900831,6.64966210645,6.6504752046,6.65128830275,6.6521014009,6.65291449905,6.65372759719,6.65454069534,6.65535379349,6.65616689164,6.65697998979,6.65779308794,6.65860618608,6.65941928423,6.66023238238,6.66104548053,6.66185857868,6.66267167682,6.66348477497,6.66429787312,6.66511097127,6.66592406942,6.66673716756,6.66755026571,6.66836336386,6.66917646201,6.66998956016,6.6708026583,6.67161575645,6.6724288546,6.67324195275,6.6740550509,6.67486814904,6.67568124719,6.67649434534,6.67730744349,6.67812054164,6.67893363979,6.67974673793,6.68055983608,6.68137293423,6.68218603238,6.68299913053,6.68381222867,6.68462532682,6.68543842497,6.68625152312,6.68706462127,6.68787771941,6.68869081756,6.68950391571,6.69031701386,6.69113011201,6.69194321015,6.6927563083,6.69356940645,6.6943825046,6.69660613615,6.69882976771,6.70105339926,6.70327703082,6.70550066237,6.70772429393,6.70994792548,6.71217155704,6.71439518859,6.71661882015,6.7188424517,6.72106608326,6.72328971481,6.72551334636,6.72773697792,6.72996060947,6.73218424103,6.73440787258,6.73663150414,6.73885513569,6.74107876725,6.7433023988,6.74552603036,6.74774966191,6.74997329347,6.75219692502,6.75442055658,6.75664418813,6.75886781969,6.76109145124,6.7633150828,6.76553871435,6.7677623459,6.76998597746,6.77220960901,6.77443324057,6.77665687212,6.77888050368,6.78110413523,6.78332776679,6.78555139834,6.7877750299,6.78999866145,6.79222229301,6.79444592456,6.79666955612,6.79889318767,6.80111681923,6.80334045078,6.80556408234,6.80778771389,6.81001134544,6.812234977,6.81445860855,6.81668224011,6.81890587166,6.82112950322,6.82335313477,6.82557676633,6.82780039788,6.83002402944,6.83224766099,6.83447129255,6.8366949241,6.83891855566,6.84114218721,6.84336581877,6.84558945032,6.84781308188,6.85003671343,6.85226034498,6.85448397654,6.85670760809,6.85893123965,6.8611548712,6.86337850276,6.86560213431,6.86782576587,6.87004939742,6.87227302898,6.87449666053,6.87672029209,6.87894392364,6.8811675552,6.88339118675,6.88561481831,6.88783844986,6.89006208142,6.89228571297,6.89450934452,6.89673297608,6.89895660763,6.90118023919,6.90340387074,6.9056275023,6.90785113385,6.91007476541,6.91229839696,6.91452202852,6.91674566007,6.91896929163,6.92119292318,6.92341655474,6.92564018629,6.92786381785,6.9300874494,6.93231108096,6.93453471251,6.93675834406,6.93898197562,6.94120560717,6.94342923873,6.94565287028,6.94787650184,6.95010013339,6.95232376495,6.9545473965,6.95677102806,6.95899465961,6.96121829117,6.96344192272,6.96566555428,6.96788918583,6.97011281739,6.97233644894,6.9745600805,6.97678371205,6.9790073436,6.98123097516,6.98345460671,6.98567823827,6.98790186982,6.99012550138,6.99234913293,6.99457276449,6.99679639604,6.9990200276,7.00124365915,7.00346729071,7.00569092226,7.00791455382,7.01013818537,7.01236181693,7.01458544848,7.01680908004,7.01903271159,7.02125634314,7.0234799747,7.02570360625,7.02792723781,7.03015086936,7.03237450092,7.03459813247,7.03682176403,7.03904539558,7.04126902714,7.04349265869,7.04571629025,7.0479399218,7.05016355336,7.05238718491,7.05461081647,7.05683444802,7.05905807958,7.06128171113,7.06350534268,7.06572897424,7.06795260579,7.07017623735,7.0723998689,7.07462350046,7.07684713201,7.07907076357,7.08129439512,7.08351802668,7.08574165823,7.08796528979,7.09018892134,7.0924125529,7.09463618445,7.09685981601,7.09908344756,7.10130707912,7.10353071067,7.10575434222,7.10797797378,7.11020160533,7.11242523689,7.11464886844,7.1168725,7.11909613155,7.12131976311,7.12354339466,7.12576702622,7.12799065777,7.13021428933,7.13243792088,7.13466155244,7.13688518399,7.13910881555,7.1413324471,7.14355607866,7.14577971021,7.14800334176,7.15022697332,7.15245060487,7.15467423643,7.15689786798,7.15912149954,7.16134513109,7.16356876265,7.1657923942,7.16801602576,7.17023965731,7.17246328887,7.17468692042,7.17691055198,7.17913418353,7.18135781509,7.18358144664,7.1858050782,7.18802870975,7.1902523413,7.19247597286,7.19469960441,7.19692323597,7.19914686752,7.20137049908,7.20359413063,7.20581776219,7.20804139374,7.2102650253,7.21248865685,7.21471228841,7.21693591996,7.21915955152,7.22138318307,7.22360681463,7.22583044618,7.22805407774,7.23027770929,7.23250134084,7.2347249724,7.23694860395,7.23917223551,7.24139586706,7.24361949862,7.24584313017,7.24806676173,7.25029039328,7.25251402484,7.25473765639,7.25696128795,7.2591849195,7.26140855106,7.26363218261,7.26585581417,7.26807944572,7.27030307728,7.27252670883,7.27475034038,7.27697397194,7.27919760349,7.28142123505,7.2836448666,7.28586849816,7.28809212971,7.29031576127,7.29253939282,7.29476302438,7.29698665593,7.29921028749,7.30143391904,7.3036575506,7.30588118215,7.30810481371,7.31032844526,7.31255207682,7.31477570837,7.31699933992,7.31922297148,7.32144660303,7.32367023459,7.32589386614,7.3281174977,7.33034112925,7.33256476081,7.33478839236,7.33701202392,7.33923565547,7.34145928703,7.34368291858,7.34590655014,7.34813018169,7.35035381325,7.3525774448,7.35480107636,7.35702470791,7.35924833946,7.36147197102,7.36369560257,7.36591923413,7.36814286568,7.37036649724,7.37259012879,7.37481376035,7.3770373919,7.37926102346,7.38148465501,7.38370828657,7.38593191812,7.38815554968,7.39037918123,7.39260281279,7.39482644434,7.3970500759,7.39927370745,7.401497339,7.40372097056,7.40594460211,7.40816823367,7.41039186522,7.41261549678,7.41483912833,7.41706275989,7.41928639144,7.421510023,7.42373365455,7.42595728611,7.42818091766,7.43040454922,7.43262818077,7.43485181233,7.43707544388,7.43929907544,7.44152270699,7.44374633854,7.4459699701,7.44819360165,7.45041723321,7.45264086476,7.45486449632,7.45708812787,7.45931175943,7.46153539098,7.46375902254,7.46598265409,7.46820628565,7.4704299172,7.47265354876,7.47487718031,7.47710081187,7.47932444342,7.48154807498,7.48377170653,7.48599533808,7.48821896964,7.49044260119,7.49266623275,7.4948898643,7.49711349586,7.49933712741,7.50156075897,7.50378439052,7.50600802208,7.50823165363,7.51045528519,7.51267891674,7.5149025483,7.51712617985,7.51934981141,7.52157344296,7.52379707452,7.52602070607,7.52824433762,7.53046796918,7.53269160073,7.53491523229,7.53713886384,7.5393624954,7.54158612695,7.54380975851,7.54603339006,7.54825702162,7.55048065317,7.55270428473,7.55492791628,7.55715154784,7.55937517939,7.56159881095,7.5638224425,7.56604607406,7.56826970561,7.57049333716,7.57271696872,7.57494060027,7.57716423183,7.57938786338,7.58161149494,7.58383512649,7.58605875805,7.5882823896,7.59050602116,7.59272965271,7.59495328427,7.59717691582,7.59940054738,7.60162417893,7.60384781049,7.60607144204,7.6082950736,7.61051870515,7.6127423367,7.61496596826,7.61718959981,7.61941323137,7.62163686292,7.62386049448,7.62608412603,7.62830775759,7.63053138914,7.6327550207,7.63497865225,7.63720228381,7.63942591536,7.64164954692,7.64387317847,7.64609681003,7.64832044158,7.65054407314,7.65276770469,7.65499133624,7.6572149678,7.65943859935,7.66166223091,7.66388586246,7.66610949402,7.66833312557,7.67055675713,7.67278038868,7.67500402024,7.67722765179,7.67945128335,7.6816749149,7.68389854646,7.68612217801,7.68834580957,7.69056944112,7.69279307268,7.69501670423,7.69724033578,7.69946396734,7.70168759889,7.70391123045,7.706134862,7.70835849356,7.71058212511,7.71280575667,7.71502938822,7.71725301978,7.71947665133,7.72170028289,7.72392391444,7.726147546,7.72837117755,7.73059480911,7.73281844066,7.73504207222,7.73726570377,7.73948933532,7.74171296688,7.74393659843,7.74616022999,7.74838386154,7.7506074931,7.75283112465,7.75505475621,7.75727838776,7.75950201932,7.76172565087,7.76394928243,7.76617291398,7.76839654554,7.77062017709,7.77284380865,7.7750674402,7.77729107176,7.77951470331,7.78173833486,7.78396196642,7.78618559797,7.78840922953,7.79063286108,7.79285649264,7.79508012419,7.79730375575,7.7995273873,7.80175101886,7.80397465041,7.80619828197,7.80842191352,7.81064554508,7.81286917663,7.81509280819,7.81731643974,7.8195400713,7.82176370285,7.8239873344,7.82621096596,7.82843459751,7.83065822907,7.83288186062,7.83510549218,7.83732912373,7.83955275529,7.84177638684,7.8440000184,7.84622364995,7.84844728151,7.85067091306,7.85289454462,7.85511817617,7.85734180773,7.85956543928,7.86178907084,7.86401270239,7.86623633394,7.8684599655,7.87068359705,7.87290722861,7.87513086016,7.87735449172,7.87957812327,7.88180175483,7.88402538638,7.88624901794,7.88847264949,7.89069628105,7.8929199126,7.89514354416,7.89736717571,7.89959080727,7.90181443882,7.90403807038,7.90626170193,7.90848533348,7.91070896504,7.91293259659,7.91515622815,7.9173798597,7.91960349126,7.92182712281,7.92405075437,7.92627438592,7.92849801748,7.93072164903,7.93294528059,7.93516891214,7.9373925437,7.93961617525,7.94183980681,7.94406343836,7.94628706992,7.94851070147,7.95073433302,7.95295796458,7.95518159613,7.95740522769,7.95962885924,7.9618524908,7.96407612235,7.96629975391,7.96852338546,7.97074701702,7.97297064857,7.97519428013,7.97741791168,7.97964154324,7.98186517479,7.98408880635,7.9863124379,7.98853606946,7.99075970101,7.99298333256,7.99520696412,7.99743059567,7.99965422723,8.00187785878,8.00410149034,8.00632512189,8.00854875345,8.010772385,8.01299601656,8.01521964811,8.01744327967,8.01966691122,8.02189054278,8.02411417433,8.02633780589,8.02856143744,8.030785069,8.03300870055,8.0352323321,8.03745596366,8.04076330918,8.04407065469,8.04737800021,8.05068534572,8.05399269124,8.05730003675,8.06060738227,8.06391472779,8.0672220733,8.07052941882,8.07383676433,8.07714410985,8.08045145537,8.08375880088,8.0870661464,8.09037349191,8.09368083743,8.09698818295,8.10029552846,8.10360287398,8.10691021949,8.11021756501,8.11352491052,8.11683225604,8.12013960156,8.12344694707,8.12675429259,8.1300616381,8.13336898362,8.13667632914,8.13998367465,8.14329102017,8.14659836568,8.1499057112,8.15321305671,8.15652040223,8.15982774775,8.16313509326,8.16644243878,8.16974978429,8.17305712981,8.17636447533,8.17967182084,8.18297916636,8.18628651187,8.18959385739,8.19290120291,8.19620854842,8.19951589394,8.20282323945,8.20613058497,8.20943793048,8.212745276,8.21605262152,8.21935996703,8.22266731255,8.22597465806,8.22928200358,8.2325893491,8.23589669461,8.23920404013,8.24251138564,8.24581873116,8.24912607667,8.25243342219,8.25574076771,8.25904811322,8.26235545874,8.26566280425,8.26897014977,8.27227749529,8.2755848408,8.27889218632,8.28219953183,8.28550687735,8.28881422287,8.29212156838,8.2954289139,8.29873625941,8.30204360493,8.30535095044,8.30865829596,8.31196564148,8.31527298699,8.31858033251,8.32188767802,8.32519502354,8.32850236906,8.33180971457,8.33511706009,8.3384244056,8.34173175112,8.34503909664,8.34834644215,8.35165378767,8.35496113318,8.3582684787,8.36157582421,8.36488316973,8.36819051525,8.37149786076,8.37480520628,8.37811255179,8.38141989731,8.38472724283,8.38803458834,8.39134193386,8.39464927937,8.39795662489,8.4012639704,8.40457131592,8.40787866144,8.41118600695,8.41449335247,8.41780069798,8.4211080435,8.42441538902,8.42772273453,8.43103008005,8.43433742556,8.43764477108,8.4409521166,8.44425946211,8.44756680763,8.45087415314,8.45418149866,8.45748884417,8.46079618969,8.46410353521,8.46741088072,8.47071822624,8.47402557175,8.47733291727,8.48064026279,8.4839476083,8.48725495382,8.49056229933,8.49386964485,8.49717699036,8.50048433588,8.5037916814,8.50709902691,8.51040637243,8.51371371794,8.51702106346,8.52032840898,8.52363575449,8.52694310001,8.53025044552,8.53355779104,8.53686513656,8.54017248207,8.54347982759,8.5467871731,8.55009451862,8.55340186413,8.55670920965,8.56001655517,8.56332390068,8.5666312462,8.56993859171,8.57324593723,8.57655328275,8.57986062826,8.58316797378,8.58647531929,8.58978266481,8.59309001033,8.59639735584,8.59970470136,8.60301204687,8.60631939239,8.6096267379,8.61293408342,8.61624142894,8.61954877445,8.62285611997,8.62616346548,8.629470811,8.63277815652,8.63608550203,8.63939284755,8.64270019306,8.64600753858,8.64931488409,8.65262222961,8.65592957513,8.65923692064,8.66254426616,8.66585161167,8.66915895719,8.67246630271,8.67577364822,8.67908099374,8.68238833925,8.68569568477,8.68900303029,8.6923103758,8.69561772132,8.69892506683,8.70223241235,8.70553975786,8.70884710338,8.7121544489,8.71546179441,8.71876913993,8.72207648544,8.72538383096,8.72869117648,8.73199852199,8.73530586751,8.73861321302,8.74192055854,8.74522790405,8.74853524957,8.75184259509,8.7551499406,8.75845728612,8.76176463163,8.76507197715,8.76837932267,8.77168666818,8.7749940137,8.77830135921,8.78160870473,8.78491605025,8.78822339576,8.79153074128,8.79483808679,8.79814543231,8.80145277782,8.80476012334,8.80806746886,8.81137481437,8.81468215989,8.8179895054,8.82129685092,8.82460419644,8.82791154195,8.83121888747,8.83452623298,8.8378335785,8.84114092401,8.84444826953,8.84775561505,8.85106296056,8.85437030608,8.85767765159,8.86098499711,8.86429234263,8.86759968814,8.87090703366,8.87421437917,8.87752172469,8.88082907021,8.88413641572,8.88744376124,8.89075110675,8.89405845227,8.89736579778,8.9006731433,8.90398048882,8.90728783433,8.91059517985,8.91390252536,8.91720987088,8.9205172164,8.92382456191,8.92713190743,8.93043925294,8.93374659846,8.93705394398,8.94036128949,8.94366863501,8.94697598052,8.95028332604,8.95359067155,8.95689801707,8.96020536259,8.9635127081,8.96682005362,8.97012739913,8.97343474465,8.97674209017,8.98004943568,8.9833567812,8.98666412671,8.98997147223,8.99327881774,8.99658616326,8.99989350878,9.00320085429,9.00650819981,9.00981554532,9.01312289084,9.01643023636,9.01973758187,9.02304492739,9.0263522729,9.02965961842,9.03296696394,9.03627430945,9.03958165497,9.04288900048,9.046196346,9.04950369151,9.05281103703,9.05611838255,9.05942572806,9.06273307358,9.06604041909,9.06934776461,9.07265511013,9.07596245564,9.07926980116,9.08257714667,9.08588449219,9.0891918377,9.09249918322,9.09580652874,9.09911387425,9.10242121977,9.10572856528,9.1090359108,9.11234325632,9.11565060183,9.11895794735,9.12226529286,9.12557263838,9.1288799839,9.13218732941,9.13549467493,9.13880202044,9.14210936596,9.14541671147,9.14872405699,9.15203140251,9.15533874802,9.15864609354,9.16195343905,9.16526078457,9.16856813009,9.1718754756,9.17518282112,9.17849016663,9.18179751215,9.18510485767,9.18841220318,9.1917195487,9.19502689421,9.19833423973,9.20164158524,9.20494893076,9.20825627628,9.21156362179,9.21487096731,9.21817831282,9.22148565834,9.22479300386,9.22810034937,9.23140769489,9.2347150404,9.23802238592,9.24132973143,9.24463707695,9.24794442247,9.25125176798,9.2545591135,9.25786645901,9.26117380453,9.26448115005,9.26778849556,9.27109584108,9.27440318659,9.27771053211,9.28101787763,9.28432522314,9.28763256866,9.29093991417,9.29424725969,9.2975546052,9.30086195072,9.30416929624,9.30747664175,9.31078398727,9.31409133278,9.3173986783,9.32070602382,9.32401336933,9.32732071485,9.33062806036,9.33393540588,9.33724275139,9.34055009691,9.34385744243,9.34716478794,9.35047213346,9.35377947897,9.35708682449,9.36039417001,9.36370151552,9.36700886104,9.37031620655,9.37362355207,9.37693089759,9.3802382431,9.38354558862,9.38685293413,9.39016027965,9.39346762516,9.39677497068,9.4000823162,9.40338966171,9.40669700723,9.41000435274,9.41331169826,9.41661904378,9.41992638929,9.42323373481,9.42654108032,9.42984842584,9.43315577136,9.43646311687,9.43977046239,9.4430778079,9.44638515342,9.44969249893,9.45299984445,9.45630718997,9.45961453548,9.462921881,9.46622922651,9.46953657203,9.47284391755,9.47615126306,9.47945860858,9.48276595409,9.48607329961,9.48938064512,9.49268799064,9.49599533616,9.49930268167,9.50261002719,9.5059173727,9.50922471822,9.51253206374,9.51583940925,9.51914675477,9.52245410028,9.5257614458,9.52906879132,9.53237613683,9.53568348235,9.53899082786,9.54229817338,9.54560551889,9.54891286441,9.55222020993,9.55552755544,9.55883490096,9.56214224647,9.56544959199,9.56875693751,9.57206428302,9.57537162854,9.57867897405,9.58198631957,9.58529366508,9.5886010106,9.59190835612,9.59521570163,9.59852304715,9.60183039266,9.60513773818,9.6084450837,9.61175242921,9.61505977473,9.61836712024,9.62167446576,9.62498181128,9.62828915679,9.63159650231,9.63490384782,9.63821119334,9.64151853885,9.64482588437,9.64813322989,9.6514405754,9.65474792092,9.65805526643,9.66136261195,9.66466995747,9.66797730298,9.6712846485,9.67459199401,9.67789933953,9.68120668505,9.68451403056,9.68782137608,9.69112872159,9.69443606711,9.69774341262,9.70105075814,9.70435810366,9.70766544917,9.71097279469,9.7142801402,9.71758748572,9.72089483124,9.72420217675,9.72750952227,9.73081686778,9.7341242133,9.73743155881,9.74073890433,9.74404624985,9.74735359536,9.75066094088,9.75396828639,9.75727563191,9.76058297743,9.76389032294,9.76719766846,9.77050501397,9.77381235949,9.77711970501,9.78042705052,9.78373439604,9.78704174155,9.79034908707,9.79365643258,9.7969637781,9.80027112362,9.80357846913,9.80688581465,9.81019316016,9.81350050568,9.8168078512,9.82011519671,9.82342254223,9.82672988774,9.83003723326,9.83334457877,9.83665192429,9.83995926981,9.84326661532,9.84657396084,9.84988130635,9.85318865187,9.85649599739,9.8598033429,9.86311068842,9.86641803393,9.86972537945,9.87303272497,9.87634007048,9.879647416,9.88295476151,9.88626210703,9.88956945254,9.89287679806,9.89618414358,9.89949148909,9.90279883461,9.90610618012,9.90941352564,9.91272087116,9.91602821667,9.91933556219,9.9226429077,9.92595025322,9.92925759874,9.93256494425,9.93587228977,9.93917963528,9.9424869808,9.94579432631,9.94910167183,9.95240901735,9.95571636286,9.95902370838,9.96233105389,9.96563839941,9.96894574493,9.97225309044,9.97556043596,9.97886778147,9.98217512699,9.9854824725,9.98878981802,9.99209716354,9.99540450905,9.99871185457,10.0020192001,10.0053265456,10.0086338911,10.0119412366,10.0152485821,10.0185559277,10.0218632732,10.0251706187,10.0284779642,10.0317853097,10.0350926552,10.0391469323,10.0432012093,10.0472554863,10.0513097633,10.0553640403,10.0594183173,10.0634725943,10.0675268713,10.0715811483,10.0756354253,10.0796897024,10.0837439794,10.0877982564,10.0918525334,10.0959068104,10.0999610874,10.1040153644,10.1080696414,10.1121239184,10.1161781954,10.1202324725,10.1242867495,10.1283410265,10.1323953035,10.1364495805,10.1405038575,10.1445581345,10.1486124115,10.1526666885,10.1567209655,10.1607752426,10.1648295196,10.1688837966,10.1729380736,10.1769923506,10.1810466276,10.1851009046,10.1891551816,10.1932094586,10.1972637356,10.2013180127,10.2053722897,10.2094265667,10.2134808437,10.2175351207,10.2215893977,10.2256436747,10.2296979517,10.2337522287,10.2378065057,10.2418607828,10.2459150598,10.2499693368,10.2540236138,10.2580778908,10.2621321678,10.2661864448,10.2702407218,10.2742949988,10.2783492758,10.2824035529,10.2864578299,10.2905121069,10.2945663839,10.2986206609,10.3026749379,10.3067292149,10.3107834919,10.3148377689,10.318892046,10.322946323,10.3270006,10.331054877,10.335109154,10.339163431,10.343217708,10.347271985,10.351326262,10.355380539,10.3594348161,10.3634890931,10.3675433701,10.3715976471,10.3756519241,10.3797062011,10.3837604781,10.3878147551,10.3918690321,10.3959233091,10.3999775862,10.4040318632,10.4080861402,10.4121404172,10.4161946942,10.4202489712,10.4243032482,10.4283575252,10.4324118022,10.4364660792,10.4405203563,10.4445746333,10.4486289103,10.4526831873,10.4567374643,10.4607917413,10.4648460183,10.4689002953,10.4729545723,10.4770088493,10.4810631264,10.4851174034,10.4891716804,10.4932259574,10.4972802344,10.5013345114,10.5053887884,10.5094430654,10.5134973424,10.5175516194,10.5216058965,10.5256601735,10.5297144505,10.5337687275,10.5378230045,10.5418772815,10.5459315585,10.5499858355,10.5540401125,10.5580943895,10.5621486666,10.5662029436,10.5702572206,10.5743114976,10.5783657746,10.5824200516,10.5864743286,10.5905286056,10.5945828826,10.5986371596,10.6026914367,10.6067457137,10.6107999907,10.6148542677,10.6189085447,10.6229628217,10.6270170987,10.6310713757,10.6351256527,10.6391799297,10.6432342068,10.6472884838,10.6513427608,10.6553970378,10.6594513148,10.6635055918,10.6675598688,10.6716141458,10.6756684228,10.6797226999,10.6837769769,10.6878312539,10.6918855309,10.6959398079,10.6999940849,10.7040483619,10.7081026389,10.7121569159,10.7162111929,10.72026547,10.724319747,10.728374024,10.732428301,10.736482578,10.740536855,10.744591132,10.748645409,10.752699686,10.756753963,10.7608082401,10.7648625171,10.7689167941,10.7729710711,10.7770253481,10.7810796251,10.7851339021,10.7891881791,10.7932424561,10.7972967331,10.8013510102,10.8054052872,10.8094595642,10.8135138412,10.8175681182,10.8216223952,10.8256766722,10.8297309492,10.8337852262,10.8378395032,10.8418937803,10.8459480573,10.8500023343,10.8540566113,10.8581108883,10.8621651653,10.8662194423,10.8702737193,10.8743279963,10.8783822733,10.8824365504,10.8864908274,10.8905451044,10.8945993814,10.8986536584,10.9027079354,10.9067622124,10.9108164894,10.9148707664,10.9189250434,10.9229793205,10.9270335975,10.9310878745,10.9351421515,10.9391964285,10.9432507055,10.9473049825,10.9513592595,10.9554135365,10.9594678135,10.9635220906,10.9675763676,10.9716306446,10.9756849216,10.9797391986,10.9837934756,10.9878477526,10.9919020296,10.9959563066,11.0000105837,11.0040648607,11.0081191377,11.0121734147,11.0162276917,11.0202819687,11.0243362457,11.0283905227,11.0324447997,11.0364990767,11.0405533538,11.0446076308,11.0486619078,11.0527161848,11.0567704618,11.0608247388,11.0648790158,11.0689332928,11.0729875698,11.0770418468,11.0810961239,11.0851504009,11.0892046779,11.0932589549,11.0973132319,11.1013675089,11.1054217859,11.1094760629,11.1135303399,11.1175846169,11.121638894,11.125693171,11.129747448,11.133801725,11.137856002,11.141910279,11.145964556,11.150018833,11.15407311,11.158127387,11.1621816641,11.1662359411,11.1702902181,11.1743444951,11.1783987721,11.1824530491,11.1865073261,11.1905616031,11.1946158801,11.1986701571,11.2027244342,11.2067787112,11.2108329882,11.2148872652,11.2189415422,11.2229958192,11.2270500962,11.2311043732,11.2351586502,11.2392129272,11.2432672043,11.2473214813,11.2513757583,11.2554300353,11.2594843123,11.2635385893,11.2675928663,11.2716471433,11.2757014203,11.2797556973,11.2838099744,11.2878642514,11.2919185284,11.2959728054,11.3000270824,11.3040813594,11.3081356364,11.3121899134,11.3162441904,11.3202984674,11.3243527445,11.3284070215,11.3324612985,11.3365155755,11.3405698525,11.3446241295,11.3486784065,11.3527326835,11.3567869605,11.3608412376,11.3648955146,11.3689497916,11.3730040686,11.3770583456,11.3811126226,11.3851668996,11.3892211766,11.3932754536,11.3973297306,11.4013840077,11.4054382847,11.4094925617,11.4135468387,11.4176011157,11.4216553927,11.4257096697,11.4297639467,11.4338182237,11.4378725007,11.4419267778,11.4459810548,11.4500353318,11.4540896088,11.4581438858,11.4621981628,11.4662524398,11.4703067168,11.4743609938,11.4784152708,11.4824695479,11.4865238249,11.4905781019,11.4946323789,11.4986866559,11.5027409329,11.5067952099,11.5108494869,11.5149037639,11.5189580409,11.523012318,11.527066595,11.531120872,11.535175149,11.539229426,11.543283703,11.54733798,11.551392257,11.555446534,11.559500811,11.5635550881,11.5676093651,11.5716636421,11.5757179191,11.5797721961,11.5838264731,11.5878807501,11.5919350271,11.5959893041,11.6000435811,11.6040978582,11.6081521352,11.6122064122,11.6162606892,11.6203149662,11.6243692432,11.6284235202,11.6324777972,11.6365320742,11.6405863512,11.6446406283,11.6486949053,11.6527491823,11.6568034593,11.6608577363,11.6649120133,11.6689662903,11.6730205673,11.6770748443,11.6811291213,11.6851833984,11.6892376754,11.6932919524,11.6973462294,11.7014005064,11.7054547834,11.7095090604,11.7135633374,11.7176176144,11.7216718915,11.7257261685,11.7297804455,11.7338347225,11.7378889995,11.7419432765,11.7459975535,11.7500518305,11.7541061075,11.7581603845,11.7622146616,11.7662689386,11.7703232156,11.7743774926,11.7784317696,11.7824860466,11.7865403236,11.7905946006,11.7946488776,11.7987031546,11.8027574317,11.8068117087,11.8108659857,11.8149202627,11.8189745397,11.8230288167,11.8270830937,11.8311373707,11.8351916477,11.8392459247,11.8433002018,11.8473544788,11.8514087558,11.8554630328,11.8595173098,11.8635715868,11.8676258638,11.8716801408,11.8757344178,11.8797886948,11.8838429719,11.8878972489,11.8919515259,11.8960058029,11.9000600799,11.9041143569,11.9081686339,11.9122229109,11.9162771879,11.9203314649,11.924385742,11.928440019,11.932494296,11.936548573,11.94060285,11.944657127,11.948711404,11.952765681,11.956819958,11.960874235,11.9649285121,11.9689827891,11.9730370661,11.9770913431,11.9811456201,11.9851998971,11.9892541741,11.9933084511,11.9973627281,12.0014170051,12.0054712822,12.0095255592,12.0135798362,12.0176341132,12.0216883902,12.0257426672,12.0297969442,12.0338512212,12.0379054982,12.0419597753,12.0460140523,12.0500683293,12.0541226063,12.0581768833,12.0622311603,12.0662854373,12.0703397143,12.0743939913,12.0784482683,12.0825025454,12.0865568224,12.0906110994,12.0946653764,12.0987196534,12.1027739304,12.1068282074,12.1108824844,12.1149367614,12.1189910384,12.1230453155,12.1270995925,12.1311538695,12.1352081465,12.1392624235,12.1433167005,12.1473709775,12.1514252545,12.1554795315,12.1595338085,12.1635880856,12.1676423626,12.1716966396,12.1757509166,12.1798051936,12.1838594706,12.1879137476,12.1919680246,12.1960223016,12.2000765786,12.2041308557,12.2081851327,12.2122394097,12.2162936867,12.2203479637,12.2244022407,12.2284565177,12.2325107947,12.2365650717,12.2406193487,12.2446736258,12.2487279028,12.2527821798,12.2568364568,12.2608907338,12.2649450108,12.2689992878,12.2730535648,12.2771078418,12.2811621188,12.2852163959,12.2892706729,12.2933249499,12.2973792269,12.3014335039,12.3054877809,12.3095420579,12.3135963349,12.3176506119,12.3217048889,12.325759166,12.329813443,12.33386772,12.337921997,12.341976274,12.346030551,12.350084828,12.354139105,12.358193382,12.362247659,12.3663019361,12.3703562131,12.3744104901,12.3784647671,12.3825190441,12.3865733211,12.3906275981,12.3946818751,12.3987361521,12.4027904292,12.4068447062,12.4108989832,12.4149532602,12.4190075372,12.4230618142,12.4271160912,12.4311703682,12.4352246452,12.4392789222,12.4433331993,12.4473874763,12.4514417533,12.4554960303,12.4595503073,12.4636045843,12.4676588613,12.4717131383,12.4757674153,12.4798216923,12.4838759694,12.4881551018,12.4924342343,12.4967133667,12.5009924992,12.5052716316,12.5095507641,12.5138298965,12.518109029,12.5223881615,12.5266672939,12.5309464264,12.5352255588,12.5395046913,12.5437838237,12.5480629562,12.5523420886,12.5566212211,12.5609003536,12.565179486,12.5694586185,12.5737377509,12.5780168834,12.5822960158,12.5865751483,12.5908542808,12.5951334132,12.5994125457,12.6036916781,12.6079708106,12.612249943,12.6165290755,12.6208082079,12.6250873404,12.6293664729,12.6336456053,12.6379247378,12.6422038702,12.6464830027,12.6507621351,12.6550412676,12.6593204001,12.6635995325,12.667878665,12.6721577974,12.6764369299,12.6807160623,12.6849951948,12.6892743272,12.6935534597,12.6978325922,12.7021117246,12.7063908571,12.7106699895,12.714949122,12.7192282544,12.7235073869,12.7277865193,12.7320656518,12.7363447843,12.7406239167,12.7449030492,12.7491821816,12.7534613141,12.7577404465,12.762019579,12.7662987115,12.7705778439,12.7748569764,12.7791361088,12.7834152413,12.7876943737,12.7919735062,12.7962526386,12.8005317711,12.8048109036,12.809090036,12.8133691685,12.8176483009,12.8219274334,12.8262065658,12.8304856983,12.8347648307,12.8390439632,12.8433230957,12.8476022281,12.8518813606,12.856160493,12.8604396255,12.8647187579,12.8689978904,12.8732770229,12.8775561553,12.8818352878,12.8861144202,12.8903935527,12.8946726851,12.8989518176,12.90323095,12.9075100825,12.911789215,12.9160683474,12.9203474799,12.9246266123,12.9289057448,12.9331848772,12.9374640097,12.9417431422,12.9460222746,12.9503014071,12.9545805395,12.958859672,12.9631388044,12.9674179369,12.9716970693,12.9759762018,12.9802553343,12.9845344667,12.9888135992,12.9930927316,12.9973718641,13.0016509965,13.005930129,13.0102092614,13.0144883939,13.0187675264,13.0230466588,13.0273257913,13.0316049237,13.0358840562,13.0401631886,13.0444423211,13.0487214536,13.053000586,13.0572797185,13.0615588509,13.0658379834,13.0701171158,13.0743962483,13.0786753807,13.0829545132,13.0872336457,13.0915127781,13.0957919106,13.100071043,13.1043501755,13.1086293079,13.1129084404,13.1171875728,13.1214667053,13.1257458378,13.1300249702,13.1343041027,13.1385832351,13.1428623676,13.1471415,13.1514206325,13.155699765,13.1599788974,13.1642580299,13.1685371623,13.1728162948,13.1770954272,13.1813745597,13.1856536921,13.1899328246,13.1942119571,13.1984910895,13.202770222,13.2070493544,13.2113284869,13.2156076193,13.2198867518,13.2241658843,13.2284450167,13.2327241492,13.2370032816,13.2412824141,13.2455615465,13.249840679,13.2541198114,13.2583989439,13.2626780764,13.2669572088,13.2712363413,13.2755154737,13.2797946062,13.2840737386,13.2883528711,13.2926320035,13.296911136,13.3011902685,13.3054694009,13.3097485334,13.3140276658,13.3183067983,13.3225859307,13.3268650632,13.3311441957,13.3354233281,13.3397024606,13.343981593,13.3482607255,13.3525398579,13.3568189904,13.3610981228,13.3653772553,13.3696563878,13.3739355202,13.3782146527,13.3824937851,13.3867729176,13.39105205,13.3953311825,13.3996103149,13.4038894474,13.4081685799,13.4124477123,13.4167268448,13.4210059772,13.4252851097,13.4295642421,13.4338433746,13.4381225071,13.4424016395,13.446680772,13.4509599044,13.4552390369,13.4595181693,13.4637973018,13.4680764342,13.4723555667,13.4766346992,13.4809138316,13.4851929641,13.4894720965,13.493751229,13.4980303614,13.5023094939,13.5065886264,13.5108677588,13.5151468913,13.5194260237,13.5237051562,13.5279842886,13.5322634211,13.5365425535,13.540821686,13.5451008185,13.5493799509,13.5536590834,13.5579382158,13.5622173483,13.5664964807,13.5707756132,13.5750547456,13.5793338781,13.5836130106,13.587892143,13.5921712755,13.5964504079,13.6007295404,13.6050086728,13.6092878053,13.6135669378,13.6178460702,13.6221252027,13.6264043351,13.6306834676,13.6349626,13.6392417325,13.6435208649,13.6477999974,13.6520791299,13.6563582623,13.6606373948,13.6649165272,13.6691956597,13.6734747921,13.6777539246,13.682033057,13.6863121895,13.690591322,13.6948704544,13.6991495869,13.7034287193,13.7077078518,13.7119869842,13.7162661167,13.7205452492,13.7248243816,13.7291035141,13.7333826465,13.737661779,13.7419409114,13.7462200439,13.7504991763,13.7547783088,13.7590574413,13.7633365737,13.7676157062,13.7718948386,13.7761739711,13.7804531035,13.784732236,13.7890113685,13.7932905009,13.7975696334,13.8018487658,13.8061278983,13.8104070307,13.8146861632,13.8189652956,13.8232444281,13.8275235606,13.831802693,13.8360818255,13.8403609579,13.8446400904,13.8489192228,13.8531983553,13.8574774877,13.8617566202,13.8660357527,13.8703148851,13.8745940176,13.87887315,13.8831522825,13.8874314149,13.8917105474,13.8959896799,13.9002688123,13.9045479448,13.9088270772,13.9131062097,13.9173853421,13.9216644746,13.925943607,13.9302227395,13.934501872,13.9387810044,13.9430601369,13.9473392693,13.9516184018,13.9558975342,13.9601766667,13.9644557991,13.9687349316,13.9730140641,13.9772931965,13.981572329,13.9858514614,13.9901305939,13.9944097263,13.9986888588,14.0029679913,14.0072471237,14.0115262562,14.0158053886,14.0200845211,14.0243636535,14.028642786,14.0329219184,14.0372010509,14.0414801834,14.0457593158,14.0500384483,14.0543175807,14.0585967132,14.0628758456,14.0671549781,14.0714341106,14.075713243,14.0799923755,14.0842715079,14.0885506404,14.0928297728,14.0971089053,14.1013880377,14.1056671702,14.1099463027,14.1142254351,14.1185045676,14.1227837,14.1270628325,14.1313419649,14.1356210974,14.1399002298,14.1441793623,14.1484584948,14.1527376272,14.1570167597,14.1612958921,14.1655750246,14.169854157,14.1741332895,14.178412422,14.1826915544,14.1869706869,14.1912498193,14.1955289518,14.1998080842,14.2040872167,14.2083663491,14.2126454816,14.2169246141,14.2212037465,14.225482879,14.2297620114,14.2340411439,14.2383202763,14.2425994088,14.2468785412,14.2511576737,14.2554368062,14.2597159386,14.2639950711,14.2682742035,14.272553336,14.2768324684,14.2811116009,14.2853907334,14.2896698658,14.2939489983,14.2982281307,14.3025072632,14.3067863956,14.3110655281,14.3153446605,14.319623793,14.3239029255,14.3281820579,14.3324611904,14.3367403228,14.3410194553,14.3452985877,14.3495777202,14.3538568527,14.3581359851,14.3624151176,14.36669425,14.3709733825,14.3752525149,14.3795316474,14.3838107798,14.3880899123,14.3923690448,14.3966481772,14.4009273097,14.4052064421,14.4094855746,14.413764707,14.4180438395,14.4223229719,14.4266021044,14.4308812369,14.4351603693,14.4394395018,14.4437186342,14.4479977667,14.4522768991,14.4565560316,14.4608351641,14.4651142965,14.469393429,14.4736725614,14.4779516939,14.4822308263,14.4865099588,14.4907890912,14.4950682237,14.4993473562,14.5036264886,14.5079056211,14.5121847535,14.516463886,14.5207430184,14.5250221509,14.5293012833,14.5335804158,14.5378595483,14.5421386807,14.5464178132,14.5506969456,14.5549760781,14.5592552105,14.563534343,14.5678134755,14.5720926079,14.5763717404,14.5806508728,14.5849300053,14.5892091377,14.5934882702,14.5977674026,14.6020465351,14.6063256676,14.6106048,14.6148839325,14.6191630649,14.6234421974,14.6277213298,14.6320004623,14.6362795948,14.6405587272,14.6448378597,14.6491169921,14.6533961246,14.657675257,14.6619543895,14.6662335219,14.6705126544,14.6747917869,14.6790709193,14.6833500518,14.6876291842,14.6919083167,14.6961874491,14.7004665816,14.704745714,14.7090248465,14.713303979,14.7175831114,14.7218622439,14.7261413763,14.7304205088,14.7346996412,14.7389787737,14.7432579062,14.7475370386,14.7518161711,14.7560953035,14.760374436,14.7646535684,14.7689327009,14.7732118333,14.7774909658,14.7817700983,14.7860492307,14.7903283632,14.7946074956,14.7988866281,14.8031657605,14.807444893,14.8117240255,14.8160031579,14.8202822904,14.8245614228,14.8288405553,14.8331196877,14.8373988202,14.8416779526,14.8459570851,14.8502362176,14.85451535,14.8587944825,14.8630736149,14.8673527474,14.8716318798,14.8759110123,14.8801901447,14.8844692772,14.8887484097,14.8930275421,14.8973066746,14.901585807,14.9058649395,14.9101440719,14.9144232044,14.9187023369,14.9229814693,14.9272606018,14.9315397342,14.9358188667,14.9400979991,14.9443771316,14.948656264,14.9529353965,14.957214529,14.9614936614,14.9657727939,14.9700519263,14.9743310588,14.9786101912,14.9828893237,14.9871684561,14.9914475886,14.9957267211,15.0000058535,15.004284986,15.0085641184,15.0128432509,15.0171223833,15.0214015158,15.0256806483,15.0299597807,15.0342389132,15.0385180456,15.0427971781,15.0470763105,15.051355443,15.0556345754,15.0599137079,15.0641928404,15.0684719728,15.0723768326,15.0762816925,15.0801865523,15.0840914121,15.087996272,15.0919011318,15.0958059916,15.0997108515,15.1036157113,15.1075205711,15.111425431,15.1153302908,15.1192351506,15.1231400104,15.1270448703,15.1309497301,15.1348545899,15.1387594498,15.1426643096,15.1465691694,15.1504740293,15.1543788891,15.1582837489,15.1621886087,15.1660934686,15.1699983284,15.1739031882,15.1778080481,15.1817129079,15.1856177677,15.1895226276,15.1934274874,15.1973323472,15.2012372071,15.2051420669,15.2090469267,15.2129517865,15.2168566464,15.2207615062,15.224666366,15.2285712259,15.2324760857,15.2363809455,15.2402858054,15.2441906652,15.248095525,15.2520003849,15.2559052447,15.2598101045,15.2637149643,15.2676198242,15.271524684,15.2754295438,15.2793344037,15.2832392635,15.2871441233,15.2910489832,15.294953843,15.2988587028,15.3027635626,15.3066684225,15.3105732823,15.3144781421,15.318383002,15.3222878618,15.3261927216,15.3300975815,15.3340024413,15.3379073011,15.341812161,15.3457170208,15.3496218806,15.3535267404,15.3574316003,15.3613364601,15.3652413199,15.3691461798,15.3730510396,15.3769558994,15.3808607593,15.3847656191,15.3886704789,15.3925753388,15.3964801986,15.4003850584,15.4042899182,15.4081947781,15.4120996379,15.4160044977,15.4199093576,15.4238142174,15.4277190772,15.4316239371,15.4355287969,15.4394336567,15.4433385165,15.4472433764,15.4511482362,15.455053096,15.4589579559,15.4628628157,15.4667676755,15.4706725354,15.4745773952,15.478482255,15.4823871149,15.4862919747,15.4901968345,15.4941016943,15.4980065542,15.501911414,15.5058162738,15.5097211337,15.5136259935,15.5175308533,15.5214357132,15.525340573,15.5292454328,15.5331502927,15.5370551525,15.5409600123,15.5448648721,15.548769732,15.5526745918,15.5565794516,15.5604843115,15.5643891713,15.5682940311,15.572198891,15.5761037508,15.5800086106,15.5839134704,15.5878183303,15.5917231901,15.5956280499,15.5995329098,15.6034377696,15.6073426294,15.6112474893,15.6151523491,15.6190572089,15.6229620688,15.6268669286,15.6307717884,15.6346766482,15.6385815081,15.6424863679,15.6463912277,15.6502960876,15.6542009474,15.6581058072,15.6620106671,15.6659155269,15.6698203867,15.6737252466,15.6776301064,15.6815349662,15.685439826,15.6893446859,15.6932495457,15.6971544055,15.7010592654,15.7049641252,15.708868985,15.7127738449,15.7166787047,15.7205835645,15.7244884244,15.7283932842,15.732298144,15.7362030038,15.7401078637,15.7440127235,15.7479175833,15.7518224432,15.755727303,15.7596321628,15.7635370227,15.7674418825,15.7713467423,15.7752516021,15.779156462,15.7830613218,15.7869661816,15.7908710415,15.7947759013,15.7986807611,15.802585621,15.8064904808,15.8103953406,15.8143002005,15.8182050603,15.8221099201,15.8260147799,15.8299196398,15.8338244996,15.8377293594,15.8416342193,15.8455390791,15.8494439389,15.8533487988,15.8572536586,15.8611585184,15.8650633783,15.8689682381,15.8728730979,15.8767779577,15.8806828176,15.8845876774,15.8884925372,15.8923973971,15.8963022569,15.9002071167,15.9041119766,15.9080168364,15.9119216962,15.915826556,15.9197314159,15.9236362757,15.9275411355,15.9314459954,15.9353508552,15.939255715,15.9431605749,15.9470654347,15.9509702945,15.9548751544,15.9587800142,15.962684874,15.9665897338,15.9704945937,15.9743994535,15.9783043133,15.9822091732,15.986114033,15.9900188928,15.9939237527,15.9978286125,16.0017334723,16.0056383322,16.009543192,16.0134480518,16.0173529116,16.0212577715,16.0251626313,16.0290674911,16.032972351,16.0368772108,16.0407820706,16.0446869305,16.0485917903,16.0524966501,16.0564015099,16.0603063698,16.0642112296,16.0681160894,16.0720209493,16.0759258091,16.0798306689,16.0837355288,16.0876403886,16.0915452484,16.0954501083,16.0993549681,16.1032598279,16.1071646877,16.1110695476,16.1149744074,16.1188792672,16.1227841271,16.1266889869,16.1305938467,16.1344987066,16.1384035664,16.1423084262,16.1462132861,16.1501181459,16.1540230057,16.1579278655,16.1618327254,16.1657375852,16.169642445,16.1735473049,16.1774521647,16.1813570245,16.1852618844,16.1891667442,16.193071604,16.1969764639,16.2008813237,16.2047861835,16.2086910433,16.2125959032,16.216500763,16.2204056228,16.2243104827,16.2282153425,16.2321202023,16.2360250622,16.239929922,16.2438347818,16.2477396416,16.2516445015,16.2555493613,16.2594542211,16.263359081,16.2672639408,16.2711688006,16.2750736605,16.2789785203,16.2828833801,16.28678824,16.2906930998,16.2945979596,16.2985028194,16.3024076793,16.3063125391,16.3102173989,16.3141222588,16.3180271186,16.3219319784,16.3258368383,16.3297416981,16.3336465579,16.3375514178,16.3414562776,16.3453611374,16.3492659972,16.3531708571,16.3570757169,16.3609805767,16.3648854366,16.3687902964,16.3726951562,16.3766000161,16.3805048759,16.3844097357,16.3883145955,16.3922194554,16.3961243152,16.400029175,16.4039340349,16.4078388947,16.4117437545,16.4156486144,16.4195534742,16.423458334,16.4273631939,16.4312680537,16.4351729135,16.4390777733,16.4429826332,16.446887493,16.4507923528,16.4546972127,16.4586020725,16.4625069323,16.4664117922,16.470316652,16.4742215118,16.4781263717,16.4820312315,16.4859360913,16.4898409511,16.493745811,16.4976506708,16.5015555306,16.5054603905,16.5093652503,16.5132701101,16.51717497,16.5210798298,16.5249846896,16.5288895494,16.5327944093,16.5366992691,16.5406041289,16.5445089888,16.5484138486,16.5523187084,16.5562235683,16.5601284281,16.5640332879,16.5679381478,16.5718430076,16.5757478674,16.5796527272,16.5835575871,16.5874624469,16.5913673067,16.5952721666,16.5991770264,16.6030818862,16.6069867461,16.6108916059,16.6147964657,16.6187013256,16.6226061854,16.6265110452,16.630415905,16.6343207649,16.6382256247,16.6421304845,16.6460353444,16.6499402042,16.653845064,16.6577499239,16.6616547837,16.6655596435,16.6694645034,16.6733693632,16.677274223,16.6811790828,16.6850839427,16.6889888025,16.6928936623,16.6967985222,16.700703382,16.7046082418,16.7085131017,16.7124179615,16.7163228213,16.7202276811,16.724132541,16.7280374008,16.7319422606,16.7358471205,16.7397519803,16.7436568401,16.7475617,16.7514665598,16.7553714196,16.7592762795,16.7631811393,16.7670859991,16.7709908589,16.7748957188,16.7788005786,16.7827054384,16.7866102983,16.7905151581,16.7944200179,16.7983248778,16.8022297376,16.8061345974,16.8100394573,16.8139443171,16.8178491769,16.8217540367,16.8256588966,16.8295637564,16.8334686162,16.8373734761,16.8412783359,16.8451831957,16.8490880556,16.8529929154,16.8568977752,16.860802635,16.8647074949,16.8686123547,16.8725172145,16.8764220744,16.8803269342,16.884231794,16.8881366539,16.8920415137,16.8959463735,16.8998512334,16.9037560932,16.907660953,16.9115658128,16.9154706727,16.9193755325,16.9232803923,16.9271852522,16.931090112,16.9349949718,16.9388998317,16.9428046915,16.9467095513,16.9506144112,16.954519271,16.9584241308,16.9623289906,16.9662338505,16.9701387103,16.9740435701,16.97794843,16.9818532898,16.9857581496,16.9896630095,16.9935678693,16.9974727291,17.0013775889,17.0052824488,17.0091873086,17.0130921684,17.0169970283,17.0209018881,17.0248067479,17.0287116078,17.0326164676,17.0365213274,17.0404261873,17.0443310471,17.0482359069,17.0521407667,17.0560456266,17.0599504864,17.0638553462,17.0677602061,17.0716650659,17.0755699257,17.0794747856,17.0833796454,17.0872845052,17.0911893651,17.0950942249,17.0989990847,17.1029039445,17.1068088044,17.1107136642,17.114618524,17.1185233839,17.1224282437,17.1263331035,17.1302379634,17.1341428232,17.138047683,17.1419525429,17.1458574027,17.1497622625,17.1536671223,17.1575719822,17.161476842,17.1653817018,17.1692865617,17.1731914215,17.1770962813,17.1810011412,17.184906001,17.1888108608,17.1927157206,17.1966205805,17.2005254403,17.2044303001,17.20833516,17.2122400198,17.2161448796,17.2200497395,17.2239545993,17.2278594591,17.231764319,17.2356691788,17.2395740386,17.2434788984,17.2473837583,17.2512886181,17.2551934779,17.2590983378,17.2630031976,17.2669080574,17.2708129173,17.2747177771,17.2786226369,17.2825274968,17.2864323566,17.2903372164,17.2942420762,17.2981469361,17.3020517959,17.3059566557,17.3098615156,17.3137663754,17.3176712352,17.3215760951,17.3254809549,17.3293858147,17.3332906745,17.3371955344,17.3411003942,17.345005254,17.3489101139,17.3528149737,17.3567198335,17.3606246934,17.3645295532,17.368434413,17.3723392729,17.3762441327,17.3801489925,17.3840538523,17.3879587122,17.391863572,17.3957684318,17.3996732917,17.4035781515,17.4074830113,17.4113878712,17.415292731,17.4191975908,17.4231024507,17.4270073105,17.4300805195,17.4331537284,17.4362269374,17.4393001464,17.4423733553,17.4454465643,17.4485197733,17.4515929822,17.4546661912,17.4577394002,17.4608126091,17.4638858181,17.4669590271,17.470032236,17.473105445,17.476178654,17.4792518629,17.4823250719,17.4853982809,17.4884714898,17.4915446988,17.4946179078,17.4976911167,17.5007643257,17.5038375347,17.5069107437,17.5099839526,17.5130571616,17.5161303706,17.5192035795,17.5222767885,17.5253499975,17.5284232064,17.5314964154,17.5345696244,17.5376428333,17.5407160423,17.5437892513,17.5468624602,17.5499356692,17.5530088782,17.5560820871,17.5591552961,17.5622285051,17.565301714,17.568374923,17.571448132,17.574521341,17.5775945499,17.5806677589,17.5837409679,17.5868141768,17.5898873858,17.5929605948,17.5960338037,17.5991070127,17.6021802217,17.6052534306,17.6083266396,17.6113998486,17.6144730575,17.6175462665,17.6206194755,17.6236926844,17.6267658934,17.6298391024,17.6329123113,17.6359855203,17.6390587293,17.6421319383,17.6452051472,17.6482783562,17.6513515652,17.6544247741,17.6574979831,17.6605711921,17.663644401,17.66671761,17.669790819,17.6728640279,17.6759372369,17.6790104459,17.6820836548,17.6851568638,17.6882300728,17.6913032817,17.6943764907,17.6974496997,17.7005229086,17.7035961176,17.7066693266,17.7097425356,17.7128157445,17.7158889535,17.7189621625,17.7220353714,17.7251085804,17.7281817894,17.7312549983,17.7343282073,17.7374014163,17.7404746252,17.7435478342,17.7466210432,17.7496942521,17.7527674611,17.7558406701,17.758913879,17.761987088,17.765060297,17.7681335059,17.7712067149,17.7742799239,17.7773531329,17.7804263418,17.7834995508,17.7865727598,17.7896459687,17.7927191777,17.7957923867,17.7988655956,17.8019388046,17.8050120136,17.8080852225,17.8111584315,17.8142316405,17.8173048494,17.8203780584,17.8234512674,17.8265244763,17.8295976853,17.8326708943,17.8357441032,17.8388173122,17.8418905212,17.8449637302,17.8480369391,17.8511101481,17.8541833571,17.857256566,17.860329775,17.863402984,17.8664761929,17.8695494019,17.8726226109,17.8756958198,17.8787690288,17.8818422378,17.8849154467,17.8879886557,17.8910618647,17.8941350736,17.8972082826,17.9002814916,17.9033547005,17.9064279095,17.9095011185,17.9125743275,17.9156475364,17.9187207454,17.9217939544,17.9248671633,17.9279403723,17.9310135813,17.9340867902,17.9371599992,17.9402332082,17.9433064171,17.9463796261,17.9494528351,17.952526044,17.955599253,17.958672462,17.9617456709,17.9648188799,17.9678920889,17.9709652978,17.9740385068,17.9771117158,17.9801849248,17.9832581337,17.9863313427,17.9894045517,17.9924777606,17.9955509696,17.9986241786,18.0016973875,18.0047705965,18.0078438055,18.0109170144,18.0139902234,18.0170634324,18.0201366413,18.0232098503,18.0262830593,18.0293562682,18.0324294772,18.0355026862,18.0385758951,18.0416491041,18.0447223131,18.0477955221,18.050868731,18.05394194,18.057015149,18.0600883579,18.0631615669,18.0662347759,18.0693079848,18.0723811938,18.0754544028,18.0785276117,18.0816008207,18.0846740297,18.0877472386,18.0908204476,18.0938936566,18.0969668655,18.1000400745,18.1031132835,18.1061864924,18.1092597014,18.1123329104,18.1154061194,18.1184793283,18.1215525373,18.1246257463,18.1276989552,18.1307721642,18.1338453732,18.1369185821,18.1399917911,18.1430650001,18.146138209,18.149211418,18.152284627,18.1553578359,18.1584310449,18.1615042539,18.1645774628,18.1676506718,18.1707238808,18.1737970897,18.1768702987,18.1799435077,18.1830167166,18.1860899256,18.1891631346,18.1922363436,18.1953095525,18.1983827615,18.2014559705,18.2045291794,18.2076023884,18.2106755974,18.2137488063,18.2168220153,18.2198952243,18.2229684332,18.2260416422,18.2291148512,18.2321880601,18.2352612691,18.2383344781,18.241407687,18.244480896,18.247554105,18.2506273139,18.2537005229,18.2567737319,18.2598469409,18.2629201498,18.2659933588,18.2690665678,18.2721397767,18.2752129857,18.2782861947,18.2813594036,18.2844326126,18.2875058216,18.2905790305,18.2936522395,18.2967254485,18.2997986574,18.3028718664,18.3059450754,18.3090182843,18.3120914933,18.3151647023,18.3182379112,18.3213111202,18.3243843292,18.3274575382,18.3305307471,18.3336039561,18.3366771651,18.339750374,18.342823583,18.345896792,18.3489700009,18.3520432099,18.3551164189,18.3581896278,18.3612628368,18.3643360458,18.3674092547,18.3704824637,18.3735556727,18.3766288816,18.3797020906,18.3827752996,18.3858485085,18.3889217175,18.3919949265,18.3950681355,18.3981413444,18.4012145534,18.4042877624,18.4073609713,18.4104341803,18.4135073893,18.4165805982,18.4196538072,18.4227270162,18.4258002251,18.4288734341,18.4319466431,18.435019852,18.438093061,18.44116627,18.4442394789,18.4473126879,18.4503858969,18.4534591058,18.4565323148,18.4596055238,18.4626787328,18.4657519417,18.4688251507,18.4718983597,18.4749715686,18.4780447776,18.4811179866,18.4841911955,18.4872644045,18.4903376135,18.4934108224,18.4964840314,18.4995572404,18.5026304493,18.5057036583,18.5087768673,18.5118500762,18.5149232852,18.5179964942,18.5210697031,18.5241429121,18.5272161211,18.5302893301,18.533362539,18.536435748,18.539508957,18.5425821659,18.5456553749,18.5487285839,18.5518017928,18.5548750018,18.5579482108,18.5610214197,18.5640946287,18.5671678377,18.5702410466,18.5733142556,18.5763874646,18.5794606735,18.5825338825,18.5856070915,18.5886803004,18.5917535094,18.5948267184,18.5978999274,18.6009731363,18.6040463453,18.6071195543,18.6101927632,18.6132659722,18.6163391812,18.6194123901,18.6224855991,18.6255588081,18.628632017,18.631705226,18.634778435,18.6378516439,18.6409248529,18.6439980619,18.6470712708,18.6501444798,18.6532176888,18.6562908977,18.6593641067,18.6624373157,18.6655105247,18.6685837336,18.6716569426,18.6747301516,18.6778033605,18.6808765695,18.6839497785,18.6870229874,18.6900961964,18.6931694054,18.6962426143,18.6993158233,18.7023890323,18.7054622412,18.7085354502,18.7116086592,18.7146818681,18.7177550771,18.7208282861,18.723901495,18.726974704,18.730047913,18.733121122,18.7361943309,18.7392675399,18.7423407489,18.7454139578,18.7484871668,18.7515603758,18.7546335847,18.7577067937,18.7607800027,18.7638532116,18.7669264206,18.7699996296,18.7730728385,18.7761460475,18.7792192565,18.7822924654,18.7853656744,18.7884388834,18.7915120923,18.7945853013,18.7976585103,18.8007317193,18.8038049282,18.8068781372,18.8099513462,18.8130245551,18.8160977641,18.8191709731,18.822244182,18.825317391,18.8283906,18.8314638089,18.8345370179,18.8376102269,18.8406834358,18.8437566448,18.8468298538,18.8499030627,18.8529762717,18.8560494807,18.8591226896,18.8621958986,18.8652691076,18.8683423165,18.8714155255,18.8744887345,18.8775619435,18.8806351524,18.8837083614,18.8867815704,18.8898547793,18.8929279883,18.8960011973,18.8990744062,18.9021476152,18.9052208242,18.9082940331,18.9113672421,18.9144404511,18.91751366,18.920586869,18.923660078,18.9267332869,18.9298064959,18.9328797049,18.9359529138,18.9390261228,18.9420993318,18.9451725408,18.9482457497,18.9513189587,18.9543921677,18.9574653766,18.9605385856,18.9636117946,18.9666850035,18.9697582125,18.9728314215,18.9759046304,18.9789778394,18.9820510484,18.9851242573,18.9881974663,18.9912706753,18.9943438842,18.9974170932,19.0004903022,19.0035635111,19.0066367201,19.0097099291,19.0127831381,19.015856347,19.018929556,19.022002765,19.0250759739,19.0281491829,19.0312223919,19.0342956008,19.0373688098,19.0404420188,19.0435152277,19.0465884367,19.0496616457,19.0527348546,19.0558080636,19.0588812726,19.0619544815,19.0650276905,19.0681008995,19.0711741084,19.0742473174,19.0773205264,19.0803937354,19.0834669443,19.0865401533,19.0896133623,19.0926865712,19.0957597802,19.0988329892,19.1019061981,19.1049794071,19.1080526161,19.111125825,19.114199034,19.117272243,19.1203454519,19.1234186609,19.1264918699,19.1295650788,19.1326382878,19.1357114968,19.1387847057,19.1418579147,19.1449311237,19.1480043327,19.1510775416,19.1541507506,19.1572239596,19.1602971685,19.1633703775,19.1664435865,19.1695167954,19.1725900044,19.1756632134,19.1787364223,19.1818096313,19.1848828403,19.1879560492,19.1910292582,19.1941024672,19.1971756761,19.2002488851,19.2033220941,19.206395303,19.209468512,19.212541721,19.21561493,19.2186881389,19.2217613479,19.2248345569,19.2279077658,19.2309809748,19.2340541838,19.2371273927,19.2402006017,19.2432738107,19.2463470196,19.2494202286,19.2524934376,19.2555666465,19.2586398555,19.2617130645,19.2647862734,19.2678594824,19.2709326914,19.2740059003,19.2770791093,19.2801523183,19.2832255273,19.2850034441,19.2867813609,19.2885592777,19.2903371946,19.2921151114,19.2938930282,19.2956709451,19.2974488619,19.2992267787,19.3010046955,19.3027826124,19.3045605292,19.306338446,19.3081163629,19.3098942797,19.3116721965,19.3134501134,19.3152280302,19.317005947,19.3187838638,19.3205617807,19.3223396975,19.3241176143,19.3258955312,19.327673448,19.3294513648,19.3312292816,19.3330071985,19.3347851153,19.3365630321,19.338340949,19.3401188658,19.3418967826,19.3436746995,19.3454526163,19.3472305331,19.3490084499,19.3507863668,19.3525642836,19.3543422004,19.3561201173,19.3578980341,19.3596759509,19.3614538677,19.3632317846,19.3650097014,19.3667876182,19.3685655351,19.3703434519,19.3721213687,19.3738992856,19.3756772024,19.3774551192,19.379233036,19.3810109529,19.3827888697,19.3845667865,19.3863447034,19.3881226202,19.389900537,19.3916784538,19.3934563707,19.3952342875,19.3970122043,19.3987901212,19.400568038,19.4023459548,19.4041238717,19.4059017885,19.4076797053,19.4094576221,19.411235539,19.4130134558,19.4147913726,19.4165692895,19.4183472063,19.4201251231,19.4219030399,19.4236809568,19.4254588736,19.4272367904,19.4290147073,19.4307926241,19.4325705409,19.4343484578,19.4361263746,19.4379042914,19.4396822082,19.4414601251,19.4432380419,19.4450159587,19.4467938756,19.4485717924,19.4503497092,19.452127626,19.4539055429,19.4556834597,19.4574613765,19.4592392934,19.4610172102,19.462795127,19.4645730439,19.4663509607,19.4681288775,19.4699067943,19.4716847112,19.473462628,19.4752405448,19.4770184617,19.4787963785,19.4805742953,19.4823522121,19.484130129,19.4859080458,19.4876859626,19.4894638795,19.4912417963,19.4930197131,19.49479763,19.4965755468,19.4983534636,19.5001313804,19.5019092973,19.5036872141,19.5054651309,19.5072430478,19.5090209646,19.5107988814,19.5125767982,19.5143547151,19.5161326319,19.5179105487,19.5196884656,19.5214663824,19.5232442992,19.5250222161,19.5268001329,19.5285780497,19.5303559665,19.5321338834,19.5339118002,19.535689717,19.5374676339,19.5392455507,19.5410234675,19.5428013843,19.5445793012,19.546357218,19.5481351348,19.5499130517,19.5516909685,19.5534688853,19.5552468022,19.557024719,19.5588026358,19.5605805526,19.5623584695,19.5641363863,19.5659143031,19.56769222,19.5694701368,19.5712480536,19.5730259705,19.5748038873,19.5765818041,19.5783597209,19.5801376378,19.5819155546,19.5836934714,19.5854713883,19.5872493051,19.5890272219,19.5908051387,19.5925830556,19.5943609724,19.5961388892,19.5979168061,19.5996947229,19.6014726397,19.6032505566,19.6050284734,19.6068063902,19.608584307,19.6103622239,19.6121401407,19.6139180575,19.6156959744,19.6174738912,19.619251808,19.6210297248,19.6228076417,19.6245855585,19.6263634753,19.6281413922,19.629919309,19.6316972258,19.6334751427,19.6352530595,19.6370309763,19.6388088931,19.64058681,19.6423647268,19.6441426436,19.6459205605,19.6476984773,19.6494763941,19.6512543109,19.6530322278,19.6548101446,19.6565880614,19.6583659783,19.6601438951,19.6619218119,19.6636997288,19.6654776456,19.6672555624,19.6690334792,19.6708113961,19.6725893129,19.6743672297,19.6761451466,19.6779230634,19.6797009802,19.681478897,19.6832568139,19.6850347307,19.6868126475,19.6885905644,19.6903684812,19.692146398,19.6939243149,19.6957022317,19.6974801485,19.6992580653,19.7010359822,19.702813899,19.7045918158,19.7063697327,19.7081476495,19.7099255663,19.7117034831,19.7134814,19.7152593168,19.7170372336,19.7188151505,19.7205930673,19.7223709841,19.724148901,19.7259268178,19.7277047346,19.7294826514,19.7312605683,19.7330384851,19.7348164019,19.7365943188,19.7383722356,19.7401501524,19.7419280692,19.7437059861,19.7454839029,19.7472618197,19.7490397366,19.7508176534,19.7525955702,19.7543734871,19.7561514039,19.7579293207,19.7597072375,19.7614851544,19.7632630712,19.765040988,19.7668189049,19.7685968217,19.7703747385,19.7721526553,19.7739305722,19.775708489,19.7774864058,19.7792643227,19.7810422395,19.7828201563,19.7845980732,19.78637599,19.7881539068,19.7899318236,19.7917097405,19.7934876573,19.7952655741,19.797043491,19.7988214078,19.8005993246,19.8023772414,19.8041551583,19.8059330751,19.8077109919,19.8094889088,19.8112668256,19.8130447424,19.8148226593,19.8166005761,19.8183784929,19.8201564097,19.8219343266,19.8237122434,19.8254901602,19.8272680771,19.8290459939,19.8308239107,19.8326018275,19.8343797444,19.8361576612,19.837935578,19.8397134949,19.8414914117,19.8432693285,19.8450472454,19.8468251622,19.848603079,19.8503809958,19.8521589127,19.8539368295,19.8557147463,19.8574926632,19.85927058,19.8610484968,19.8628264136,19.8646043305,19.8663822473,19.8681601641,19.869938081,19.8717159978,19.8734939146,19.8752718315,19.8770497483,19.8788276651,19.8806055819,19.8823834988,19.8841614156,19.8859393324,19.8877172493,19.8894951661,19.8912730829,19.8930509997,19.8948289166,19.8966068334,19.8983847502,19.9001626671,19.9019405839,19.9037185007,19.9054964176,19.9072743344,19.9090522512,19.910830168,19.9126080849,19.9143860017,19.9161639185,19.9179418354,19.9197197522,19.921497669,19.9232755858,19.9250535027,19.9268314195,19.9286093363,19.9303872532,19.93216517,19.9339430868,19.9357210037,19.9374989205,19.9392768373,19.9410547541,19.942832671,19.9446105878,19.9463885046,19.9481664215,19.9499443383,19.9517222551,19.953500172,19.9552780888,19.9570560056,19.9588339224,19.9606118393,19.9623897561,19.9641676729,19.9659455898,19.9677235066,19.9695014234,19.9712793402,19.9730572571,19.9748351739,19.9766130907,19.9783910076,19.9801689244,19.9819468412,19.9837247581,19.9855026749,19.9872805917,19.9890585085,19.9908364254,19.9926143422,19.994392259,19.9961701759,19.9979480927,19.9997260095,20.0015039263,20.0032818432,20.00505976,20.0068376768,20.0086155937,20.0103935105,20.0121714273,20.0139493442,20.015727261,20.0175051778,20.0192830946,20.0210610115,20.0228389283,20.0246168451,20.026394762,20.0281726788,20.0299505956,20.0317285124,20.0335064293,20.0352843461,20.0370622629,20.0388401798,20.0406180966,20.0423960134,20.0441739303,20.0459518471,20.0477297639,20.0495076807,20.0512855976,20.0530635144,20.0548414312,20.0566193481,20.0583972649,20.0601751817,20.0619530985,20.0637310154,20.0655089322,20.067286849,20.0690647659,20.0708426827,20.0726205995,20.0743985164,20.0761764332,20.07795435,20.0797322668,20.0815101837,20.0832881005,20.0850660173,20.0868439342,20.088621851,20.0903997678,20.0921776846,20.0939556015,20.0957335183,20.0975114351,20.099289352,20.1010672688,20.1028451856,20.1046231025,20.1064010193,20.1081789361,20.1099568529,20.1117347698,20.1135126866,20.1152906034,20.1170685203,20.1188464371,20.1206243539,20.1224022707,20.1241801876,20.1259581044,20.1277360212,20.1295139381,20.1312918549,20.1330697717,20.1348476886,20.1366256054,20.1384035222,20.140181439,20.1419593559,20.1437372727,20.1455151895,20.1472931064,20.1490710232,20.15084894,20.1526268568,20.1544047737,20.1561826905,20.1579606073,20.1597385242,20.161516441,20.1632943578,20.1650722747,20.1668501915,20.1686281083,20.1704060251,20.172183942,20.1739618588,20.1757397756,20.1775176925,20.1792956093,20.1810735261,20.1828514429,20.1846293598,20.1864072766,20.1881851934,20.1899631103,20.1917410271,20.1935189439,20.1952968608,20.1970747776,20.1988526944,20.2006306112,20.2024085281,20.2041864449,20.2059643617,20.2077422786,20.2095201954,20.2112981122,20.213076029,20.2148539459,20.2166318627,20.2184097795,20.2201876964,20.2219656132,20.22374353,20.2255214469,20.2272993637,20.2290772805,20.2308551973,20.2326331142,20.234411031,20.2361889478,20.2379668647,20.2397447815,20.2415226983,20.2433006151,20.245078532,20.2468564488,20.2486343656,20.2504122825,20.2521901993,20.2539681161,20.255746033,20.2575239498,20.2593018666,20.2610797834,20.2628577003,20.2646356171,20.2664135339,20.2681914508,20.2699693676,20.2717472844,20.2735252012,20.2753031181,20.2770810349,20.2788589517,20.2806368686,20.2824147854,20.2841927022,20.2859706191,20.2877485359,20.2895264527,20.2913043695,20.2930822864,20.2948602032,20.29663812,20.2984160369,20.3001939537,20.3019718705,20.3037497873,20.3055277042,20.307305621,20.3090835378,20.3108614547,20.3126393715,20.3144172883,20.3161952052,20.317973122,20.3197510388,20.3215289556,20.3233068725,20.3250847893,20.3268627061,20.328640623,20.3304185398,20.3321964566,20.3339743735,20.3357522903,20.3375302071,20.3393081239,20.3410860408,20.3428639576,20.3446418744,20.3464197913,20.3481977081,20.3499756249,20.3517535417,20.3535314586,20.3553093754,20.3570872922,20.3572855798,20.3574838673,20.3576821549,20.3578804424,20.35807873,20.3582770175,20.3584753051,20.3586735926,20.3588718802,20.3590701677,20.3592684553,20.3594667428,20.3596650304,20.3598633179,20.3600616055,20.360259893,20.3604581806,20.3606564682,20.3608547557,20.3610530433,20.3612513308,20.3614496184,20.3616479059,20.3618461935,20.362044481,20.3622427686,20.3624410561,20.3626393437,20.3628376312,20.3630359188,20.3632342063,20.3634324939,20.3636307814,20.363829069,20.3640273565,20.3642256441,20.3644239316,20.3646222192,20.3648205067,20.3650187943,20.3652170818,20.3654153694,20.3656136569,20.3658119445,20.366010232,20.3662085196,20.3664068071,20.3666050947,20.3668033822,20.3670016698,20.3671999573,20.3673982449,20.3675965324,20.36779482,20.3679931075,20.3681913951,20.3683896826,20.3685879702,20.3687862577,20.3689845453,20.3691828328,20.3693811204,20.3695794079,20.3697776955,20.369975983,20.3701742706,20.3703725581,20.3705708457,20.3707691332,20.3709674208,20.3711657084,20.3713639959,20.3715622835,20.371760571,20.3719588586,20.3721571461,20.3723554337,20.3725537212,20.3727520088,20.3729502963,20.3731485839,20.3733468714,20.373545159,20.3737434465,20.3739417341,20.3741400216,20.3743383092,20.3745365967,20.3747348843,20.3749331718,20.3751314594,20.3753297469,20.3755280345,20.375726322,20.3759246096,20.3761228971,20.3763211847,20.3765194722,20.3767177598,20.3769160473,20.3771143349,20.3773126224,20.37751091,20.3777091975,20.3779074851,20.3781057726,20.3783040602,20.3785023477,20.3787006353,20.3788989228,20.3790972104,20.3792954979,20.3794937855,20.379692073,20.3798903606,20.3800886481,20.3802869357,20.3804852232,20.3806835108,20.3808817983,20.3810800859,20.3812783735,20.381476661,20.3816749486,20.3818732361,20.3820715237,20.3822698112,20.3824680988,20.3826663863,20.3828646739,20.3830629614,20.383261249,20.3834595365,20.3836578241,20.3838561116,20.3840543992,20.3842526867,20.3844509743,20.3846492618,20.3848475494,20.3850458369,20.3852441245,20.385442412,20.3856406996,20.3858389871,20.3860372747,20.3862355622,20.3864338498,20.3866321373,20.3868304249,20.3870287124,20.387227,20.3874252875,20.3876235751,20.3878218626,20.3880201502,20.3882184377,20.3884167253,20.3886150128,20.3888133004,20.3890115879,20.3892098755,20.389408163,20.3896064506,20.3898047381,20.3900030257,20.3902013132,20.3903996008,20.3905978883,20.3907961759,20.3909944634,20.391192751,20.3913910385,20.3915893261,20.3917876137,20.3919859012,20.3921841888,20.3923824763,20.3925807639,20.3927790514,20.392977339,20.3931756265,20.3933739141,20.3935722016,20.3937704892,20.3939687767,20.3941670643,20.3943653518,20.3945636394,20.3947619269,20.3949602145,20.395158502,20.3953567896,20.3955550771,20.3957533647,20.3959516522,20.3961499398,20.3963482273,20.3965465149,20.3967448024,20.39694309,20.3971413775,20.3973396651,20.3975379526,20.3977362402,20.3979345277,20.3981328153,20.3983311028,20.3985293904,20.3987276779,20.3989259655,20.399124253,20.3993225406,20.3995208281,20.3997191157,20.3999174032,20.4001156908,20.4003139783,20.4005122659,20.4007105534,20.400908841,20.4011071285,20.4013054161,20.4015037036,20.4017019912,20.4019002788,20.4020985663,20.4022968539,20.4024951414,20.402693429,20.4028917165,20.4030900041,20.4032882916,20.4034865792,20.4036848667,20.4038831543,20.4040814418,20.4042797294,20.4044780169,20.4046763045,20.404874592,20.4050728796,20.4052711671,20.4054694547,20.4056677422,20.4058660298,20.4060643173,20.4062626049,20.4064608924,20.40665918,20.4068574675,20.4070557551,20.4072540426,20.4074523302,20.4076506177,20.4078489053,20.4080471928,20.4082454804,20.4084437679,20.4086420555,20.408840343,20.4090386306,20.4092369181,20.4094352057,20.4096334932,20.4098317808,20.4100300683,20.4102283559,20.4104266434,20.410624931,20.4108232185,20.4110215061,20.4112197936,20.4114180812,20.4116163687,20.4118146563,20.4120129438,20.4122112314,20.412409519,20.4126078065,20.4128060941,20.4130043816,20.4132026692,20.4134009567,20.4135992443,20.4137975318,20.4139958194,20.4141941069,20.4143923945,20.414590682,20.4147889696,20.4149872571,20.4151855447,20.4153838322,20.4155821198,20.4157804073,20.4159786949,20.4161769824,20.41637527,20.4165735575,20.4167718451,20.4169701326,20.4171684202,20.4173667077,20.4175649953,20.4177632828,20.4179615704,20.4181598579,20.4183581455,20.418556433,20.4187547206,20.4189530081,20.4191512957,20.4193495832,20.4195478708,20.4197461583,20.4199444459,20.4201427334,20.420341021,20.4205393085,20.4207375961,20.4209358836,20.4211341712,20.4213324587,20.4215307463,20.4217290338,20.4219273214,20.4221256089,20.4223238965,20.4225221841,20.4227204716,20.4229187592,20.4231170467,20.4233153343,20.4235136218,20.4237119094,20.4239101969,20.4241084845,20.424306772,20.4245050596,20.4247033471,20.4249016347,20.4250999222,20.4252982098,20.4254964973,20.4256947849,20.4258930724,20.42609136,20.4262896475,20.4264879351,20.4266862226,20.4268845102,20.4270827977,20.4272810853,20.4274793728,20.4276776604,20.4278759479,20.4280742355,20.428272523,20.4284708106,20.4286690981,20.4288673857,20.4290656732,20.4292639608,20.4294622483,20.4296605359,20.4298588234,20.430057111,20.4302553985,20.4304536861,20.4306519736,20.4308502612,20.4310485487,20.4312468363,20.4314451238,20.4316434114,20.4318416989,20.4320399865,20.432238274,20.4324365616,20.4326348491,20.4328331367,20.4330314243,20.4332297118,20.4334279994,20.4336262869,20.4338245745,20.434022862,20.4342211496,20.4344194371,20.4346177247,20.4348160122,20.4350142998,20.4352125873,20.4354108749,20.4356091624,20.43580745,20.4360057375,20.4362040251,20.4364023126,20.4366006002,20.4367988877,20.4369971753,20.4371954628,20.4373937504,20.4375920379,20.4377903255,20.437988613,20.4381869006,20.4383851881,20.4385834757,20.4387817632,20.4389800508,20.4391783383,20.4393766259,20.4395749134,20.439773201,20.4399714885,20.4401697761,20.4403680636,20.4405663512,20.4407646387,20.4409629263,20.4411612138,20.4413595014,20.4415577889,20.4417560765,20.441954364,20.4421526516,20.4423509391,20.4425492267,20.4427475142,20.4429458018,20.4431440894,20.4433423769,20.4435406645,20.443738952,20.4439372396,20.4441355271,20.4443338147,20.4445321022,20.4447303898,20.4449286773,20.4451269649,20.4453252524,20.44552354,20.4457218275,20.4459201151,20.4461184026,20.4463166902,20.4465149777,20.4467132653,20.4469115528,20.4471098404,20.4473081279,20.4475064155,20.447704703,20.4479029906,20.4481012781,20.4482995657,20.4484978532,20.4486961408,20.4488944283,20.4490927159,20.4492910034,20.449489291,20.4496875785,20.4498858661,20.4500841536,20.4502824412,20.4504807287,20.4506790163,20.4508773038,20.4510755914,20.4512738789,20.4514721665,20.451670454,20.4518687416,20.4520670291,20.4522653167,20.4524636042,20.4526618918,20.4528601793,20.4530584669,20.4532567544,20.453455042,20.4536533296,20.4538516171,20.4540499047,20.4542481922,20.4544464798,20.4546447673,20.4548430549,20.4550413424,20.45523963,20.4554379175,20.4556362051,20.4558344926,20.4560327802,20.4562310677,20.4564293553,20.4566276428,20.4568259304,20.4570242179,20.4572225055,20.457420793,20.4576190806,20.4578173681,20.4580156557,20.4582139432,20.4584122308,20.4586105183,20.4588088059,20.4590070934,20.459205381,20.4594036685,20.4596019561,20.4598002436,20.4599985312,20.4601968187,20.4603951063,20.4605933938,20.4607916814,20.4609899689,20.4611882565,20.461386544,20.4615848316,20.4617831191,20.4619814067,20.4621796942,20.4623779818,20.4625762693,20.4627745569,20.4629728444,20.463171132,20.4633694195,20.4635677071,20.4637659947,20.4639642822,20.4641625698,20.4643608573,20.4645591449,20.4647574324,20.46495572,20.4651540075,20.4653522951,20.4655505826,20.4657488702,20.4659471577,20.4661454453,20.4663437328,20.4665420204,20.4667403079,20.4669385955,20.467136883,20.4673351706,20.4675334581,20.4677317457,20.4679300332,20.4681283208,20.4683266083,20.4685248959,20.4687231834,20.468921471,20.4691197585,20.4693180461,20.4695163336,20.4697146212,20.4699129087,20.4701111963,20.4703094838,20.4705077714,20.4707060589,20.4709043465,20.471102634,20.4713009216,20.4714992091,20.4716974967,20.4718957842,20.4720940718,20.4722923593,20.4724906469,20.4726889344,20.472887222,20.4730855095,20.4732837971,20.4734820846,20.4736803722,20.4738786597,20.4740769473,20.4742752349,20.4744735224,20.47467181,20.4748700975,20.4750683851,20.4752666726,20.4754649602,20.4756632477,20.4758615353,20.4760598228,20.4762581104,20.4764563979,20.4766546855,20.476852973,20.4753383442,20.4738237154,20.4723090866,20.4707944578,20.469279829,20.4677652003,20.4662505715,20.4647359427,20.4632213139,20.4617066851,20.4601920563,20.4586774275,20.4571627987,20.4556481699,20.4541335411,20.4526189123,20.4511042835,20.4495896547,20.4480750259,20.4465603971,20.4450457684,20.4435311396,20.4420165108,20.440501882,20.4389872532,20.4374726244,20.4359579956,20.4344433668,20.432928738,20.4314141092,20.4298994804,20.4283848516,20.4268702228,20.425355594,20.4238409652,20.4223263365,20.4208117077,20.4192970789,20.4177824501,20.4162678213,20.4147531925,20.4132385637,20.4117239349,20.4102093061,20.4086946773,20.4071800485,20.4056654197,20.4041507909,20.4026361621,20.4011215333,20.3996069046,20.3980922758,20.396577647,20.3950630182,20.3935483894,20.3920337606,20.3905191318,20.389004503,20.3874898742,20.3859752454,20.3844606166,20.3829459878,20.381431359,20.3799167302,20.3784021014,20.3768874727,20.3753728439,20.3738582151,20.3723435863,20.3708289575,20.3693143287,20.3677996999,20.3662850711,20.3647704423,20.3632558135,20.3617411847,20.3602265559,20.3587119271,20.3571972983,20.3556826695,20.3541680408,20.352653412,20.3511387832,20.3496241544,20.3481095256,20.3465948968,20.345080268,20.3435656392,20.3420510104,20.3405363816,20.3390217528,20.337507124,20.3359924952,20.3344778664,20.3329632377,20.3314486089,20.3299339801,20.3284193513,20.3269047225,20.3253900937,20.3238754649,20.3223608361,20.3208462073,20.3193315785,20.3178169497,20.3163023209,20.3147876921,20.3132730633,20.3117584345,20.3102438058,20.308729177,20.3072145482,20.3056999194,20.3041852906,20.3026706618,20.301156033,20.2996414042,20.2981267754,20.2966121466,20.2950975178,20.293582889,20.2920682602,20.2905536314,20.2890390026,20.2875243739,20.2860097451,20.2844951163,20.2829804875,20.2814658587,20.2799512299,20.2784366011,20.2769219723,20.2754073435,20.2738927147,20.2723780859,20.2708634571,20.2693488283,20.2678341995,20.2663195707,20.264804942,20.2632903132,20.2617756844,20.2602610556,20.2587464268,20.257231798,20.2557171692,20.2542025404,20.2526879116,20.2511732828,20.249658654,20.2481440252,20.2466293964,20.2451147676,20.2436001388,20.2420855101,20.2405708813,20.2390562525,20.2375416237,20.2360269949,20.2345123661,20.2329977373,20.2314831085,20.2299684797,20.2284538509,20.2269392221,20.2254245933,20.2239099645,20.2223953357,20.2208807069,20.2193660782,20.2178514494,20.2163368206,20.2148221918,20.213307563,20.2117929342,20.2102783054,20.2087636766,20.2072490478,20.205734419,20.2042197902,20.2027051614,20.2011905326,20.1996759038,20.198161275,20.1966466463,20.1951320175,20.1936173887,20.1921027599,20.1905881311,20.1890735023,20.1875588735,20.1860442447,20.1845296159,20.1830149871,20.1815003583,20.1799857295,20.1784711007,20.1769564719,20.1754418431,20.1739272144,20.1724125856,20.1708979568,20.169383328,20.1678686992,20.1663540704,20.1648394416,20.1633248128,20.161810184,20.1602955552,20.1587809264,20.1572662976,20.1557516688,20.15423704,20.1527224112,20.1512077825,20.1496931537,20.1481785249,20.1466638961,20.1451492673,20.1436346385,20.1421200097,20.1406053809,20.1390907521,20.1375761233,20.1360614945,20.1345468657,20.1330322369,20.1315176081,20.1300029793,20.1284883506,20.1269737218,20.125459093,20.1239444642,20.1224298354,20.1209152066,20.1194005778,20.117885949,20.1163713202,20.1148566914,20.1133420626,20.1118274338,20.110312805,20.1087981762,20.1072835474,20.1057689187,20.1042542899,20.1027396611,20.1012250323,20.0997104035,20.0981957747,20.0966811459,20.0951665171,20.0936518883,20.0921372595,20.0906226307,20.0891080019,20.0875933731,20.0860787443,20.0845641156,20.0830494868,20.081534858,20.0800202292,20.0785056004,20.0769909716,20.0754763428,20.073961714,20.0724470852,20.0709324564,20.0694178276,20.0679031988,20.06638857,20.0648739412,20.0633593124,20.0618446837,20.0603300549,20.0588154261,20.0573007973,20.0557861685,20.0542715397,20.0527569109,20.0512422821,20.0497276533,20.0482130245,20.0466983957,20.0451837669,20.0436691381,20.0421545093,20.0406398805,20.0391252518,20.037610623,20.0360959942,20.0345813654,20.0330667366,20.0315521078,20.030037479,20.0285228502,20.0270082214,20.0254935926,20.0239789638,20.022464335,20.0209497062,20.0194350774,20.0179204486,20.0164058199,20.0148911911,20.0133765623,20.0118619335,20.0103473047,20.0088326759,20.0073180471,20.0058034183,20.0042887895,20.0027741607,20.0012595319,19.9997449031,19.9982302743,19.9967156455,19.9952010167,19.993686388,19.9921717592,19.9906571304,19.9891425016,19.9876278728,19.986113244,19.9845986152,19.9830839864,19.9815693576,19.9800547288,19.9785401,19.9770254712,19.9755108424,19.9739962136,19.9724815848,19.9709669561,19.9694523273,19.9679376985,19.9664230697,19.9649084409,19.9633938121,19.9618791833,19.9603645545,19.9588499257,19.9573352969,19.9558206681,19.9543060393,19.9527914105,19.9512767817,19.9497621529,19.9482475242,19.9467328954,19.9452182666,19.9437036378,19.942189009,19.9406743802,19.9391597514,19.9376451226,19.9361304938,19.934615865,19.9331012362,19.9315866074,19.9300719786,19.9285573498,19.927042721,19.9255280923,19.9240134635,19.9224988347,19.9209842059,19.9194695771,19.9179549483,19.9164403195,19.9149256907,19.9134110619,19.9118964331,19.9103818043,19.9088671755,19.9073525467,19.9058379179,19.9043232891,19.9028086604,19.9012940316,19.8997794028,19.898264774,19.8967501452,19.8952355164,19.8937208876,19.8922062588,19.89069163,19.8891770012,19.8876623724,19.8861477436,19.8846331148,19.883118486,19.8816038572,19.8800892285,19.8785745997,19.8770599709,19.8755453421,19.8740307133,19.8725160845,19.8710014557,19.8694868269,19.8679721981,19.8664575693,19.8649429405,19.8634283117,19.8619136829,19.8603990541,19.8588844253,19.8573697966,19.8558551678,19.854340539,19.8528259102,19.8513112814,19.8497966526,19.8482820238,19.846767395,19.8452527662,19.8437381374,19.8422235086,19.8407088798,19.839194251,19.8376796222,19.8361649935,19.8346503647,19.8331357359,19.8316211071,19.8301064783,19.8285918495,19.8270772207,19.8255625919,19.8240479631,19.8225333343,19.8210187055,19.8195040767,19.8179894479,19.8164748191,19.8149601903,19.8134455616,19.8119309328,19.810416304,19.8089016752,19.8073870464,19.8058724176,19.8043577888,19.80284316,19.8013285312,19.7998139024,19.7982992736,19.7967846448,19.795270016,19.7937553872,19.7922407584,19.7907261297,19.7892115009,19.7876968721,19.7861822433,19.7846676145,19.7831529857,19.7816383569,19.7801237281,19.7786090993,19.7770944705,19.7755798417,19.7740652129,19.7725505841,19.7710359553,19.7695213265,19.7680066978,19.766492069,19.7649774402,19.7634628114,19.7619481826,19.7604335538,19.758918925,19.7574042962,19.7558896674,19.7543750386,19.7528604098,19.751345781,19.7498311522,19.7483165234,19.7468018946,19.7452872659,19.7437726371,19.7422580083,19.7407433795,19.7392287507,19.7377141219,19.7361994931,19.7346848643,19.7331702355,19.7316556067,19.7301409779,19.7286263491,19.7271117203,19.7255970915,19.7240824627,19.722567834,19.7210532052,19.7195385764,19.7180239476,19.7165093188,19.71499469,19.7134800612,19.7119654324,19.7104508036,19.7089361748,19.707421546,19.7059069172,19.7043922884,19.7028776596,19.7013630308,19.6998484021,19.6983337733,19.6968191445,19.6953045157,19.6937898869,19.6922752581,19.6907606293,19.6892460005,19.6877313717,19.6862167429,19.6847021141,19.6831874853,19.6816728565,19.6801582277,19.6786435989,19.6771289702,19.6756143414,19.6740997126,19.6725850838,19.671070455,19.6695558262,19.6680411974,19.6665265686,19.6650119398,19.663497311,19.6619826822,19.6604680534,19.6589534246,19.6574387958,19.655924167,19.6544095383,19.6528949095,19.6513802807,19.6498656519,19.6483510231,19.6468363943,19.6453217655,19.6438071367,19.6422925079,19.6407778791,19.6392632503,19.6377486215,19.6362339927,19.6347193639,19.6332047351,19.6316901064,19.6301754776,19.6286608488,19.62714622,19.6256315912,19.6241169624,19.6226023336,19.6210877048,19.619573076,19.6180584472,19.6165438184,19.6150291896,19.6135145608,19.611999932,19.6104853032,19.6089706745,19.6074560457,19.6059414169,19.6044267881,19.6029121593,19.6013975305,19.5998829017,19.5983682729,19.5968536441,19.5953390153,19.5938243865,19.5923097577,19.5907951289,19.5892805001,19.5877658713,19.5862512426,19.5847366138,19.583221985,19.5817073562,19.5801927274,19.5786780986,19.5771634698,19.575648841,19.5741342122,19.5726195834,19.5711049546,19.5695903258,19.568075697,19.5665610682,19.5650464395,19.5635318107,19.5620171819,19.5591033082,19.5561894345,19.5532755609,19.5503616872,19.5474478135,19.5445339398,19.5416200662,19.5387061925,19.5357923188,19.5328784452,19.5299645715,19.5270506978,19.5241368242,19.5212229505,19.5183090768,19.5153952031,19.5124813295,19.5095674558,19.5066535821,19.5037397085,19.5008258348,19.4979119611,19.4949980875,19.4920842138,19.4891703401,19.4862564664,19.4833425928,19.4804287191,19.4775148454,19.4746009718,19.4716870981,19.4687732244,19.4658593508,19.4629454771,19.4600316034,19.4571177297,19.4542038561,19.4512899824,19.4483761087,19.4454622351,19.4425483614,19.4396344877,19.4367206141,19.4338067404,19.4308928667,19.4279789931,19.4250651194,19.4221512457,19.419237372,19.4163234984,19.4134096247,19.410495751,19.4075818774,19.4046680037,19.40175413,19.3988402564,19.3959263827,19.393012509,19.3900986353,19.3871847617,19.384270888,19.3813570143,19.3784431407,19.375529267,19.3726153933,19.3697015197,19.366787646,19.3638737723,19.3609598986,19.358046025,19.3551321513,19.3522182776,19.349304404,19.3463905303,19.3434766566,19.340562783,19.3376489093,19.3347350356,19.3318211619,19.3289072883,19.3259934146,19.3230795409,19.3201656673,19.3172517936,19.3143379199,19.3114240463,19.3085101726,19.3055962989,19.3026824252,19.2997685516,19.2968546779,19.2939408042,19.2910269306,19.2881130569,19.2851991832,19.2822853096,19.2793714359,19.2764575622,19.2735436885,19.2706298149,19.2677159412,19.2648020675,19.2618881939,19.2589743202,19.2560604465,19.2531465729,19.2502326992,19.2473188255,19.2444049519,19.2414910782,19.2385772045,19.2356633308,19.2327494572,19.2298355835,19.2269217098,19.2240078362,19.2210939625,19.2181800888,19.2152662152,19.2123523415,19.2094384678,19.2065245941,19.2036107205,19.2006968468,19.1977829731,19.1948690995,19.1919552258,19.1890413521,19.1861274785,19.1832136048,19.1802997311,19.1773858574,19.1744719838,19.1715581101,19.1686442364,19.1657303628,19.1628164891,19.1599026154,19.1569887418,19.1540748681,19.1511609944,19.1482471207,19.1453332471,19.1424193734,19.1395054997,19.1365916261,19.1336777524,19.1307638787,19.1278500051,19.1249361314,19.1220222577,19.119108384,19.1161945104,19.1132806367,19.110366763,19.1074528894,19.1045390157,19.101625142,19.0987112684,19.0957973947,19.092883521,19.0899696473,19.0870557737,19.0841419,19.0812280263,19.0783141527,19.075400279,19.0724864053,19.0695725317,19.066658658,19.0637447843,19.0608309107,19.057917037,19.0550031633,19.0520892896,19.049175416,19.0462615423,19.0433476686,19.040433795,19.0375199213,19.0346060476,19.031692174,19.0287783003,19.0258644266,19.0229505529,19.0200366793,19.0171228056,19.0142089319,19.0112950583,19.0083811846,19.0054673109,19.0025534373,18.9996395636,18.9967256899,18.9938118162,18.9908979426,18.9879840689,18.9850701952,18.9821563216,18.9792424479,18.9763285742,18.9734147006,18.9705008269,18.9675869532,18.9646730795,18.9617592059,18.9588453322,18.9559314585,18.9530175849,18.9501037112,18.9471898375,18.9442759639,18.9413620902,18.9384482165,18.9355343428,18.9326204692,18.9297065955,18.9267927218,18.9238788482,18.9209649745,18.9180511008,18.9151372272,18.9122233535,18.9093094798,18.9063956061,18.9034817325,18.9005678588,18.8976539851,18.8947401115,18.8918262378,18.8889123641,18.8859984905,18.8830846168,18.8801707431,18.8772568695,18.8743429958,18.8714291221,18.8685152484,18.8656013748,18.8626875011,18.8597736274,18.8568597538,18.8539458801,18.8510320064,18.8481181328,18.8452042591,18.8422903854,18.8393765117,18.8364626381,18.8335487644,18.8306348907,18.8277210171,18.8248071434,18.8218932697,18.8189793961,18.8160655224,18.8131516487,18.810237775,18.8073239014,18.8044100277,18.801496154,18.7985822804,18.7956684067,18.792754533,18.7898406594,18.7869267857,18.784012912,18.7810990383,18.7781851647,18.775271291,18.7723574173,18.7694435437,18.76652967,18.7636157963,18.7607019227,18.757788049,18.7548741753,18.7519603016,18.749046428,18.7461325543,18.7432186806,18.740304807,18.7373909333,18.7344770596,18.731563186,18.7286493123,18.7257354386,18.7228215649,18.7199076913,18.7169938176,18.7140799439,18.7111660703,18.7082521966,18.7053383229,18.7024244493,18.6995105756,18.6965967019,18.6936828283,18.6907689546,18.6878550809,18.6849412072,18.6820273336,18.6791134599,18.6761995862,18.6732857126,18.6703718389,18.6674579652,18.6645440916,18.6616302179,18.6587163442,18.6558024705,18.6528885969,18.6499747232,18.6470608495,18.6441469759,18.6412331022,18.6383192285,18.6354053549,18.6324914812,18.6295776075,18.6266637338,18.6237498602,18.6208359865,18.6179221128,18.6150082392,18.6120943655,18.6091804918,18.6062666182,18.6033527445,18.6004388708,18.5975249971,18.5946111235,18.5916972498,18.5887833761,18.5858695025,18.5829556288,18.5800417551,18.5771278815,18.5742140078,18.5713001341,18.5683862604,18.5654723868,18.5625585131,18.5596446394,18.5567307658,18.5538168921,18.5509030184,18.5479891448,18.5450752711,18.5421613974,18.5392475237,18.5363336501,18.5334197764,18.5305059027,18.5275920291,18.5246781554,18.5217642817,18.5188504081,18.5159365344,18.5130226607,18.5101087871,18.5071949134,18.5042810397,18.501367166,18.4984532924,18.4955394187,18.492625545,18.4897116714,18.4867977977,18.483883924,18.4809700504,18.4780561767,18.475142303,18.4722284293,18.4693145557,18.466400682,18.4634868083,18.4605729347,18.457659061,18.4547451873,18.4518313137,18.44891744,18.4460035663,18.4430896926,18.440175819,18.4372619453,18.4343480716,18.431434198,18.4285203243,18.4256064506,18.422692577,18.4197787033,18.4168648296,18.4139509559,18.4110370823,18.4081232086,18.4052093349,18.4022954613,18.3993815876,18.3964677139,18.3935538403,18.3906399666,18.3877260929,18.3848122192,18.3818983456,18.3789844719,18.3760705982,18.3731567246,18.3702428509,18.3673289772,18.3644151036,18.3615012299,18.3585873562,18.3556734825,18.3527596089,18.3498457352,18.3469318615,18.3440179879,18.3411041142,18.3381902405,18.3352763669,18.3323624932,18.3294486195,18.3265347459,18.3236208722,18.3207069985,18.3177931248,18.3148792512,18.3119653775,18.3090515038,18.3061376302,18.3032237565,18.3003098828,18.2973960092,18.2944821355,18.2915682618,18.2886543881,18.2857405145,18.2828266408,18.2799127671,18.2769988935,18.2740850198,18.2711711461,18.2682572725,18.2653433988,18.2624295251,18.2595156514,18.2566017778,18.2536879041,18.2507740304,18.2478601568,18.2449462831,18.2420324094,18.2391185358,18.2362046621,18.2332907884,18.2303769147,18.2274630411,18.2245491674,18.2216352937,18.2187214201,18.2158075464,18.2128936727,18.2099797991,18.2070659254,18.2041520517,18.201238178,18.1983243044,18.1954104307,18.192496557,18.1895826834,18.1866688097,18.183754936,18.1808410624,18.1779271887,18.175013315,18.1720994413,18.1691855677,18.166271694,18.1633578203,18.1604439467,18.157530073,18.1546161993,18.1517023257,18.148788452,18.1458745783,18.1429607047,18.140046831,18.1371329573,18.1342190836,18.13130521,18.1283913363,18.1254774626,18.122563589,18.1196497153,18.1167358416,18.113821968,18.1109080943,18.1079942206,18.1050803469,18.1021664733,18.0992525996,18.0963387259,18.0934248523,18.0905109786,18.0875971049,18.0846832313,18.0817693576,18.0788554839,18.0759416102,18.0730277366,18.0701138629,18.0671999892,18.0642861156,18.0613722419,18.0584583682,18.0555444946,18.0526306209,18.0497167472,18.0468028735,18.0438889999,18.0409751262,18.0380612525,18.0351473789,18.0322335052,18.0293196315,18.0264057579,18.0234918842,18.0205780105,18.0176641368,18.0147502632,18.0118363895,18.0089225158,18.0060086422,18.0030947685,18.0001808948,17.9972670212,17.9943531475,17.9914392738,17.9885254001,17.9856115265,17.9826976528,17.9797837791,17.9768699055,17.9739560318,17.9710421581,17.9681282845,17.9652144108,17.9623005371,17.9593866635,17.9564727898,17.9535589161,17.9506450424,17.9477311688,17.9448172951,17.9419034214,17.9389895478,17.9360756741,17.9331618004,17.9302479268,17.9273340531,17.9244201794,17.9215063057,17.9185924321,17.9156785584,17.9127646847,17.9098508111,17.9069369374,17.9040230637,17.9011091901,17.8981953164,17.8952814427,17.892367569,17.8894536954,17.8865398217,17.883625948,17.8807120744,17.8777982007,17.874884327,17.8719704534,17.8690565797,17.866142706,17.8632288323,17.8603149587,17.857401085,17.8544872113,17.8515733377,17.848659464,17.8457455903,17.8428317167,17.839917843,17.8370039693,17.8340900956,17.831176222,17.8282623483,17.8253484746,17.822434601,17.8195207273,17.8166068536,17.81369298,17.8107791063,17.8078652326,17.8049513589,17.8020374853,17.7982976414,17.7945577974,17.7908179535,17.7870781096,17.7833382657,17.7795984218,17.7758585778,17.7721187339,17.76837889,17.7646390461,17.7608992022,17.7571593582,17.7534195143,17.7496796704,17.7459398265,17.7421999826,17.7384601386,17.7347202947,17.7309804508,17.7272406069,17.723500763,17.719760919,17.7160210751,17.7122812312,17.7085413873,17.7048015434,17.7010616994,17.6973218555,17.6935820116,17.6898421677,17.6861023238,17.6823624798,17.6786226359,17.674882792,17.6711429481,17.6674031042,17.6636632602,17.6599234163,17.6561835724,17.6524437285,17.6487038846,17.6449640406,17.6412241967,17.6374843528,17.6337445089,17.630004665,17.626264821,17.6225249771,17.6187851332,17.6150452893,17.6113054454,17.6075656014,17.6038257575,17.6000859136,17.5963460697,17.5926062258,17.5888663818,17.5851265379,17.581386694,17.5776468501,17.5739070062,17.5701671622,17.5664273183,17.5626874744,17.5589476305,17.5552077866,17.5514679426,17.5477280987,17.5439882548,17.5402484109,17.536508567,17.532768723,17.5290288791,17.5252890352,17.5215491913,17.5178093474,17.5140695034,17.5103296595,17.5065898156,17.5028499717,17.4991101278,17.4953702838,17.4916304399,17.487890596,17.4841507521,17.4804109082,17.4766710642,17.4729312203,17.4691913764,17.4654515325,17.4617116886,17.4579718446,17.4542320007,17.4504921568,17.4467523129,17.443012469,17.439272625,17.4355327811,17.4317929372,17.4280530933,17.4243132494,17.4205734054,17.4168335615,17.4130937176,17.4093538737,17.4056140298,17.4018741858,17.3981343419,17.394394498,17.3906546541,17.3869148102,17.3831749662,17.3794351223,17.3756952784,17.3719554345,17.3682155906,17.3644757466,17.3607359027,17.3569960588,17.3532562149,17.349516371,17.345776527,17.3420366831,17.3382968392,17.3345569953,17.3308171514,17.3270773074,17.3233374635,17.3195976196,17.3158577757,17.3121179318,17.3083780878,17.3046382439,17.3008984,17.2971585561,17.2934187122,17.2896788682,17.2859390243,17.2821991804,17.2784593365,17.2747194926,17.2709796486,17.2672398047,17.2634999608,17.2597601169,17.256020273,17.252280429,17.2485405851,17.2448007412,17.2410608973,17.2373210534,17.2335812094,17.2298413655,17.2261015216,17.2223616777,17.2186218338,17.2148819898,17.2111421459,17.207402302,17.2036624581,17.1999226142,17.1961827702,17.1924429263,17.1887030824,17.1849632385,17.1812233946,17.1774835506,17.1737437067,17.1700038628,17.1662640189,17.162524175,17.158784331,17.1550444871,17.1513046432,17.1475647993,17.1438249554,17.1400851114,17.1363452675,17.1326054236,17.1288655797,17.1251257358,17.1213858918,17.1176460479,17.113906204,17.1101663601,17.1064265162,17.1026866722,17.0989468283,17.0952069844,17.0914671405,17.0877272966,17.0839874526,17.0802476087,17.0765077648,17.0727679209,17.069028077,17.065288233,17.0615483891,17.0578085452,17.0540687013,17.0503288574,17.0465890134,17.0428491695,17.0391093256,17.0353694817,17.0316296378,17.0278897938,17.0241499499,17.020410106,17.0166702621,17.0129304182,17.0091905742,17.0054507303,17.0017108864,16.9979710425,16.9942311986,16.9904913546,16.9867515107,16.9830116668,16.9792718229,16.975531979,16.971792135,16.9680522911,16.9643124472,16.9605726033,16.9568327594,16.9530929154,16.9493530715,16.9456132276,16.9418733837,16.9381335398,16.9343936958,16.9306538519,16.926914008,16.9231741641,16.9194343202,16.9156944762,16.9119546323,16.9082147884,16.9044749445,16.9007351006,16.8969952566,16.8932554127,16.8895155688,16.8857757249,16.882035881,16.878296037,16.8745561931,16.8708163492,16.8670765053,16.8633366614,16.8595968174,16.8558569735,16.8521171296,16.8483772857,16.8446374418,16.8408975978,16.8371577539,16.83341791,16.8296780661,16.8259382222,16.8221983782,16.8184585343,16.8147186904,16.8109788465,16.8072390026,16.8034991586,16.7997593147,16.7960194708,16.7922796269,16.788539783,16.784799939,16.7810600951,16.7773202512,16.7735804073,16.7698405634,16.7661007194,16.7623608755,16.7586210316,16.7548811877,16.7511413438,16.7474014998,16.7436616559,16.739921812,16.7361819681,16.7324421242,16.7287022802,16.7249624363,16.7212225924,16.7174827485,16.7137429046,16.7100030606,16.7062632167,16.7025233728,16.6987835289,16.695043685,16.691303841,16.6875639971,16.6838241532,16.6800843093,16.6763444654,16.6726046214,16.6688647775,16.6651249336,16.6613850897,16.6576452457,16.6539054018,16.6501655579,16.646425714,16.6426858701,16.6389460261,16.6352061822,16.6314663383,16.6277264944,16.6239866505,16.6202468065,16.6165069626,16.6127671187,16.6090272748,16.6052874309,16.6015475869,16.597807743,16.5940678991,16.5903280552,16.5865882113,16.5828483673,16.5791085234,16.5753686795,16.5716288356,16.5678889917,16.5641491477,16.5604093038,16.5566694599,16.552929616,16.5491897721,16.5454499281,16.5417100842,16.5379702403,16.5342303964,16.5304905525,16.5267507085,16.5230108646,16.5192710207,16.5155311768,16.5117913329,16.5080514889,16.504311645,16.5005718011,16.4968319572,16.4930921133,16.4893522693,16.4856124254,16.4818725815,16.4781327376,16.4743928937,16.4706530497,16.4669132058,16.4631733619,16.459433518,16.4556936741,16.4519538301,16.4482139862,16.4444741423,16.4407342984,16.4369944545,16.4332546105,16.4295147666,16.4257749227,16.4220350788,16.4182952349,16.4145553909,16.410815547,16.4070757031,16.4033358592,16.3995960153,16.3958561713,16.3921163274,16.3883764835,16.3846366396,16.3808967957,16.3771569517,16.3734171078,16.3696772639,16.36593742,16.3621975761,16.3584577321,16.3547178882,16.3509780443,16.3472382004,16.3434983565,16.3397585125,16.3360186686,16.3322788247,16.3285389808,16.3247991369,16.3210592929,16.317319449,16.3135796051,16.3098397612,16.3060999173,16.3023600733,16.2986202294,16.2948803855,16.2911405416,16.2874006977,16.2836608537,16.2799210098,16.2761811659,16.272441322,16.2687014781,16.2649616341,16.2612217902,16.2574819463,16.2537421024,16.2500022585,16.2462624145,16.2425225706,16.2387827267,16.2350428828,16.2313030389,16.2275631949,16.223823351,16.2200835071,16.2163436632,16.2126038193,16.2088639753,16.2051241314,16.2013842875,16.1976444436,16.1939045997,16.1901647557,16.1864249118,16.1826850679,16.178945224,16.1752053801,16.1714655361,16.1677256922,16.1639858483,16.1602460044,16.1565061605,16.1527663165,16.1490264726,16.1452866287,16.1415467848,16.1378069409,16.1340670969,16.130327253,16.1265874091,16.1228475652,16.1191077213,16.1153678773,16.1116280334,16.1078881895,16.1041483456,16.1004085017,16.0966686577,16.0929288138,16.0891889699,16.085449126,16.0817092821,16.0779694381,16.0742295942,16.0704897503,16.0667499064,16.0630100625,16.0592702185,16.0555303746,16.0517905307,16.0480506868,16.0443108429,16.0405709989,16.036831155,16.0330913111,16.0293514672,16.0256116233,16.0218717793,16.0181319354,16.0143920915,16.0106522476,16.0069124037,16.0031725597,15.9994327158,15.9956928719,15.991953028,15.9882131841,15.9844733401,15.9807334962,15.9769936523,15.9732538084,15.9695139645,15.9657741205,15.9620342766,15.9582944327,15.9545545888,15.9508147449,15.9470749009,15.943335057,15.9395952131,15.9358553692,15.9321155253,15.9283756813,15.9246358374,15.9208959935,15.9171561496,15.9134163057,15.9096764617,15.9059366178,15.9021967739,15.89845693,15.8947170861,15.8909772421,15.8872373982,15.8834975543,15.8797577104,15.8760178665,15.8722780225,15.8685381786,15.8647983347,15.8610584908,15.8573186469,15.8535788029,15.849838959,15.8460991151,15.8423592712,15.8386194273,15.8348795833,15.8311397394,15.8273998955,15.8236600516,15.8199202077,15.8161803637,15.8124405198,15.8087006759,15.804960832,15.8012209881,15.7974811441,15.7937413002,15.7900014563,15.7862616124,15.7825217685,15.7787819245,15.7750420806,15.7713022367,15.7675623928,15.7638225489,15.7600827049,15.756342861,15.7526030171,15.7488631732,15.7451233293,15.7413834853,15.7376436414,15.7339037975,15.7301639536,15.7264241097,15.7226842657,15.7189444218,15.7152045779,15.711464734,15.7077248901,15.7039850461,15.7002452022,15.6965053583,15.6927655144,15.6890256705,15.6852858265,15.6815459826,15.6778061387,15.6740662948,15.6703264509,15.6665866069,15.662846763,15.6591069191,15.6553670752,15.6516272313,15.6478873873,15.6441475434,15.6404076995,15.6366678556,15.6329280117,15.6291881677,15.6254483238,15.6217084799,15.617968636,15.6142287921,15.6104889481,15.6067491042,15.6030092603,15.5992694164,15.5955295725,15.5917897285,15.5880498846,15.5843100407,15.5805701968,15.5768303529,15.5730905089,15.569350665,15.5656108211,15.5618709772,15.5581311333,15.5543912893,15.5506514454,15.5469116015,15.5431717576,15.5393076675,15.5354435775,15.5315794874,15.5277153974,15.5238513074,15.5199872173,15.5161231273,15.5122590372,15.5083949472,15.5045308571,15.5006667671,15.496802677,15.492938587,15.4890744969,15.4852104069,15.4813463169,15.4774822268,15.4736181368,15.4697540467,15.4658899567,15.4620258666,15.4581617766,15.4542976865,15.4504335965,15.4465695064,15.4427054164,15.4388413264,15.4349772363,15.4311131463,15.4272490562,15.4233849662,15.4195208761,15.4156567861,15.411792696,15.407928606,15.4040645159,15.4002004259,15.3963363359,15.3924722458,15.3886081558,15.3847440657,15.3808799757,15.3770158856,15.3731517956,15.3692877055,15.3654236155,15.3615595254,15.3576954354,15.3538313454,15.3499672553,15.3461031653,15.3422390752,15.3383749852,15.3345108951,15.3306468051,15.326782715,15.322918625,15.3190545349,15.3151904449,15.3113263549,15.3074622648,15.3035981748,15.2997340847,15.2958699947,15.2920059046,15.2881418146,15.2842777245,15.2804136345,15.2765495444,15.2726854544,15.2688213644,15.2649572743,15.2610931843,15.2572290942,15.2533650042,15.2495009141,15.2456368241,15.241772734,15.237908644,15.2340445539,15.2301804639,15.2263163739,15.2224522838,15.2185881938,15.2147241037,15.2108600137,15.2069959236,15.2031318336,15.1992677435,15.1954036535,15.1915395634,15.1876754734,15.1838113834,15.1799472933,15.1760832033,15.1722191132,15.1683550232,15.1644909331,15.1606268431,15.156762753,15.152898663,15.1490345729,15.1451704829,15.1413063929,15.1374423028,15.1335782128,15.1297141227,15.1258500327,15.1219859426,15.1181218526,15.1142577625,15.1103936725,15.1065295824,15.1026654924,15.0988014024,15.0949373123,15.0910732223,15.0872091322,15.0833450422,15.0794809521,15.0756168621,15.071752772,15.067888682,15.0640245919,15.0601605019,15.0562964119,15.0524323218,15.0485682318,15.0447041417,15.0408400517,15.0369759616,15.0331118716,15.0292477815,15.0253836915,15.0215196014,15.0176555114,15.0137914214,15.0099273313,15.0060632413,15.0021991512,14.9983350612,14.9944709711,14.9906068811,14.986742791,14.982878701,14.9790146109,14.9751505209,14.9712864309,14.9674223408,14.9635582508,14.9596941607,14.9558300707,14.9519659806,14.9481018906,14.9442378005,14.9403737105,14.9365096204,14.9326455304,14.9287814404,14.9249173503,14.9210532603,14.9171891702,14.9133250802,14.9094609901,14.9055969001,14.90173281,14.89786872,14.8940046299,14.8901405399,14.8862764499,14.8824123598,14.8785482698,14.8746841797,14.8708200897,14.8669559996,14.8630919096,14.8592278195,14.8553637295,14.8514996394,14.8476355494,14.8437714594,14.8399073693,14.8360432793,14.8321791892,14.8283150992,14.8244510091,14.8205869191,14.816722829,14.812858739,14.8089946489,14.8051305589,14.8012664689,14.7974023788,14.7935382888,14.7896741987,14.7858101087,14.7819460186,14.7780819286,14.7742178385,14.7703537485,14.7664896584,14.7626255684,14.7587614784,14.7548973883,14.7510332983,14.7471692082,14.7433051182,14.7394410281,14.7355769381,14.731712848,14.727848758,14.7239846679,14.7201205779,14.7162564879,14.7123923978,14.7085283078,14.7046642177,14.7008001277,14.6969360376,14.6930719476,14.6892078575,14.6853437675,14.6814796774,14.6776155874,14.6737514974,14.6698874073,14.6660233173,14.6621592272,14.6582951372,14.6544310471,14.6505669571,14.646702867,14.642838777,14.6389746869,14.6351105969,14.6312465069,14.6273824168,14.6235183268,14.6196542367,14.6157901467,14.6119260566,14.6080619666,14.6041978765,14.6003337865,14.5964696964,14.5926056064,14.5887415164,14.5848774263,14.5810133363,14.5771492462,14.5732851562,14.5694210661,14.5655569761,14.561692886,14.557828796,14.5539647059,14.5501006159,14.5462365259,14.5423724358,14.5385083458,14.5346442557,14.5307801657,14.5269160756,14.5230519856,14.5191878955,14.5153238055,14.5114597154,14.5075956254,14.5037315354,14.4998674453,14.4960033553,14.4921392652,14.4882751752,14.4844110851,14.4805469951,14.476682905,14.472818815,14.4689547249,14.4650906349,14.4612265449,14.4573624548,14.4534983648,14.4496342747,14.4457701847,14.4419060946,14.4380420046,14.4341779145,14.4303138245,14.4264497344,14.4225856444,14.4187215544,14.4148574643,14.4109933743,14.4071292842,14.4032651942,14.3994011041,14.3955370141,14.391672924,14.387808834,14.3839447439,14.3800806539,14.3762165639,14.3723524738,14.3684883838,14.3646242937,14.3607602037,14.3568961136,14.3530320236,14.3491679335,14.3453038435,14.3414397534,14.3375756634,14.3337115734,14.3298474833,14.3259833933,14.3221193032,14.3182552132,14.3143911231,14.3105270331,14.306662943,14.302798853,14.2989347629,14.2950706729,14.2912065829,14.2873424928,14.2834784028,14.2796143127,14.2757502227,14.2718861326,14.2680220426,14.2641579525,14.2602938625,14.2564297724,14.2525656824,14.2487015924,14.2448375023,14.2409734123,14.2371093222,14.2332452322,14.2293811421,14.2255170521,14.221652962,14.217788872,14.2139247819,14.2100606919,14.2061966019,14.2023325118,14.1984684218,14.1946043317,14.1907402417,14.1868761516,14.1830120616,14.1791479715,14.1752838815,14.1714197914,14.1675557014,14.1636916114,14.1598275213,14.1559634313,14.1520993412,14.1482352512,14.1443711611,14.1405070711,14.136642981,14.132778891,14.1289148009,14.1250507109,14.1211866209,14.1173225308,14.1134584408,14.1095943507,14.1057302607,14.1018661706,14.0980020806,14.0941379905,14.0902739005,14.0864098104,14.0825457204,14.0786816304,14.0748175403,14.0709534503,14.0670893602,14.0632252702,14.0593611801,14.0554970901,14.051633,14.04776891,14.0439048199,14.0400407299,14.0361766399,14.0323125498,14.0284484598,14.0245843697,14.0207202797,14.0168561896,14.0129920996,14.0091280095,14.0052639195,14.0013998294,13.9975357394,13.9936716494,13.9898075593,13.9859434693,13.9820793792,13.9782152892,13.9743511991,13.9704871091,13.966623019,13.962758929,13.958894839,13.9550307489,13.9511666589,13.9473025688,13.9434384788,13.9395743887,13.9357102987,13.9318462086,13.9279821186,13.9241180285,13.9202539385,13.9163898485,13.9125257584,13.9086616684,13.9047975783,13.9009334883,13.8970693982,13.8932053082,13.8893412181,13.8854771281,13.881613038,13.877748948,13.873884858,13.8700207679,13.8661566779,13.8622925878,13.8584284978,13.8545644077,13.8507003177,13.8468362276,13.8429721376,13.8391080475,13.8352439575,13.8313798675,13.8275157774,13.8236516874,13.8197875973,13.8159235073,13.8120594172,13.8081953272,13.8043312371,13.8004671471,13.796603057,13.792738967,13.788874877,13.7850107869,13.7811466969,13.7772826068,13.7734185168,13.7695544267,13.7656903367,13.7618262466,13.7579621566,13.7540980665,13.7502339765,13.7463698865,13.7425057964,13.7386417064,13.7347776163,13.7309135263,13.7270494362,13.7231853462,13.7193212561,13.7154571661,13.711593076,13.707728986,13.703864896,13.7000008059,13.6961367159,13.6922726258,13.6884085358,13.6845444457,13.6806803557,13.6768162656,13.6729521756,13.6690880855,13.6652239955,13.6613599055,13.6574958154,13.6536317254,13.6497676353,13.6459035453,13.6420394552,13.6381753652,13.6343112751,13.6304471851,13.626583095,13.622719005,13.618854915,13.6149908249,13.6111267349,13.6072626448,13.6033985548,13.5995344647,13.5956703747,13.5918062846,13.5879421946,13.5840781045,13.5802140145,13.5763499245,13.5724858344,13.5686217444,13.5647576543,13.5608935643,13.5570294742,13.5531653842,13.5493012941,13.5454372041,13.541573114,13.537709024,13.533844934,13.5299808439,13.5261167539,13.5222526638,13.5183885738,13.5145244837,13.5106603937,13.5067963036,13.5029322136,13.4990681235,13.4952040335,13.4913399435,13.4874758534,13.4836117634,13.4797476733,13.4758835833,13.4720194932,13.4681554032,13.4642913131,13.4604272231,13.456563133,13.452699043,13.448834953,13.4449708629,13.4411067729,13.4372426828,13.4333785928,13.4295145027,13.4256504127,13.4217863226,13.4179222326,13.4140581425,13.4101940525,13.4063299625,13.4024658724,13.3986017824,13.3947376923,13.3908736023,13.3870095122,13.3831454222,13.3792813321,13.3754172421,13.371553152,13.367689062,13.363824972,13.3599608819,13.3560967919,13.3522327018,13.3483686118,13.3445045217,13.3406404317,13.3367763416,13.3329122516,13.3290481615,13.3251840715,13.3213199815,13.3174558914,13.3135918014,13.3097277113,13.3058636213,13.3019995312,13.2981354412,13.2942713511,13.2904072611,13.286543171,13.282679081,13.278814991,13.2749509009,13.2710868109,13.2672227208,13.2633586308,13.2594945407,13.2556304507,13.2517663606,13.2479022706,13.2440381805,13.2401740905,13.2363100005,13.2324459104,13.2285818204,13.2247177303,13.2208536403,13.2169895502,13.2131254602,13.2092613701,13.2063853928,13.2035094154,13.200633438,13.1977574607,13.1948814833,13.1920055059,13.1891295285,13.1862535512,13.1833775738,13.1805015964,13.1776256191,13.1747496417,13.1718736643,13.168997687,13.1661217096,13.1632457322,13.1603697549,13.1574937775,13.1546178001,13.1517418227,13.1488658454,13.145989868,13.1431138906,13.1402379133,13.1373619359,13.1344859585,13.1316099812,13.1287340038,13.1258580264,13.1229820491,13.1201060717,13.1172300943,13.1143541169,13.1114781396,13.1086021622,13.1057261848,13.1028502075,13.0999742301,13.0970982527,13.0942222754,13.091346298,13.0884703206,13.0855943432,13.0827183659,13.0798423885,13.0769664111,13.0740904338,13.0712144564,13.068338479,13.0654625017,13.0625865243,13.0597105469,13.0568345696,13.0539585922,13.0510826148,13.0482066374,13.0453306601,13.0424546827,13.0395787053,13.036702728,13.0338267506,13.0309507732,13.0280747959,13.0251988185,13.0223228411,13.0194468638,13.0165708864,13.013694909,13.0108189316,13.0079429543,13.0050669769,13.0021909995,12.9993150222,12.9964390448,12.9935630674,12.9906870901,12.9878111127,12.9849351353,12.9820591579,12.9791831806,12.9763072032,12.9734312258,12.9705552485,12.9676792711,12.9648032937,12.9619273164,12.959051339,12.9561753616,12.9532993843,12.9504234069,12.9475474295,12.9446714521,12.9417954748,12.9389194974,12.93604352,12.9331675427,12.9302915653,12.9274155879,12.9245396106,12.9216636332,12.9187876558,12.9159116785,12.9130357011,12.9101597237,12.9072837463,12.904407769,12.9015317916,12.8986558142,12.8957798369,12.8929038595,12.8900278821,12.8871519048,12.8842759274,12.88139995,12.8785239726,12.8756479953,12.8727720179,12.8698960405,12.8670200632,12.8641440858,12.8612681084,12.8583921311,12.8555161537,12.8526401763,12.849764199,12.8468882216,12.8440122442,12.8411362668,12.8382602895,12.8353843121,12.8325083347,12.8296323574,12.82675638,12.8238804026,12.8210044253,12.8181284479,12.8152524705,12.8123764932,12.8095005158,12.8066245384,12.803748561,12.8008725837,12.7979966063,12.7951206289,12.7922446516,12.7893686742,12.7864926968,12.7836167195,12.7807407421,12.7778647647,12.7749887873,12.77211281,12.7692368326,12.7663608552,12.7634848779,12.7606089005,12.7577329231,12.7548569458,12.7519809684,12.749104991,12.7462290137,12.7433530363,12.7404770589,12.7376010815,12.7347251042,12.7318491268,12.7289731494,12.7260971721,12.7232211947,12.7203452173,12.71746924,12.7145932626,12.7117172852,12.7088413079,12.7059653305,12.7030893531,12.7002133757,12.6973373984,12.694461421,12.6915854436,12.6887094663,12.6858334889,12.6829575115,12.6800815342,12.6772055568,12.6743295794,12.671453602,12.6685776247,12.6657016473,12.6628256699,12.6599496926,12.6570737152,12.6541977378,12.6513217605,12.6484457831,12.6455698057,12.6426938284,12.639817851,12.6369418736,12.6340658962,12.6311899189,12.6283139415,12.6254379641,12.6225619868,12.6196860094,12.616810032,12.6139340547,12.6110580773,12.6081820999,12.6053061226,12.6024301452,12.5995541678,12.5966781904,12.5938022131,12.5909262357,12.5880502583,12.585174281,12.5822983036,12.5794223262,12.5765463489,12.5736703715,12.5707943941,12.5679184167,12.5650424394,12.562166462,12.5592904846,12.5564145073,12.5535385299,12.5506625525,12.5477865752,12.5449105978,12.5420346204,12.5391586431,12.5362826657,12.5334066883,12.5305307109,12.5276547336,12.5247787562,12.5219027788,12.5190268015,12.5161508241,12.5132748467,12.5103988694,12.507522892,12.5046469146,12.5017709373,12.4988949599,12.4960189825,12.4931430051,12.4902670278,12.4873910504,12.484515073,12.4816390957,12.4787631183,12.4758871409,12.4730111636,12.4701351862,12.4672592088,12.4643832314,12.4615072541,12.4586312767,12.4557552993,12.452879322,12.4500033446,12.4471273672,12.4442513899,12.4413754125,12.4384994351,12.4356234578,12.4327474804,12.429871503,12.4269955256,12.4241195483,12.4212435709,12.4183675935,12.4154916162,12.4126156388,12.4097396614,12.4068636841,12.4039877067,12.4011117293,12.398235752,12.3953597746,12.3924837972,12.3896078198,12.3867318425,12.3838558651,12.3809798877,12.3781039104,12.375227933,12.3723519556,12.3694759783,12.3666000009,12.3637240235,12.3608480461,12.3579720688,12.3550960914,12.352220114,12.3493441367,12.3464681593,12.3435921819,12.3407162046,12.3378402272,12.3349642498,12.3320882725,12.3292122951,12.3263363177,12.3234603403,12.320584363,12.3177083856,12.3148324082,12.3119564309,12.3090804535,12.3062044761,12.3033284988,12.3004525214,12.297576544,12.2947005667,12.2918245893,12.2889486119,12.2860726345,12.2831966572,12.2803206798,12.2774447024,12.2745687251,12.2716927477,12.2688167703,12.265940793,12.2630648156,12.2601888382,12.2573128608,12.2544368835,12.2515609061,12.2486849287,12.2458089514,12.242932974,12.2400569966,12.2371810193,12.2343050419,12.2314290645,12.2285530872,12.2256771098,12.2228011324,12.219925155,12.2170491777,12.2141732003,12.2112972229,12.2084212456,12.2055452682,12.2026692908,12.1997933135,12.1969173361,12.1940413587,12.1911653814,12.188289404,12.1854134266,12.1825374492,12.1796614719,12.1767854945,12.1739095171,12.1710335398,12.1681575624,12.165281585,12.1624056077,12.1595296303,12.1566536529,12.1537776755,12.1509016982,12.1480257208,12.1451497434,12.1422737661,12.1393977887,12.1365218113,12.133645834,12.1307698566,12.1278938792,12.1250179019,12.1221419245,12.1192659471,12.1163899697,12.1135139924,12.110638015,12.1077620376,12.1048860603,12.1020100829,12.0991341055,12.0962581282,12.0933821508,12.0905061734,12.0876301961,12.0847542187,12.0818782413,12.0790022639,12.0761262866,12.0732503092,12.0703743318,12.0674983545,12.0646223771,12.0617463997,12.0588704224,12.055994445,12.0531184676,12.0502424902,12.0473665129,12.0444905355,12.0416145581,12.0387385808,12.0358626034,12.032986626,12.0301106487,12.0272346713,12.0243586939,12.0214827166,12.0186067392,12.0157307618,12.0128547844,12.0099788071,12.0071028297,12.0042268523,12.001350875,11.9984748976,11.9955989202,11.9927229429,11.9898469655,11.9869709881,11.9840950108,11.9812190334,11.978343056,11.9754670786,11.9725911013,11.9697151239,11.9668391465,11.9639631692,11.9610871918,11.9582112144,11.9553352371,11.9524592597,11.9495832823,11.9467073049,11.9438313276,11.9409553502,11.9380793728,11.9352033955,11.9323274181,11.9294514407,11.9265754634,11.923699486,11.9208235086,11.9179475313,11.9150715539,11.9121955765,11.9093195991,11.9064436218,11.9035676444,11.900691667,11.8978156897,11.8949397123,11.8920637349,11.8891877576,11.8863117802,11.8834358028,11.8805598255,11.8776838481,11.8748078707,11.8719318933,11.869055916,11.8661799386,11.8633039612,11.8604279839,11.8575520065,11.8546760291,11.8518000518,11.8489240744,11.846048097,11.8431721196,11.8402961423,11.8374201649,11.8345441875,11.8316682102,11.8287922328,11.8259162554,11.8230402781,11.8201643007,11.8172883233,11.814412346,11.8115363686,11.8086603912,11.8057844138,11.8029084365,11.8000324591,11.7971564817,11.7942805044,11.791404527,11.7885285496,11.7856525723,11.7827765949,11.7799006175,11.7770246402,11.7741486628,11.7712726854,11.768396708,11.7655207307,11.7626447533,11.7597687759,11.7568927986,11.7540168212,11.7511408438,11.7482648665,11.7453888891,11.7425129117,11.7396369343,11.736760957,11.7338849796,11.7310090022,11.7281330249,11.7252570475,11.7223810701,11.7195050928,11.7166291154,11.713753138,11.7108771607,11.7080011833,11.7051252059,11.7022492285,11.6993732512,11.6964972738,11.6936212964,11.6907453191,11.6878693417,11.6849933643,11.682117387,11.6792414096,11.6763654322,11.6734894549,11.6706134775,11.6677375001,11.6648615227,11.6619855454,11.659109568,11.6562335906,11.6533576133,11.6504816359,11.6476056585,11.6447296812,11.6418537038,11.6389777264,11.636101749,11.6332257717,11.6303497943,11.6274738169,11.6245978396,11.6217218622,11.6188458848,11.6159699075,11.6130939301,11.6102179527,11.6073419754,11.604465998,11.6015900206,11.5987140432,11.5958380659,11.5929620885,11.5900861111,11.5872101338,11.5843341564,11.581458179,11.5785822017,11.5757062243,11.5728302469,11.5699542695,11.5670782922,11.5642023148,11.5613263374,11.5584503601,11.5555743827,11.5526984053,11.549822428,11.5469464506,11.5440704732,11.5411944959,11.5383185185,11.5354425411,11.5325665637,11.5296905864,11.526814609,11.5239386316,11.5210626543,11.5181866769,11.5153106995,11.5124347222,11.5095587448,11.5066827674,11.5038067901,11.5009308127,11.4980548353,11.4951788579,11.4923028806,11.4894269032,11.4865509258,11.4836749485,11.4807989711,11.4779229937,11.4750470164,11.472171039,11.4714728696,11.4707747001,11.4700765307,11.4693783613,11.4686801919,11.4679820224,11.467283853,11.4665856836,11.4658875142,11.4651893447,11.4644911753,11.4637930059,11.4630948365,11.462396667,11.4616984976,11.4610003282,11.4603021588,11.4596039893,11.4589058199,11.4582076505,11.4575094811,11.4568113116,11.4561131422,11.4554149728,11.4547168034,11.4540186339,11.4533204645,11.4526222951,11.4519241257,11.4512259562,11.4505277868,11.4498296174,11.449131448,11.4484332785,11.4477351091,11.4470369397,11.4463387703,11.4456406008,11.4449424314,11.444244262,11.4435460926,11.4428479231,11.4421497537,11.4414515843,11.4407534149,11.4400552454,11.439357076,11.4386589066,11.4379607372,11.4372625677,11.4365643983,11.4358662289,11.4351680595,11.43446989,11.4337717206,11.4330735512,11.4323753818,11.4316772123,11.4309790429,11.4302808735,11.4295827041,11.4288845346,11.4281863652,11.4274881958,11.4267900264,11.4260918569,11.4253936875,11.4246955181,11.4239973487,11.4232991792,11.4226010098,11.4219028404,11.421204671,11.4205065015,11.4198083321,11.4191101627,11.4184119933,11.4177138238,11.4170156544,11.416317485,11.4156193156,11.4149211461,11.4142229767,11.4135248073,11.4128266379,11.4121284684,11.411430299,11.4107321296,11.4100339602,11.4093357907,11.4086376213,11.4079394519,11.4072412825,11.406543113,11.4058449436,11.4051467742,11.4044486048,11.4037504353,11.4030522659,11.4023540965,11.4016559271,11.4009577576,11.4002595882,11.3995614188,11.3988632494,11.3981650799,11.3974669105,11.3967687411,11.3960705717,11.3953724022,11.3946742328,11.3939760634,11.393277894,11.3925797245,11.3918815551,11.3911833857,11.3904852163,11.3897870468,11.3890888774,11.388390708,11.3876925386,11.3869943691,11.3862961997,11.3855980303,11.3848998609,11.3842016914,11.383503522,11.3828053526,11.3821071832,11.3814090137,11.3807108443,11.3800126749,11.3793145055,11.378616336,11.3779181666,11.3772199972,11.3765218278,11.3758236583,11.3751254889,11.3744273195,11.3737291501,11.3730309806,11.3723328112,11.3716346418,11.3709364723,11.3702383029,11.3695401335,11.3688419641,11.3681437946,11.3674456252,11.3667474558,11.3660492864,11.3653511169,11.3646529475,11.3639547781,11.3632566087,11.3625584392,11.3618602698,11.3611621004,11.360463931,11.3597657615,11.3590675921,11.3583694227,11.3576712533,11.3569730838,11.3562749144,11.355576745,11.3548785756,11.3541804061,11.3534822367,11.3527840673,11.3520858979,11.3513877284,11.350689559,11.3499913896,11.3492932202,11.3485950507,11.3478968813,11.3471987119,11.3465005425,11.345802373,11.3451042036,11.3444060342,11.3437078648,11.3430096953,11.3423115259,11.3416133565,11.3409151871,11.3402170176,11.3395188482,11.3388206788,11.3381225094,11.3374243399,11.3367261705,11.3360280011,11.3353298317,11.3346316622,11.3339334928,11.3332353234,11.332537154,11.3318389845,11.3311408151,11.3304426457,11.3297444763,11.3290463068,11.3283481374,11.327649968,11.3269517986,11.3262536291,11.3255554597,11.3248572903,11.3241591209,11.3234609514,11.322762782,11.3220646126,11.3213664432,11.3206682737,11.3199701043,11.3192719349,11.3185737655,11.317875596,11.3171774266,11.3164792572,11.3157810878,11.3150829183,11.3143847489,11.3136865795,11.3129884101,11.3122902406,11.3115920712,11.3108939018,11.3101957324,11.3094975629,11.3087993935,11.3081012241,11.3074030547,11.3067048852,11.3060067158,11.3053085464,11.304610377,11.3039122075,11.3032140381,11.3025158687,11.3018176993,11.3011195298,11.3004213604,11.299723191,11.2990250216,11.2983268521,11.2976286827,11.2969305133,11.2962323439,11.2955341744,11.294836005,11.2941378356,11.2934396662,11.2927414967,11.2920433273,11.2913451579,11.2906469885,11.289948819,11.2892506496,11.2885524802,11.2878543108,11.2871561413,11.2864579719,11.2857598025,11.2850616331,11.2843634636,11.2836652942,11.2829671248,11.2822689554,11.2815707859,11.2808726165,11.2801744471,11.2794762777,11.2787781082,11.2780799388,11.2773817694,11.2766836,11.2759854305,11.2752872611,11.2745890917,11.2738909223,11.2731927528,11.2724945834,11.271796414,11.2710982446,11.2704000751,11.2697019057,11.2690037363,11.2683055669,11.2676073974,11.266909228,11.2662110586,11.2655128892,11.2648147197,11.2641165503,11.2634183809,11.2627202115,11.262022042,11.2613238726,11.2606257032,11.2599275338,11.2592293643,11.2585311949,11.2578330255,11.2571348561,11.2564366866,11.2557385172,11.2550403478,11.2543421784,11.2536440089,11.2529458395,11.2522476701,11.2515495007,11.2508513312,11.2501531618,11.2494549924,11.248756823,11.2480586535,11.2473604841,11.2466623147,11.2459641453,11.2452659758,11.2445678064,11.243869637,11.2431714676,11.2424732981,11.2417751287,11.2410769593,11.2403787899,11.2396806204,11.238982451,11.2382842816,11.2375861122,11.2368879427,11.2361897733,11.2354916039,11.2347934345,11.234095265,11.2333970956,11.2326989262,11.2320007568,11.2313025873,11.2306044179,11.2299062485,11.2292080791,11.2285099096,11.2278117402,11.2271135708,11.2264154014,11.2257172319,11.2250190625,11.2243208931,11.2236227237,11.2229245542,11.2222263848,11.2215282154,11.220830046,11.2201318765,11.2194337071,11.2187355377,11.2180373683,11.2173391988,11.2166410294,11.21594286,11.2152446906,11.2145465211,11.2138483517,11.2131501823,11.2124520129,11.2117538434,11.211055674,11.2103575046,11.2096593352,11.2089611657,11.2082629963,11.2075648269,11.2068666575,11.206168488,11.2054703186,11.2047721492,11.2040739798,11.2033758103,11.2026776409,11.2019794715,11.2012813021,11.2005831326,11.1998849632,11.1991867938,11.1984886244,11.1977904549,11.1970922855,11.1963941161,11.1956959467,11.1949977772,11.1942996078,11.1936014384,11.192903269,11.1922050995,11.1915069301,11.1908087607,11.1901105912,11.1894124218,11.1887142524,11.188016083,11.1873179135,11.1866197441,11.1859215747,11.1852234053,11.1845252358,11.1838270664,11.183128897,11.1824307276,11.1817325581,11.1810343887,11.1803362193,11.1796380499,11.1789398804,11.178241711,11.1775435416,11.1768453722,11.1761472027,11.1754490333,11.1747508639,11.1740526945,11.173354525,11.1726563556,11.1719581862,11.1712600168,11.1705618473,11.1698636779,11.1691655085,11.1684673391,11.1677691696,11.1670710002,11.1663728308,11.1656746614,11.1649764919,11.1642783225,11.1635801531,11.1628819837,11.1621838142,11.1614856448,11.1607874754,11.160089306,11.1593911365,11.1586929671,11.1579947977,11.1572966283,11.1565984588,11.1559002894,11.15520212,11.1545039506,11.1538057811,11.1531076117,11.1524094423,11.1517112729,11.1510131034,11.150314934,11.1496167646,11.1489185952,11.1482204257,11.1475222563,11.1468240869,11.1461259175,11.145427748,11.1447295786,11.1440314092,11.1433332398,11.1426350703,11.1419369009,11.1412387315,11.1405405621,11.1398423926,11.1391442232,11.1384460538,11.1377478844,11.1370497149,11.1363515455,11.1356533761,11.1349552067,11.1342570372,11.1335588678,11.1328606984,11.132162529,11.1314643595,11.1307661901,11.1300680207,11.1293698513,11.1286716818,11.1279735124,11.127275343,11.1265771736,11.1258790041,11.1251808347,11.1244826653,11.1237844959,11.1230863264,11.122388157,11.1216899876,11.1209918182,11.1202936487,11.1195954793,11.1188973099,11.1181991405,11.117500971,11.1168028016,11.1161046322,11.1154064628,11.1147082933,11.1140101239,11.1133119545,11.1126137851,11.1119156156,11.1112174462,11.1105192768,11.1098211074,11.1091229379,11.1084247685,11.1077265991,11.1070284297,11.1063302602,11.1056320908,11.1049339214,11.104235752,11.1035375825,11.1028394131,11.1021412437,11.1014430743,11.1007449048,11.1000467354,11.099348566,11.0986503966,11.0979522271,11.0972540577,11.0965558883,11.0958577189,11.0951595494,11.09446138,11.0937632106,11.0930650412,11.0923668717,11.0916687023,11.0909705329,11.0902723635,11.089574194,11.0888760246,11.0881778552,11.0874796858,11.0867815163,11.0860833469,11.0853851775,11.0846870081,11.0839888386,11.0832906692,11.0825924998,11.0818943304,11.0811961609,11.0804979915,11.0797998221,11.0791016527,11.0784034832,11.0777053138,11.0770071444,11.076308975,11.0756108055,11.0749126361,11.0742144667,11.0735162973,11.0728181278,11.0721199584,11.071421789,11.0707236196,11.0700254501,11.0693272807,11.0686291113,11.0679309419,11.0672327724,11.066534603,11.0658364336,11.0651382642,11.0644400947,11.0637419253,11.0630437559,11.0623455865,11.061647417,11.0609492476,11.0602510782,11.0595529088,11.0588547393,11.0581565699,11.0574584005,11.0567602311,11.0560620616,11.0553638922,11.0546657228,11.0539675534,11.0532693839,11.0525712145,11.0518730451,11.0511748757,11.0504767062,11.0522946354,11.0541125645,11.0559304936,11.0577484227,11.0595663519,11.061384281,11.0632022101,11.0650201393,11.0668380684,11.0686559975,11.0704739266,11.0722918558,11.0741097849,11.075927714,11.0777456432,11.0795635723,11.0813815014,11.0831994306,11.0850173597,11.0868352888,11.0886532179,11.0904711471,11.0922890762,11.0941070053,11.0959249345,11.0977428636,11.0995607927,11.1013787218,11.103196651,11.1050145801,11.1068325092,11.1086504384,11.1104683675,11.1122862966,11.1141042257,11.1159221549,11.117740084,11.1195580131,11.1213759423,11.1231938714,11.1250118005,11.1268297296,11.1286476588,11.1304655879,11.132283517,11.1341014462,11.1359193753,11.1377373044,11.1395552336,11.1413731627,11.1431910918,11.1450090209,11.1468269501,11.1486448792,11.1504628083,11.1522807375,11.1540986666,11.1559165957,11.1577345248,11.159552454,11.1613703831,11.1631883122,11.1650062414,11.1668241705,11.1686420996,11.1704600287,11.1722779579,11.174095887,11.1759138161,11.1777317453,11.1795496744,11.1813676035,11.1831855327,11.1850034618,11.1868213909,11.18863932,11.1904572492,11.1922751783,11.1940931074,11.1959110366,11.1977289657,11.1995468948,11.2013648239,11.2031827531,11.2050006822,11.2068186113,11.2086365405,11.2104544696,11.2122723987,11.2140903278,11.215908257,11.2177261861,11.2195441152,11.2213620444,11.2231799735,11.2249979026,11.2268158317,11.2286337609,11.23045169,11.2322696191,11.2340875483,11.2359054774,11.2377234065,11.2395413357,11.2413592648,11.2431771939,11.244995123,11.2468130522,11.2486309813,11.2504489104,11.2522668396,11.2540847687,11.2559026978,11.2577206269,11.2595385561,11.2613564852,11.2631744143,11.2649923435,11.2668102726,11.2686282017,11.2704461308,11.27226406,11.2740819891,11.2758999182,11.2777178474,11.2795357765,11.2813537056,11.2831716347,11.2849895639,11.286807493,11.2886254221,11.2904433513,11.2922612804,11.2940792095,11.2958971387,11.2977150678,11.2995329969,11.301350926,11.3031688552,11.3049867843,11.3068047134,11.3086226426,11.3104405717,11.3122585008,11.3140764299,11.3158943591,11.3177122882,11.3195302173,11.3213481465,11.3231660756,11.3249840047,11.3268019338,11.328619863,11.3304377921,11.3322557212,11.3340736504,11.3358915795,11.3377095086,11.3395274377,11.3413453669,11.343163296,11.3449812251,11.3467991543,11.3486170834,11.3504350125,11.3522529417,11.3540708708,11.3558887999,11.357706729,11.3595246582,11.3613425873,11.3631605164,11.3649784456,11.3667963747,11.3686143038,11.3704322329,11.3722501621,11.3740680912,11.3758860203,11.3777039495,11.3795218786,11.3813398077,11.3831577368,11.384975666,11.3867935951,11.3886115242,11.3904294534,11.3922473825,11.3940653116,11.3958832407,11.3977011699,11.399519099,11.4013370281,11.4031549573,11.4049728864,11.4067908155,11.4086087447,11.4104266738,11.4122446029,11.414062532,11.4158804612,11.4176983903,11.4195163194,11.4213342486,11.4231521777,11.4249701068,11.4267880359,11.4286059651,11.4304238942,11.4322418233,11.4340597525,11.4358776816,11.4376956107,11.4395135398,11.441331469,11.4431493981,11.4449673272,11.4467852564,11.4486031855,11.4504211146,11.4522390437,11.4540569729,11.455874902,11.4576928311,11.4595107603,11.4613286894,11.4631466185,11.4649645477,11.4667824768,11.4686004059,11.470418335,11.4722362642,11.4740541933,11.4758721224,11.4776900516,11.4795079807,11.4813259098,11.4831438389,11.4849617681,11.4867796972,11.4885976263,11.4904155555,11.4922334846,11.4940514137,11.4958693428,11.497687272,11.4995052011,11.5013231302,11.5031410594,11.5049589885,11.5067769176,11.5085948467,11.5104127759,11.512230705,11.5140486341,11.5158665633,11.5176844924,11.5195024215,11.5213203507,11.5231382798,11.5249562089,11.526774138,11.5285920672,11.5304099963,11.5322279254,11.5340458546,11.5358637837,11.5376817128,11.5394996419,11.5413175711,11.5431355002,11.5449534293,11.5467713585,11.5485892876,11.5504072167,11.5522251458,11.554043075,11.5558610041,11.5576789332,11.5594968624,11.5613147915,11.5631327206,11.5649506497,11.5667685789,11.568586508,11.5704044371,11.5722223663,11.5740402954,11.5758582245,11.5776761537,11.5794940828,11.5813120119,11.583129941,11.5849478702,11.5867657993,11.5885837284,11.5904016576,11.5922195867,11.5940375158,11.5958554449,11.5976733741,11.5994913032,11.6013092323,11.6031271615,11.6049450906,11.6067630197,11.6085809488,11.610398878,11.6122168071,11.6140347362,11.6158526654,11.6176705945,11.6194885236,11.6213064527,11.6231243819,11.624942311,11.6267602401,11.6285781693,11.6303960984,11.6322140275,11.6340319567,11.6358498858,11.6376678149,11.639485744,11.6413036732,11.6431216023,11.6449395314,11.6467574606,11.6485753897,11.6503933188,11.6522112479,11.6540291771,11.6558471062,11.6576650353,11.6594829645,11.6613008936,11.6631188227,11.6649367518,11.666754681,11.6685726101,11.6703905392,11.6722084684,11.6740263975,11.6758443266,11.6776622557,11.6794801849,11.681298114,11.6831160431,11.6849339723,11.6867519014,11.6885698305,11.6903877597,11.6922056888,11.6940236179,11.695841547,11.6976594762,11.6994774053,11.7012953344,11.7031132636,11.7049311927,11.7067491218,11.7085670509,11.7103849801,11.7122029092,11.7140208383,11.7158387675,11.7176566966,11.7194746257,11.7212925548,11.723110484,11.7249284131,11.7267463422,11.7285642714,11.7303822005,11.7322001296,11.7340180587,11.7358359879,11.737653917,11.7394718461,11.7412897753,11.7431077044,11.7449256335,11.7467435627,11.7485614918,11.7503794209,11.75219735,11.7540152792,11.7558332083,11.7576511374,11.7594690666,11.7612869957,11.7631049248,11.7649228539,11.7667407831,11.7685587122,11.7703766413,11.7721945705,11.7740124996,11.7758304287,11.7776483578,11.779466287,11.7812842161,11.7831021452,11.7849200744,11.7867380035,11.7885559326,11.7903738617,11.7921917909,11.79400972,11.7958276491,11.7976455783,11.7994635074,11.8012814365,11.8030993657,11.8049172948,11.8067352239,11.808553153,11.8103710822,11.8121890113,11.8140069404,11.8158248696,11.8176427987,11.8194607278,11.8212786569,11.8230965861,11.8249145152,11.8267324443,11.8285503735,11.8303683026,11.8321862317,11.8340041608,11.83582209,11.8376400191,11.8394579482,11.8412758774,11.8430938065,11.8449117356,11.8467296647,11.8485475939,11.850365523,11.8521834521,11.8540013813,11.8558193104,11.8576372395,11.8594551687,11.8612730978,11.8630910269,11.864908956,11.8667268852,11.8685448143,11.8703627434,11.8721806726,11.8739986017,11.8758165308,11.8776344599,11.8794523891,11.8812703182,11.8830882473,11.8849061765,11.8867241056,11.8885420347,11.8903599638,11.892177893,11.8939958221,11.8958137512,11.8976316804,11.8994496095,11.9012675386,11.9030854677,11.9049033969,11.906721326,11.9085392551,11.9103571843,11.9121751134,11.9139930425,11.9158109717,11.9176289008,11.9194468299,11.921264759,11.9230826882,11.9249006173,11.9267185464,11.9285364756,11.9303544047,11.9321723338,11.9339902629,11.9358081921,11.9376261212,11.9394440503,11.9412619795,11.9430799086,11.9448978377,11.9467157668,11.948533696,11.9503516251,11.9521695542,11.9539874834,11.9558054125,11.9576233416,11.9594412707,11.9612591999,11.963077129,11.9648950581,11.9667129873,11.9685309164,11.9703488455,11.9721667747,11.9739847038,11.9758026329,11.977620562,11.9794384912,11.9812564203,11.9830743494,11.9848922786,11.9867102077,11.9885281368,11.9903460659,11.9921639951,11.9939819242,11.9957998533,11.9976177825,11.9994357116,12.0012536407,12.0030715698,12.004889499,12.0067074281,12.0085253572,12.0103432864,12.0121612155,12.0139791446,12.0157970737,12.0176150029,12.019432932,12.0212508611,12.0230687903,12.0248867194,12.0267046485,12.0285225777,12.0303405068,12.0321584359,12.033976365,12.0357942942,12.0376122233,12.0394301524,12.0412480816,12.0430660107,12.0448839398,12.0467018689,12.0485197981,12.0503377272,12.0521556563,12.0539735855,12.0557915146,12.0576094437,12.0594273728,12.061245302,12.0630632311,12.0648811602,12.0666990894,12.0685170185,12.0703349476,12.0721528768,12.0739708059,12.075788735,12.0776066641,12.0794245933,12.0812425224,12.0830604515,12.0848783807,12.0866963098,12.0885142389,12.090332168,12.0921500972,12.0939680263,12.0957859554,12.0976038846,12.0994218137,12.1012397428,12.1030576719,12.1048756011,12.1066935302,12.1085114593,12.1103293885,12.1121473176,12.1139652467,12.1157831758,12.117601105,12.1194190341,12.1212369632,12.1230548924,12.1248728215,12.1266907506,12.1285086798,12.1303266089,12.132144538,12.1339624671,12.1357803963,12.1375983254,12.1394162545,12.1412341837,12.1430521128,12.1448700419,12.146687971,12.1485059002,12.1522803688,12.1560548374,12.159829306,12.1636037747,12.1673782433,12.1711527119,12.1749271805,12.1787016492,12.1824761178,12.1862505864,12.1900250551,12.1937995237,12.1975739923,12.2013484609,12.2051229296,12.2088973982,12.2126718668,12.2164463354,12.2202208041,12.2239952727,12.2277697413,12.2315442099,12.2353186786,12.2390931472,12.2428676158,12.2466420844,12.2504165531,12.2541910217,12.2579654903,12.2617399589,12.2655144276,12.2692888962,12.2730633648,12.2768378334,12.2806123021,12.2843867707,12.2881612393,12.2919357079,12.2957101766,12.2994846452,12.3032591138,12.3070335824,12.3108080511,12.3145825197,12.3183569883,12.3221314569,12.3259059256,12.3296803942,12.3334548628,12.3372293314,12.3410038001,12.3447782687,12.3485527373,12.352327206,12.3561016746,12.3598761432,12.3636506118,12.3674250805,12.3711995491,12.3749740177,12.3787484863,12.382522955,12.3862974236,12.3900718922,12.3938463608,12.3976208295,12.4013952981,12.4051697667,12.4089442353,12.412718704,12.4164931726,12.4202676412,12.4240421098,12.4278165785,12.4315910471,12.4353655157,12.4391399843,12.442914453,12.4466889216,12.4504633902,12.4542378588,12.4580123275,12.4617867961,12.4655612647,12.4693357333,12.473110202,12.4768846706,12.4806591392,12.4844336078,12.4882080765,12.4919825451,12.4957570137,12.4995314823,12.503305951,12.5070804196,12.5108548882,12.5146293569,12.5184038255,12.5221782941,12.5259527627,12.5297272314,12.5335017,12.5372761686,12.5410506372,12.5448251059,12.5485995745,12.5523740431,12.5561485117,12.5599229804,12.563697449,12.5674719176,12.5712463862,12.5750208549,12.5787953235,12.5825697921,12.5863442607,12.5901187294,12.593893198,12.5976676666,12.6014421352,12.6052166039,12.6089910725,12.6127655411,12.6165400097,12.6203144784,12.624088947,12.6278634156,12.6316378842,12.6354123529,12.6391868215,12.6429612901,12.6467357587,12.6505102274,12.654284696,12.6580591646,12.6618336332,12.6656081019,12.6693825705,12.6731570391,12.6769315078,12.6807059764,12.684480445,12.6882549136,12.6920293823,12.6958038509,12.6995783195,12.7033527881,12.7071272568,12.7109017254,12.714676194,12.7184506626,12.7222251313,12.7259995999,12.7297740685,12.7335485371,12.7373230058,12.7410974744,12.744871943,12.7486464116,12.7524208803,12.7561953489,12.7599698175,12.7637442861,12.7675187548,12.7712932234,12.775067692,12.7788421606,12.7826166293,12.7863910979,12.7901655665,12.7939400351,12.7977145038,12.8014889724,12.805263441,12.8090379096,12.8128123783,12.8165868469,12.8203613155,12.8241357841,12.8279102528,12.8316847214,12.83545919,12.8392336587,12.8430081273,12.8467825959,12.8505570645,12.8543315332,12.8581060018,12.8618804704,12.865654939,12.8694294077,12.8732038763,12.8769783449,12.8807528135,12.8845272822,12.8883017508,12.8920762194,12.895850688,12.8996251567,12.9033996253,12.9071740939,12.9109485625,12.9147230312,12.9184974998,12.9222719684,12.926046437,12.9298209057,12.9335953743,12.9373698429,12.9411443115,12.9449187802,12.9486932488,12.9524677174,12.956242186,12.9600166547,12.9637911233,12.9675655919,12.9713400605,12.9751145292,12.9788889978,12.9826634664,12.986437935,12.9902124037,12.9939868723,12.9977613409,13.0015358096,13.0053102782,13.0090847468,13.0128592154,13.0166336841,13.0204081527,13.0241826213,13.0279570899,13.0317315586,13.0355060272,13.0392804958,13.0430549644,13.0468294331,13.0506039017,13.0543783703,13.0581528389,13.0619273076,13.0657017762,13.0694762448,13.0732507134,13.0770251821,13.0807996507,13.0845741193,13.0883485879,13.0921230566,13.0958975252,13.0996719938,13.1034464624,13.1072209311,13.1109953997,13.1147698683,13.1185443369,13.1223188056,13.1260932742,13.1298677428,13.1336422114,13.1374166801,13.1411911487,13.1449656173,13.1487400859,13.1525145546,13.1562890232,13.1600634918,13.1638379605,13.1676124291,13.1713868977,13.1751613663,13.178935835,13.1827103036,13.1864847722,13.1902592408,13.1940337095,13.1978081781,13.2015826467,13.2053571153,13.209131584,13.2129060526,13.2166805212,13.2204549898,13.2242294585,13.2280039271,13.2317783957,13.2355528643,13.239327333,13.2431018016,13.2468762702,13.2506507388,13.2544252075,13.2581996761,13.2619741447,13.2657486133,13.269523082,13.2732975506,13.2770720192,13.2808464878,13.2846209565,13.2883954251,13.2921698937,13.2959443623,13.299718831,13.3034932996,13.3072677682,13.3110422368,13.3148167055,13.3185911741,13.3223656427,13.3261401114,13.32991458,13.3336890486,13.3374635172,13.3412379859,13.3450124545,13.3487869231,13.3525613917,13.3563358604,13.360110329,13.3638847976,13.3676592662,13.3714337349,13.3752082035,13.3789826721,13.3827571407,13.3865316094,13.390306078,13.3940805466,13.3978550152,13.4016294839,13.4054039525,13.4091784211,13.4129528897,13.4167273584,13.420501827,13.4242762956,13.4280507642,13.4318252329,13.4355997015,13.4393741701,13.4431486387,13.4469231074,13.450697576,13.4544720446,13.4582465132,13.4620209819,13.4657954505,13.4695699191,13.4733443877,13.4771188564,13.480893325,13.4846677936,13.4884422623,13.4922167309,13.4959911995,13.4997656681,13.5035401368,13.5073146054,13.511089074,13.5148635426,13.5186380113,13.5224124799,13.5261869485,13.5299614171,13.5337358858,13.5375103544,13.541284823,13.5450592916,13.5488337603,13.5526082289,13.5563826975,13.5601571661,13.5639316348,13.5677061034,13.571480572,13.5752550406,13.5790295093,13.5828039779,13.5865784465,13.5903529151,13.5941273838,13.5979018524,13.601676321,13.6054507896,13.6092252583,13.6129997269,13.6167741955,13.6205486641,13.6243231328,13.6280976014,13.63187207,13.6356465386,13.6394210073,13.6431954759,13.6469699445,13.6507444132,13.6545188818,13.6582933504,13.662067819,13.6658422877,13.6696167563,13.6733912249,13.6771656935,13.6809401622,13.6847146308,13.6884890994,13.692263568,13.6960380367,13.6998125053,13.7035869739,13.7073614425,13.7111359112,13.7149103798,13.7186848484,13.722459317,13.7262337857,13.7300082543,13.7337827229,13.7375571915,13.7413316602,13.7451061288,13.7488805974,13.752655066,13.7564295347,13.7602040033,13.7639784719,13.7677529405,13.7715274092,13.7753018778,13.7790763464,13.782850815,13.7866252837,13.7903997523,13.7941742209,13.7979486895,13.8017231582,13.8054976268,13.8092720954,13.8130465641,13.8168210327,13.8205955013,13.8243699699,13.8281444386,13.8319189072,13.8356933758,13.8394678444,13.8432423131,13.8470167817,13.8507912503,13.8545657189,13.8583401876,13.8621146562,13.8658891248,13.8696635934,13.8734380621,13.8772125307,13.8809869993,13.8847614679,13.8885359366,13.8923104052,13.8960848738,13.8998593424,13.9036338111,13.9074082797,13.9111827483,13.9149572169,13.9187316856,13.9225061542,13.9262806228,13.9300550914,13.9338295601,13.9376040287,13.9413784973,13.9451529659,13.9489274346,13.9527019032,13.9564763718,13.9602508404,13.9640253091,13.9677997777,13.9715742463,13.975348715,13.9791231836,13.9828976522,13.9866721208,13.9904465895,13.9942210581,13.9979955267,14.0017699953,14.005544464,14.0093189326,14.0130934012,14.0168678698,14.0206423385,14.0244168071,14.0281912757,14.0319657443,14.035740213,14.0395146816,14.0432891502,14.0470636188,14.0508380875,14.0546125561,14.0583870247,14.0621614933,14.065935962,14.0697104306,14.0734848992,14.0772593678,14.0810338365,14.0848083051,14.0885827737,14.0923572423,14.096131711,14.0999061796,14.1036806482,14.1074551168,14.1112295855,14.1150040541,14.1187785227,14.1225529913,14.12632746,14.1301019286,14.1338763972,14.1376508659,14.1414253345,14.1451998031,14.1489742717,14.1527487404,14.156523209,14.1602976776,14.1640721462,14.1678466149,14.1716210835,14.1753955521,14.1791700207,14.1829444894,14.186718958,14.1904934266,14.1942678952,14.1980423639,14.2018168325,14.2055913011,14.2093657697,14.2131402384,14.216914707,14.2206891756,14.2244636442,14.2282381129,14.2320125815,14.2357870501,14.2395615187,14.2433359874,14.247110456,14.2508849246,14.2546593932,14.2584338619,14.2622083305,14.2659827991,14.2697572677,14.2735317364,14.277306205,14.2810806736,14.2848551422,14.2886296109,14.2924040795,14.2961785481,14.2999530168,14.3037274854,14.307501954,14.3112764226,14.3150508913,14.3188253599,14.3225998285,14.3263742971,14.3301487658,14.3339232344,14.337697703,14.3414721716,14.3452466403,14.3490211089,14.3527955775,14.3565700461,14.3603445148,14.3641189834,14.367893452,14.3716679206,14.3754423893,14.3792168579,14.3829913265,14.3867657951,14.3905402638,14.3943147324,14.398089201,14.4018636696,14.4056381383,14.4094126069,14.4131870755,14.4169615441,14.4207360128,14.4245104814,14.42828495,14.4327113136,14.4371376772,14.4415640408,14.4459904044,14.450416768,14.4548431316,14.4592694952,14.4636958589,14.4681222225,14.4725485861,14.4769749497,14.4814013133,14.4858276769,14.4902540405,14.4946804041,14.4991067677,14.5035331313,14.5079594949,14.5123858585,14.5168122221,14.5212385857,14.5256649493,14.5300913129,14.5345176765,14.5389440401,14.5433704037,14.5477967673,14.5522231309,14.5566494945,14.5610758581,14.5655022217,14.5699285853,14.5743549489,14.5787813125,14.5832076761,14.5876340398,14.5920604034,14.596486767,14.6009131306,14.6053394942,14.6097658578,14.6141922214,14.618618585,14.6230449486,14.6274713122,14.6318976758,14.6363240394,14.640750403,14.6451767666,14.6496031302,14.6540294938,14.6584558574,14.662882221,14.6673085846,14.6717349482,14.6761613118,14.6805876754,14.685014039,14.6894404026,14.6938667662,14.6982931298,14.7027194934,14.707145857,14.7115722207,14.7159985843,14.7204249479,14.7248513115,14.7292776751,14.7337040387,14.7381304023,14.7425567659,14.7469831295,14.7514094931,14.7558358567,14.7602622203,14.7646885839,14.7691149475,14.7735413111,14.7779676747,14.7823940383,14.7868204019,14.7912467655,14.7956731291,14.8000994927,14.8045258563,14.8089522199,14.8133785835,14.8178049471,14.8222313107,14.8266576743,14.8310840379,14.8355104016,14.8399367652,14.8443631288,14.8487894924,14.853215856,14.8576422196,14.8620685832,14.8664949468,14.8709213104,14.875347674,14.8797740376,14.8842004012,14.8886267648,14.8930531284,14.897479492,14.9019058556,14.9063322192,14.9107585828,14.9151849464,14.91961131,14.9240376736,14.9284640372,14.9328904008,14.9373167644,14.941743128,14.9461694916,14.9505958552,14.9550222188,14.9594485825,14.9638749461,14.9683013097,14.9727276733,14.9771540369,14.9815804005,14.9860067641,14.9904331277,14.9948594913,14.9992858549,15.0037122185,15.0081385821,15.0125649457,15.0169913093,15.0214176729,15.0258440365,15.0302704001,15.0346967637,15.0391231273,15.0435494909,15.0479758545,15.0524022181,15.0568285817,15.0612549453,15.0656813089,15.0701076725,15.0745340361,15.0789603997,15.0833867634,15.087813127,15.0922394906,15.0966658542,15.1010922178,15.1055185814,15.109944945,15.1143713086,15.1187976722,15.1232240358,15.1276503994,15.132076763,15.1365031266,15.1409294902,15.1453558538,15.1497822174,15.154208581,15.1586349446,15.1630613082,15.1674876718,15.1719140354,15.176340399,15.1807667626,15.1851931262,15.1896194898,15.1940458534,15.198472217,15.2028985807,15.2073249443,15.2117513079,15.2161776715,15.2206040351,15.2250303987,15.2294567623,15.2338831259,15.2383094895,15.2427358531,15.2471622167,15.2515885803,15.2560149439,15.2604413075,15.2648676711,15.2692940347,15.2737203983,15.2781467619,15.2825731255,15.2869994891,15.2914258527,15.2958522163,15.3002785799,15.3047049435,15.3091313071,15.3135576707,15.3179840343,15.3224103979,15.3268367616,15.3312631252,15.3356894888,15.3401158524,15.344542216,15.3489685796,15.3533949432,15.3578213068,15.3622476704,15.366674034,15.3711003976,15.3755267612,15.3799531248,15.3843794884,15.388805852,15.3932322156,15.3976585792,15.4020849428,15.4065113064,15.41093767,15.4153640336,15.4197903972,15.4242167608,15.4286431244,15.433069488,15.4374958516,15.4419222152,15.4463485788,15.4507749425,15.4552013061,15.4596276697,15.4640540333,15.4684803969,15.4729067605,15.4773331241,15.4817594877,15.4861858513,15.4906122149,15.4950385785,15.4994649421,15.5038913057,15.5083176693,15.5127440329,15.5171703965,15.5215967601,15.5260231237,15.5304494873,15.5348758509,15.5393022145,15.5437285781,15.5481549417,15.5525813053,15.5570076689,15.5614340325,15.5658603961,15.5702867597,15.5747131234,15.579139487,15.5835658506,15.5879922142,15.5924185778,15.5968449414,15.601271305,15.6056976686,15.6101240322,15.6145503958,15.6189767594,15.623403123,15.6278294866,15.6322558502,15.6366822138,15.6411085774,15.645534941,15.6499613046,15.6543876682,15.6588140318,15.6632403954,15.667666759,15.6720931226,15.6765194862,15.6809458498,15.6853722134,15.689798577,15.6942249406,15.6986513043,15.7030776679,15.7075040315,15.7119303951,15.7163567587,15.7207831223,15.7252094859,15.7296358495,15.7340622131,15.7384885767,15.7429149403,15.7473413039,15.7517676675,15.7561940311,15.7606203947,15.7650467583,15.7694731219,15.7738994855,15.7783258491,15.7827522127,15.7871785763,15.7916049399,15.7960313035,15.8004576671,15.8048840307,15.8093103943,15.8137367579,15.8181631215,15.8225894852,15.8270158488,15.8314422124,15.835868576,15.8402949396,15.8447213032,15.8491476668,15.8535740304,15.858000394,15.8624267576,15.8668531212,15.8712794848,15.8757058484,15.880132212,15.8845585756,15.8889849392,15.8934113028,15.8978376664,15.90226403,15.9066903936,15.9111167572,15.9155431208,15.9199694844,15.924395848,15.9288222116,15.9332485752,15.9376749388,15.9421013025,15.9465276661,15.9509540297,15.9553803933,15.9598067569,15.9642331205,15.9686594841,15.9730858477,15.9775122113,15.9819385749,15.9863649385,15.9907913021,15.9952176657,15.9996440293,16.0040703929,16.0084967565,16.0129231201,16.0173494837,16.0217758473,16.0262022109,16.0306285745,16.0350549381,16.0394813017,16.0439076653,16.0483340289,16.0527603925,16.0571867561,16.0616131197,16.0660394834,16.070465847,16.0748922106,16.0793185742,16.0837449378,16.0881713014,16.092597665,16.0970240286,16.1014503922,16.1058767558,16.1103031194,16.114729483,16.1191558466,16.1235822102,16.1280085738,16.1324349374,16.136861301,16.1412876646,16.1457140282,16.1501403918,16.1545667554,16.158993119,16.1634194826,16.1678458462,16.1722722098,16.1766985734,16.181124937,16.1855513006,16.1899776643,16.1944040279,16.1988303915,16.2032567551,16.2076831187,16.2121094823,16.2165358459,16.2209622095,16.2253885731,16.2298149367,16.2342413003,16.2386676639,16.2430940275,16.2475203911,16.2519467547,16.2563731183,16.2607994819,16.2652258455,16.2696522091,16.2740785727,16.2785049363,16.2829312999,16.2873576635,16.2917840271,16.2962103907,16.3006367543,16.3050631179,16.3094894815,16.3139158452,16.3183422088,16.3227685724,16.327194936,16.3316212996,16.3360476632,16.3404740268,16.3449003904,16.349326754,16.3537531176,16.3581794812,16.3626058448,16.3670322084,16.371458572,16.3758849356,16.3803112992,16.3847376628,16.3891640264,16.39359039,16.3980167536,16.4024431172,16.4068694808,16.4112958444,16.415722208,16.4201485716,16.4245749352,16.4290012988,16.4334276624,16.4378540261,16.4422803897,16.4467067533,16.4511331169,16.4555594805,16.4599858441,16.4644122077,16.4688385713,16.4732649349,16.4776912985,16.4821176621,16.4865440257,16.4909703893,16.4953967529,16.4998231165,16.5042494801,16.5086758437,16.5131022073,16.5175285709,16.5219549345,16.5263812981,16.5308076617,16.5352340253,16.5396603889,16.5440867525,16.5485131161,16.5529394797,16.5573658433,16.561792207,16.5662185706,16.5706449342,16.5750712978,16.5794976614,16.583924025,16.5883503886,16.5927767522,16.5972031158,16.6016294794,16.606055843,16.6104822066,16.6149085702,16.6193349338,16.6237612974,16.628187661,16.6326140246,16.6370403882,16.6414667518,16.6458931154,16.650319479,16.6547458426,16.6591722062,16.6635985698,16.6680249334,16.672451297,16.6768776606,16.6813040243,16.6857303879,16.6901567515,16.6945831151,16.6990094787,16.7034358423,16.7078622059,16.7122885695,16.7167149331,16.7211412967,16.7255676603,16.7299940239,16.7344203875,16.7388467511,16.7432731147,16.7476994783,16.7521258419,16.7565522055,16.7609785691,16.7654049327,16.7698312963,16.7742576599,16.7786840235,16.7831103871,16.7875367507,16.7919631143,16.7963894779,16.8008158415,16.8052422052,16.8096685688,16.8140949324,16.818521296,16.8229476596,16.8273740232,16.8318003868,16.8362267504,16.840653114,16.8450794776,16.8495058412,16.8539322048,16.8583585684,16.862784932,16.8672112956,16.8716376592,16.8760640228,16.8804903864,16.88491675,16.8893431136,16.8937694772,16.8981958408,16.9026222044,16.907048568,16.9114749316,16.9159012952,16.9203276588,16.9247540224,16.9291803861,16.9336067497,16.9380331133,16.9424594769,16.9468858405,16.9513122041,16.9557385677,16.9601649313,16.9645912949,16.9690176585,16.9734440221,16.9778703857,16.9822967493,16.9867231129,16.9911494765,16.9955758401,17.0000022037,17.0044285673,17.0088549309,17.0132812945,17.0177076581,17.0221340217,17.0265603853,17.0309867489,17.0354131125,17.0398394761,17.0442658397,17.0486922033,17.053118567,17.0575449306,17.0619712942,17.0663976578,17.0708240214,17.075250385,17.0796767486,17.0841031122,17.0885294758,17.0929558394,17.097382203,17.1018085666,17.1060124772,17.1102163879,17.1144202986,17.1186242092,17.1228281199,17.1270320305,17.1312359412,17.1354398518,17.1396437625,17.1438476731,17.1480515838,17.1522554944,17.1564594051,17.1606633158,17.1648672264,17.1690711371,17.1732750477,17.1774789584,17.181682869,17.1858867797,17.1900906903,17.194294601,17.1984985116,17.2027024223,17.206906333,17.2111102436,17.2153141543,17.2195180649,17.2237219756,17.2279258862,17.2321297969,17.2363337075,17.2405376182,17.2447415288,17.2489454395,17.2531493502,17.2573532608,17.2615571715,17.2657610821,17.2699649928,17.2741689034,17.2783728141,17.2825767247,17.2867806354,17.290984546,17.2951884567,17.2993923674,17.303596278,17.3078001887,17.3120040993,17.31620801,17.3204119206,17.3246158313,17.3288197419,17.3330236526,17.3372275632,17.3414314739,17.3456353846,17.3498392952,17.3540432059,17.3582471165,17.3624510272,17.3666549378,17.3708588485,17.3750627591,17.3792666698,17.3834705804,17.3876744911,17.3918784018,17.3960823124,17.4002862231,17.4044901337,17.4086940444,17.412897955,17.4171018657,17.4213057763,17.425509687,17.4297135976,17.4339175083,17.438121419,17.4423253296,17.4465292403,17.4507331509,17.4549370616,17.4591409722,17.4633448829,17.4675487935,17.4717527042,17.4759566148,17.4801605255,17.4843644362,17.4885683468,17.4927722575,17.4969761681,17.5011800788,17.5053839894,17.5095879001,17.5137918107,17.5179957214,17.522199632,17.5264035427,17.5306074534,17.534811364,17.5390152747,17.5432191853,17.547423096,17.5516270066,17.5558309173,17.5600348279,17.5642387386,17.5684426492,17.5726465599,17.5768504706,17.5810543812,17.5852582919,17.5894622025,17.5936661132,17.5978700238,17.6020739345,17.6062778451,17.6104817558,17.6146856664,17.6188895771,17.6230934878,17.6272973984,17.6315013091,17.6357052197,17.6399091304,17.644113041,17.6483169517,17.6525208623,17.656724773,17.6609286836,17.6651325943,17.669336505,17.6735404156,17.6777443263,17.6819482369,17.6861521476,17.6903560582,17.6945599689,17.6987638795,17.7029677902,17.7071717008,17.7113756115,17.7155795222,17.7197834328,17.7239873435,17.7281912541,17.7323951648,17.7365990754,17.7408029861,17.7450068967,17.7492108074,17.753414718,17.7576186287,17.7618225394,17.76602645,17.7702303607,17.7744342713,17.778638182,17.7828420926,17.7870460033,17.7912499139,17.7954538246,17.7996577352,17.8038616459,17.8080655566,17.8122694672,17.8164733779,17.8206772885,17.8248811992,17.8290851098,17.8332890205,17.8374929311,17.8416968418,17.8459007524,17.8501046631,17.8543085738,17.8585124844,17.8627163951,17.8669203057,17.8711242164,17.875328127,17.8795320377,17.8837359483,17.887939859,17.8921437696,17.8963476803,17.900551591,17.9047555016,17.9089594123,17.9131633229,17.9173672336,17.9215711442,17.9257750549,17.9299789655,17.9341828762,17.9383867868,17.9425906975,17.9467946081,17.9509985188,17.9552024295,17.9594063401,17.9636102508,17.9678141614,17.9720180721,17.9762219827,17.9804258934,17.984629804,17.9888337147,17.9930376253,17.997241536,18.0014454467,18.0056493573,18.009853268,18.0140571786,18.0182610893,18.0224649999,18.0266689106,18.0308728212,18.0350767319,18.0392806425,18.0434845532,18.0476884639,18.0518923745,18.0560962852,18.0603001958,18.0645041065,18.0687080171,18.0729119278,18.0771158384,18.0813197491,18.0855236597,18.0897275704,18.0939314811,18.0981353917,18.1023393024,18.106543213,18.1107471237,18.1149510343,18.119154945,18.1233588556,18.1275627663,18.1317666769,18.1359705876,18.1401744983,18.1443784089,18.1485823196,18.1527862302,18.1569901409,18.1611940515,18.1653979622,18.1696018728,18.1738057835,18.1780096941,18.1822136048,18.1864175155,18.1906214261,18.1948253368,18.1990292474,18.2032331581,18.2074370687,18.2116409794,18.21584489,18.2200488007,18.2242527113,18.228456622,18.2326605327,18.2368644433,18.241068354,18.2452722646,18.2494761753,18.2536800859,18.2578839966,18.2620879072,18.2662918179,18.2704957285,18.2746996392,18.2789035499,18.2831074605,18.2873113712,18.2915152818,18.2957191925,18.2999231031,18.3041270138,18.3083309244,18.3125348351,18.3167387457,18.3209426564,18.3251465671,18.3293504777,18.3335543884,18.337758299,18.3419622097,18.3461661203,18.350370031,18.3545739416,18.3587778523,18.3629817629,18.3671856736,18.3713895843,18.3755934949,18.3797974056,18.3840013162,18.3882052269,18.3924091375,18.3966130482,18.4008169588,18.4050208695,18.4092247801,18.4134286908,18.4176326015,18.4218365121,18.4260404228,18.4302443334,18.4344482441,18.4386521547,18.4428560654,18.447059976,18.4512638867,18.4554677973,18.459671708,18.4638756187,18.4680795293,18.47228344,18.4764873506,18.4806912613,18.4848951719,18.4890990826,18.4933029932,18.4975069039,18.5017108145,18.5059147252,18.5101186359,18.5143225465,18.5185264572,18.5227303678,18.5269342785,18.5311381891,18.5353420998,18.5395460104,18.5437499211,18.5479538317,18.5521577424,18.5563616531,18.5605655637,18.5647694744,18.568973385,18.5731772957,18.5773812063,18.581585117,18.5857890276,18.5899929383,18.5941968489,18.5984007596,18.6026046703,18.6068085809,18.6110124916,18.6152164022,18.6194203129,18.6236242235,18.6278281342,18.6320320448,18.6362359555,18.6404398661,18.6446437768,18.6488476875,18.6530515981,18.6572555088,18.6614594194,18.6656633301,18.6698672407,18.6740711514,18.678275062,18.6824789727,18.6866828833,18.690886794,18.6950907047,18.6992946153,18.703498526,18.7077024366,18.7119063473,18.7161102579,18.7203141686,18.7245180792,18.7287219899,18.7329259005,18.7371298112,18.7413337219,18.7455376325,18.7497415432,18.7539454538,18.7581493645,18.7623532751,18.7665571858,18.7707610964,18.7749650071,18.7791689177,18.7833728284,18.7875767391,18.7917806497,18.7959845604,18.800188471,18.8043923817,18.8085962923,18.812800203,18.8170041136,18.8212080243,18.8254119349,18.8296158456,18.8338197563,18.8380236669,18.8422275776,18.8464314882,18.8506353989,18.8548393095,18.8590432202,18.8632471308,18.8674510415,18.8716549521,18.8758588628,18.8800627735,18.8842666841,18.8884705948,18.8926745054,18.8968784161,18.9010823267,18.9052862374,18.909490148,18.9136940587,18.9178979693,18.92210188,18.9263057907,18.9305097013,18.934713612,18.9389175226,18.9431214333,18.9473253439,18.9515292546,18.9557331652,18.9599370759,18.9641409865,18.9683448972,18.9725488079,18.9767527185,18.9809566292,18.9851605398,18.9893644505,18.9935683611,18.9977722718,19.0019761824,19.0061800931,19.0103840037,19.0145879144,19.0187918251,19.0229957357,19.0271996464,19.031403557,19.0356074677,19.0398113783,19.044015289,19.0482191996,19.0524231103,19.0566270209,19.0608309316,19.0650348423,19.0692387529,19.0734426636,19.0776465742,19.0818504849,19.0860543955,19.0902583062,19.0944622168,19.0986661275,19.1028700381,19.1070739488,19.1112778595,19.1154817701,19.1196856808,19.1238895914,19.1280935021,19.1322974127,19.1365013234,19.140705234,19.1449091447,19.1491130553,19.153316966,19.1575208767,19.1617247873,19.165928698,19.1701326086,19.1743365193,19.1785404299,19.1827443406,19.1869482512,19.1911521619,19.1953560725,19.1995599832,19.2037638939,19.2079678045,19.2121717152,19.2163756258,19.2205795365,19.2247834471,19.2289873578,19.2331912684,19.2373951791,19.2415990897,19.2458030004,19.2500069111,19.2542108217,19.2584147324,19.262618643,19.2668225537,19.2710264643,19.275230375,19.2794342856,19.2836381963,19.2878421069,19.2920460176,19.2962499283,19.3004538389,19.3046577496,19.3088616602,19.3130655709,19.3172694815,19.3214733922,19.3256773028,19.3298812135,19.3340851241,19.3382890348,19.3424929454,19.3466968561,19.3509007668,19.3551046774,19.3593085881,19.3635124987,19.3677164094,19.37192032,19.3761242307,19.3803281413,19.384532052,19.3887359626,19.3929398733,19.397143784,19.4013476946,19.4055516053,19.4097555159,19.4139594266,19.4181633372,19.4223672479,19.4265711585,19.4307750692,19.4349789798,19.4391828905,19.4433868012,19.4475907118,19.4517946225,19.4559985331,19.4602024438,19.4644063544,19.4686102651,19.4728141757,19.4770180864,19.481221997,19.4854259077,19.4896298184,19.493833729,19.4980376397,19.5022415503,19.506445461,19.5106493716,19.5148532823,19.5190571929,19.5232611036,19.5274650142,19.5316689249,19.5358728356,19.5400767462,19.5442806569,19.5484845675,19.5526884782,19.5568923888,19.5610962995,19.5653002101,19.5695041208,19.5737080314,19.5779119421,19.5821158528,19.5863197634,19.5905236741,19.5947275847,19.5989314954,19.603135406,19.6073393167,19.6115432273,19.615747138,19.6199510486,19.6241549593,19.62835887,19.6325627806,19.6367666913,19.6409706019,19.6442810952,19.6475915885,19.6509020818,19.6542125751,19.6575230684,19.6608335617,19.664144055,19.6674545483,19.6707650416,19.674075535,19.6773860283,19.6806965216,19.6840070149,19.6873175082,19.6906280015,19.6939384948,19.6972489881,19.7005594814,19.7038699747,19.707180468,19.7104909613,19.7138014546,19.7171119479,19.7204224412,19.7237329345,19.7270434278,19.7303539211,19.7336644144,19.7369749077,19.740285401,19.7435958943,19.7469063876,19.7502168809,19.7535273742,19.7568378675,19.7601483608,19.7634588541,19.7667693474,19.7700798407,19.773390334,19.7767008273,19.7800113206,19.7833218139,19.7866323073,19.7899428006,19.7932532939,19.7965637872,19.7998742805,19.8031847738,19.8064952671,19.8098057604,19.8131162537,19.816426747,19.8197372403,19.8230477336,19.8263582269,19.8296687202,19.8329792135,19.8362897068,19.8396002001,19.8429106934,19.8462211867,19.84953168,19.8528421733,19.8561526666,19.8594631599,19.8627736532,19.8660841465,19.8693946398,19.8727051331,19.8760156264,19.8793261197,19.882636613,19.8859471063,19.8892575996,19.8925680929,19.8958785862,19.8991890796,19.9024995729,19.9058100662,19.9091205595,19.9124310528,19.9157415461,19.9190520394,19.9223625327,19.925673026,19.9289835193,19.9322940126,19.9356045059,19.9389149992,19.9422254925,19.9455359858,19.9488464791,19.9521569724,19.9554674657,19.958777959,19.9620884523,19.9653989456,19.9687094389,19.9720199322,19.9753304255,19.9786409188,19.9819514121,19.9852619054,19.9885723987,19.991882892,19.9951933853,19.9985038786,20.0018143719,20.0051248652,20.0084353585,20.0117458519,20.0150563452,20.0183668385,20.0216773318,20.0249878251,20.0282983184,20.0316088117,20.034919305,20.0382297983,20.0415402916,20.0448507849,20.0481612782,20.0514717715,20.0547822648,20.0580927581,20.0614032514,20.0647137447,20.068024238,20.0713347313,20.0746452246,20.0779557179,20.0812662112,20.0845767045,20.0878871978,20.0911976911,20.0945081844,20.0978186777,20.101129171,20.1044396643,20.1077501576,20.1110606509,20.1143711442,20.1176816375,20.1209921308,20.1243026242,20.1276131175,20.1309236108,20.1342341041,20.1375445974,20.1408550907,20.144165584,20.1474760773,20.1507865706,20.1540970639,20.1574075572,20.1607180505,20.1640285438,20.1673390371,20.1706495304,20.1739600237,20.177270517,20.1805810103,20.1838915036,20.1872019969,20.1905124902,20.1938229835,20.1971334768,20.2004439701,20.2037544634,20.2070649567,20.21037545,20.2136859433,20.2169964366,20.2203069299,20.2236174232,20.2269279165,20.2302384098,20.2335489032,20.2368593965,20.2401698898,20.2434803831,20.2467908764,20.2501013697,20.253411863,20.2567223563,20.2600328496,20.2633433429,20.2666538362,20.2699643295,20.2732748228,20.2765853161,20.2798958094,20.2832063027,20.286516796,20.2898272893,20.2931377826,20.2964482759,20.2997587692,20.3030692625,20.3063797558,20.3096902491,20.3130007424,20.3163112357,20.319621729,20.3229322223,20.3262427156,20.3295532089,20.3328637022,20.3361741955,20.3394846888,20.3427951821,20.3461056755,20.3494161688,20.3527266621,20.3560371554,20.3593476487,20.362658142,20.3659686353,20.3692791286,20.3725896219,20.3759001152,20.3792106085,20.3825211018,20.3858315951,20.3891420884,20.3924525817,20.395763075,20.3990735683,20.4023840616,20.4056945549,20.4090050482,20.4123155415,20.4156260348,20.4189365281,20.4222470214,20.4255575147,20.428868008,20.4321785013,20.4354889946,20.4387994879,20.4421099812,20.4454204745,20.4487309678,20.4520414611,20.4553519544,20.4586624478,20.4619729411,20.4652834344,20.4685939277,20.471904421,20.4752149143,20.4785254076,20.4818359009,20.4851463942,20.4884568875,20.4917673808,20.4950778741,20.4983883674,20.5016988607,20.505009354,20.5083198473,20.5116303406,20.5149408339,20.5182513272,20.5215618205,20.5248723138,20.5281828071,20.5314933004,20.5348037937,20.538114287,20.5414247803,20.5447352736,20.5480457669,20.5513562602,20.5546667535,20.5579772468,20.5612877401,20.5645982334,20.5679087267,20.5712192201,20.5745297134,20.5778402067,20.5811507,20.5844611933,20.5877716866,20.5910821799,20.5943926732,20.5977031665,20.6010136598,20.6043241531,20.6076346464,20.6109451397,20.614255633,20.6175661263,20.6208766196,20.6241871129,20.6274976062,20.6308080995,20.6341185928,20.6374290861,20.6407395794,20.6440500727,20.647360566,20.6506710593,20.6539815526,20.6572920459,20.6606025392,20.6639130325,20.6672235258,20.6705340191,20.6738445124,20.6771550057,20.680465499,20.6837759924,20.6870864857,20.690396979,20.6937074723,20.6970179656,20.7003284589,20.7036389522,20.7069494455,20.7102599388,20.7135704321,20.7168809254,20.7201914187,20.723501912,20.7268124053,20.7301228986,20.7334333919,20.7367438852,20.7400543785,20.7433648718,20.7466753651,20.7499858584,20.7532963517,20.756606845,20.7599173383,20.7632278316,20.7665383249,20.7698488182,20.7731593115,20.7764698048,20.7797802981,20.7830907914,20.7864012847,20.789711778,20.7930222713,20.7963327647,20.799643258,20.8029537513,20.8062642446,20.8095747379,20.8128852312,20.8161957245,20.8195062178,20.8228167111,20.8261272044,20.8294376977,20.832748191,20.8360586843,20.8393691776,20.8426796709,20.8459901642,20.8493006575,20.8526111508,20.8559216441,20.8592321374,20.8625426307,20.865853124,20.8691636173,20.8724741106,20.8757846039,20.8790950972,20.8824055905,20.8857160838,20.8890265771,20.8923370704,20.8956475637,20.898958057,20.9022685503,20.9055790437,20.908889537,20.9122000303,20.9155105236,20.9188210169,20.9221315102,20.9254420035,20.9287524968,20.9320629901,20.9353734834,20.9386839767,20.94199447,20.9453049633,20.9486154566,20.9519259499,20.9552364432,20.9585469365,20.9618574298,20.9651679231,20.9684784164,20.9717889097,20.975099403,20.9784098963,20.9817203896,20.9850308829,20.9883413762,20.9916518695,20.9949623628,20.9982728561,21.0015833494,21.0048938427,21.008204336,21.0115148293,21.0148253226,21.018135816,21.0214463093,21.0247568026,21.0280672959,21.0313777892,21.0346882825,21.0379987758,21.0413092691,21.0446197624,21.0479302557,21.051240749,21.0545512423,21.0578617356,21.0611722289,21.0644827222,21.0677932155,21.0711037088,21.0744142021,21.0777246954,21.0810351887,21.084345682,21.0876561753,21.0909666686,21.0942771619,21.0975876552,21.1008981485,21.1042086418,21.1075191351,21.1108296284,21.1141401217,21.117450615,21.1207611083,21.1240716016,21.1273820949,21.1306925883,21.1340030816,21.1373135749,21.1406240682,21.1439345615,21.1472450548,21.1505555481,21.1538660414,21.1571765347,21.160487028,21.1637975213,21.1671080146,21.1704185079,21.1737290012,21.1770394945,21.1803499878,21.1836604811,21.1869709744,21.1902814677,21.193591961,21.1969024543,21.2002129476,21.2035234409,21.2068339342,21.2101444275,21.2134549208,21.2167654141,21.2200759074,21.2233864007,21.226696894,21.2300073873,21.2333178806,21.2366283739,21.2399388672,21.2432493606,21.2465598539,21.2498703472,21.2531808405,21.2564913338,21.2598018271,21.2631123204,21.2664228137,21.269733307,21.2730438003,21.2763542936,21.2796647869,21.2829752802,21.2862857735,21.2895962668,21.2929067601,21.2962172534,21.2995277467,21.30283824,21.3061487333,21.3094592266,21.3127697199,21.3160802132,21.3193907065,21.3227011998,21.3260116931,21.3293221864,21.3326326797,21.335943173,21.3392536663,21.3425641596,21.3458746529,21.3491851462,21.3524956395,21.3558061329,21.3591166262,21.3624271195,21.3657376128,21.3690481061,21.3723585994,21.3756690927,21.378979586,21.3822900793,21.3856005726,21.3889110659,21.3922215592,21.3955320525,21.3988425458,21.4021530391,21.4054635324,21.4087740257,21.412084519,21.4153950123,21.4187055056,21.4220159989,21.4253264922,21.4286369855,21.4319474788,21.4352579721,21.4385684654,21.4418789587,21.445189452,21.4484999453,21.4518104386,21.4551209319,21.4584314252,21.4617419185,21.4650524119,21.4683629052,21.4716733985,21.4749838918,21.4782943851,21.4816048784,21.4849153717,21.488225865,21.4915363583,21.4948468516,21.4981573449,21.5014678382,21.5047783315,21.5080888248,21.5113993181,21.5147098114,21.5180203047,21.521330798,21.5246412913,21.5279517846,21.5312622779,21.5345727712,21.5378832645,21.5411937578,21.5445042511,21.5478147444,21.5511252377,21.554435731,21.5577462243,21.5610567176,21.5643672109,21.5676777042,21.5709881975,21.5742986908,21.5776091842,21.5809196775,21.5842301708,21.5875406641,21.5908511574,21.5941616507,21.597472144,21.6007826373,21.6040931306,21.6074036239,21.6107141172,21.6140246105,21.6173351038,21.6206455971,21.6239560904,21.6272665837,21.630577077,21.6338875703,21.6371980636,21.6405085569,21.6424185197,21.6443284825,21.6462384453,21.6481484081,21.6500583709,21.6519683337,21.6538782965,21.6557882593,21.6576982221,21.6596081849,21.6615181477,21.6634281105,21.6653380732,21.667248036,21.6691579988,21.6710679616,21.6729779244,21.6748878872,21.67679785,21.6787078128,21.6806177756,21.6825277384,21.6844377012,21.686347664,21.6882576268,21.6901675896,21.6920775524,21.6939875152,21.695897478,21.6978074408,21.6997174036,21.7016273664,21.7035373292,21.7054472919,21.7073572547,21.7092672175,21.7111771803,21.7130871431,21.7149971059,21.7169070687,21.7188170315,21.7207269943,21.7226369571,21.7245469199,21.7264568827,21.7283668455,21.7302768083,21.7321867711,21.7340967339,21.7360066967,21.7379166595,21.7398266223,21.7417365851,21.7436465479,21.7455565107,21.7474664734,21.7493764362,21.751286399,21.7531963618,21.7551063246,21.7570162874,21.7589262502,21.760836213,21.7627461758,21.7646561386,21.7665661014,21.7684760642,21.770386027,21.7722959898,21.7742059526,21.7761159154,21.7780258782,21.779935841,21.7818458038,21.7837557666,21.7856657294,21.7875756921,21.7894856549,21.7913956177,21.7933055805,21.7952155433,21.7971255061,21.7990354689,21.8009454317,21.8028553945,21.8047653573,21.8066753201,21.8085852829,21.8104952457,21.8124052085,21.8143151713,21.8162251341,21.8181350969,21.8200450597,21.8219550225,21.8238649853,21.8257749481,21.8276849109,21.8295948736,21.8315048364,21.8334147992,21.835324762,21.8372347248,21.8391446876,21.8410546504,21.8429646132,21.844874576,21.8467845388,21.8486945016,21.8506044644,21.8525144272,21.85442439,21.8563343528,21.8582443156,21.8601542784,21.8620642412,21.863974204,21.8658841668,21.8677941296,21.8697040923,21.8716140551,21.8735240179,21.8754339807,21.8773439435,21.8792539063,21.8811638691,21.8830738319,21.8849837947,21.8868937575,21.8888037203,21.8907136831,21.8926236459,21.8945336087,21.8964435715,21.8983535343,21.9002634971,21.9021734599,21.9040834227,21.9059933855,21.9079033483,21.9098133111,21.9117232738,21.9136332366,21.9155431994,21.9174531622,21.919363125,21.9212730878,21.9231830506,21.9250930134,21.9270029762,21.928912939,21.9308229018,21.9327328646,21.9346428274,21.9365527902,21.938462753,21.9403727158,21.9422826786,21.9441926414,21.9461026042,21.948012567,21.9499225298,21.9518324926,21.9537424553,21.9556524181,21.9575623809,21.9594723437,21.9613823065,21.9632922693,21.9652022321,21.9671121949,21.9690221577,21.9709321205,21.9728420833,21.9747520461,21.9766620089,21.9785719717,21.9804819345,21.9823918973,21.9843018601,21.9862118229,21.9881217857,21.9900317485,21.9919417113,21.993851674,21.9957616368,21.9976715996,21.9995815624,22.0014915252,22.003401488,22.0053114508,22.0072214136,22.0091313764,22.0110413392,22.012951302,22.0148612648,22.0167712276,22.0186811904,22.0205911532,22.022501116,22.0244110788,22.0263210416,22.0282310044,22.0301409672,22.03205093,22.0339608928,22.0358708555,22.0377808183,22.0396907811,22.0416007439,22.0435107067,22.0454206695,22.0473306323,22.0492405951,22.0511505579,22.0530605207,22.0549704835,22.0568804463,22.0587904091,22.0607003719,22.0626103347,22.0645202975,22.0664302603,22.0683402231,22.0702501859,22.0721601487,22.0740701115,22.0759800742,22.077890037,22.0797999998,22.0817099626,22.0836199254,22.0855298882,22.087439851,22.0893498138,22.0912597766,22.0931697394,22.0950797022,22.096989665,22.0988996278,22.1008095906,22.1027195534,22.1046295162,22.106539479,22.1084494418,22.1103594046,22.1122693674,22.1141793302,22.116089293,22.1179992557,22.1199092185,22.1218191813,22.1237291441,22.1256391069,22.1275490697,22.1294590325,22.1313689953,22.1332789581,22.1351889209,22.1370988837,22.1390088465,22.1409188093,22.1428287721,22.1447387349,22.1466486977,22.1485586605,22.1504686233,22.1523785861,22.1542885489,22.1561985117,22.1581084744,22.1600184372,22.1619284,22.1638383628,22.1657483256,22.1676582884,22.1695682512,22.171478214,22.1733881768,22.1752981396,22.1772081024,22.1791180652,22.181028028,22.1829379908,22.1848479536,22.1867579164,22.1886678792,22.190577842,22.1924878048,22.1943977676,22.1963077304,22.1982176932,22.2001276559,22.2020376187,22.2039475815,22.2058575443,22.2077675071,22.2096774699,22.2115874327,22.2134973955,22.2154073583,22.2173173211,22.2192272839,22.2211372467,22.2230472095,22.2249571723,22.2268671351,22.2287770979,22.2306870607,22.2325970235,22.2345069863,22.2364169491,22.2383269119,22.2402368746,22.2421468374,22.2440568002,22.245966763,22.2478767258,22.2497866886,22.2516966514,22.2536066142,22.255516577,22.2574265398,22.2593365026,22.2612464654,22.2631564282,22.265066391,22.2669763538,22.2688863166,22.2707962794,22.2727062422,22.274616205,22.2765261678,22.2784361306,22.2803460934,22.2822560561,22.2841660189,22.2860759817,22.2879859445,22.2898959073,22.2918058701,22.2937158329,22.2956257957,22.2975357585,22.2994457213,22.3013556841,22.3032656469,22.3051756097,22.3070855725,22.3089955353,22.3109054981,22.3128154609,22.3147254237,22.3166353865,22.3185453493,22.3204553121,22.3223652749,22.3242752376,22.3261852004,22.3280951632,22.330005126,22.3319150888,22.3338250516,22.3357350144,22.3376449772,22.33955494,22.3414649028,22.3433748656,22.3452848284,22.3471947912,22.349104754,22.3510147168,22.3529246796,22.3548346424,22.3567446052,22.358654568,22.3605645308,22.3624744936,22.3643844563,22.3662944191,22.3682043819,22.3701143447,22.3720243075,22.3739342703,22.3758442331,22.3777541959,22.3796641587,22.3815741215,22.3834840843,22.3853940471,22.3873040099,22.3892139727,22.3911239355,22.3930338983,22.3949438611,22.3968538239,22.3987637867,22.4006737495,22.4025837123,22.4044936751,22.4064036378,22.4083136006,22.4102235634,22.4121335262,22.414043489,22.4159534518,22.4178634146,22.4197733774,22.4216833402,22.423593303,22.4255032658,22.4274132286,22.4293231914,22.4312331542,22.433143117,22.4350530798,22.4369630426,22.4388730054,22.4407829682,22.442692931,22.4446028938,22.4465128565,22.4484228193,22.4503327821,22.4522427449,22.4541527077,22.4560626705,22.4579726333,22.4598825961,22.4617925589,22.4637025217,22.4656124845,22.4675224473,22.4694324101,22.4713423729,22.4732523357,22.4751622985,22.4770722613,22.4789822241,22.4808921869,22.4828021497,22.4847121125,22.4866220753,22.488532038,22.4904420008,22.4923519636,22.4942619264,22.4961718892,22.498081852,22.4999918148,22.5019017776,22.5038117404,22.5057217032,22.507631666,22.5095416288,22.5114515916,22.5133615544,22.5152715172,22.51718148,22.5190914428,22.5210014056,22.5229113684,22.5248213312,22.526731294,22.5286412567,22.5305512195,22.5324611823,22.5343711451,22.5362811079,22.5381910707,22.5401010335,22.5420109963,22.5439209591,22.5458309219,22.5477408847,22.5496508475,22.5515608103,22.5534707731,22.5553807359,22.5572906987,22.5592006615,22.5611106243,22.5630205871,22.5649305499,22.5668405127,22.5687504755,22.5706604382,22.572570401,22.5744803638,22.5763903266,22.5783002894,22.5802102522,22.582120215,22.5840301778,22.5859401406,22.5878501034,22.5897600662,22.591670029,22.5935799918,22.5954899546,22.5973999174,22.5993098802,22.601219843,22.6031298058,22.6050397686,22.6069497314,22.6088596942,22.6107696569,22.6126796197,22.6145895825,22.6164995453,22.6184095081,22.6203194709,22.6222294337,22.6241393965,22.6260493593,22.6279593221,22.6298692849,22.6317792477,22.6336892105,22.6355991733,22.6375091361,22.6394190989,22.6413290617,22.6432390245,22.6451489873,22.6470589501,22.6489689129,22.6508788757,22.6527888384,22.6546988012,22.656608764,22.6585187268,22.6604286896,22.6623386524,22.6642486152,22.666158578,22.6680685408,22.6699785036,22.6718884664,22.6737984292,22.675708392,22.6776183548,22.6795283176,22.6814382804,22.6833482432,22.685258206,22.6871681688,22.6890781316,22.6909880944,22.6928980572,22.6948080199,22.6967179827,22.6986279455,22.7005379083,22.7024478711,22.7043578339,22.7062677967,22.7081777595,22.7100877223,22.7119976851,22.7139076479,22.7158176107,22.7177275735,22.7196375363,22.7215474991,22.7234574619,22.7253674247,22.7272773875,22.7291873503,22.7310973131,22.7330072759,22.7349172386,22.7368272014,22.7387371642,22.740647127,22.7425570898,22.7444670526,22.7463770154,22.7482869782,22.750196941,22.7521069038,22.7540168666,22.7559268294,22.7578367922,22.759746755,22.7616567178,22.7635666806,22.7654766434,22.7673866062,22.769296569,22.7712065318,22.7731164946,22.7750264574,22.7769364201,22.7788463829,22.7807563457,22.7826663085,22.7845762713,22.7864862341,22.7883961969,22.7903061597,22.7922161225,22.7941260853,22.7943861442,22.7946462032,22.7949062621,22.795166321,22.79542638,22.7956864389,22.7959464978,22.7962065568,22.7964666157,22.7967266746,22.7969867336,22.7972467925,22.7975068514,22.7977669103,22.7980269693,22.7982870282,22.7985470871,22.7988071461,22.799067205,22.7993272639,22.7995873229,22.7998473818,22.8001074407,22.8003674997,22.8006275586,22.8008876175,22.8011476765,22.8014077354,22.8016677943,22.8019278533,22.8021879122,22.8024479711,22.80270803,22.802968089,22.8032281479,22.8034882068,22.8037482658,22.8040083247,22.8042683836,22.8045284426,22.8047885015,22.8050485604,22.8053086194,22.8055686783,22.8058287372,22.8060887962,22.8063488551,22.806608914,22.806868973,22.8071290319,22.8073890908,22.8076491497,22.8079092087,22.8081692676,22.8084293265,22.8086893855,22.8089494444,22.8092095033,22.8094695623,22.8097296212,22.8099896801,22.8102497391,22.810509798,22.8107698569,22.8110299159,22.8112899748,22.8115500337,22.8118100927,22.8120701516,22.8123302105,22.8125902694,22.8128503284,22.8131103873,22.8133704462,22.8136305052,22.8138905641,22.814150623,22.814410682,22.8146707409,22.8149307998,22.8151908588,22.8154509177,22.8157109766,22.8159710356,22.8162310945,22.8164911534,22.8167512124,22.8170112713,22.8172713302,22.8175313891,22.8177914481,22.818051507,22.8183115659,22.8185716249,22.8188316838,22.8190917427,22.8193518017,22.8196118606,22.8198719195,22.8201319785,22.8203920374,22.8206520963,22.8209121553,22.8211722142,22.8214322731,22.8216923321,22.821952391,22.8222124499,22.8224725088,22.8227325678,22.8229926267,22.8232526856,22.8235127446,22.8237728035,22.8240328624,22.8242929214,22.8245529803,22.8248130392,22.8250730982,22.8253331571,22.825593216,22.825853275,22.8261133339,22.8263733928,22.8266334518,22.8268935107,22.8271535696,22.8274136285,22.8276736875,22.8279337464,22.8281938053,22.8284538643,22.8287139232,22.8289739821,22.8292340411,22.8294941,22.8297541589,22.8300142179,22.8302742768,22.8305343357,22.8307943947,22.8310544536,22.8313145125,22.8315745715,22.8318346304,22.8320946893,22.8323547482,22.8326148072,22.8328748661,22.833134925,22.833394984,22.8336550429,22.8339151018,22.8341751608,22.8344352197,22.8346952786,22.8349553376,22.8352153965,22.8354754554,22.8357355144,22.8359955733,22.8362556322,22.8365156912,22.8367757501,22.837035809,22.8372958679,22.8375559269,22.8378159858,22.8380760447,22.8383361037,22.8385961626,22.8388562215,22.8391162805,22.8393763394,22.8396363983,22.8398964573,22.8401565162,22.8404165751,22.8406766341,22.840936693,22.8411967519,22.8414568109,22.8417168698,22.8419769287,22.8422369876,22.8424970466,22.8427571055,22.8430171644,22.8432772234,22.8435372823,22.8437973412,22.8440574002,22.8443174591,22.844577518,22.844837577,22.8450976359,22.8453576948,22.8456177538,22.8458778127,22.8461378716,22.8463979306,22.8466579895,22.8469180484,22.8471781073,22.8474381663,22.8476982252,22.8479582841,22.8482183431,22.848478402,22.8487384609,22.8489985199,22.8492585788,22.8495186377,22.8497786967,22.8500387556,22.8502988145,22.8505588735,22.8508189324,22.8510789913,22.8513390503,22.8515991092,22.8518591681,22.852119227,22.852379286,22.8526393449,22.8528994038,22.8531594628,22.8534195217,22.8536795806,22.8539396396,22.8541996985,22.8544597574,22.8547198164,22.8549798753,22.8552399342,22.8554999932,22.8557600521,22.856020111,22.85628017,22.8565402289,22.8568002878,22.8570603467,22.8573204057,22.8575804646,22.8578405235,22.8581005825,22.8583606414,22.8586207003,22.8588807593,22.8591408182,22.8594008771,22.8596609361,22.859920995,22.8601810539,22.8604411129,22.8607011718,22.8609612307,22.8612212897,22.8614813486,22.8617414075,22.8620014664,22.8622615254,22.8625215843,22.8627816432,22.8630417022,22.8633017611,22.86356182,22.863821879,22.8640819379,22.8643419968,22.8646020558,22.8648621147,22.8651221736,22.8653822326,22.8656422915,22.8659023504,22.8661624094,22.8664224683,22.8666825272,22.8669425861,22.8672026451,22.867462704,22.8677227629,22.8679828219,22.8682428808,22.8685029397,22.8687629987,22.8690230576,22.8692831165,22.8695431755,22.8698032344,22.8700632933,22.8703233523,22.8705834112,22.8708434701,22.8711035291,22.871363588,22.8716236469,22.8718837058,22.8721437648,22.8724038237,22.8726638826,22.8729239416,22.8731840005,22.8734440594,22.8737041184,22.8739641773,22.8742242362,22.8744842952,22.8747443541,22.875004413,22.875264472,22.8755245309,22.8757845898,22.8760446488,22.8763047077,22.8765647666,22.8768248255,22.8770848845,22.8773449434,22.8776050023,22.8778650613,22.8781251202,22.8783851791,22.8786452381,22.878905297,22.8791653559,22.8794254149,22.8796854738,22.8799455327,22.8802055917,22.8804656506,22.8807257095,22.8809857685,22.8812458274,22.8815058863,22.8817659452,22.8820260042,22.8822860631,22.882546122,22.882806181,22.8830662399,22.8833262988,22.8835863578,22.8838464167,22.8841064756,22.8843665346,22.8846265935,22.8848866524,22.8851467114,22.8854067703,22.8856668292,22.8859268882,22.8861869471,22.886447006,22.8867070649,22.8869671239,22.8872271828,22.8874872417,22.8877473007,22.8880073596,22.8882674185,22.8885274775,22.8887875364,22.8890475953,22.8893076543,22.8895677132,22.8898277721,22.8900878311,22.89034789,22.8906079489,22.8908680079,22.8911280668,22.8913881257,22.8916481846,22.8919082436,22.8921683025,22.8924283614,22.8926884204,22.8929484793,22.8932085382,22.8934685972,22.8937286561,22.893988715,22.894248774,22.8945088329,22.8947688918,22.8950289508,22.8952890097,22.8955490686,22.8958091276,22.8960691865,22.8963292454,22.8965893043,22.8968493633,22.8971094222,22.8973694811,22.8976295401,22.897889599,22.8981496579,22.8984097169,22.8986697758,22.8989298347,22.8991898937,22.8994499526,22.8997100115,22.8999700705,22.9002301294,22.9004901883,22.9007502473,22.9010103062,22.9012703651,22.901530424,22.901790483,22.9020505419,22.9023106008,22.9025706598,22.9028307187,22.9030907776,22.9033508366,22.9036108955,22.9038709544,22.9041310134,22.9043910723,22.9046511312,22.9049111902,22.9051712491,22.905431308,22.905691367,22.9059514259,22.9062114848,22.9064715437,22.9067316027,22.9069916616,22.9072517205,22.9075117795,22.9077718384,22.9080318973,22.9082919563,22.9085520152,22.9088120741,22.9090721331,22.909332192,22.9095922509,22.9098523099,22.9101123688,22.9103724277,22.9106324867,22.9108925456,22.9111526045,22.9114126635,22.9116727224,22.9119327813,22.9121928402,22.9124528992,22.9127129581,22.912973017,22.913233076,22.9134931349,22.9137531938,22.9140132528,22.9142733117,22.9145333706,22.9147934296,22.9150534885,22.9153135474,22.9155736064,22.9158336653,22.9160937242,22.9163537832,22.9166138421,22.916873901,22.9171339599,22.9173940189,22.9176540778,22.9179141367,22.9181741957,22.9184342546,22.9186943135,22.9189543725,22.9192144314,22.9194744903,22.9197345493,22.9199946082,22.9202546671,22.9205147261,22.920774785,22.9210348439,22.9212949029,22.9215549618,22.9218150207,22.9220750796,22.9223351386,22.9225951975,22.9228552564,22.9231153154,22.9233753743,22.9236354332,22.9238954922,22.9241555511,22.92441561,22.924675669,22.9249357279,22.9251957868,22.9254558458,22.9257159047,22.9259759636,22.9262360226,22.9264960815,22.9267561404,22.9270161993,22.9272762583,22.9275363172,22.9277963761,22.9280564351,22.928316494,22.9285765529,22.9288366119,22.9290966708,22.9293567297,22.9296167887,22.9298768476,22.9301369065,22.9303969655,22.9306570244,22.9309170833,22.9311771423,22.9314372012,22.9316972601,22.931957319,22.932217378,22.9324774369,22.9327374958,22.9329975548,22.9332576137,22.9335176726,22.9337777316,22.9340377905,22.9342978494,22.9345579084,22.9348179673,22.9350780262,22.9353380852,22.9355981441,22.935858203,22.936118262,22.9363783209,22.9366383798,22.9368984387,22.9371584977,22.9374185566,22.9376786155,22.9379386745,22.9381987334,22.9384587923,22.9387188513,22.9389789102,22.9392389691,22.9394990281,22.939759087,22.9400191459,22.9402792049,22.9405392638,22.9407993227,22.9410593817,22.9413194406,22.9415794995,22.9418395584,22.9420996174,22.9423596763,22.9426197352,22.9428797942,22.9431398531,22.943399912,22.943659971,22.9439200299,22.9441800888,22.9444401478,22.9447002067,22.9449602656,22.9452203246,22.9454803835,22.9457404424,22.9460005014,22.9462605603,22.9465206192,22.9467806781,22.9470407371,22.947300796,22.9475608549,22.9478209139,22.9480809728,22.9483410317,22.9486010907,22.9488611496,22.9491212085,22.9493812675,22.9496413264,22.9499013853,22.9501614443,22.9504215032,22.9506815621,22.9509416211,22.95120168,22.9498089057,22.9484161314,22.9470233572,22.9456305829,22.9442378086,22.9428450343,22.94145226,22.9400594858,22.9386667115,22.9372739372,22.9358811629,22.9344883887,22.9330956144,22.9317028401,22.9303100658,22.9289172916,22.9275245173,22.926131743,22.9247389687,22.9233461944,22.9219534202,22.9205606459,22.9191678716,22.9177750973,22.9163823231,22.9149895488,22.9135967745,22.9122040002,22.9108112259,22.9094184517,22.9080256774,22.9066329031,22.9052401288,22.9038473546,22.9024545803,22.901061806,22.8996690317,22.8982762575,22.8968834832,22.8954907089,22.8940979346,22.8927051603,22.8913123861,22.8899196118,22.8885268375,22.8871340632,22.885741289,22.8843485147,22.8829557404,22.8815629661,22.8801701919,22.8787774176,22.8773846433,22.875991869,22.8745990947,22.8732063205,22.8718135462,22.8704207719,22.8690279976,22.8676352234,22.8662424491,22.8648496748,22.8634569005,22.8620641263,22.860671352,22.8592785777,22.8578858034,22.8564930291,22.8551002549,22.8537074806,22.8523147063,22.850921932,22.8495291578,22.8481363835,22.8467436092,22.8453508349,22.8439580607,22.8425652864,22.8411725121,22.8397797378,22.8383869635,22.8369941893,22.835601415,22.8342086407,22.8328158664,22.8314230922,22.8300303179,22.8286375436,22.8272447693,22.8258519951,22.8244592208,22.8230664465,22.8216736722,22.8202808979,22.8188881237,22.8174953494,22.8161025751,22.8147098008,22.8133170266,22.8119242523,22.810531478,22.8091387037,22.8077459295,22.8063531552,22.8049603809,22.8035676066,22.8021748323,22.8007820581,22.7993892838,22.7979965095,22.7966037352,22.795210961,22.7938181867,22.7924254124,22.7910326381,22.7896398639,22.7882470896,22.7868543153,22.785461541,22.7840687667,22.7826759925,22.7812832182,22.7798904439,22.7784976696,22.7771048954,22.7757121211,22.7743193468,22.7729265725,22.7715337982,22.770141024,22.7687482497,22.7673554754,22.7659627011,22.7645699269,22.7631771526,22.7617843783,22.760391604,22.7589988298,22.7576060555,22.7562132812,22.7548205069,22.7534277326,22.7520349584,22.7506421841,22.7492494098,22.7478566355,22.7464638613,22.745071087,22.7436783127,22.7422855384,22.7408927642,22.7394999899,22.7381072156,22.7367144413,22.735321667,22.7339288928,22.7325361185,22.7311433442,22.7297505699,22.7283577957,22.7269650214,22.7255722471,22.7241794728,22.7227866986,22.7213939243,22.72000115,22.7186083757,22.7172156014,22.7158228272,22.7144300529,22.7130372786,22.7116445043,22.7102517301,22.7088589558,22.7074661815,22.7060734072,22.704680633,22.7032878587,22.7018950844,22.7005023101,22.6991095358,22.6977167616,22.6963239873,22.694931213,22.6935384387,22.6921456645,22.6907528902,22.6893601159,22.6879673416,22.6865745674,22.6851817931,22.6837890188,22.6823962445,22.6810034702,22.679610696,22.6782179217,22.6768251474,22.6754323731,22.6740395989,22.6726468246,22.6712540503,22.669861276,22.6684685018,22.6670757275,22.6656829532,22.6642901789,22.6628974046,22.6615046304,22.6601118561,22.6587190818,22.6573263075,22.6559335333,22.654540759,22.6531479847,22.6517552104,22.6503624362,22.6489696619,22.6475768876,22.6461841133,22.644791339,22.6433985648,22.6420057905,22.6406130162,22.6392202419,22.6378274677,22.6364346934,22.6350419191,22.6336491448,22.6322563705,22.6308635963,22.629470822,22.6280780477,22.6266852734,22.6252924992,22.6238997249,22.6225069506,22.6211141763,22.6197214021,22.6183286278,22.6169358535,22.6155430792,22.6141503049,22.6127575307,22.6113647564,22.6099719821,22.6085792078,22.6071864336,22.6057936593,22.604400885,22.6030081107,22.6016153365,22.6002225622,22.5988297879,22.5974370136,22.5960442393,22.5946514651,22.5932586908,22.5918659165,22.5904731422,22.589080368,22.5876875937,22.5862948194,22.5849020451,22.5835092709,22.5821164966,22.5807237223,22.579330948,22.5779381737,22.5765453995,22.5751526252,22.5737598509,22.5723670766,22.5709743024,22.5695815281,22.5681887538,22.5667959795,22.5654032053,22.564010431,22.5626176567,22.5612248824,22.5598321081,22.5584393339,22.5570465596,22.5556537853,22.554261011,22.5528682368,22.5514754625,22.5500826882,22.5486899139,22.5472971397,22.5459043654,22.5445115911,22.5431188168,22.5417260425,22.5403332683,22.538940494,22.5375477197,22.5361549454,22.5347621712,22.5333693969,22.5319766226,22.5305838483,22.5291910741,22.5277982998,22.5264055255,22.5250127512,22.5236199769,22.5222272027,22.5208344284,22.5194416541,22.5180488798,22.5166561056,22.5152633313,22.513870557,22.5124777827,22.5110850085,22.5096922342,22.5082994599,22.5069066856,22.5055139113,22.5041211371,22.5027283628,22.5013355885,22.4999428142,22.49855004,22.4971572657,22.4957644914,22.4943717171,22.4929789428,22.4915861686,22.4901933943,22.48880062,22.4874078457,22.4860150715,22.4846222972,22.4832295229,22.4818367486,22.4804439744,22.4790512001,22.4776584258,22.4762656515,22.4748728772,22.473480103,22.4720873287,22.4706945544,22.4693017801,22.4679090059,22.4665162316,22.4651234573,22.463730683,22.4623379088,22.4609451345,22.4595523602,22.4581595859,22.4567668116,22.4553740374,22.4539812631,22.4525884888,22.4511957145,22.4498029403,22.448410166,22.4470173917,22.4456246174,22.4442318432,22.4428390689,22.4414462946,22.4400535203,22.438660746,22.4372679718,22.4358751975,22.4344824232,22.4330896489,22.4316968747,22.4303041004,22.4289113261,22.4275185518,22.4261257776,22.4247330033,22.423340229,22.4219474547,22.4205546804,22.4191619062,22.4177691319,22.4163763576,22.4149835833,22.4135908091,22.4121980348,22.4108052605,22.4094124862,22.408019712,22.4066269377,22.4052341634,22.4038413891,22.4024486148,22.4010558406,22.3996630663,22.398270292,22.3968775177,22.3954847435,22.3940919692,22.3926991949,22.3913064206,22.3899136464,22.3885208721,22.3871280978,22.3857353235,22.3843425492,22.382949775,22.3815570007,22.3801642264,22.3787714521,22.3773786779,22.3759859036,22.3745931293,22.373200355,22.3718075807,22.3704148065,22.3690220322,22.3676292579,22.3662364836,22.3648437094,22.3634509351,22.3620581608,22.3606653865,22.3592726123,22.357879838,22.3564870637,22.3550942894,22.3537015151,22.3523087409,22.3509159666,22.3495231923,22.348130418,22.3467376438,22.3453448695,22.3439520952,22.3425593209,22.3411665467,22.3397737724,22.3383809981,22.3369882238,22.3355954495,22.3342026753,22.332809901,22.3314171267,22.3300243524,22.3286315782,22.3272388039,22.3258460296,22.3244532553,22.3230604811,22.3216677068,22.3202749325,22.3188821582,22.3174893839,22.3160966097,22.3147038354,22.3133110611,22.3119182868,22.3105255126,22.3091327383,22.307739964,22.3063471897,22.3049544155,22.3035616412,22.3021688669,22.3007760926,22.2993833183,22.2979905441,22.2965977698,22.2952049955,22.2938122212,22.292419447,22.2910266727,22.2896338984,22.2882411241,22.2868483499,22.2854555756,22.2840628013,22.282670027,22.2812772527,22.2798844785,22.2784917042,22.2770989299,22.2757061556,22.2743133814,22.2729206071,22.2715278328,22.2701350585,22.2687422843,22.26734951,22.2659567357,22.2645639614,22.2631711871,22.2617784129,22.2603856386,22.2589928643,22.25760009,22.2562073158,22.2548145415,22.2534217672,22.2520289929,22.2506362187,22.2492434444,22.2478506701,22.2464578958,22.2450651215,22.2436723473,22.242279573,22.2408867987,22.2394940244,22.2381012502,22.2367084759,22.2353157016,22.2339229273,22.232530153,22.2311373788,22.2297446045,22.2283518302,22.2269590559,22.2255662817,22.2241735074,22.2227807331,22.2213879588,22.2199951846,22.2186024103,22.217209636,22.2158168617,22.2144240874,22.2130313132,22.2116385389,22.2102457646,22.2088529903,22.2074602161,22.2060674418,22.2046746675,22.2032818932,22.201889119,22.2004963447,22.1991035704,22.1977107961,22.1963180218,22.1949252476,22.1935324733,22.192139699,22.1907469247,22.1893541505,22.1879613762,22.1865686019,22.1851758276,22.1837830534,22.1823902791,22.1809975048,22.1796047305,22.1782119562,22.176819182,22.1754264077,22.1740336334,22.1726408591,22.1712480849,22.1698553106,22.1684625363,22.167069762,22.1656769878,22.1642842135,22.1628914392,22.1614986649,22.1601058906,22.1587131164,22.1573203421,22.1559275678,22.1545347935,22.1531420193,22.151749245,22.1503564707,22.1489636964,22.1475709222,22.1461781479,22.1447853736,22.1433925993,22.141999825,22.1406070508,22.1392142765,22.1378215022,22.1364287279,22.1350359537,22.1336431794,22.1322504051,22.1308576308,22.1294648566,22.1280720823,22.126679308,22.1252865337,22.1238937594,22.1225009852,22.1211082109,22.1197154366,22.1183226623,22.1169298881,22.1155371138,22.1141443395,22.1127515652,22.111358791,22.1099660167,22.1071625597,22.1043591028,22.1015556458,22.0987521888,22.0959487319,22.0931452749,22.090341818,22.087538361,22.084734904,22.0819314471,22.0791279901,22.0763245332,22.0735210762,22.0707176192,22.0679141623,22.0651107053,22.0623072484,22.0595037914,22.0567003344,22.0538968775,22.0510934205,22.0482899636,22.0454865066,22.0426830496,22.0398795927,22.0370761357,22.0342726788,22.0314692218,22.0286657648,22.0258623079,22.0230588509,22.020255394,22.017451937,22.01464848,22.0118450231,22.0090415661,22.0062381092,22.0034346522,22.0006311952,21.9978277383,21.9950242813,21.9922208244,21.9894173674,21.9866139104,21.9838104535,21.9810069965,21.9782035396,21.9754000826,21.9725966256,21.9697931687,21.9669897117,21.9641862548,21.9613827978,21.9585793408,21.9557758839,21.9529724269,21.95016897,21.947365513,21.944562056,21.9417585991,21.9389551421,21.9361516852,21.9333482282,21.9305447712,21.9277413143,21.9249378573,21.9221344004,21.9193309434,21.9165274864,21.9137240295,21.9109205725,21.9081171156,21.9053136586,21.9025102016,21.8997067447,21.8969032877,21.8940998308,21.8912963738,21.8884929169,21.8856894599,21.8828860029,21.880082546,21.877279089,21.8744756321,21.8716721751,21.8688687181,21.8660652612,21.8632618042,21.8604583473,21.8576548903,21.8548514333,21.8520479764,21.8492445194,21.8464410625,21.8436376055,21.8408341485,21.8380306916,21.8352272346,21.8324237777,21.8296203207,21.8268168637,21.8240134068,21.8212099498,21.8184064929,21.8156030359,21.8127995789,21.809996122,21.807192665,21.8043892081,21.8015857511,21.7987822941,21.7959788372,21.7931753802,21.7903719233,21.7875684663,21.7847650093,21.7819615524,21.7791580954,21.7763546385,21.7735511815,21.7707477245,21.7679442676,21.7651408106,21.7623373537,21.7595338967,21.7567304397,21.7539269828,21.7511235258,21.7483200689,21.7455166119,21.7427131549,21.739909698,21.737106241,21.7343027841,21.7314993271,21.7286958701,21.7258924132,21.7230889562,21.7202854993,21.7174820423,21.7146785853,21.7118751284,21.7090716714,21.7062682145,21.7034647575,21.7006613005,21.6978578436,21.6950543866,21.6922509297,21.6894474727,21.6866440157,21.6838405588,21.6810371018,21.6782336449,21.6754301879,21.6726267309,21.669823274,21.667019817,21.6642163601,21.6614129031,21.6586094461,21.6558059892,21.6530025322,21.6501990753,21.6473956183,21.6445921614,21.6417887044,21.6389852474,21.6361817905,21.6333783335,21.6305748766,21.6277714196,21.6249679626,21.6221645057,21.6193610487,21.6165575918,21.6137541348,21.6109506778,21.6081472209,21.6053437639,21.602540307,21.59973685,21.596933393,21.5941299361,21.5913264791,21.5885230222,21.5857195652,21.5829161082,21.5801126513,21.5773091943,21.5745057374,21.5717022804,21.5688988234,21.5660953665,21.5632919095,21.5604884526,21.5576849956,21.5548815386,21.5520780817,21.5492746247,21.5464711678,21.5436677108,21.5408642538,21.5380607969,21.5352573399,21.532453883,21.529650426,21.526846969,21.5240435121,21.5212400551,21.5184365982,21.5156331412,21.5128296842,21.5100262273,21.5072227703,21.5044193134,21.5016158564,21.4988123994,21.4960089425,21.4932054855,21.4904020286,21.4875985716,21.4847951146,21.4819916577,21.4791882007,21.4763847438,21.4735812868,21.4707778298,21.4679743729,21.4651709159,21.462367459,21.459564002,21.456760545,21.4539570881,21.4511536311,21.4483501742,21.4455467172,21.4427432602,21.4399398033,21.4371363463,21.4343328894,21.4315294324,21.4287259754,21.4259225185,21.4231190615,21.4203156046,21.4175121476,21.4147086906,21.4119052337,21.4091017767,21.4062983198,21.4034948628,21.4006914058,21.3978879489,21.3950844919,21.392281035,21.389477578,21.3866741211,21.3838706641,21.3810672071,21.3782637502,21.3754602932,21.3726568363,21.3698533793,21.3670499223,21.3642464654,21.3614430084,21.3586395515,21.3558360945,21.3530326375,21.3502291806,21.3474257236,21.3446222667,21.3418188097,21.3390153527,21.3362118958,21.3334084388,21.3306049819,21.3278015249,21.3249980679,21.322194611,21.319391154,21.3165876971,21.3137842401,21.3109807831,21.3081773262,21.3053738692,21.3025704123,21.2997669553,21.2969634983,21.2941600414,21.2913565844,21.2885531275,21.2857496705,21.2829462135,21.2801427566,21.2773392996,21.2745358427,21.2717323857,21.2689289287,21.2661254718,21.2633220148,21.2605185579,21.2577151009,21.2549116439,21.252108187,21.24930473,21.2465012731,21.2436978161,21.2408943591,21.2380909022,21.2352874452,21.2324839883,21.2296805313,21.2268770743,21.2240736174,21.2212701604,21.2184667035,21.2156632465,21.2128597895,21.2100563326,21.2072528756,21.2044494187,21.2016459617,21.1988425047,21.1960390478,21.1932355908,21.1904321339,21.1876286769,21.1848252199,21.182021763,21.179218306,21.1764148491,21.1736113921,21.1708079351,21.1680044782,21.1652010212,21.1623975643,21.1595941073,21.1567906503,21.1539871934,21.1511837364,21.1483802795,21.1455768225,21.1427733655,21.1399699086,21.1371664516,21.1343629947,21.1315595377,21.1287560808,21.1259526238,21.1231491668,21.1203457099,21.1175422529,21.114738796,21.111935339,21.109131882,21.1063284251,21.1035249681,21.1007215112,21.0979180542,21.0951145972,21.0923111403,21.0895076833,21.0867042264,21.0839007694,21.0810973124,21.0782938555,21.0754903985,21.0726869416,21.0698834846,21.0670800276,21.0642765707,21.0614731137,21.0586696568,21.0558661998,21.0530627428,21.0502592859,21.0474558289,21.044652372,21.041848915,21.039045458,21.0362420011,21.0334385441,21.0306350872,21.0278316302,21.0250281732,21.0222247163,21.0194212593,21.0166178024,21.0138143454,21.0110108884,21.0082074315,21.0054039745,21.0026005176,20.9997970606,20.9969936036,20.9941901467,20.9913866897,20.9885832328,20.9857797758,20.9829763188,20.9801728619,20.9773694049,20.974565948,20.971762491,20.968959034,20.9661555771,20.9633521201,20.9605486632,20.9577452062,20.9549417492,20.9521382923,20.9493348353,20.9465313784,20.9437279214,20.9409244644,20.9381210075,20.9353175505,20.9325140936,20.9297106366,20.9269071796,20.9241037227,20.9213002657,20.9184968088,20.9156933518,20.9128898948,20.9100864379,20.9072829809,20.904479524,20.901676067,20.89887261,20.8960691531,20.8932656961,20.8904622392,20.8876587822,20.8848553253,20.8820518683,20.8792484113,20.8764449544,20.8736414974,20.8708380405,20.8680345835,20.8652311265,20.8624276696,20.8596242126,20.8568207557,20.8540172987,20.8512138417,20.8484103848,20.8456069278,20.8428034709,20.8400000139,20.8371965569,20.8343931,20.831589643,20.8287861861,20.8259827291,20.8231792721,20.8203758152,20.8175723582,20.8147689013,20.8119654443,20.8091619873,20.8063585304,20.8035550734,20.8007516165,20.7979481595,20.7951447025,20.7923412456,20.7895377886,20.7867343317,20.7839308747,20.7811274177,20.7783239608,20.7755205038,20.7727170469,20.7699135899,20.7671101329,20.764306676,20.761503219,20.7586997621,20.7558963051,20.7530928481,20.7502893912,20.7474859342,20.7446824773,20.7418790203,20.7390755633,20.7362721064,20.7334686494,20.7306651925,20.7278617355,20.7250582785,20.7222548216,20.7194513646,20.7166479077,20.7138444507,20.7110409937,20.7082375368,20.7054340798,20.7026306229,20.6998271659,20.6970237089,20.694220252,20.691416795,20.6886133381,20.6858098811,20.6830064241,20.6802029672,20.6773995102,20.6745960533,20.6717925963,20.6689891393,20.6661856824,20.6633822254,20.6605787685,20.6577753115,20.6549718545,20.6521683976,20.6493649406,20.6465614837,20.6437580267,20.6409545697,20.6381511128,20.6353476558,20.6325441989,20.6297407419,20.626937285,20.624133828,20.621330371,20.6185269141,20.6157234571,20.6129200002,20.6101165432,20.6073130862,20.6045096293,20.6017061723,20.5989027154,20.5960992584,20.5932958014,20.5904923445,20.5876888875,20.5848854306,20.5820819736,20.5792785166,20.5764750597,20.5736716027,20.5708681458,20.5680646888,20.5652612318,20.5624577749,20.5596543179,20.556850861,20.554047404,20.551243947,20.5484404901,20.5456370331,20.5428335762,20.5400301192,20.5372266622,20.5344232053,20.5316197483,20.5288162914,20.5260128344,20.5232093774,20.5204059205,20.5176024635,20.5147990066,20.5119955496,20.5091920926,20.5063886357,20.5035851787,20.5007817218,20.4979782648,20.4951748078,20.4923713509,20.4895678939,20.486764437,20.48396098,20.481157523,20.4783540661,20.4755506091,20.4727471522,20.4699436952,20.4671402382,20.4643367813,20.4615333243,20.4587298674,20.4559264104,20.4531229534,20.4503194965,20.4475160395,20.4447125826,20.4419091256,20.4391056686,20.4363022117,20.4334987547,20.4306952978,20.4278918408,20.4250883838,20.4222849269,20.4194814699,20.416678013,20.4129553973,20.4092327817,20.4055101661,20.4017875505,20.3980649348,20.3943423192,20.3906197036,20.386897088,20.3831744723,20.3794518567,20.3757292411,20.3720066255,20.3682840098,20.3645613942,20.3608387786,20.357116163,20.3533935473,20.3496709317,20.3459483161,20.3422257005,20.3385030848,20.3347804692,20.3310578536,20.327335238,20.3236126223,20.3198900067,20.3161673911,20.3124447755,20.3087221598,20.3049995442,20.3012769286,20.297554313,20.2938316973,20.2901090817,20.2863864661,20.2826638505,20.2789412348,20.2752186192,20.2714960036,20.267773388,20.2640507723,20.2603281567,20.2566055411,20.2528829254,20.2491603098,20.2454376942,20.2417150786,20.2379924629,20.2342698473,20.2305472317,20.2268246161,20.2231020004,20.2193793848,20.2156567692,20.2119341536,20.2082115379,20.2044889223,20.2007663067,20.1970436911,20.1933210754,20.1895984598,20.1858758442,20.1821532286,20.1784306129,20.1747079973,20.1709853817,20.1672627661,20.1635401504,20.1598175348,20.1560949192,20.1523723036,20.1486496879,20.1449270723,20.1412044567,20.1374818411,20.1337592254,20.1300366098,20.1263139942,20.1225913786,20.1188687629,20.1151461473,20.1114235317,20.1077009161,20.1039783004,20.1002556848,20.0965330692,20.0928104536,20.0890878379,20.0853652223,20.0816426067,20.0779199911,20.0741973754,20.0704747598,20.0667521442,20.0630295286,20.0593069129,20.0555842973,20.0518616817,20.0481390661,20.0444164504,20.0406938348,20.0369712192,20.0332486036,20.0295259879,20.0258033723,20.0220807567,20.018358141,20.0146355254,20.0109129098,20.0071902942,20.0034676785,19.9997450629,19.9960224473,19.9922998317,19.988577216,19.9848546004,19.9811319848,19.9774093692,19.9736867535,19.9699641379,19.9662415223,19.9625189067,19.958796291,19.9550736754,19.9513510598,19.9476284442,19.9439058285,19.9401832129,19.9364605973,19.9327379817,19.929015366,19.9252927504,19.9215701348,19.9178475192,19.9141249035,19.9104022879,19.9066796723,19.9029570567,19.899234441,19.8955118254,19.8917892098,19.8880665942,19.8843439785,19.8806213629,19.8768987473,19.8731761317,19.869453516,19.8657309004,19.8620082848,19.8582856692,19.8545630535,19.8508404379,19.8471178223,19.8433952067,19.839672591,19.8359499754,19.8322273598,19.8285047442,19.8247821285,19.8210595129,19.8173368973,19.8136142817,19.809891666,19.8061690504,19.8024464348,19.7987238191,19.7950012035,19.7912785879,19.7875559723,19.7838333566,19.780110741,19.7763881254,19.7726655098,19.7689428941,19.7652202785,19.7614976629,19.7577750473,19.7540524316,19.750329816,19.7466072004,19.7428845848,19.7391619691,19.7354393535,19.7317167379,19.7279941223,19.7242715066,19.720548891,19.7168262754,19.7131036598,19.7093810441,19.7056584285,19.7019358129,19.6982131973,19.6944905816,19.690767966,19.6870453504,19.6833227348,19.6796001191,19.6758775035,19.6721548879,19.6684322723,19.6647096566,19.660987041,19.6572644254,19.6535418098,19.6498191941,19.6460965785,19.6423739629,19.6386513473,19.6349287316,19.631206116,19.6274835004,19.6237608848,19.6200382691,19.6163156535,19.6125930379,19.6088704223,19.6051478066,19.601425191,19.5977025754,19.5939799598,19.5902573441,19.5865347285,19.5828121129,19.5790894973,19.5753668816,19.571644266,19.5679216504,19.5641990347,19.5604764191,19.5567538035,19.5530311879,19.5493085722,19.5455859566,19.541863341,19.5381407254,19.5344181097,19.5306954941,19.5269728785,19.5232502629,19.5195276472,19.5158050316,19.512082416,19.5083598004,19.5046371847,19.5009145691,19.4971919535,19.4934693379,19.4897467222,19.4860241066,19.482301491,19.4785788754,19.4748562597,19.4711336441,19.4674110285,19.4636884129,19.4599657972,19.4562431816,19.452520566,19.4487979504,19.4450753347,19.4413527191,19.4376301035,19.4339074879,19.4301848722,19.4264622566,19.422739641,19.4190170254,19.4152944097,19.4115717941,19.4078491785,19.4041265629,19.4004039472,19.3966813316,19.392958716,19.3892361004,19.3855134847,19.3817908691,19.3780682535,19.3743456379,19.3706230222,19.3669004066,19.363177791,19.3594551754,19.3557325597,19.3520099441,19.3482873285,19.3445647129,19.3408420972,19.3371194816,19.333396866,19.3296742503,19.3259516347,19.3222290191,19.3185064035,19.3147837878,19.3110611722,19.3073385566,19.303615941,19.2998933253,19.2961707097,19.2924480941,19.2887254785,19.2850028628,19.2812802472,19.2775576316,19.273835016,19.2701124003,19.2663897847,19.2626671691,19.2589445535,19.2552219378,19.2514993222,19.2477767066,19.244054091,19.2403314753,19.2366088597,19.2328862441,19.2291636285,19.2254410128,19.2217183972,19.2179957816,19.214273166,19.2105505503,19.2068279347,19.2031053191,19.1993827035,19.1956600878,19.1919374722,19.1882148566,19.184492241,19.1807696253,19.1770470097,19.1733243941,19.1696017785,19.1658791628,19.1621565472,19.1584339316,19.154711316,19.1509887003,19.1472660847,19.1435434691,19.1398208535,19.1360982378,19.1323756222,19.1286530066,19.124930391,19.1212077753,19.1174851597,19.1137625441,19.1100399284,19.1063173128,19.1025946972,19.0988720816,19.0951494659,19.0914268503,19.0877042347,19.0839816191,19.0802590034,19.0765363878,19.0728137722,19.0690911566,19.0653685409,19.0616459253,19.0579233097,19.0542006941,19.0504780784,19.0467554628,19.0430328472,19.0393102316,19.0355876159,19.0318650003,19.0281423847,19.0244197691,19.0206971534,19.0169745378,19.0132519222,19.0095293066,19.0058066909,19.0020840753,18.9983614597,18.9946388441,18.9909162284,18.9871936128,18.9834709972,18.9797483816,18.9760257659,18.9723031503,18.9685805347,18.9648579191,18.9611353034,18.9574126878,18.9536900722,18.9499674566,18.9462448409,18.9425222253,18.9387996097,18.9350769941,18.9313543784,18.9276317628,18.9239091472,18.9201865316,18.9164639159,18.9127413003,18.9090186847,18.9052960691,18.9015734534,18.8978508378,18.8941282222,18.8904056066,18.8866829909,18.8829603753,18.8792377597,18.875515144,18.8717925284,18.8680699128,18.8643472972,18.8606246815,18.8569020659,18.8531794503,18.8494568347,18.845734219,18.8420116034,18.8382889878,18.8345663722,18.8308437565,18.8271211409,18.8233985253,18.8196759097,18.815953294,18.8122306784,18.8085080628,18.8047854472,18.8010628315,18.7973402159,18.7936176003,18.7898949847,18.786172369,18.7824497534,18.7787271378,18.7750045222,18.7712819065,18.7675592909,18.7638366753,18.7601140597,18.756391444,18.7526688284,18.7489462128,18.7452235972,18.7415009815,18.7377783659,18.7340557503,18.7303331347,18.726610519,18.7228879034,18.7191652878,18.7154426722,18.7117200565,18.7079974409,18.7042748253,18.7005522097,18.696829594,18.6931069784,18.6893843628,18.6856617472,18.6819391315,18.6782165159,18.6744939003,18.6707712847,18.667048669,18.6633260534,18.6596034378,18.6558808222,18.6521582065,18.6484355909,18.6447129753,18.6409903596,18.637267744,18.6335451284,18.6298225128,18.6260998971,18.6223772815,18.6186546659,18.6149320503,18.6112094346,18.607486819,18.6037642034,18.6000415878,18.5963189721,18.5925963565,18.5888737409,18.5851511253,18.5814285096,18.577705894,18.5739832784,18.5702606628,18.5665380471,18.5628154315,18.5590928159,18.5553702003,18.5516475846,18.547924969,18.5442023534,18.5404797378,18.5367571221,18.5330345065,18.5293118909,18.5255892753,18.5218666596,18.518144044,18.5144214284,18.5106988128,18.5069761971,18.5032535815,18.4995309659,18.4958083503,18.4920857346,18.488363119,18.4846405034,18.4809178878,18.4771952721,18.4734726565,18.4697500409,18.4660274253,18.4623048096,18.458582194,18.4548595784,18.4511369628,18.4474143471,18.4436917315,18.4399691159,18.4362465003,18.4325238846,18.428801269,18.4250786534,18.4213560378,18.4176334221,18.4139108065,18.4101881909,18.4064655752,18.4027429596,18.399020344,18.3952977284,18.3915751127,18.3878524971,18.3841298815,18.3804072659,18.3766846502,18.3729620346,18.369239419,18.3655168034,18.3617941877,18.3580715721,18.3543489565,18.3506263409,18.3469037252,18.3431811096,18.339458494,18.3357358784,18.3320132627,18.3282906471,18.3245680315,18.3208454159,18.3171228002,18.3134001846,18.309677569,18.3059549534,18.3022323377,18.2985097221,18.2947871065,18.2910644909,18.2873418752,18.2836192596,18.279896644,18.2761740284,18.2724514127,18.2687287971,18.2650061815,18.2612835659,18.2575609502,18.2538383346,18.250115719,18.2463931034,18.2426704877,18.2389478721,18.2352252565,18.2315026409,18.2277800252,18.2240574096,18.220334794,18.2166121784,18.2128895627,18.2091669471,18.2054443315,18.2017217159,18.1979991002,18.1942764846,18.190553869,18.1868312533,18.1831086377,18.1793860221,18.1756634065,18.1719407908,18.1682181752,18.1641446346,18.160071094,18.1559975534,18.1519240128,18.1478504722,18.1437769316,18.139703391,18.1356298504,18.1315563098,18.1274827692,18.1234092286,18.119335688,18.1152621474,18.1111886068,18.1071150662,18.1030415256,18.098967985,18.0948944444,18.0908209038,18.0867473632,18.0826738226,18.078600282,18.0745267414,18.0704532008,18.0663796602,18.0623061196,18.058232579,18.0541590384,18.0500854977,18.0460119571,18.0419384165,18.0378648759,18.0337913353,18.0297177947,18.0256442541,18.0215707135,18.0174971729,18.0134236323,18.0093500917,18.0052765511,18.0012030105,17.9971294699,17.9930559293,17.9889823887,17.9849088481,17.9808353075,17.9767617669,17.9726882263,17.9686146857,17.9645411451,17.9604676045,17.9563940639,17.9523205233,17.9482469827,17.9441734421,17.9400999015,17.9360263609,17.9319528203,17.9278792797,17.9238057391,17.9197321985,17.9156586579,17.9115851173,17.9075115767,17.9034380361,17.8993644955,17.8952909549,17.8912174143,17.8871438736,17.883070333,17.8789967924,17.8749232518,17.8708497112,17.8667761706,17.86270263,17.8586290894,17.8545555488,17.8504820082,17.8464084676,17.842334927,17.8382613864,17.8341878458,17.8301143052,17.8260407646,17.821967224,17.8178936834,17.8138201428,17.8097466022,17.8056730616,17.801599521,17.7975259804,17.7934524398,17.7893788992,17.7853053586,17.781231818,17.7771582774,17.7730847368,17.7690111962,17.7649376556,17.760864115,17.7567905744,17.7527170338,17.7486434932,17.7445699526,17.740496412,17.7364228714,17.7323493308,17.7282757901,17.7242022495,17.7201287089,17.7160551683,17.7119816277,17.7079080871,17.7038345465,17.6997610059,17.6956874653,17.6916139247,17.6875403841,17.6834668435,17.6793933029,17.6753197623,17.6712462217,17.6671726811,17.6630991405,17.6590255999,17.6549520593,17.6508785187,17.6468049781,17.6427314375,17.6386578969,17.6345843563,17.6305108157,17.6264372751,17.6223637345,17.6182901939,17.6142166533,17.6101431127,17.6060695721,17.6019960315,17.5979224909,17.5938489503,17.5897754097,17.5857018691,17.5816283285,17.5775547879,17.5734812473,17.5694077066,17.565334166,17.5612606254,17.5571870848,17.5531135442,17.5490400036,17.544966463,17.5408929224,17.5368193818,17.5327458412,17.5286723006,17.52459876,17.5205252194,17.5164516788,17.5123781382,17.5083045976,17.504231057,17.5001575164,17.4960839758,17.4920104352,17.4879368946,17.483863354,17.4797898134,17.4757162728,17.4716427322,17.4675691916,17.463495651,17.4594221104,17.4553485698,17.4512750292,17.4472014886,17.443127948,17.4390544074,17.4349808668,17.4309073262,17.4268337856,17.422760245,17.4186867044,17.4146131638,17.4105396232,17.4064660825,17.4023925419,17.3983190013,17.3942454607,17.3901719201,17.3860983795,17.3820248389,17.3779512983,17.3738777577,17.3698042171,17.3657306765,17.3616571359,17.3575835953,17.3535100547,17.3494365141,17.3453629735,17.3412894329,17.3372158923,17.3331423517,17.3290688111,17.3249952705,17.3209217299,17.3168481893,17.3127746487,17.3087011081,17.3046275675,17.3005540269,17.2964804863,17.2924069457,17.2883334051,17.2842598645,17.2801863239,17.2761127833,17.2720392427,17.2679657021,17.2638921615,17.2598186209,17.2557450803,17.2516715397,17.247597999,17.2435244584,17.2394509178,17.2353773772,17.2313038366,17.227230296,17.2231567554,17.2190832148,17.2150096742,17.2109361336,17.206862593,17.2027890524,17.1987155118,17.1946419712,17.1905684306,17.18649489,17.1824213494,17.1783478088,17.1742742682,17.1702007276,17.166127187,17.1620536464,17.1579801058,17.1539065652,17.1498330246,17.145759484,17.1416859434,17.1376124028,17.1335388622,17.1294653216,17.125391781,17.1213182404,17.1172446998,17.1131711592,17.1090976186,17.105024078,17.1009505374,17.0968769968,17.0928034562,17.0887299156,17.0846563749,17.0805828343,17.0765092937,17.0724357531,17.0683622125,17.0642886719,17.0602151313,17.0561415907,17.0520680501,17.0479945095,17.0439209689,17.0398474283,17.0357738877,17.0317003471,17.0276268065,17.0235532659,17.0194797253,17.0154061847,17.0113326441,17.0072591035,17.0031855629,16.9991120223,16.9950384817,16.9909649411,16.9868914005,16.9828178599,16.9787443193,16.9746707787,16.9705972381,16.9665236975,16.9624501569,16.9583766163,16.9543030757,16.9502295351,16.9461559945,16.9420824539,16.9380089133,16.9339353727,16.9298618321,16.9257882914,16.9217147508,16.9176412102,16.9135676696,16.909494129,16.9054205884,16.9013470478,16.8972735072,16.8931999666,16.889126426,16.8850528854,16.8809793448,16.8769058042,16.8728322636,16.868758723,16.8646851824,16.8606116418,16.8565381012,16.8524645606,16.84839102,16.8443174794,16.8402439388,16.8361703982,16.8320968576,16.828023317,16.8239497764,16.8198762358,16.8158026952,16.8117291546,16.807655614,16.8035820734,16.7995085328,16.7954349922,16.7913614516,16.787287911,16.7832143704,16.7791408298,16.7750672892,16.7709937486,16.766920208,16.7628466673,16.7587731267,16.7546995861,16.7506260455,16.7465525049,16.7424789643,16.7384054237,16.7343318831,16.7302583425,16.7261848019,16.7221112613,16.7180377207,16.7139641801,16.7098906395,16.7058170989,16.7017435583,16.6976700177,16.6935964771,16.6895229365,16.6854493959,16.6813758553,16.6773023147,16.6732287741,16.6691552335,16.6650816929,16.6610081523,16.6569346117,16.6528610711,16.6487875305,16.6447139899,16.6406404493,16.6365669087,16.6324933681,16.6284198275,16.6243462869,16.6202727463,16.6161992057,16.6121256651,16.6080521245,16.6039785838,16.5999050432,16.5958315026,16.591757962,16.5876844214,16.5836108808,16.5795373402,16.5754637996,16.571390259,16.5673167184,16.5632431778,16.5591696372,16.5550960966,16.551022556,16.5469490154,16.5428754748,16.5388019342,16.5347283936,16.530654853,16.5265813124,16.5225077718,16.5184342312,16.5143606906,16.51028715,16.5062136094,16.5021400688,16.4980665282,16.4939929876,16.489919447,16.4858459064,16.4817723658,16.4776988252,16.4736252846,16.469551744,16.4654782034,16.4614046628,16.4573311222,16.4532575816,16.449184041,16.4451105003,16.4410369597,16.4369634191,16.4328898785,16.4288163379,16.4247427973,16.4206692567,16.4165957161,16.4125221755,16.4084486349,16.4043750943,16.4003015537,16.3962280131,16.3921544725,16.3880809319,16.3840073913,16.3799338507,16.3758603101,16.3717867695,16.3677132289,16.3636396883,16.3595661477,16.3554926071,16.3514190665,16.3473455259,16.3432719853,16.3391984447,16.3351249041,16.3310513635,16.3269778229,16.3229042823,16.3188307417,16.3147572011,16.3106836605,16.3066101199,16.3025365793,16.2984630387,16.2943894981,16.2903159575,16.2862424169,16.2821688762,16.2780953356,16.274021795,16.2699482544,16.2658747138,16.2618011732,16.2577276326,16.253654092,16.2495805514,16.2455070108,16.2414334702,16.2373599296,16.233286389,16.2292128484,16.2251393078,16.2210657672,16.2169922266,16.212918686,16.2088451454,16.2047716048,16.2006980642,16.1966245236,16.192550983,16.1884774424,16.1844039018,16.1803303612,16.1762568206,16.17218328,16.1681097394,16.1640361988,16.1599626582,16.1558891176,16.151815577,16.1477420364,16.1436684958,16.1395949552,16.1355214146,16.131447874,16.1273743334,16.1233007927,16.1192272521,16.1151537115,16.1110801709,16.1070066303,16.1029330897,16.0988595491,16.0947860085,16.0907124679,16.0866389273,16.0825653867,16.0784918461,16.0744183055,16.0703447649,16.0662712243,16.0621976837,16.0581241431,16.0540506025,16.0499770619,16.0459035213,16.0418299807,16.0377564401,16.0336828995,16.0296093589,16.0255358183,16.0214622777,16.0173887371,16.0133151965,16.0092416559,16.0051681153,16.0010945747,15.9970210341,15.9929474935,15.9888739529,15.9848004123,15.9807268717,15.9766533311,15.9725797905,15.9685062499,15.9644327093,15.9603591686,15.956285628,15.9522120874,15.9481385468,15.9440650062,15.9399914656,15.935917925,15.9318443844,15.9277708438,15.9236973032,15.9196237626,15.915550222,15.9114766814,15.9074031408,15.9033296002,15.8992560596,15.895182519,15.8911089784,15.8870354378,15.8829618972,15.8788883566,15.874814816,15.8707412754,15.8666677348,15.8625941942,15.8585206536,15.854447113,15.8503735724,15.8463000318,15.8422264912,15.8381529506,15.83407941,15.8300058694,15.8259323288,15.8218587882,15.8177852476,15.813711707,15.8096381664,15.8055646258,15.8014910851,15.7974175445,15.7933440039,15.7892704633,15.7851969227,15.7811233821,15.7770498415,15.7729763009,15.7689027603,15.7648292197,15.7607556791,15.7566821385,15.7526085979,15.7485350573,15.7444615167,15.7403879761,15.7363144355,15.7322408949,15.7281673543,15.7240938137,15.7200202731,15.7159467325,15.7118731919,15.7077996513,15.7038294027,15.6998591542,15.6958889056,15.691918657,15.6879484085,15.6839781599,15.6800079113,15.6760376628,15.6720674142,15.6680971656,15.6641269171,15.6601566685,15.6561864199,15.6522161714,15.6482459228,15.6442756742,15.6403054257,15.6363351771,15.6323649285,15.62839468,15.6244244314,15.6204541828,15.6164839343,15.6125136857,15.6085434371,15.6045731886,15.60060294,15.5966326914,15.5926624429,15.5886921943,15.5847219457,15.5807516972,15.5767814486,15.5728112,15.5688409515,15.5648707029,15.5609004543,15.5569302058,15.5529599572,15.5489897086,15.5450194601,15.5410492115,15.5370789629,15.5331087144,15.5291384658,15.5251682172,15.5211979687,15.5172277201,15.5132574715,15.509287223,15.5053169744,15.5013467258,15.4973764773,15.4934062287,15.4894359801,15.4854657316,15.481495483,15.4775252344,15.4735549859,15.4695847373,15.4656144887,15.4616442402,15.4576739916,15.453703743,15.4497334945,15.4457632459,15.4417929973,15.4378227488,15.4338525002,15.4298822516,15.4259120031,15.4219417545,15.4179715059,15.4140012574,15.4100310088,15.4060607602,15.4020905117,15.3981202631,15.3941500145,15.390179766,15.3862095174,15.3822392688,15.3782690203,15.3742987717,15.3703285231,15.3663582746,15.362388026,15.3584177774,15.3544475289,15.3504772803,15.3465070317,15.3425367832,15.3385665346,15.334596286,15.3306260375,15.3266557889,15.3226855403,15.3187152918,15.3147450432,15.3107747946,15.3068045461,15.3028342975,15.2988640489,15.2948938004,15.2909235518,15.2869533032,15.2829830547,15.2790128061,15.2750425575,15.271072309,15.2671020604,15.2631318118,15.2591615633,15.2551913147,15.2512210661,15.2472508176,15.243280569,15.2393103204,15.2353400719,15.2313698233,15.2273995747,15.2234293262,15.2194590776,15.215488829,15.2115185805,15.2075483319,15.2035780833,15.1996078348,15.1956375862,15.1916673376,15.1876970891,15.1837268405,15.1797565919,15.1757863434,15.1718160948,15.1678458462,15.1638755977,15.1599053491,15.1559351005,15.151964852,15.1479946034,15.1440243548,15.1400541063,15.1360838577,15.1321136091,15.1281433606,15.124173112,15.1202028634,15.1162326149,15.1122623663,15.1082921177,15.1043218692,15.1003516206,15.096381372,15.0924111235,15.0884408749,15.0844706263,15.0805003778,15.0765301292,15.0725598806,15.0685896321,15.0646193835,15.0606491349,15.0566788864,15.0527086378,15.0487383892,15.0447681407,15.0407978921,15.0368276435,15.032857395,15.0288871464,15.0249168978,15.0209466493,15.0169764007,15.0130061521,15.0090359036,15.005065655,15.0010954064,14.9971251579,14.9931549093,14.9891846607,14.9852144122,14.9812441636,14.977273915,14.9733036665,14.9693334179,14.9653631693,14.9613929208,14.9574226722,14.9534524236,14.9494821751,14.9455119265,14.9415416779,14.9375714294,14.9336011808,14.9296309322,14.9256606837,14.9216904351,14.9177201865,14.913749938,14.9097796894,14.9058094408,14.9018391923,14.8978689437,14.8938986951,14.8899284466,14.885958198,14.8819879494,14.8780177009,14.8740474523,14.8700772037,14.8661069552,14.8621367066,14.858166458,14.8541962095,14.8502259609,14.8462557123,14.8422854638,14.8383152152,14.8343449666,14.8303747181,14.8264044695,14.8224342209,14.8184639724,14.8144937238,14.8105234752,14.8065532267,14.8025829781,14.7986127295,14.794642481,14.7906722324,14.7867019838,14.7827317353,14.7787614867,14.7747912381,14.7708209896,14.766850741,14.7628804924,14.7589102439,14.7549399953,14.7509697467,14.7469994982,14.7430292496,14.739059001,14.7350887525,14.7311185039,14.7271482553,14.7231780068,14.7192077582,14.7152375096,14.7112672611,14.7072970125,14.7033267639,14.6993565154,14.6953862668,14.6914160182,14.6874457697,14.6834755211,14.6795052725,14.675535024,14.6715647754,14.6675945268,14.6636242783,14.6596540297,14.6556837811,14.6517135326,14.647743284,14.6437730354,14.6398027869,14.6358325383,14.6318622897,14.6278920412,14.6239217926,14.619951544,14.6159812955,14.6120110469,14.6080407983,14.6040705498,14.6001003012,14.5961300526,14.5921598041,14.5881895555,14.5842193069,14.5802490584,14.5762788098,14.5723085612,14.5683383127,14.5643680641,14.5603978155,14.556427567,14.5524573184,14.5484870698,14.5445168213,14.5405465727,14.5365763241,14.5326060756,14.528635827,14.5246655784,14.5206953299,14.5167250813,14.5127548327,14.5087845842,14.5048143356,14.500844087,14.4968738385,14.4929035899,14.4889333413,14.4849630928,14.4809928442,14.4770225956,14.4730523471,14.4690820985,14.4651118499,14.4611416014,14.4571713528,14.4532011042,14.4492308557,14.4452606071,14.4412903585,14.43732011,14.4333498614,14.4293796128,14.4254093643,14.4214391157,14.4174688671,14.4134986186,14.40952837,14.4055581214,14.4015878729,14.3976176243,14.3936473757,14.3896771272,14.3857068786,14.38173663,14.3777663815,14.3737961329,14.3698258843,14.3658556358,14.3618853872,14.3579151386,14.3539448901,14.3499746415,14.3460043929,14.3420341444,14.3380638958,14.3340936472,14.3301233987,14.3261531501,14.3221829015,14.318212653,14.3142424044,14.3102721558,14.3063019073,14.3023316587,14.2983614101,14.2943911616,14.290420913,14.2864506644,14.2824804159,14.2785101673,14.2745399187,14.2705696702,14.2665994216,14.262629173,14.2586589245,14.2546886759,14.2507184273,14.2467481788,14.2427779302,14.2388076816,14.2348374331,14.2308671845,14.2268969359,14.2229266874,14.2189564388,14.2149861902,14.2110159417,14.2070456931,14.2030754445,14.199105196,14.1951349474,14.1911646988,14.1871944503,14.1832242017,14.1792539531,14.1752837046,14.171313456,14.1673432074,14.1633729589,14.1594027103,14.1554324617,14.1514622132,14.1474919646,14.143521716,14.1395514675,14.1355812189,14.1316109703,14.1276407218,14.1236704732,14.1197002246,14.1157299761,14.1117597275,14.1077894789,14.1038192304,14.0998489818,14.0958787332,14.0919084847,14.0879382361,14.0839679875,14.079997739,14.0760274904,14.0720572418,14.0680869933,14.0641167447,14.0601464961,14.0561762476,14.052205999,14.0482357504,14.0442655019,14.0402952533,14.0363250047,14.0323547562,14.0283845076,14.024414259,14.0204440105,14.0164737619,14.0125035133,14.0085332648,14.0045630162,14.0005927676,13.9966225191,13.9926522705,13.9886820219,13.9847117734,13.9807415248,13.9767712762,13.9728010277,13.9688307791,13.9648605305,13.960890282,13.9569200334,13.9529497848,13.9489795363,13.9450092877,13.9410390391,13.9370687906,13.933098542,13.9291282934,13.9251580449,13.9211877963,13.9172175477,13.9132472992,13.9092770506,13.905306802,13.9013365535,13.8973663049,13.8933960563,13.8894258078,13.8854555592,13.8814853106,13.8775150621,13.8735448135,13.8695745649,13.8656043164,13.8616340678,13.8576638192,13.8536935707,13.8497233221,13.8457530735,13.841782825,13.8378125764,13.8338423278,13.8298720793,13.8259018307,13.8219315821,13.8179613336,13.813991085,13.8100208364,13.8060505879,13.8020803393,13.7981100907,13.7941398422,13.7901695936,13.786199345,13.7822290965,13.7782588479,13.7742885993,13.7703183508,13.7663481022,13.7623778536,13.7584076051,13.7544373565,13.7504671079,13.7464968594,13.7425266108,13.7385563622,13.7345861137,13.7306158651,13.7266456165,13.722675368,13.7187051194,13.7147348708,13.7107646223,13.7067943737,13.7028241251,13.6988538766,13.694883628,13.6909133794,13.6869431309,13.6829728823,13.6790026337,13.6750323852,13.6710621366,13.667091888,13.6631216395,13.6591513909,13.6551811423,13.6512108938,13.6472406452,13.6432703966,13.6393001481,13.6353298995,13.6313596509,13.6273894024,13.6234191538,13.6194489052,13.6154786567,13.6115084081,13.6075381595,13.603567911,13.5995976624,13.5956274138,13.5916571653,13.5876869167,13.5837166681,13.5797464196,13.575776171,13.5718059224,13.5678356739,13.5638654253,13.5598951767,13.5559249282,13.5519546796,13.547984431,13.5440141825,13.5400439339,13.5360736853,13.5321034368,13.5281331882,13.5241629396,13.5201926911,13.5162224425,13.5122521939,13.5082819454,13.5043116968,13.5003414482,13.4963711997,13.4924009511,13.4884307025,13.484460454,13.4804902054,13.4765199568,13.4725497083,13.4685794597,13.4646092111,13.4606389626,13.456668714,13.4526984654,13.4487282169,13.4447579683,13.4407877197,13.4368174712,13.4328472226,13.428876974,13.4249067255,13.4209364769,13.4169662283,13.4129959798,13.4090257312,13.4050554826,13.4010852341,13.3971149855,13.3931447369,13.3891744884,13.3852042398,13.3812339912,13.3772637427,13.3732934941,13.3693232455,13.365352997,13.3613827484,13.3574124998,13.3534422513,13.3494720027,13.3455017541,13.3415315056,13.337561257,13.3335910084,13.3296207599,13.3256505113,13.3216802627,13.3177100142,13.3137397656,13.309769517,13.306541954,13.303314391,13.300086828,13.2968592649,13.2936317019,13.2904041389,13.2871765759,13.2839490129,13.2807214498,13.2774938868,13.2742663238,13.2710387608,13.2678111977,13.2645836347,13.2613560717,13.2581285087,13.2549009457,13.2516733826,13.2484458196,13.2452182566,13.2419906936,13.2387631306,13.2355355675,13.2323080045,13.2290804415,13.2258528785,13.2226253155,13.2193977524,13.2161701894,13.2129426264,13.2097150634,13.2064875003,13.2032599373,13.2000323743,13.1968048113,13.1935772483,13.1903496852,13.1871221222,13.1838945592,13.1806669962,13.1774394332,13.1742118701,13.1709843071,13.1677567441,13.1645291811,13.1613016181,13.158074055,13.154846492,13.151618929,13.148391366,13.1451638029,13.1419362399,13.1387086769,13.1354811139,13.1322535509,13.1290259878,13.1257984248,13.1225708618,13.1193432988,13.1161157358,13.1128881727,13.1096606097,13.1064330467,13.1032054837,13.0999779207,13.0967503576,13.0935227946,13.0902952316,13.0870676686,13.0838401055,13.0806125425,13.0773849795,13.0741574165,13.0709298535,13.0677022904,13.0644747274,13.0612471644,13.0580196014,13.0547920384,13.0515644753,13.0483369123,13.0451093493,13.0418817863,13.0386542233,13.0354266602,13.0321990972,13.0289715342,13.0257439712,13.0225164081,13.0192888451,13.0160612821,13.0128337191,13.0096061561,13.006378593,13.00315103,12.999923467,12.996695904,12.993468341,12.9902407779,12.9870132149,12.9837856519,12.9805580889,12.9773305259,12.9741029628,12.9708753998,12.9676478368,12.9644202738,12.9611927107,12.9579651477,12.9547375847,12.9515100217,12.9482824587,12.9450548956,12.9418273326,12.9385997696,12.9353722066,12.9321446436,12.9289170805,12.9256895175,12.9224619545,12.9192343915,12.9160068285,12.9127792654,12.9095517024,12.9063241394,12.9030965764,12.8998690133,12.8966414503,12.8934138873,12.8901863243,12.8869587613,12.8837311982,12.8805036352,12.8772760722,12.8740485092,12.8708209462,12.8675933831,12.8643658201,12.8611382571,12.8579106941,12.8546831311,12.851455568,12.848228005,12.845000442,12.841772879,12.8385453159,12.8353177529,12.8320901899,12.8288626269,12.8256350639,12.8224075008,12.8191799378,12.8159523748,12.8127248118,12.8094972488,12.8062696857,12.8030421227,12.7998145597,12.7965869967,12.7933594337,12.7901318706,12.7869043076,12.7836767446,12.7804491816,12.7772216185,12.7739940555,12.7707664925,12.7675389295,12.7643113665,12.7610838034,12.7578562404,12.7546286774,12.7514011144,12.7481735514,12.7449459883,12.7417184253,12.7384908623,12.7352632993,12.7320357363,12.7288081732,12.7255806102,12.7223530472,12.7191254842,12.7158979212,12.7126703581,12.7094427951,12.7062152321,12.7029876691,12.699760106,12.696532543,12.69330498,12.690077417,12.686849854,12.6836222909,12.6803947279,12.6771671649,12.6739396019,12.6707120389,12.6674844758,12.6642569128,12.6610293498,12.6578017868,12.6545742238,12.6513466607,12.6481190977,12.6448915347,12.6416639717,12.6384364086,12.6352088456,12.6319812826,12.6287537196,12.6255261566,12.6222985935,12.6190710305,12.6158434675,12.6126159045,12.6093883415,12.6061607784,12.6029332154,12.5997056524,12.5964780894,12.5932505264,12.5900229633,12.5867954003,12.5835678373,12.5803402743,12.5771127112,12.5738851482,12.5706575852,12.5674300222,12.5642024592,12.5609748961,12.5577473331,12.5545197701,12.5512922071,12.5480646441,12.544837081,12.541609518,12.538381955,12.535154392,12.531926829,12.5286992659,12.5254717029,12.5222441399,12.5190165769,12.5157890138,12.5125614508,12.5093338878,12.5061063248,12.5028787618,12.4996511987,12.4964236357,12.4931960727,12.4899685097,12.4867409467,12.4835133836,12.4802858206,12.4770582576,12.4738306946,12.4706031316,12.4673755685,12.4641480055,12.4609204425,12.4576928795,12.4544653164,12.4512377534,12.4480101904,12.4447826274,12.4415550644,12.4383275013,12.4350999383,12.4318723753,12.4286448123,12.4254172493,12.4221896862,12.4189621232,12.4157345602,12.4125069972,12.4092794342,12.4060518711,12.4028243081,12.3995967451,12.3963691821,12.393141619,12.389914056,12.386686493,12.38345893,12.380231367,12.3770038039,12.3737762409,12.3705486779,12.3673211149,12.3640935519,12.3608659888,12.3576384258,12.3544108628,12.3511832998,12.3479557368,12.3447281737,12.3415006107,12.3382730477,12.3350454847,12.3318179216,12.3285903586,12.3253627956,12.3221352326,12.3189076696,12.3156801065,12.3124525435,12.3092249805,12.3059974175,12.3027698545,12.2995422914,12.2963147284,12.2930871654,12.2898596024,12.2866320394,12.2834044763,12.2801769133,12.2769493503,12.2737217873,12.2704942242,12.2672666612,12.2640390982,12.2608115352,12.2575839722,12.2543564091,12.2511288461,12.2479012831,12.2446737201,12.2414461571,12.238218594,12.234991031,12.231763468,12.228535905,12.225308342,12.2220807789,12.2188532159,12.2156256529,12.2123980899,12.2091705268,12.2059429638,12.2027154008,12.1994878378,12.1962602748,12.1930327117,12.1898051487,12.1865775857,12.1833500227,12.1801224597,12.1768948966,12.1736673336,12.1704397706,12.1672122076,12.1639846446,12.1607570815,12.1575295185,12.1543019555,12.1510743925,12.1478468294,12.1446192664,12.1413917034,12.1381641404,12.1349365774,12.1317090143,12.1284814513,12.1252538883,12.1220263253,12.1187987623,12.1155711992,12.1123436362,12.1091160732,12.1058885102,12.1026609472,12.0994333841,12.0962058211,12.0929782581,12.0897506951,12.086523132,12.083295569,12.080068006,12.076840443,12.07361288,12.0703853169,12.0671577539,12.0639301909,12.0607026279,12.0574750649,12.0542475018,12.0510199388,12.0477923758,12.0445648128,12.0413372498,12.0381096867,12.0348821237,12.0316545607,12.0284269977,12.0251994346,12.0219718716,12.0187443086,12.0155167456,12.0122891826,12.0090616195,12.0058340565,12.0026064935,11.9993789305,11.9961513675,11.9929238044,11.9896962414,11.9864686784,11.9832411154,11.9800135524,11.9767859893,11.9735584263,11.9703308633,11.9671033003,11.9638757372,11.9606481742,11.9574206112,11.9541930482,11.9509654852,11.9477379221,11.9445103591,11.9412827961,11.9380552331,11.9348276701,11.931600107,11.928372544,11.925144981,11.921917418,11.918689855,11.9154622919,11.9122347289,11.9090071659,11.9057796029,11.9025520398,11.8993244768,11.8960969138,11.8928693508,11.8896417878,11.8864142247,11.8831866617,11.8799590987,11.8767315357,11.8735039727,11.8702764096,11.8670488466,11.8638212836,11.8605937206,11.8573661576,11.8541385945,11.8509110315,11.8476834685,11.8444559055,11.8412283424,11.8380007794,11.8347732164,11.8315456534,11.8283180904,11.8250905273,11.8218629643,11.8186354013,11.8154078383,11.8121802753,11.8089527122,11.8057251492,11.8024975862,11.7992700232,11.7960424602,11.7928148971,11.7895873341,11.7863597711,11.7831322081,11.779904645,11.776677082,11.773449519,11.770221956,11.766994393,11.7637668299,11.7605392669,11.7573117039,11.7540841409,11.7508565779,11.7476290148,11.7444014518,11.7411738888,11.7379463258,11.7347187628,11.7314911997,11.7282636367,11.7250360737,11.7218085107,11.7185809476,11.7153533846,11.7121258216,11.7088982586,11.7056706956,11.7024431325,11.6992155695,11.6959880065,11.6927604435,11.6895328805,11.6863053174,11.6830777544,11.6798501914,11.6766226284,11.6733950654,11.6701675023,11.6669399393,11.6637123763,11.6604848133,11.6572572502,11.6540296872,11.6508021242,11.6475745612,11.6443469982,11.6411194351,11.6378918721,11.6346643091,11.6314367461,11.6282091831,11.62498162,11.621754057,11.618526494,11.615298931,11.612071368,11.6088438049,11.6056162419,11.6023886789,11.5991611159,11.5959335528,11.5927059898,11.5894784268,11.5862508638,11.5830233008,11.5797957377,11.5765681747,11.5733406117,11.5701130487,11.5668854857,11.5636579226,11.5604303596,11.5572027966,11.5539752336,11.5507476706,11.5475201075,11.5442925445,11.5410649815,11.5378374185,11.5346098554,11.5313822924,11.5281547294,11.5249271664,11.5216996034,11.5184720403,11.5152444773,11.5120169143,11.5087893513,11.5055617883,11.5023342252,11.4991066622,11.4958790992,11.4926515362,11.4894239732,11.4861964101,11.4829688471,11.4797412841,11.4765137211,11.473286158,11.470058595,11.466831032,11.463603469,11.460375906,11.4571483429,11.4539207799,11.4506932169,11.4474656539,11.4442380909,11.4410105278,11.4377829648,11.4345554018,11.4313278388,11.4281002758,11.4248727127,11.4216451497,11.4184175867,11.4151900237,11.4119624607,11.4087348976,11.4055073346,11.4022797716,11.3990522086,11.3958246455,11.3925970825,11.3893695195,11.3861419565,11.3829143935,11.3796868304,11.3764592674,11.3732317044,11.3700041414,11.3667765784,11.3635490153,11.3603214523,11.3590361307,11.3577508091,11.3564654874,11.3551801658,11.3538948442,11.3526095226,11.351324201,11.3500388793,11.3487535577,11.3474682361,11.3461829145,11.3448975928,11.3436122712,11.3423269496,11.341041628,11.3397563064,11.3384709847,11.3371856631,11.3359003415,11.3346150199,11.3333296982,11.3320443766,11.330759055,11.3294737334,11.3281884117,11.3269030901,11.3256177685,11.3243324469,11.3230471253,11.3217618036,11.320476482,11.3191911604,11.3179058388,11.3166205171,11.3153351955,11.3140498739,11.3127645523,11.3114792307,11.310193909,11.3089085874,11.3076232658,11.3063379442,11.3050526225,11.3037673009,11.3024819793,11.3011966577,11.2999113361,11.2986260144,11.2973406928,11.2960553712,11.2947700496,11.2934847279,11.2921994063,11.2909140847,11.2896287631,11.2883434414,11.2870581198,11.2857727982,11.2844874766,11.283202155,11.2819168333,11.2806315117,11.2793461901,11.2780608685,11.2767755468,11.2754902252,11.2742049036,11.272919582,11.2716342604,11.2703489387,11.2690636171,11.2677782955,11.2664929739,11.2652076522,11.2639223306,11.262637009,11.2613516874,11.2600663658,11.2587810441,11.2574957225,11.2562104009,11.2549250793,11.2536397576,11.252354436,11.2510691144,11.2497837928,11.2484984711,11.2472131495,11.2459278279,11.2446425063,11.2433571847,11.242071863,11.2407865414,11.2395012198,11.2382158982,11.2369305765,11.2356452549,11.2343599333,11.2330746117,11.2317892901,11.2305039684,11.2292186468,11.2279333252,11.2266480036,11.2253626819,11.2240773603,11.2227920387,11.2215067171,11.2202213955,11.2189360738,11.2176507522,11.2163654306,11.215080109,11.2137947873,11.2125094657,11.2112241441,11.2099388225,11.2086535008,11.2073681792,11.2060828576,11.204797536,11.2035122144,11.2022268927,11.2009415711,11.1996562495,11.1983709279,11.1970856062,11.1958002846,11.194514963,11.1932296414,11.1919443198,11.1906589981,11.1893736765,11.1880883549,11.1868030333,11.1855177116,11.18423239,11.1829470684,11.1816617468,11.1803764252,11.1790911035,11.1778057819,11.1765204603,11.1752351387,11.173949817,11.1726644954,11.1713791738,11.1700938522,11.1688085305,11.1675232089,11.1662378873,11.1649525657,11.1636672441,11.1623819224,11.1610966008,11.1598112792,11.1585259576,11.1572406359,11.1559553143,11.1546699927,11.1533846711,11.1520993495,11.1508140278,11.1495287062,11.1482433846,11.146958063,11.1456727413,11.1443874197,11.1431020981,11.1418167765,11.1405314549,11.1392461332,11.1379608116,11.13667549,11.1353901684,11.1341048467,11.1328195251,11.1315342035,11.1302488819,11.1289635602,11.1276782386,11.126392917,11.1251075954,11.1238222738,11.1225369521,11.1212516305,11.1199663089,11.1186809873,11.1173956656,11.116110344,11.1148250224,11.1135397008,11.1122543792,11.1109690575,11.1096837359,11.1083984143,11.1071130927,11.105827771,11.1045424494,11.1032571278,11.1019718062,11.1006864846,11.0994011629,11.0981158413,11.0968305197,11.0955451981,11.0942598764,11.0929745548,11.0916892332,11.0904039116,11.0891185899,11.0878332683,11.0865479467,11.0852626251,11.0839773035,11.0826919818,11.0814066602,11.0801213386,11.078836017,11.0775506953,11.0762653737,11.0749800521,11.0736947305,11.0724094089,11.0711240872,11.0698387656,11.068553444,11.0672681224,11.0659828007,11.0646974791,11.0634121575,11.0621268359,11.0608415143,11.0595561926,11.058270871,11.0569855494,11.0557002278,11.0544149061,11.0531295845,11.0518442629,11.0505589413,11.0492736196,11.047988298,11.0467029764,11.0454176548,11.0441323332,11.0428470115,11.0415616899,11.0402763683,11.0389910467,11.037705725,11.0364204034,11.0351350818,11.0338497602,11.0325644386,11.0312791169,11.0299937953,11.0287084737,11.0274231521,11.0261378304,11.0248525088,11.0235671872,11.0222818656,11.020996544,11.0197112223,11.0184259007,11.0171405791,11.0158552575,11.0145699358,11.0132846142,11.0119992926,11.010713971,11.0094286493,11.0081433277,11.0068580061,11.0055726845,11.0042873629,11.0030020412,11.0017167196,11.000431398,10.9991460764,10.9978607547,10.9965754331,10.9952901115,10.9940047899,10.9927194683,10.9914341466,10.990148825,10.9888635034,10.9875781818,10.9862928601,10.9850075385,10.9837222169,10.9824368953,10.9811515737,10.979866252,10.9785809304,10.9772956088,10.9760102872,10.9747249655,10.9734396439,10.9721543223,10.9708690007,10.969583679,10.9682983574,10.9670130358,10.9657277142,10.9644423926,10.9631570709,10.9618717493,10.9605864277,10.9593011061,10.9580157844,10.9567304628,10.9554451412,10.9541598196,10.952874498,10.9515891763,10.9503038547,10.9490185331,10.9477332115,10.9464478898,10.9451625682,10.9438772466,10.942591925,10.9413066034,10.9400212817,10.9387359601,10.9374506385,10.9361653169,10.9348799952,10.9335946736,10.932309352,10.9310240304,10.9297387087,10.9284533871,10.9271680655,10.9258827439,10.9245974223,10.9233121006,10.922026779,10.9207414574,10.9194561358,10.9181708141,10.9168854925,10.9156001709,10.9143148493,10.9130295277,10.911744206,10.9104588844,10.9091735628,10.9078882412,10.9066029195,10.9053175979,10.9040322763,10.9027469547,10.9014616331,10.9001763114,10.8988909898,10.8976056682,10.8963203466,10.8950350249,10.8937497033,10.8924643817,10.8911790601,10.8898937384,10.8886084168,10.8873230952,10.8860377736,10.884752452,10.8834671303,10.8821818087,10.8808964871,10.8796111655,10.8783258438,10.8770405222,10.8757552006,10.874469879,10.8731845574,10.8718992357,10.8706139141,10.8693285925,10.8680432709,10.8667579492,10.8654726276,10.864187306,10.8629019844,10.8616166628,10.8603313411,10.8590460195,10.8577606979,10.8564753763,10.8551900546,10.853904733,10.8526194114,10.8513340898,10.8500487681,10.8487634465,10.8474781249,10.8461928033,10.8449074817,10.84362216,10.8423368384,10.8410515168,10.8397661952,10.8384808735,10.8371955519,10.8359102303,10.8346249087,10.8333395871,10.8320542654,10.8307689438,10.8294836222,10.8281983006,10.8269129789,10.8256276573,10.8243423357,10.8230570141,10.8217716925,10.8204863708,10.8192010492,10.8179157276,10.816630406,10.8153450843,10.8140597627,10.8127744411,10.8114891195,10.8102037978,10.8089184762,10.8076331546,10.806347833,10.8050625114,10.8037771897,10.8024918681,10.8012065465,10.7999212249,10.7986359032,10.7973505816,10.79606526,10.7947799384,10.7934946168,10.7922092951,10.7909239735,10.7896386519,10.7883533303,10.7870680086,10.785782687,10.7844973654,10.7832120438,10.7819267222,10.7806414005,10.7793560789,10.7780707573,10.7767854357,10.775500114,10.7742147924,10.7729294708,10.7716441492,10.7703588275,10.7690735059,10.7677881843,10.7665028627,10.7652175411,10.7639322194,10.7626468978,10.7613615762,10.7600762546,10.7587909329,10.7575056113,10.7562202897,10.7549349681,10.7536496465,10.7523643248,10.7510790032,10.7497936816,10.74850836,10.7472230383,10.7459377167,10.7446523951,10.7433670735,10.7420817519,10.7407964302,10.7395111086,10.738225787,10.7369404654,10.7356551437,10.7343698221,10.7330845005,10.7317991789,10.7305138572,10.7292285356,10.727943214,10.7266578924,10.7253725708,10.7240872491,10.7228019275,10.7215166059,10.7202312843,10.7189459626,10.717660641,10.7163753194,10.7150899978,10.7138046762,10.7125193545,10.7112340329,10.7099487113,10.7086633897,10.707378068,10.7060927464,10.7048074248,10.7035221032,10.7022367816,10.7009514599,10.6996661383,10.6983808167,10.6970954951,10.6958101734,10.6945248518,10.6932395302,10.6919542086,10.6906688869,10.6893835653,10.6880982437,10.6868129221,10.6855276005,10.6842422788,10.6829569572,10.6816716356,10.680386314,10.6791009923,10.6778156707,10.6765303491,10.6752450275,10.6739597059,10.6726743842,10.6713890626,10.670103741,10.6688184194,10.6675330977,10.6662477761,10.6649624545,10.6636771329,10.6623918113,10.6611064896,10.659821168,10.6585358464,10.6572505248,10.6559652031,10.6546798815,10.6533945599,10.6521092383,10.6508239166,10.649538595,10.6482532734,10.6469679518,10.6456826302,10.6443973085,10.6431119869,10.6418266653,10.6405413437,10.639256022,10.6379707004,10.6366853788,10.6354000572,10.6341147356,10.6328294139,10.6315440923,10.6302587707,10.6289734491,10.6276881274,10.6264028058,10.6251174842,10.6238321626,10.622546841,10.6212615193,10.6199761977,10.6186908761,10.6174055545,10.6161202328,10.6148349112,10.6135495896,10.612264268,10.6109789463,10.6096936247,10.6084083031,10.6071229815,10.6058376599,10.6045523382,10.6032670166,10.601981695,10.6006963734,10.5994110517,10.5981257301,10.5968404085,10.5955550869,10.5942697653,10.5929844436,10.591699122,10.5904138004,10.5891284788,10.5878431571,10.5865578355,10.5852725139,10.5839871923,10.5853076603,10.5866281282,10.5879485962,10.5892690642,10.5905895322,10.5919100002,10.5932304682,10.5945509361,10.5958714041,10.5971918721,10.5985123401,10.5998328081,10.601153276,10.602473744,10.603794212,10.60511468,10.606435148,10.607755616,10.6090760839,10.6103965519,10.6117170199,10.6130374879,10.6143579559,10.6156784239,10.6169988918,10.6183193598,10.6196398278,10.6209602958,10.6222807638,10.6236012318,10.6249216997,10.6262421677,10.6275626357,10.6288831037,10.6302035717,10.6315240397,10.6328445076,10.6341649756,10.6354854436,10.6368059116,10.6381263796,10.6394468475,10.6407673155,10.6420877835,10.6434082515,10.6447287195,10.6460491875,10.6473696554,10.6486901234,10.6500105914,10.6513310594,10.6526515274,10.6539719954,10.6552924633,10.6566129313,10.6579333993,10.6592538673,10.6605743353,10.6618948033,10.6632152712,10.6645357392,10.6658562072,10.6671766752,10.6684971432,10.6698176111,10.6711380791,10.6724585471,10.6737790151,10.6750994831,10.6764199511,10.677740419,10.679060887,10.680381355,10.681701823,10.683022291,10.684342759,10.6856632269,10.6869836949,10.6883041629,10.6896246309,10.6909450989,10.6922655669,10.6935860348,10.6949065028,10.6962269708,10.6975474388,10.6988679068,10.7001883748,10.7015088427,10.7028293107,10.7041497787,10.7054702467,10.7067907147,10.7081111826,10.7094316506,10.7107521186,10.7120725866,10.7133930546,10.7147135226,10.7160339905,10.7173544585,10.7186749265,10.7199953945,10.7213158625,10.7226363305,10.7239567984,10.7252772664,10.7265977344,10.7279182024,10.7292386704,10.7305591384,10.7318796063,10.7332000743,10.7345205423,10.7358410103,10.7371614783,10.7384819463,10.7398024142,10.7411228822,10.7424433502,10.7437638182,10.7450842862,10.7464047541,10.7477252221,10.7490456901,10.7503661581,10.7516866261,10.7530070941,10.754327562,10.75564803,10.756968498,10.758288966,10.759609434,10.760929902,10.7622503699,10.7635708379,10.7648913059,10.7662117739,10.7675322419,10.7688527099,10.7701731778,10.7714936458,10.7728141138,10.7741345818,10.7754550498,10.7767755177,10.7780959857,10.7794164537,10.7807369217,10.7820573897,10.7833778577,10.7846983256,10.7860187936,10.7873392616,10.7886597296,10.7899801976,10.7913006656,10.7926211335,10.7939416015,10.7952620695,10.7965825375,10.7979030055,10.7992234735,10.8005439414,10.8018644094,10.8031848774,10.8045053454,10.8058258134,10.8071462814,10.8084667493,10.8097872173,10.8111076853,10.8124281533,10.8137486213,10.8150690892,10.8163895572,10.8177100252,10.8190304932,10.8203509612,10.8216714292,10.8229918971,10.8243123651,10.8256328331,10.8269533011,10.8282737691,10.8295942371,10.830914705,10.832235173,10.833555641,10.834876109,10.836196577,10.837517045,10.8388375129,10.8401579809,10.8414784489,10.8427989169,10.8441193849,10.8454398529,10.8467603208,10.8480807888,10.8494012568,10.8507217248,10.8520421928,10.8533626607,10.8546831287,10.8560035967,10.8573240647,10.8586445327,10.8599650007,10.8612854686,10.8626059366,10.8639264046,10.8652468726,10.8665673406,10.8678878086,10.8692082765,10.8705287445,10.8718492125,10.8731696805,10.8744901485,10.8758106165,10.8771310844,10.8784515524,10.8797720204,10.8810924884,10.8824129564,10.8837334243,10.8850538923,10.8863743603,10.8876948283,10.8890152963,10.8903357643,10.8916562322,10.8929767002,10.8942971682,10.8956176362,10.8969381042,10.8982585722,10.8995790401,10.9008995081,10.9022199761,10.9035404441,10.9048609121,10.9061813801,10.907501848,10.908822316,10.910142784,10.911463252,10.91278372,10.914104188,10.9154246559,10.9167451239,10.9180655919,10.9193860599,10.9207065279,10.9220269958,10.9233474638,10.9246679318,10.9259883998,10.9273088678,10.9286293358,10.9299498037,10.9312702717,10.9325907397,10.9339112077,10.9352316757,10.9365521437,10.9378726116,10.9391930796,10.9405135476,10.9418340156,10.9431544836,10.9444749516,10.9457954195,10.9471158875,10.9484363555,10.9497568235,10.9510772915,10.9523977595,10.9537182274,10.9550386954,10.9563591634,10.9576796314,10.9590000994,10.9603205673,10.9616410353,10.9629615033,10.9642819713,10.9656024393,10.9669229073,10.9682433752,10.9695638432,10.9708843112,10.9722047792,10.9735252472,10.9748457152,10.9761661831,10.9774866511,10.9788071191,10.9801275871,10.9814480551,10.9827685231,10.984088991,10.985409459,10.986729927,10.988050395,10.989370863,10.9906913309,10.9920117989,10.9933322669,10.9946527349,10.9959732029,10.9972936709,10.9986141388,10.9999346068,11.0012550748,11.0025755428,11.0038960108,11.0052164788,11.0065369467,11.0078574147,11.0091778827,11.0104983507,11.0118188187,11.0131392867,11.0144597546,11.0157802226,11.0171006906,11.0184211586,11.0197416266,11.0210620946,11.0223825625,11.0237030305,11.0250234985,11.0263439665,11.0276644345,11.0289849024,11.0303053704,11.0316258384,11.0329463064,11.0342667744,11.0355872424,11.0369077103,11.0382281783,11.0395486463,11.0408691143,11.0421895823,11.0435100503,11.0448305182,11.0461509862,11.0474714542,11.0487919222,11.0501123902,11.0514328582,11.0527533261,11.0540737941,11.0553942621,11.0567147301,11.0580351981,11.0593556661,11.060676134,11.061996602,11.06331707,11.064637538,11.065958006,11.0672784739,11.0685989419,11.0699194099,11.0712398779,11.0725603459,11.0738808139,11.0752012818,11.0765217498,11.0778422178,11.0791626858,11.0804831538,11.0818036218,11.0831240897,11.0844445577,11.0857650257,11.0870854937,11.0884059617,11.0897264297,11.0910468976,11.0923673656,11.0936878336,11.0950083016,11.0963287696,11.0976492375,11.0989697055,11.1002901735,11.1016106415,11.1029311095,11.1042515775,11.1055720454,11.1068925134,11.1082129814,11.1095334494,11.1108539174,11.1121743854,11.1134948533,11.1148153213,11.1161357893,11.1174562573,11.1187767253,11.1200971933,11.1214176612,11.1227381292,11.1240585972,11.1253790652,11.1266995332,11.1280200012,11.1293404691,11.1306609371,11.1319814051,11.1333018731,11.1346223411,11.135942809,11.137263277,11.138583745,11.139904213,11.141224681,11.142545149,11.1438656169,11.1451860849,11.1465065529,11.1478270209,11.1491474889,11.1504679569,11.1517884248,11.1531088928,11.1544293608,11.1557498288,11.1570702968,11.1583907648,11.1597112327,11.1610317007,11.1623521687,11.1636726367,11.1649931047,11.1663135727,11.1676340406,11.1689545086,11.1702749766,11.1715954446,11.1729159126,11.1742363805,11.1755568485,11.1768773165,11.1781977845,11.1795182525,11.1808387205,11.1821591884,11.1834796564,11.1848001244,11.1861205924,11.1874410604,11.1887615284,11.1900819963,11.1914024643,11.1927229323,11.1940434003,11.1953638683,11.1966843363,11.1980048042,11.1993252722,11.2006457402,11.2019662082,11.2032866762,11.2046071441,11.2059276121,11.2072480801,11.2085685481,11.2098890161,11.2112094841,11.212529952,11.21385042,11.215170888,11.216491356,11.217811824,11.219132292,11.2204527599,11.2217732279,11.2230936959,11.2244141639,11.2257346319,11.2270550999,11.2283755678,11.2296960358,11.2310165038,11.2323369718,11.2336574398,11.2349779078,11.2362983757,11.2376188437,11.2389393117,11.2402597797,11.2415802477,11.2429007156,11.2442211836,11.2455416516,11.2468621196,11.2481825876,11.2495030556,11.2508235235,11.2521439915,11.2534644595,11.2547849275,11.2561053955,11.2574258635,11.2587463314,11.2600667994,11.2613872674,11.2627077354,11.2640282034,11.2653486714,11.2666691393,11.2679896073,11.2693100753,11.2706305433,11.2719510113,11.2732714793,11.2745919472,11.2759124152,11.2772328832,11.2785533512,11.2798738192,11.2811942871,11.2825147551,11.2838352231,11.2851556911,11.2864761591,11.2877966271,11.289117095,11.290437563,11.291758031,11.293078499,11.294398967,11.295719435,11.2970399029,11.2983603709,11.2996808389,11.3010013069,11.3023217749,11.3036422429,11.3049627108,11.3062831788,11.3076036468,11.3089241148,11.3102445828,11.3115650508,11.3128855187,11.3142059867,11.3155264547,11.3168469227,11.3181673907,11.3194878586,11.3208083266,11.3221287946,11.3234492626,11.3247697306,11.3260901986,11.3274106665,11.3287311345,11.3300516025,11.3313720705,11.3326925385,11.3340130065,11.3353334744,11.3366539424,11.3379744104,11.3392948784,11.3406153464,11.3419358144,11.3432562823,11.3445767503,11.3458972183,11.3472176863,11.3485381543,11.3498586222,11.3511790902,11.3524995582,11.3538200262,11.3551404942,11.3564609622,11.3577814301,11.3591018981,11.3604223661,11.3617428341,11.3630633021,11.3643837701,11.365704238,11.367024706,11.368345174,11.369665642,11.37098611,11.372306578,11.3736270459,11.3749475139,11.3762679819,11.3775884499,11.3789089179,11.3802293859,11.3815498538,11.3851735945,11.3887973352,11.3924210758,11.3960448165,11.3996685571,11.4032922978,11.4069160385,11.4105397791,11.4141635198,11.4177872604,11.4214110011,11.4250347418,11.4286584824,11.4322822231,11.4359059637,11.4395297044,11.4431534451,11.4467771857,11.4504009264,11.454024667,11.4576484077,11.4612721484,11.464895889,11.4685196297,11.4721433703,11.475767111,11.4793908517,11.4830145923,11.486638333,11.4902620736,11.4938858143,11.497509555,11.5011332956,11.5047570363,11.5083807769,11.5120045176,11.5156282583,11.5192519989,11.5228757396,11.5264994802,11.5301232209,11.5337469616,11.5373707022,11.5409944429,11.5446181835,11.5482419242,11.5518656649,11.5554894055,11.5591131462,11.5627368869,11.5663606275,11.5699843682,11.5736081088,11.5772318495,11.5808555902,11.5844793308,11.5881030715,11.5917268121,11.5953505528,11.5989742935,11.6025980341,11.6062217748,11.6098455154,11.6134692561,11.6170929968,11.6207167374,11.6243404781,11.6279642187,11.6315879594,11.6352117001,11.6388354407,11.6424591814,11.646082922,11.6497066627,11.6533304034,11.656954144,11.6605778847,11.6642016253,11.667825366,11.6714491067,11.6750728473,11.678696588,11.6823203286,11.6859440693,11.68956781,11.6931915506,11.6968152913,11.7004390319,11.7040627726,11.7076865133,11.7113102539,11.7149339946,11.7185577352,11.7221814759,11.7258052166,11.7294289572,11.7330526979,11.7366764385,11.7403001792,11.7439239199,11.7475476605,11.7511714012,11.7547951418,11.7584188825,11.7620426232,11.7656663638,11.7692901045,11.7729138451,11.7765375858,11.7801613265,11.7837850671,11.7874088078,11.7910325485,11.7946562891,11.7982800298,11.8019037704,11.8055275111,11.8091512518,11.8127749924,11.8163987331,11.8200224737,11.8236462144,11.8272699551,11.8308936957,11.8345174364,11.838141177,11.8417649177,11.8453886584,11.849012399,11.8526361397,11.8562598803,11.859883621,11.8635073617,11.8671311023,11.870754843,11.8743785836,11.8780023243,11.881626065,11.8852498056,11.8888735463,11.8924972869,11.8961210276,11.8997447683,11.9033685089,11.9069922496,11.9106159902,11.9142397309,11.9178634716,11.9214872122,11.9251109529,11.9287346935,11.9323584342,11.9359821749,11.9396059155,11.9432296562,11.9468533968,11.9504771375,11.9541008782,11.9577246188,11.9613483595,11.9649721001,11.9685958408,11.9722195815,11.9758433221,11.9794670628,11.9830908034,11.9867145441,11.9903382848,11.9939620254,11.9975857661,12.0012095068,12.0048332474,12.0084569881,12.0120807287,12.0157044694,12.0193282101,12.0229519507,12.0265756914,12.030199432,12.0338231727,12.0374469134,12.041070654,12.0446943947,12.0483181353,12.051941876,12.0555656167,12.0591893573,12.062813098,12.0664368386,12.0700605793,12.07368432,12.0773080606,12.0809318013,12.0845555419,12.0881792826,12.0918030233,12.0954267639,12.0990505046,12.1026742452,12.1062979859,12.1099217266,12.1135454672,12.1171692079,12.1207929485,12.1244166892,12.1280404299,12.1316641705,12.1352879112,12.1389116518,12.1425353925,12.1461591332,12.1497828738,12.1534066145,12.1570303551,12.1606540958,12.1642778365,12.1679015771,12.1715253178,12.1751490584,12.1787727991,12.1823965398,12.1860202804,12.1896440211,12.1932677617,12.1968915024,12.2005152431,12.2041389837,12.2077627244,12.2113864651,12.2150102057,12.2186339464,12.222257687,12.2258814277,12.2295051684,12.233128909,12.2367526497,12.2403763903,12.244000131,12.2476238717,12.2512476123,12.254871353,12.2584950936,12.2621188343,12.265742575,12.2693663156,12.2729900563,12.2766137969,12.2802375376,12.2838612783,12.2874850189,12.2911087596,12.2947325002,12.2983562409,12.3019799816,12.3056037222,12.3092274629,12.3128512035,12.3164749442,12.3200986849,12.3237224255,12.3273461662,12.3309699068,12.3345936475,12.3382173882,12.3418411288,12.3454648695,12.3490886101,12.3527123508,12.3563360915,12.3599598321,12.3635835728,12.3672073134,12.3708310541,12.3744547948,12.3780785354,12.3817022761,12.3853260167,12.3889497574,12.3925734981,12.3961972387,12.3998209794,12.40344472,12.4070684607,12.4106922014,12.414315942,12.4179396827,12.4215634233,12.425187164,12.4288109047,12.4324346453,12.436058386,12.4396821267,12.4433058673,12.446929608,12.4505533486,12.4541770893,12.45780083,12.4614245706,12.4650483113,12.4686720519,12.4722957926,12.4759195333,12.4795432739,12.4831670146,12.4867907552,12.4904144959,12.4940382366,12.4976619772,12.5012857179,12.5049094585,12.5085331992,12.5121569399,12.5157806805,12.5194044212,12.5230281618,12.5266519025,12.5302756432,12.5338993838,12.5375231245,12.5411468651,12.5447706058,12.5483943465,12.5520180871,12.5556418278,12.5592655684,12.5628893091,12.5665130498,12.5701367904,12.5737605311,12.5773842717,12.5810080124,12.5846317531,12.5882554937,12.5918792344,12.595502975,12.5991267157,12.6027504564,12.606374197,12.6099979377,12.6136216783,12.617245419,12.6208691597,12.6244929003,12.628116641,12.6317403816,12.6353641223,12.638987863,12.6426116036,12.6462353443,12.649859085,12.6534828256,12.6571065663,12.6607303069,12.6643540476,12.6679777883,12.6716015289,12.6752252696,12.6788490102,12.6824727509,12.6860964916,12.6897202322,12.6933439729,12.6969677135,12.7005914542,12.7042151949,12.7078389355,12.7114626762,12.7150864168,12.7187101575,12.7223338982,12.7259576388,12.7295813795,12.7332051201,12.7368288608,12.7404526015,12.7440763421,12.7477000828,12.7513238234,12.7549475641,12.7585713048,12.7621950454,12.7658187861,12.7694425267,12.7730662674,12.7766900081,12.7803137487,12.7839374894,12.78756123,12.7911849707,12.7948087114,12.798432452,12.8020561927,12.8056799333,12.809303674,12.8129274147,12.8165511553,12.820174896,12.8237986366,12.8274223773,12.831046118,12.8346698586,12.8382935993,12.8419173399,12.8455410806,12.8491648213,12.8527885619,12.8564123026,12.8600360432,12.8636597839,12.8672835246,12.8709072652,12.8745310059,12.8781547466,12.8817784872,12.8854022279,12.8890259685,12.8926497092,12.8962734499,12.8998971905,12.9035209312,12.9071446718,12.9107684125,12.9143921532,12.9180158938,12.9216396345,12.9252633751,12.9288871158,12.9325108565,12.9361345971,12.9397583378,12.9433820784,12.9470058191,12.9506295598,12.9542533004,12.9578770411,12.9615007817,12.9651245224,12.9687482631,12.9723720037,12.9759957444,12.979619485,12.9832432257,12.9868669664,12.990490707,12.9941144477,12.9977381883,13.001361929,13.0049856697,13.0086094103,13.012233151,13.0158568916,13.0194806323,13.023104373,13.0267281136,13.0303518543,13.0339755949,13.0375993356,13.0412230763,13.0448468169,13.0484705576,13.0520942982,13.0557180389,13.0593417796,13.0629655202,13.0665892609,13.0702130015,13.0738367422,13.0774604829,13.0810842235,13.0847079642,13.0883317049,13.0919554455,13.0955791862,13.0992029268,13.1028266675,13.1064504082,13.1100741488,13.1136978895,13.1173216301,13.1209453708,13.1245691115,13.1281928521,13.1318165928,13.1354403334,13.1390640741,13.1426878148,13.1463115554,13.1499352961,13.1535590367,13.1571827774,13.1608065181,13.1644302587,13.1680539994,13.17167774,13.1753014807,13.1789252214,13.182548962,13.1861727027,13.1897964433,13.193420184,13.1970439247,13.2006676653,13.204291406,13.2079151466,13.2115388873,13.215162628,13.2187863686,13.2224101093,13.2260338499,13.2296575906,13.2332813313,13.2369050719,13.2405288126,13.2441525532,13.2477762939,13.2514000346,13.2550237752,13.2586475159,13.2622712565,13.2658949972,13.2695187379,13.2731424785,13.2767662192,13.2803899598,13.2840137005,13.2876374412,13.2912611818,13.2948849225,13.2985086631,13.3021324038,13.3057561445,13.3093798851,13.3130036258,13.3166273665,13.3202511071,13.3238748478,13.3274985884,13.3311223291,13.3347460698,13.3383698104,13.3419935511,13.3456172917,13.3492410324,13.3528647731,13.3564885137,13.3601122544,13.363735995,13.3673597357,13.3709834764,13.374607217,13.3782309577,13.3818546983,13.385478439,13.3891021797,13.3927259203,13.396349661,13.3999734016,13.4035971423,13.407220883,13.4108446236,13.4144683643,13.4180921049,13.4217158456,13.4253395863,13.4289633269,13.4325870676,13.4362108082,13.4398345489,13.4434582896,13.4470820302,13.4507057709,13.4543295115,13.4579532522,13.4615769929,13.4652007335,13.4688244742,13.4724482148,13.4760719555,13.4796956962,13.4833194368,13.4869431775,13.4905669181,13.4941906588,13.4978143995,13.5014381401,13.5050618808,13.5086856214,13.5123093621,13.5159331028,13.5195568434,13.5231805841,13.5268043248,13.5304280654,13.5340518061,13.5376755467,13.5412992874,13.5449230281,13.5485467687,13.5521705094,13.55579425,13.5594179907,13.5630417314,13.566665472,13.5702892127,13.5753046231,13.5803200334,13.5853354438,13.5903508542,13.5953662646,13.6003816749,13.6053970853,13.6104124957,13.6154279061,13.6204433165,13.6254587268,13.6304741372,13.6354895476,13.640504958,13.6455203683,13.6505357787,13.6555511891,13.6605665995,13.6655820099,13.6705974202,13.6756128306,13.680628241,13.6856436514,13.6906590617,13.6956744721,13.7006898825,13.7057052929,13.7107207033,13.7157361136,13.720751524,13.7257669344,13.7307823448,13.7357977551,13.7408131655,13.7458285759,13.7508439863,13.7558593966,13.760874807,13.7658902174,13.7709056278,13.7759210382,13.7809364485,13.7859518589,13.7909672693,13.7959826797,13.80099809,13.8060135004,13.8110289108,13.8160443212,13.8210597316,13.8260751419,13.8310905523,13.8361059627,13.8411213731,13.8461367834,13.8511521938,13.8561676042,13.8611830146,13.866198425,13.8712138353,13.8762292457,13.8812446561,13.8862600665,13.8912754768,13.8962908872,13.9013062976,13.906321708,13.9113371184,13.9163525287,13.9213679391,13.9263833495,13.9313987599,13.9364141702,13.9414295806,13.946444991,13.9514604014,13.9564758118,13.9614912221,13.9665066325,13.9715220429,13.9765374533,13.9815528636,13.986568274,13.9915836844,13.9965990948,14.0016145052,14.0066299155,14.0116453259,14.0166607363,14.0216761467,14.026691557,14.0317069674,14.0367223778,14.0417377882,14.0467531986,14.0517686089,14.0567840193,14.0617994297,14.0668148401,14.0718302504,14.0768456608,14.0818610712,14.0868764816,14.091891892,14.0969073023,14.1019227127,14.1069381231,14.1119535335,14.1169689438,14.1219843542,14.1269997646,14.132015175,14.1370305854,14.1420459957,14.1470614061,14.1520768165,14.1570922269,14.1621076372,14.1671230476,14.172138458,14.1771538684,14.1821692788,14.1871846891,14.1922000995,14.1972155099,14.2022309203,14.2072463306,14.212261741,14.2172771514,14.2222925618,14.2273079722,14.2323233825,14.2373387929,14.2423542033,14.2473696137,14.252385024,14.2574004344,14.2624158448,14.2674312552,14.2724466656,14.2774620759,14.2824774863,14.2874928967,14.2925083071,14.2975237174,14.3025391278,14.3075545382,14.3125699486,14.317585359,14.3226007693,14.3276161797,14.3326315901,14.3376470005,14.3426624108,14.3476778212,14.3526932316,14.357708642,14.3627240524,14.3677394627,14.3727548731,14.3777702835,14.3827856939,14.3878011042,14.3928165146,14.397831925,14.4028473354,14.4078627458,14.4128781561,14.4178935665,14.4229089769,14.4279243873,14.4329397976,14.437955208,14.4429706184,14.4479860288,14.4530014392,14.4580168495,14.4630322599,14.4680476703,14.4730630807,14.478078491,14.4830939014,14.4881093118,14.4931247222,14.4981401325,14.5031555429,14.5081709533,14.5131863637,14.5182017741,14.5232171844,14.5282325948,14.5332480052,14.5382634156,14.5432788259,14.5482942363,14.5533096467,14.5583250571,14.5633404675,14.5683558778,14.5733712882,14.5783866986,14.583402109,14.5884175193,14.5934329297,14.5984483401,14.6034637505,14.6084791609,14.6134945712,14.6185099816,14.623525392,14.6285408024,14.6335562127,14.6385716231,14.6435870335,14.6486024439,14.6536178543,14.6586332646,14.663648675,14.6686640854,14.6736794958,14.6786949061,14.6837103165,14.6887257269,14.6937411373,14.6987565477,14.703771958,14.7087873684,14.7138027788,14.7188181892,14.7238335995,14.7288490099,14.7338644203,14.7388798307,14.7438952411,14.7489106514,14.7539260618,14.7589414722,14.7639568826,14.7689722929,14.7739877033,14.7790031137,14.7840185241,14.7890339345,14.7940493448,14.7990647552,14.8040801656,14.809095576,14.8141109863,14.8191263967,14.8241418071,14.8291572175,14.8341726279,14.8391880382,14.8442034486,14.849218859,14.8542342694,14.8592496797,14.8642650901,14.8692805005,14.8742959109,14.8793113213,14.8843267316,14.889342142,14.8943575524,14.8993729628,14.9043883731,14.9094037835,14.9144191939,14.9194346043,14.9244500147,14.929465425,14.9344808354,14.9394962458,14.9445116562,14.9495270665,14.9545424769,14.9595578873,14.9645732977,14.9695887081,14.9746041184,14.9796195288,14.9846349392,14.9896503496,14.9946657599,14.9996811703,15.0046965807,15.0097119911,15.0147274015,15.0197428118,15.0247582222,15.0297736326,15.034789043,15.0398044533,15.0448198637,15.0498352741,15.0548506845,15.0598660949,15.0648815052,15.0698969156,15.074912326,15.0799277364,15.0849431467,15.0899585571,15.0949739675,15.0999893779,15.1050047883,15.1100201986,15.115035609,15.1200510194,15.1250664298,15.1300818401,15.1350972505,15.1401126609,15.1451280713,15.1501434817,15.155158892,15.1601743024,15.1651897128,15.1702051232,15.1752205335,15.1802359439,15.1852513543,15.1902667647,15.1952821751,15.2002975854,15.2053129958,15.2103284062,15.2153438166,15.2203592269,15.2253746373,15.2303900477,15.2354054581,15.2404208685,15.2454362788,15.2504516892,15.2554670996,15.26048251,15.2654979203,15.2705133307,15.2755287411,15.2805441515,15.2855595618,15.2905749722,15.2955903826,15.300605793,15.3056212034,15.3106366137,15.3156520241,15.3206674345,15.3256828449,15.3306982552,15.3357136656,15.340729076,15.3457444864,15.3507598968,15.3557753071,15.3607907175,15.3658061279,15.3708215383,15.3758369486,15.380852359,15.3858677694,15.3908831798,15.3958985902,15.4009140005,15.4059294109,15.4109448213,15.4159602317,15.420975642,15.4259910524,15.4310064628,15.4360218732,15.4410372836,15.4460526939,15.4510681043,15.4560835147,15.4610989251,15.4661143354,15.4711297458,15.4761451562,15.4811605666,15.486175977,15.4911913873,15.4962067977,15.5012222081,15.5062376185,15.5112530288,15.5162684392,15.5212838496,15.52629926,15.5313146704,15.5363300807,15.5413454911,15.5463609015,15.5513763119,15.5563917222,15.5614071326,15.566422543,15.5714379534,15.5764533638,15.5814687741,15.5864841845,15.5914995949,15.5965150053,15.6015304156,15.606545826,15.6115612364,15.6165766468,15.6215920572,15.6266074675,15.6316228779,15.6366382883,15.6416536987,15.646669109,15.6516845194,15.6566999298,15.6617153402,15.6667307506,15.6717461609,15.6767615713,15.6817769817,15.6867923921,15.6918078024,15.6968232128,15.7018386232,15.7068540336,15.711869444,15.7168848543,15.7219002647,15.7269156751,15.7319310855,15.7369464958,15.7419619062,15.7469773166,15.751992727,15.7570081374,15.7620235477,15.7670389581,15.7720543685,15.7770697789,15.7820851892,15.7871005996,15.79211601,15.7971314204,15.8021468308,15.8071622411,15.8121776515,15.8171930619,15.8222084723,15.8272238826,15.832239293,15.8372547034,15.8422701138,15.8472855242,15.8523009345,15.8573163449,15.8623317553,15.8673471657,15.872362576,15.8773779864,15.8823933968,15.8874088072,15.8924242176,15.8974396279,15.9024550383,15.9074704487,15.9124858591,15.9175012694,15.9225166798,15.9275320902,15.9325475006,15.937562911,15.9425783213,15.9475937317,15.9526091421,15.9576245525,15.9626399628,15.9676553732,15.9726707836,15.977686194,15.9827016044,15.9877170147,15.9927324251,15.9977478355,16.0027632459,16.0077786562,16.0127940666,16.017809477,16.0228248874,16.0278402977,16.0328557081,16.0378711185,16.0428865289,16.0479019393,16.0529173496,16.05793276,16.0629481704,16.0679635808,16.0729789911,16.0779944015,16.0830098119,16.0880252223,16.0930406327,16.098056043,16.1030714534,16.1080868638,16.1131022742,16.1181176845,16.1231330949,16.1281485053,16.1331639157,16.1381793261,16.1431947364,16.1482101468,16.1532255572,16.1582409676,16.1632563779,16.1682717883,16.1732871987,16.1783026091,16.1833180195,16.1883334298,16.1933488402,16.1983642506,16.203379661,16.2083950713,16.2134104817,16.2184258921,16.2234413025,16.2284567129,16.2334721232,16.2384875336,16.243502944,16.2485183544,16.2535337647,16.2585491751,16.2635645855,16.2685799959,16.2735954063,16.2786108166,16.283626227,16.2886416374,16.2936570478,16.2986724581,16.3036878685,16.3087032789,16.3137186893,16.3187340997,16.32374951,16.3287649204,16.3337803308,16.3387957412,16.3438111515,16.3488265619,16.3538419723,16.3588573827,16.3638727931,16.3688882034,16.3739036138,16.3789190242,16.3839344346,16.3889498449,16.3939652553,16.3989806657,16.4039960761,16.4090114865,16.4140268968,16.4190423072,16.4240577176,16.429073128,16.4340885383,16.4391039487,16.4441193591,16.4491347695,16.4541501799,16.4591655902,16.4641810006,16.469196411,16.4742118214,16.4792272317,16.4842426421,16.4892580525,16.4942734629,16.4992888733,16.5043042836,16.509319694,16.5143351044,16.5193505148,16.5243659251,16.5293813355,16.5343967459,16.5394121563,16.5444275667,16.549442977,16.5544583874,16.5594737978,16.5644892082,16.5695046185,16.5745200289,16.5795354393,16.5845508497,16.5895662601,16.5945816704,16.5995970808,16.6049326905,16.6102683001,16.6156039097,16.6209395194,16.626275129,16.6316107387,16.6369463483,16.642281958,16.6476175676,16.6529531772,16.6582887869,16.6636243965,16.6689600062,16.6742956158,16.6796312255,16.6849668351,16.6903024447,16.6956380544,16.700973664,16.7063092737,16.7116448833,16.716980493,16.7223161026,16.7276517122,16.7329873219,16.7383229315,16.7436585412,16.7489941508,16.7543297605,16.7596653701,16.7650009797,16.7703365894,16.775672199,16.7810078087,16.7863434183,16.791679028,16.7970146376,16.8023502472,16.8076858569,16.8130214665,16.8183570762,16.8236926858,16.8290282955,16.8343639051,16.8396995147,16.8450351244,16.850370734,16.8557063437,16.8610419533,16.866377563,16.8717131726,16.8770487822,16.8823843919,16.8877200015,16.8930556112,16.8983912208,16.9037268305,16.9090624401,16.9143980498,16.9197336594,16.925069269,16.9304048787,16.9357404883,16.941076098,16.9464117076,16.9517473173,16.9570829269,16.9624185365,16.9677541462,16.9730897558,16.9784253655,16.9837609751,16.9890965848,16.9944321944,16.999767804,17.0051034137,17.0104390233,17.015774633,17.0211102426,17.0264458523,17.0317814619,17.0371170715,17.0424526812,17.0477882908,17.0531239005,17.0584595101,17.0637951198,17.0691307294,17.074466339,17.0798019487,17.0851375583,17.090473168,17.0958087776,17.1011443873,17.1064799969,17.1118156065,17.1171512162,17.1224868258,17.1278224355,17.1331580451,17.1384936548,17.1438292644,17.149164874,17.1545004837,17.1598360933,17.165171703,17.1705073126,17.1758429223,17.1811785319,17.1865141415,17.1918497512,17.1971853608,17.2025209705,17.2078565801,17.2131921898,17.2185277994,17.223863409,17.2291990187,17.2345346283,17.239870238,17.2452058476,17.2505414573,17.2558770669,17.2612126766,17.2665482862,17.2718838958,17.2772195055,17.2825551151,17.2878907248,17.2932263344,17.2985619441,17.3038975537,17.3092331633,17.314568773,17.3199043826,17.3252399923,17.3305756019,17.3359112116,17.3412468212,17.3465824308,17.3519180405,17.3572536501,17.3625892598,17.3679248694,17.3732604791,17.3785960887,17.3839316983,17.389267308,17.3946029176,17.3999385273,17.4052741369,17.4106097466,17.4159453562,17.4212809658,17.4266165755,17.4319521851,17.4372877948,17.4426234044,17.4479590141,17.4532946237,17.4586302333,17.463965843,17.4693014526,17.4746370623,17.4799726719,17.4853082816,17.4906438912,17.4959795008,17.5013151105,17.5066507201,17.5119863298,17.5173219394,17.5226575491,17.5279931587,17.5333287683,17.538664378,17.5439999876,17.5493355973,17.5546712069,17.5600068166,17.5653424262,17.5706780359,17.5760136455,17.5813492551,17.5866848648,17.5920204744,17.5973560841,17.6026916937,17.6080273034,17.613362913,17.6186985226,17.6240341323,17.6293697419,17.6347053516,17.6400409612,17.6453765709,17.6507121805,17.6560477901,17.6613833998,17.6667190094,17.6720546191,17.6773902287,17.6827258384,17.688061448,17.6933970576,17.6987326673,17.7040682769,17.7094038866,17.7147394962,17.7200751059,17.7254107155,17.7307463251,17.7360819348,17.7414175444,17.7467531541,17.7520887637,17.7574243734,17.762759983,17.7680955926,17.7734312023,17.7787668119,17.7841024216,17.7894380312,17.7947736409,17.8001092505,17.8054448601,17.8107804698,17.8161160794,17.8214516891,17.8267872987,17.8321229084,17.837458518,17.8427941276,17.8481297373,17.8534653469,17.8588009566,17.8641365662,17.8694721759,17.8748077855,17.8801433952,17.8854790048,17.8908146144,17.8961502241,17.9014858337,17.9068214434,17.912157053,17.9174926627,17.9228282723,17.9281638819,17.9334994916,17.9388351012,17.9441707109,17.9495063205,17.9548419302,17.9601775398,17.9655131494,17.9708487591,17.9761843687,17.9815199784,17.986855588,17.9921911977,17.9975268073,18.0028624169,18.0081980266,18.0135336362,18.0188692459,18.0242048555,18.0295404652,18.0348760748,18.0402116844,18.0455472941,18.0508829037,18.0562185134,18.061554123,18.0668897327,18.0722253423,18.0775609519,18.0828965616,18.0882321712,18.0935677809,18.0989033905,18.1042390002,18.1095746098,18.1149102194,18.1202458291,18.1255814387,18.1309170484,18.136252658,18.1415882677,18.1469238773,18.1522594869,18.1575950966,18.1629307062,18.1682663159,18.1736019255,18.1789375352,18.1842731448,18.1896087544,18.1949443641,18.2002799737,18.2056155834,18.210951193,18.2162868027,18.2216224123,18.226958022,18.2322936316,18.2376292412,18.2429648509,18.2483004605,18.2536360702,18.2589716798,18.2643072895,18.2696428991,18.2749785087,18.2803141184,18.285649728,18.2909853377,18.2963209473,18.301656557,18.3069921666,18.3123277762,18.3176633859,18.3229989955,18.3283346052,18.3336702148,18.3390058245,18.3443414341,18.3496770437,18.3550126534,18.360348263,18.3656838727,18.3710194823,18.376355092,18.3816907016,18.3870263112,18.3923619209,18.3976975305,18.4030331402,18.4083687498,18.4137043595,18.4190399691,18.4243755787,18.4297111884,18.435046798,18.4403824077,18.4457180173,18.451053627,18.4563892366,18.4617248462,18.4670604559,18.4723960655,18.4777316752,18.4830672848,18.4884028945,18.4937385041,18.4990741137,18.5044097234,18.509745333,18.5150809427,18.5204165523,18.525752162,18.5310877716,18.5364233813,18.5417589909,18.5470946005,18.5524302102,18.5577658198,18.5631014295,18.5684370391,18.5737726488,18.5791082584,18.584443868,18.5897794777,18.5951150873,18.600450697,18.6057863066,18.6111219163,18.6164575259,18.6217931355,18.6271287452,18.6324643548,18.6377999645,18.6431355741,18.6484711838,18.6538067934,18.659142403,18.6644780127,18.6698136223,18.675149232,18.6804848416,18.6858204513,18.6911560609,18.6964916705,18.7018272802,18.7071628898,18.7124984995,18.7178341091,18.7231697188,18.7285053284,18.733840938,18.7391765477,18.7445121573,18.749847767,18.7551833766,18.7605189863,18.7658545959,18.7711902055,18.7765258152,18.7818614248,18.7871970345,18.7925326441,18.7978682538,18.8032038634,18.808539473,18.8138750827,18.8192106923,18.824546302,18.8298819116,18.8352175213,18.8405531309,18.8458887406,18.8512243502,18.8565599598,18.8618955695,18.8672311791,18.8725667888,18.8779023984,18.8832380081,18.8885736177,18.8939092273,18.899244837,18.9045804466,18.9099160563,18.9152516659,18.9205872756,18.9259228852,18.9312584948,18.9365941045,18.9419297141,18.9472653238,18.9526009334,18.9579365431,18.9632721527,18.9686077623,18.973943372,18.9792789816,18.9846145913,18.9899502009,18.9952858106,19.0006214202,19.0059570298,19.0112926395,19.0166282491,19.0219638588,19.0272994684,19.0326350781,19.0379706877,19.0433062973,19.048641907,19.0539775166,19.0593131263,19.0646487359,19.0699843456,19.0753199552,19.0806555648,19.0859911745,19.0913267841,19.0966623938,19.1019980034,19.1073336131,19.1126692227,19.1180048323,19.123340442,19.1286760516,19.1340116613,19.1393472709,19.1446828806,19.1500184902,19.1553540999,19.1606897095,19.1660253191,19.1713609288,19.1766965384,19.1820321481,19.1873677577,19.1927033674,19.198038977,19.2033745866,19.2087101963,19.2140458059,19.2193814156,19.2247170252,19.2300526349,19.2353882445,19.2407238541,19.2460594638,19.2513950734,19.2567306831,19.2620662927,19.2674019024,19.272737512,19.2780731216,19.2834087313,19.2887443409,19.2940799506,19.2994155602,19.3047511699,19.3100867795,19.3154223891,19.3207579988,19.3260936084,19.3314292181,19.3367648277,19.3421004374,19.347436047,19.3527716566,19.3581072663,19.3634428759,19.3687784856,19.3741140952,19.3794497049,19.3847853145,19.3901209241,19.3954565338,19.4007921434,19.4061277531,19.4114633627,19.4167989724,19.422134582,19.4274701916,19.4328058013,19.4381414109,19.4434770206,19.4488126302,19.4541482399,19.4594838495,19.4648194591,19.4701550688,19.4754906784,19.4808262881,19.4861618977,19.4914975074,19.496833117,19.5021687267,19.5075043363,19.5128399459,19.5181755556,19.5235111652,19.5288467749,19.5341823845,19.5395179942,19.5448536038,19.5501892134,19.5555248231,19.5608604327,19.5661960424,19.571531652,19.5768672617,19.5822028713,19.5875384809,19.5928740906,19.5982097002,19.6035453099,19.6088809195,19.6142165292,19.6195521388,19.6248877484,19.6302233581,19.6355589677,19.6408945774,19.646230187,19.6515657967,19.6569014063,19.6622370159,19.6675726256,19.6729082352,19.6782438449,19.6835794545,19.6889150642,19.6942506738,19.6995862834,19.7049218931,19.7102575027,19.7155931124,19.720928722,19.7262643317,19.7315999413,19.7369355509,19.7422711606,19.7476067702,19.7529423799,19.7582779895,19.7636135992,19.7689492088,19.7742848184,19.7796204281,19.7849560377,19.7902916474,19.795627257,19.8009628667,19.8062984763,19.811634086,19.8169696956,19.8223053052,19.8267753213,19.8312453374,19.8357153534,19.8401853695,19.8446553856,19.8491254016,19.8535954177,19.8580654338,19.8625354498,19.8670054659,19.871475482,19.8759454981,19.8804155141,19.8848855302,19.8893555463,19.8938255623,19.8982955784,19.9027655945,19.9072356105,19.9117056266,19.9161756427,19.9206456587,19.9251156748,19.9295856909,19.9340557069,19.938525723,19.9429957391,19.9474657551,19.9519357712,19.9564057873,19.9608758033,19.9653458194,19.9698158355,19.9742858516,19.9787558676,19.9832258837,19.9876958998,19.9921659158,19.9966359319,20.001105948,20.005575964,20.0100459801,20.0145159962,20.0189860122,20.0234560283,20.0279260444,20.0323960604,20.0368660765,20.0413360926,20.0458061086,20.0502761247,20.0547461408,20.0592161568,20.0636861729,20.068156189,20.072626205,20.0770962211,20.0815662372,20.0860362533,20.0905062693,20.0949762854,20.0994463015,20.1039163175,20.1083863336,20.1128563497,20.1173263657,20.1217963818,20.1262663979,20.1307364139,20.13520643,20.1396764461,20.1441464621,20.1486164782,20.1530864943,20.1575565103,20.1620265264,20.1664965425,20.1709665585,20.1754365746,20.1799065907,20.1843766068,20.1888466228,20.1933166389,20.197786655,20.202256671,20.2067266871,20.2111967032,20.2156667192,20.2201367353,20.2246067514,20.2290767674,20.2335467835,20.2380167996,20.2424868156,20.2469568317,20.2514268478,20.2558968638,20.2603668799,20.264836896,20.269306912,20.2737769281,20.2782469442,20.2827169602,20.2871869763,20.2916569924,20.2961270085,20.3005970245,20.3050670406,20.3095370567,20.3140070727,20.3184770888,20.3229471049,20.3274171209,20.331887137,20.3363571531,20.3408271691,20.3452971852,20.3497672013,20.3542372173,20.3587072334,20.3631772495,20.3676472655,20.3721172816,20.3765872977,20.3810573137,20.3855273298,20.3899973459,20.3944673619,20.398937378,20.4034073941,20.4078774102,20.4123474262,20.4168174423,20.4212874584,20.4257574744,20.4302274905,20.4346975066,20.4391675226,20.4436375387,20.4481075548,20.4525775708,20.4570475869,20.461517603,20.465987619,20.4704576351,20.4749276512,20.4793976672,20.4838676833,20.4883376994,20.4928077154,20.4972777315,20.5017477476,20.5062177637,20.5106877797,20.5151577958,20.5196278119,20.5240978279,20.528567844,20.5330378601,20.5375078761,20.5419778922,20.5464479083,20.5509179243,20.5553879404,20.5598579565,20.5643279725,20.5687979886,20.5732680047,20.5777380207,20.5822080368,20.5866780529,20.5911480689,20.595618085,20.6000881011,20.6045581171,20.6090281332,20.6134981493,20.6179681654,20.6224381814,20.6269081975,20.6313782136,20.6358482296,20.6403182457,20.6447882618,20.6492582778,20.6537282939,20.65819831,20.662668326,20.6671383421,20.6716083582,20.6760783742,20.6805483903,20.6850184064,20.6894884224,20.6939584385,20.6984284546,20.7028984706,20.7073684867,20.7118385028,20.7163085189,20.7207785349,20.725248551,20.7297185671,20.7341885831,20.7386585992,20.7431286153,20.7475986313,20.7520686474,20.7565386635,20.7610086795,20.7654786956,20.7699487117,20.7744187277,20.7788887438,20.7833587599,20.7878287759,20.792298792,20.7967688081,20.8012388241,20.8057088402,20.8101788563,20.8146488723,20.8191188884,20.8235889045,20.8280589206,20.8325289366,20.8369989527,20.8414689688,20.8459389848,20.8504090009,20.854879017,20.859349033,20.8638190491,20.8682890652,20.8727590812,20.8772290973,20.8816991134,20.8861691294,20.8906391455,20.8951091616,20.8995791776,20.9040491937,20.9085192098,20.9129892258,20.9174592419,20.921929258,20.926399274,20.9308692901,20.9353393062,20.9398093223,20.9442793383,20.9487493544,20.9532193705,20.9576893865,20.9621594026,20.9666294187,20.9710994347,20.9755694508,20.9800394669,20.9845094829,20.988979499,20.9934495151,20.9979195311,21.0023895472,21.0068595633,21.0113295793,21.0157995954,21.0202696115,21.0247396275,21.0292096436,21.0336796597,21.0381496758,21.0426196918,21.0470897079,21.051559724,21.05602974,21.0604997561,21.0649697722,21.0694397882,21.0739098043,21.0783798204,21.0828498364,21.0873198525,21.0917898686,21.0962598846,21.1007299007,21.1051999168,21.1096699328,21.1141399489,21.118609965,21.123079981,21.1275499971,21.1320200132,21.1364900292,21.1409600453,21.1454300614,21.1499000775,21.1543700935,21.1588401096,21.1633101257,21.1677801417,21.1722501578,21.1767201739,21.1811901899,21.185660206,21.1901302221,21.1946002381,21.1990702542,21.2035402703,21.2080102863,21.2124803024,21.2169503185,21.2214203345,21.2258903506,21.2303603667,21.2348303827,21.2393003988,21.2437704149,21.248240431,21.252710447,21.2571804631,21.2616504792,21.2661204952,21.2705905113,21.2750605274,21.2795305434,21.2840005595,21.2884705756,21.2929405916,21.2974106077,21.3018806238,21.3063506398,21.3108206559,21.315290672,21.319760688,21.3242307041,21.3287007202,21.3331707362,21.3376407523,21.3421107684,21.3465807844,21.3510508005,21.3555208166,21.3599908327,21.3644608487,21.3689308648,21.3734008809,21.3778708969,21.382340913,21.3868109291,21.3912809451,21.3957509612,21.4002209773,21.4046909933,21.4091610094,21.4136310255,21.4181010415,21.4225710576,21.4270410737,21.4315110897,21.4359811058,21.4404511219,21.4449211379,21.449391154,21.4538611701,21.4583311861,21.4628012022,21.4672712183,21.4717412344,21.4762112504,21.4806812665,21.4851512826,21.4896212986,21.4940913147,21.4985613308,21.5030313468,21.5075013629,21.511971379,21.516441395,21.5209114111,21.5253814272,21.5298514432,21.5343214593,21.5387914754,21.5432614914,21.5477315075,21.5522015236,21.5566715396,21.5611415557,21.5656115718,21.5700815879,21.5745516039,21.57902162,21.5834916361,21.5879616521,21.5924316682,21.5969016843,21.6013717003,21.6058417164,21.6103117325,21.6147817485,21.6192517646,21.6237217807,21.6281917967,21.6326618128,21.6371318289,21.6416018449,21.646071861,21.6505418771,21.6550118931,21.6594819092,21.6639519253,21.6684219413,21.6728919574,21.6773619735,21.6818319896,21.6863020056,21.6907720217,21.6952420378,21.6997120538,21.7041820699,21.708652086,21.713122102,21.7175921181,21.7220621342,21.7265321502,21.7310021663,21.7354721824,21.7399421984,21.7444122145,21.7488822306,21.7533522466,21.7578222627,21.7622922788,21.7667622948,21.7712323109,21.775702327,21.7801723431,21.7846423591,21.7891123752,21.7935823913,21.7980524073,21.8025224234,21.8069924395,21.8114624555,21.8159324716,21.8204024877,21.8248725037,21.8293425198,21.8338125359,21.8382825519,21.842752568,21.8472225841,21.8516926001,21.8561626162,21.8606326323,21.8651026483,21.8695726644,21.8740426805,21.8785126965,21.8829827126,21.8874527287,21.8919227448,21.8963927608,21.9008627769,21.905332793,21.909802809,21.9142728251,21.9187428412,21.9232128572,21.9276828733,21.9321528894,21.9366229054,21.9410929215,21.9455629376,21.9500329536,21.9545029697,21.9589729858,21.9634430018,21.9679130179,21.972383034,21.97685305,21.9813230661,21.9857930822,21.9902630982,21.9947331143,21.9992031304,22.0036731465,22.0081431625,22.0126131786,22.0170831947,22.0215532107,22.0260232268,22.0304932429,22.0349632589,22.039433275,22.0439032911,22.0483733071,22.0528433232,22.0573133393,22.0617833553,22.0662533714,22.0707233875,22.0751934035,22.0796634196,22.0841334357,22.0886034517,22.0930734678,22.0975434839,22.1020135,22.106483516,22.1109535321,22.1154235482,22.1198935642,22.1243635803,22.1288335964,22.1333036124,22.1377736285,22.1422436446,22.1467136606,22.1511836767,22.1556536928,22.1601237088,22.1645937249,22.169063741,22.173533757,22.1780037731,22.1824737892,22.1869438052,22.1914138213,22.1958838374,22.2003538534,22.2048238695,22.2092938856,22.2137639017,22.2182339177,22.2227039338,22.2271739499,22.2316439659,22.236113982,22.2405839981,22.2450540141,22.2495240302,22.2539940463,22.2584640623,22.2629340784,22.2674040945,22.2718741105,22.2763441266,22.2808141427,22.2852841587,22.2897541748,22.2942241909,22.2986942069,22.303164223,22.3076342391,22.3121042552,22.3165742712,22.3210442873,22.3255143034,22.3299843194,22.3344543355,22.3389243516,22.3433943676,22.3478643837,22.3523343998,22.3568044158,22.3612744319,22.365744448,22.370214464,22.3746844801,22.3791544962,22.3836245122,22.3880945283,22.3925645444,22.3970345604,22.4015045765,22.4059745926,22.4104446086,22.4149146247,22.4193846408,22.4238546569,22.4283246729,22.432794689,22.4372647051,22.4417347211,22.4462047372,22.4506747533,22.4551447693,22.4596147854,22.4640848015,22.4685548175,22.4730248336,22.4774948497,22.4819648657,22.4864348818,22.4909048979,22.4953749139,22.49984493,22.5043149461,22.5087849621,22.5132549782,22.5177249943,22.5221950103,22.5250164419,22.5278378734,22.530659305,22.5334807365,22.536302168,22.5391235996,22.5419450311,22.5447664626,22.5475878942,22.5504093257,22.5532307572,22.5560521888,22.5588736203,22.5616950518,22.5645164834,22.5673379149,22.5701593465,22.572980778,22.5758022095,22.5786236411,22.5814450726,22.5842665041,22.5870879357,22.5899093672,22.5927307987,22.5955522303,22.5983736618,22.6011950933,22.6040165249,22.6068379564,22.609659388,22.6124808195,22.615302251,22.6181236826,22.6209451141,22.6237665456,22.6265879772,22.6294094087,22.6322308402,22.6350522718,22.6378737033,22.6406951348,22.6435165664,22.6463379979,22.6491594295,22.651980861,22.6548022925,22.6576237241,22.6604451556,22.6632665871,22.6660880187,22.6689094502,22.6717308817,22.6745523133,22.6773737448,22.6801951763,22.6830166079,22.6858380394,22.688659471,22.6914809025,22.694302334,22.6971237656,22.6999451971,22.7027666286,22.7055880602,22.7084094917,22.7112309232,22.7140523548,22.7168737863,22.7196952178,22.7225166494,22.7253380809,22.7281595125,22.730980944,22.7338023755,22.7366238071,22.7394452386,22.7422666701,22.7450881017,22.7479095332,22.7507309647,22.7535523963,22.7563738278,22.7591952593,22.7620166909,22.7648381224,22.767659554,22.7704809855,22.773302417,22.7761238486,22.7789452801,22.7817667116,22.7845881432,22.7874095747,22.7902310062,22.7930524378,22.7958738693,22.7986953008,22.8015167324,22.8043381639,22.8071595955,22.809981027,22.8128024585,22.8156238901,22.8184453216,22.8212667531,22.8240881847,22.8269096162,22.8297310477,22.8325524793,22.8353739108,22.8381953423,22.8410167739,22.8438382054,22.846659637,22.8494810685,22.8523025,22.8551239316,22.8579453631,22.8607667946,22.8635882262,22.8664096577,22.8692310892,22.8720525208,22.8748739523,22.8776953838,22.8805168154,22.8833382469,22.8861596785,22.88898111,22.8918025415,22.8946239731,22.8974454046,22.9002668361,22.9030882677,22.9059096992,22.9087311307,22.9115525623,22.9143739938,22.9171954253,22.9200168569,22.9228382884,22.92565972,22.9284811515,22.931302583,22.9341240146,22.9369454461,22.9397668776,22.9425883092,22.9454097407,22.9482311722,22.9510526038,22.9538740353,22.9566954668,22.9595168984,22.9623383299,22.9651597615,22.967981193,22.9708026245,22.9736240561,22.9764454876,22.9792669191,22.9820883507,22.9849097822,22.9877312137,22.9905526453,22.9933740768,22.9961955083,22.9990169399,23.0018383714,23.004659803,23.0074812345,23.010302666,23.0131240976,23.0159455291,23.0187669606,23.0215883922,23.0244098237,23.0272312552,23.0300526868,23.0328741183,23.0356955498,23.0385169814,23.0413384129,23.0441598444,23.046981276,23.0498027075,23.0526241391,23.0554455706,23.0582670021,23.0610884337,23.0639098652,23.0667312967,23.0695527283,23.0723741598,23.0751955913,23.0780170229,23.0808384544,23.0836598859,23.0864813175,23.089302749,23.0921241806,23.0949456121,23.0977670436,23.1005884752,23.1034099067,23.1062313382,23.1090527698,23.1118742013,23.1146956328,23.1175170644,23.1203384959,23.1231599274,23.125981359,23.1288027905,23.1316242221,23.1344456536,23.1372670851,23.1400885167,23.1429099482,23.1457313797,23.1485528113,23.1513742428,23.1541956743,23.1570171059,23.1598385374,23.1626599689,23.1654814005,23.168302832,23.1711242636,23.1739456951,23.1767671266,23.1795885582,23.1824099897,23.1852314212,23.1880528528,23.1908742843,23.1936957158,23.1965171474,23.1993385789,23.2021600104,23.204981442,23.2078028735,23.2106243051,23.2134457366,23.2162671681,23.2190885997,23.2219100312,23.2247314627,23.2275528943,23.2303743258,23.2331957573,23.2360171889,23.2388386204,23.2416600519,23.2444814835,23.247302915,23.2501243466,23.2529457781,23.2557672096,23.2585886412,23.2614100727,23.2642315042,23.2670529358,23.2698743673,23.2726957988,23.2755172304,23.2783386619,23.2811600934,23.283981525,23.2868029565,23.2896243881,23.2924458196,23.2952672511,23.2980886827,23.3009101142,23.3037315457,23.3065529773,23.3093744088,23.3121958403,23.3150172719,23.3178387034,23.3206601349,23.3234815665,23.326302998,23.3291244296,23.3319458611,23.3347672926,23.3375887242,23.3404101557,23.3432315872,23.3460530188,23.3488744503,23.3516958818,23.3545173134,23.3573387449,23.3601601764,23.362981608,23.3658030395,23.3686244711,23.3714459026,23.3742673341,23.3770887657,23.3799101972,23.3827316287,23.3855530603,23.3883744918,23.3911959233,23.3940173549,23.3968387864,23.3996602179,23.4024816495,23.405303081,23.4081245126,23.4109459441,23.4137673756,23.4165888072,23.4194102387,23.4222316702,23.4250531018,23.4278745333,23.4306959648,23.4335173964,23.4363388279,23.4391602594,23.441981691,23.4448031225,23.4476245541,23.4504459856,23.4532674171,23.4560888487,23.4589102802,23.4617317117,23.4645531433,23.4673745748,23.4701960063,23.4730174379,23.4758388694,23.4786603009,23.4814817325,23.484303164,23.4871245956,23.4899460271,23.4927674586,23.4955888902,23.4984103217,23.5012317532,23.5040531848,23.5068746163,23.5096960478,23.5125174794,23.5153389109,23.5181603424,23.520981774,23.5238032055,23.5266246371,23.5294460686,23.5322675001,23.5350889317,23.5379103632,23.5407317947,23.5435532263,23.5463746578,23.5491960893,23.5520175209,23.5548389524,23.5576603839,23.5604818155,23.563303247,23.5661246786,23.5689461101,23.5717675416,23.5745889732,23.5774104047,23.5802318362,23.5830532678,23.5858746993,23.5886961308,23.5915175624,23.5943389939,23.5971604254,23.599981857,23.6028032885,23.6056247201,23.6084461516,23.6112675831,23.6140890147,23.6169104462,23.6197318777,23.6225533093,23.6253747408,23.6281961723,23.6310176039,23.6338390354,23.6366604669,23.6394818985,23.64230333,23.6451247615,23.6479461931,23.6507676246,23.6535890562,23.6564104877,23.6592319192,23.6620533508,23.6648747823,23.6676962138,23.6705176454,23.6733390769,23.6761605084,23.67898194,23.6818033715,23.684624803,23.6874462346,23.6902676661,23.6930890977,23.6959105292,23.6987319607,23.7015533923,23.7043748238,23.7071962553,23.7100176869,23.7128391184,23.7156605499,23.7184819815,23.721303413,23.7241248445,23.7269462761,23.7297677076,23.7325891392,23.7354105707,23.7382320022,23.7410534338,23.7438748653,23.7466962968,23.7495177284,23.7523391599,23.7551605914,23.757982023,23.7608034545,23.763624886,23.7664463176,23.7692677491,23.7720891807,23.7749106122,23.7777320437,23.7805534753,23.7833749068,23.7861963383,23.7890177699,23.7918392014,23.7946606329,23.7974820645,23.800303496,23.8031249275,23.8059463591,23.8087677906,23.8115892222,23.8144106537,23.8172320852,23.8200535168,23.8228749483,23.8256963798,23.8285178114,23.8313392429,23.8341606744,23.836982106,23.8398035375,23.842624969,23.8454464006,23.8482678321,23.8510892637,23.8539106952,23.8567321267,23.8595535583,23.8623749898,23.8651964213,23.8680178529,23.8708392844,23.8736607159,23.8764821475,23.879303579,23.8821250105,23.8849464421,23.8877678736,23.8905893052,23.8934107367,23.8962321682,23.8990535998,23.9018750313,23.9046964628,23.9075178944,23.9103393259,23.9131607574,23.915982189,23.9188036205,23.921625052,23.9244464836,23.9272679151,23.9300893467,23.9329107782,23.9357322097,23.9385536413,23.9413750728,23.9441965043,23.9470179359,23.9498393674,23.9526607989,23.9554822305,23.958303662,23.9611250935,23.9639465251,23.9667679566,23.9695893882,23.9724108197,23.9752322512,23.9780536828,23.9808751143,23.9836965458,23.9865179774,23.9893394089,23.9921608404,23.994982272,23.9978037035,24.000625135,24.0034465666,24.0062679981,24.0090894297,24.0119108612,24.0147322927,24.0175537243,24.0203751558,24.0231965873,24.0260180189,24.0288394504,24.0316608819,24.0344823135,24.037303745,24.0401251765,24.0429466081,24.0457680396,24.0485894712,24.0514109027,24.0542323342,24.0570537658,24.0598751973,24.0626966288,24.0655180604,24.0683394919,24.0711609234,24.073982355,24.0768037865,24.079625218,24.0824466496,24.0852680811,24.0880895127,24.0909109442,24.0937323757,24.0965538073,24.0993752388,24.1021966703,24.1050181019,24.1078395334,24.1106609649,24.1134823965,24.116303828,24.1191252595,24.1219466911,24.1247681226,24.1275895542,24.1304109857,24.1332324172,24.1360538488,24.1388752803,24.1416967118,24.1445181434,24.1473395749,24.1501610064,24.152982438,24.1558038695,24.158625301,24.1614467326,24.1642681641,24.1670895957,24.1699110272,24.1727324587,24.1755538903,24.1783753218,24.1811967533,24.1840181849,24.1868396164,24.1896610479,24.1924824795,24.195303911,24.1981253425,24.2009467741,24.2037682056,24.2065896371,24.2094110687,24.2122325002,24.2150539318,24.2178753633,24.2206967948,24.2235182264,24.2263396579,24.2273160012,24.2282923445,24.2292686878,24.2302450311,24.2312213744,24.2321977177,24.233174061,24.2341504043,24.2351267476,24.2361030909,24.2370794342,24.2380557775,24.2390321208,24.2400084641,24.2409848074,24.2419611507,24.242937494,24.2439138373,24.2448901806,24.2458665239,24.2468428672,24.2478192106,24.2487955539,24.2497718972,24.2507482405,24.2517245838,24.2527009271,24.2536772704,24.2546536137,24.255629957,24.2566063003,24.2575826436,24.2585589869,24.2595353302,24.2605116735,24.2614880168,24.2624643601,24.2634407034,24.2644170467,24.26539339,24.2663697333,24.2673460766,24.2683224199,24.2692987632,24.2702751065,24.2712514498,24.2722277931,24.2732041364,24.2741804797,24.275156823,24.2761331663,24.2771095096,24.2780858529,24.2790621962,24.2800385395,24.2810148828,24.2819912261,24.2829675694,24.2839439127,24.284920256,24.2858965993,24.2868729426,24.2878492859,24.2888256293,24.2898019726,24.2907783159,24.2917546592,24.2927310025,24.2937073458,24.2946836891,24.2956600324,24.2966363757,24.297612719,24.2985890623,24.2995654056,24.3005417489,24.3015180922,24.3024944355,24.3034707788,24.3044471221,24.3054234654,24.3063998087,24.307376152,24.3083524953,24.3093288386,24.3103051819,24.3112815252,24.3122578685,24.3132342118,24.3142105551,24.3151868984,24.3161632417,24.317139585,24.3181159283,24.3190922716,24.3200686149,24.3210449582,24.3220213015,24.3229976448,24.3239739881,24.3249503314,24.3259266747,24.326903018,24.3278793613,24.3288557047,24.329832048,24.3308083913,24.3317847346,24.3327610779,24.3337374212,24.3347137645,24.3356901078,24.3366664511,24.3376427944,24.3386191377,24.339595481,24.3405718243,24.3415481676,24.3425245109,24.3435008542,24.3444771975,24.3454535408,24.3464298841,24.3474062274,24.3483825707,24.349358914,24.3503352573,24.3513116006,24.3522879439,24.3532642872,24.3542406305,24.3552169738,24.3561933171,24.3571696604,24.3581460037,24.359122347,24.3600986903,24.3610750336,24.3620513769,24.3630277202,24.3640040635,24.3649804068,24.3659567501,24.3669330934,24.3679094367,24.36888578,24.3698621234,24.3708384667,24.37181481,24.3727911533,24.3737674966,24.3747438399,24.3757201832,24.3766965265,24.3776728698,24.3786492131,24.3796255564,24.3806018997,24.381578243,24.3825545863,24.3835309296,24.3845072729,24.3854836162,24.3864599595,24.3874363028,24.3884126461,24.3893889894,24.3903653327,24.391341676,24.3923180193,24.3932943626,24.3942707059,24.3952470492,24.3962233925,24.3971997358,24.3981760791,24.3991524224,24.4001287657,24.401105109,24.4020814523,24.4030577956,24.4040341389,24.4050104822,24.4059868255,24.4069631688,24.4079395121,24.4089158554,24.4098921987,24.4108685421,24.4118448854,24.4128212287,24.413797572,24.4147739153,24.4157502586,24.4167266019,24.4177029452,24.4186792885,24.4196556318,24.4206319751,24.4216083184,24.4225846617,24.423561005,24.4245373483,24.4255136916,24.4264900349,24.4274663782,24.4284427215,24.4294190648,24.4303954081,24.4313717514,24.4323480947,24.433324438,24.4343007813,24.4352771246,24.4362534679,24.4372298112,24.4382061545,24.4391824978,24.4401588411,24.4411351844,24.4421115277,24.443087871,24.4440642143,24.4450405576,24.4460169009,24.4469932442,24.4479695875,24.4489459308,24.4499222741,24.4508986174,24.4518749608,24.4528513041,24.4538276474,24.4548039907,24.455780334,24.4567566773,24.4577330206,24.4587093639,24.4596857072,24.4606620505,24.4616383938,24.4626147371,24.4635910804,24.4645674237,24.465543767,24.4665201103,24.4674964536,24.4684727969,24.4694491402,24.4704254835,24.4714018268,24.4723781701,24.4733545134,24.4743308567,24.4753072,24.4762835433,24.4772598866,24.4782362299,24.4792125732,24.4801889165,24.4811652598,24.4821416031,24.4831179464,24.4840942897,24.485070633,24.4860469763,24.4870233196,24.4879996629,24.4889760062,24.4899523495,24.4909286928,24.4919050361,24.4928813795,24.4938577228,24.4948340661,24.4958104094,24.4967867527,24.497763096,24.4987394393,24.4997157826,24.5006921259,24.5016684692,24.5026448125,24.5036211558,24.5045974991,24.5055738424,24.5065501857,24.507526529,24.5085028723,24.5094792156,24.5104555589,24.5114319022,24.5124082455,24.5133845888,24.5143609321,24.5153372754,24.5163136187,24.517289962,24.5182663053,24.5192426486,24.5202189919,24.5211953352,24.5221716785,24.5231480218,24.5241243651,24.5251007084,24.5260770517,24.527053395,24.5280297383,24.5290060816,24.5299824249,24.5309587682,24.5319351115,24.5329114548,24.5338877982,24.5348641415,24.5358404848,24.5368168281,24.5377931714,24.5387695147,24.539745858,24.5407222013,24.5416985446,24.5426748879,24.5436512312,24.5446275745,24.5456039178,24.5465802611,24.5475566044,24.5485329477,24.549509291,24.5504856343,24.5514619776,24.5524383209,24.5534146642,24.5543910075,24.5553673508,24.5563436941,24.5573200374,24.5582963807,24.559272724,24.5602490673,24.5612254106,24.5622017539,24.5631780972,24.5641544405,24.5651307838,24.5661071271,24.5670834704,24.5680598137,24.569036157,24.5700125003,24.5709888436,24.5719651869,24.5729415302,24.5739178735,24.5748942169,24.5758705602,24.5768469035,24.5778232468,24.5787995901,24.5797759334,24.5807522767,24.58172862,24.5827049633,24.5836813066,24.5846576499,24.5856339932,24.5866103365,24.5875866798,24.5885630231,24.5895393664,24.5905157097,24.591492053,24.5924683963,24.5934447396,24.5944210829,24.5953974262,24.5963737695,24.5973501128,24.5983264561,24.5993027994,24.6002791427,24.601255486,24.6022318293,24.6032081726,24.6041845159,24.6051608592,24.6061372025,24.6071135458,24.6080898891,24.6090662324,24.6100425757,24.611018919,24.6119952623,24.6129716056,24.6139479489,24.6149242923,24.6159006356,24.6168769789,24.6178533222,24.6188296655,24.6198060088,24.6207823521,24.6217586954,24.6227350387,24.623711382,24.6246877253,24.6256640686,24.6266404119,24.6276167552,24.6285930985,24.6295694418,24.6305457851,24.6315221284,24.6324984717,24.633474815,24.6344511583,24.6354275016,24.6364038449,24.6373801882,24.6383565315,24.6393328748,24.6403092181,24.6412855614,24.6422619047,24.643238248,24.6442145913,24.6451909346,24.6461672779,24.6471436212,24.6481199645,24.6490963078,24.6500726511,24.6510489944,24.6520253377,24.653001681,24.6539780243,24.6549543676,24.655930711,24.6569070543,24.6578833976,24.6588597409,24.6598360842,24.6608124275,24.6617887708,24.6627651141,24.6637414574,24.6647178007,24.665694144,24.6666704873,24.6676468306,24.6686231739,24.6695995172,24.6705758605,24.6715522038,24.6725285471,24.6735048904,24.6744812337,24.675457577,24.6764339203,24.6774102636,24.6783866069,24.6793629502,24.6803392935,24.6813156368,24.6822919801,24.6832683234,24.6842446667,24.68522101,24.6861973533,24.6871736966,24.6881500399,24.6891263832,24.6901027265,24.6910790698,24.6920554131,24.6930317564,24.6940080997,24.694984443,24.6959607863,24.6969371297,24.697913473,24.6988898163,24.6998661596,24.7008425029,24.7018188462,24.7027951895,24.7037715328,24.7047478761,24.7057242194,24.7067005627,24.707676906,24.7086532493,24.7096295926,24.7106059359,24.7115822792,24.7125586225,24.7135349658,24.7145113091,24.7154876524,24.7164639957,24.717440339,24.7184166823,24.7193930256,24.7203693689,24.7213457122,24.7223220555,24.7232983988,24.7242747421,24.7252510854,24.7262274287,24.727203772,24.7281801153,24.7291564586,24.7301328019,24.7311091452,24.7320854885,24.7330618318,24.7340381751,24.7350145184,24.7359908617,24.736967205,24.7379435484,24.7389198917,24.739896235,24.7408725783,24.7418489216,24.7428252649,24.7438016082,24.7447779515,24.7457542948,24.7467306381,24.7477069814,24.7486833247,24.749659668,24.7506360113,24.7516123546,24.7525886979,24.7535650412,24.7545413845,24.7555177278,24.7564940711,24.7574704144,24.7584467577,24.759423101,24.7603994443,24.7613757876,24.7623521309,24.7633284742,24.7643048175,24.7652811608,24.7662575041,24.7672338474,24.7682101907,24.769186534,24.7701628773,24.7711392206,24.7721155639,24.7730919072,24.7740682505,24.7750445938,24.7760209371,24.7769972804,24.7779736237,24.7789499671,24.7799263104,24.7809026537,24.781878997,24.7828553403,24.7838316836,24.7848080269,24.7857843702,24.7867607135,24.7877370568,24.7887134001,24.7896897434,24.7906660867,24.79164243,24.7926187733,24.7935951166,24.7945714599,24.7955478032,24.7965241465,24.7975004898,24.7984768331,24.7994531764,24.8004295197,24.801405863,24.8023822063,24.8033585496,24.8043348929,24.8053112362,24.8062875795,24.8072639228,24.8082402661,24.8092166094,24.8101929527,24.811169296,24.8121456393,24.8131219826,24.8140983259,24.8150746692,24.8160510125,24.8151466569,24.8142423013,24.8133379457,24.8124335901,24.8115292345,24.8106248789,24.8097205233,24.8088161677,24.807911812,24.8070074564,24.8061031008,24.8051987452,24.8042943896,24.803390034,24.8024856784,24.8015813228,24.8006769672,24.7997726116,24.7988682559,24.7979639003,24.7970595447,24.7961551891,24.7952508335,24.7943464779,24.7934421223,24.7925377667,24.7916334111,24.7907290554,24.7898246998,24.7889203442,24.7880159886,24.787111633,24.7862072774,24.7853029218,24.7843985662,24.7834942106,24.782589855,24.7816854993,24.7807811437,24.7798767881,24.7789724325,24.7780680769,24.7771637213,24.7762593657,24.7753550101,24.7744506545,24.7735462988,24.7726419432,24.7717375876,24.770833232,24.7699288764,24.7690245208,24.7681201652,24.7672158096,24.766311454,24.7654070984,24.7645027427,24.7635983871,24.7626940315,24.7617896759,24.7608853203,24.7599809647,24.7590766091,24.7581722535,24.7572678979,24.7563635423,24.7554591866,24.754554831,24.7536504754,24.7527461198,24.7518417642,24.7509374086,24.750033053,24.7491286974,24.7482243418,24.7473199861,24.7464156305,24.7455112749,24.7446069193,24.7437025637,24.7427982081,24.7418938525,24.7409894969,24.7400851413,24.7391807857,24.73827643,24.7373720744,24.7364677188,24.7355633632,24.7346590076,24.733754652,24.7328502964,24.7319459408,24.7310415852,24.7301372295,24.7292328739,24.7283285183,24.7274241627,24.7265198071,24.7256154515,24.7247110959,24.7238067403,24.7229023847,24.7219980291,24.7210936734,24.7201893178,24.7192849622,24.7183806066,24.717476251,24.7165718954,24.7156675398,24.7147631842,24.7138588286,24.7129544729,24.7120501173,24.7111457617,24.7102414061,24.7093370505,24.7084326949,24.7075283393,24.7066239837,24.7057196281,24.7048152725,24.7039109168,24.7030065612,24.7021022056,24.70119785,24.7002934944,24.6993891388,24.6984847832,24.6975804276,24.696676072,24.6957717163,24.6948673607,24.6939630051,24.6930586495,24.6921542939,24.6912499383,24.6903455827,24.6894412271,24.6885368715,24.6876325159,24.6867281602,24.6858238046,24.684919449,24.6840150934,24.6831107378,24.6822063822,24.6813020266,24.680397671,24.6794933154,24.6785889597,24.6776846041,24.6767802485,24.6758758929,24.6749715373,24.6740671817,24.6731628261,24.6722584705,24.6713541149,24.6704497593,24.6695454036,24.668641048,24.6677366924,24.6668323368,24.6659279812,24.6650236256,24.66411927,24.6632149144,24.6623105588,24.6614062032,24.6605018475,24.6595974919,24.6586931363,24.6577887807,24.6568844251,24.6559800695,24.6550757139,24.6541713583,24.6532670027,24.652362647,24.6514582914,24.6505539358,24.6496495802,24.6487452246,24.647840869,24.6469365134,24.6460321578,24.6451278022,24.6442234466,24.6433190909,24.6424147353,24.6415103797,24.6406060241,24.6397016685,24.6387973129,24.6378929573,24.6369886017,24.6360842461,24.6351798904,24.6342755348,24.6333711792,24.6324668236,24.631562468,24.6306581124,24.6297537568,24.6288494012,24.6279450456,24.62704069,24.6261363343,24.6252319787,24.6243276231,24.6234232675,24.6225189119,24.6216145563,24.6207102007,24.6198058451,24.6189014895,24.6179971338,24.6170927782,24.6161884226,24.615284067,24.6143797114,24.6134753558,24.6125710002,24.6116666446,24.610762289,24.6098579334,24.6089535777,24.6080492221,24.6071448665,24.6062405109,24.6053361553,24.6044317997,24.6035274441,24.6026230885,24.6017187329,24.6008143772,24.5999100216,24.599005666,24.5981013104,24.5971969548,24.5962925992,24.5953882436,24.594483888,24.5935795324,24.5926751768,24.5917708211,24.5908664655,24.5899621099,24.5890577543,24.5881533987,24.5872490431,24.5863446875,24.5854403319,24.5845359763,24.5836316206,24.582727265,24.5818229094,24.5809185538,24.5800141982,24.5791098426,24.578205487,24.5773011314,24.5763967758,24.5754924202,24.5745880645,24.5736837089,24.5727793533,24.5718749977,24.5709706421,24.5700662865,24.5691619309,24.5682575753,24.5673532197,24.5664488641,24.5655445084,24.5646401528,24.5637357972,24.5628314416,24.561927086,24.5610227304,24.5601183748,24.5592140192,24.5583096636,24.5574053079,24.5565009523,24.5555965967,24.5546922411,24.5537878855,24.5528835299,24.5519791743,24.5510748187,24.5501704631,24.5492661075,24.5483617518,24.5474573962,24.5465530406,24.545648685,24.5447443294,24.5438399738,24.5429356182,24.5420312626,24.541126907,24.5402225513,24.5393181957,24.5384138401,24.5375094845,24.5366051289,24.5357007733,24.5347964177,24.5338920621,24.5329877065,24.5320833509,24.5311789952,24.5302746396,24.529370284,24.5284659284,24.5275615728,24.5266572172,24.5257528616,24.524848506,24.5239441504,24.5230397947,24.5221354391,24.5212310835,24.5203267279,24.5194223723,24.5185180167,24.5176136611,24.5167093055,24.5158049499,24.5149005943,24.5139962386,24.513091883,24.5121875274,24.5112831718,24.5103788162,24.5094744606,24.508570105,24.5076657494,24.5067613938,24.5058570381,24.5049526825,24.5040483269,24.5031439713,24.5022396157,24.5013352601,24.5004309045,24.4995265489,24.4986221933,24.4977178377,24.496813482,24.4959091264,24.4950047708,24.4941004152,24.4931960596,24.492291704,24.4913873484,24.4904829928,24.4895786372,24.4886742815,24.4877699259,24.4868655703,24.4859612147,24.4850568591,24.4841525035,24.4832481479,24.4823437923,24.4814394367,24.4805350811,24.4796307254,24.4787263698,24.4778220142,24.4769176586,24.476013303,24.4751089474,24.4742045918,24.4733002362,24.4723958806,24.471491525,24.4705871693,24.4696828137,24.4687784581,24.4678741025,24.4669697469,24.4660653913,24.4651610357,24.4642566801,24.4633523245,24.4624479688,24.4615436132,24.4606392576,24.459734902,24.4588305464,24.4579261908,24.4570218352,24.4561174796,24.455213124,24.4543087684,24.4534044127,24.4525000571,24.4515957015,24.4506913459,24.4497869903,24.4488826347,24.4479782791,24.4470739235,24.4461695679,24.4452652122,24.4443608566,24.443456501,24.4425521454,24.4416477898,24.4407434342,24.4398390786,24.438934723,24.4380303674,24.4371260118,24.4362216561,24.4353173005,24.4344129449,24.4335085893,24.4326042337,24.4316998781,24.4307955225,24.4298911669,24.4289868113,24.4280824556,24.4271781,24.4262737444,24.4253693888,24.4244650332,24.4235606776,24.422656322,24.4217519664,24.4208476108,24.4199432552,24.4190388995,24.4181345439,24.4172301883,24.4163258327,24.4154214771,24.4145171215,24.4136127659,24.4127084103,24.4118040547,24.410899699,24.4099953434,24.4090909878,24.4081866322,24.4072822766,24.406377921,24.4054735654,24.4045692098,24.4036648542,24.4027604986,24.4018561429,24.4009517873,24.4000474317,24.3991430761,24.3982387205,24.3973343649,24.3964300093,24.3955256537,24.3946212981,24.3937169424,24.3928125868,24.3919082312,24.3910038756,24.39009952,24.3891951644,24.3882908088,24.3873864532,24.3864820976,24.385577742,24.3846733863,24.3837690307,24.3828646751,24.3819603195,24.3810559639,24.3801516083,24.3792472527,24.3783428971,24.3774385415,24.3765341859,24.3756298302,24.3747254746,24.373821119,24.3729167634,24.3720124078,24.3711080522,24.3702036966,24.369299341,24.3683949854,24.3674906297,24.3665862741,24.3656819185,24.3647775629,24.3638732073,24.3629688517,24.3620644961,24.3611601405,24.3602557849,24.3593514293,24.3584470736,24.357542718,24.3566383624,24.3557340068,24.3548296512,24.3539252956,24.35302094,24.3521165844,24.3512122288,24.3503078731,24.3494035175,24.3484991619,24.3475948063,24.3466904507,24.3457860951,24.3448817395,24.3439773839,24.3430730283,24.3421686727,24.341264317,24.3403599614,24.3394556058,24.3385512502,24.3376468946,24.336742539,24.3358381834,24.3349338278,24.3340294722,24.3331251165,24.3322207609,24.3313164053,24.3304120497,24.3295076941,24.3286033385,24.3276989829,24.3267946273,24.3258902717,24.3249859161,24.3240815604,24.3231772048,24.3222728492,24.3213684936,24.320464138,24.3195597824,24.3186554268,24.3177510712,24.3168467156,24.3159423599,24.3150380043,24.3141336487,24.3132292931,24.3123249375,24.3114205819,24.3105162263,24.3096118707,24.3087075151,24.3078031595,24.3068988038,24.3059944482,24.3050900926,24.304185737,24.3032813814,24.3023770258,24.3014726702,24.3005683146,24.299663959,24.2987596033,24.2978552477,24.2969508921,24.2960465365,24.2951421809,24.2942378253,24.2933334697,24.2924291141,24.2915247585,24.2906204029,24.2897160472,24.2888116916,24.287907336,24.2870029804,24.2860986248,24.2851942692,24.2842899136,24.283385558,24.2824812024,24.2815768468,24.2806724911,24.2797681355,24.2788637799,24.2779594243,24.2770550687,24.2761507131,24.2752463575,24.2743420019,24.2734376463,24.2725332906,24.271628935,24.2707245794,24.2698202238,24.2668840161,24.2639478084,24.2610116006,24.2580753929,24.2551391852,24.2522029775,24.2492667698,24.246330562,24.2433943543,24.2404581466,24.2375219389,24.2345857311,24.2316495234,24.2287133157,24.225777108,24.2228409002,24.2199046925,24.2169684848,24.2140322771,24.2110960694,24.2081598616,24.2052236539,24.2022874462,24.1993512385,24.1964150307,24.193478823,24.1905426153,24.1876064076,24.1846701998,24.1817339921,24.1787977844,24.1758615767,24.172925369,24.1699891612,24.1670529535,24.1641167458,24.1611805381,24.1582443303,24.1553081226,24.1523719149,24.1494357072,24.1464994994,24.1435632917,24.140627084,24.1376908763,24.1347546686,24.1318184608,24.1288822531,24.1259460454,24.1230098377,24.1200736299,24.1171374222,24.1142012145,24.1112650068,24.108328799,24.1053925913,24.1024563836,24.0995201759,24.0965839682,24.0936477604,24.0907115527,24.087775345,24.0848391373,24.0819029295,24.0789667218,24.0760305141,24.0730943064,24.0701580986,24.0672218909,24.0642856832,24.0613494755,24.0584132678,24.05547706,24.0525408523,24.0496046446,24.0466684369,24.0437322291,24.0407960214,24.0378598137,24.034923606,24.0319873982,24.0290511905,24.0261149828,24.0231787751,24.0202425674,24.0173063596,24.0143701519,24.0114339442,24.0084977365,24.0055615287,24.002625321,23.9996891133,23.9967529056,23.9938166978,23.9908804901,23.9879442824,23.9850080747,23.982071867,23.9791356592,23.9761994515,23.9732632438,23.9703270361,23.9673908283,23.9644546206,23.9615184129,23.9585822052,23.9556459974,23.9527097897,23.949773582,23.9468373743,23.9439011666,23.9409649588,23.9380287511,23.9350925434,23.9321563357,23.9292201279,23.9262839202,23.9233477125,23.9204115048,23.917475297,23.9145390893,23.9116028816,23.9086666739,23.9057304662,23.9027942584,23.8998580507,23.896921843,23.8939856353,23.8910494275,23.8881132198,23.8851770121,23.8822408044,23.8793045966,23.8763683889,23.8734321812,23.8704959735,23.8675597658,23.864623558,23.8616873503,23.8587511426,23.8558149349,23.8528787271,23.8499425194,23.8470063117,23.844070104,23.8411338962,23.8381976885,23.8352614808,23.8323252731,23.8293890654,23.8264528576,23.8235166499,23.8205804422,23.8176442345,23.8147080267,23.811771819,23.8088356113,23.8058994036,23.8029631958,23.8000269881,23.7970907804,23.7941545727,23.791218365,23.7882821572,23.7853459495,23.7824097418,23.7794735341,23.7765373263,23.7736011186,23.7706649109,23.7677287032,23.7647924954,23.7618562877,23.75892008,23.7559838723,23.7530476646,23.7501114568,23.7471752491,23.7442390414,23.7413028337,23.7383666259,23.7354304182,23.7324942105,23.7295580028,23.726621795,23.7236855873,23.7207493796,23.7178131719,23.7148769642,23.7119407564,23.7090045487,23.706068341,23.7031321333,23.7001959255,23.6972597178,23.6943235101,23.6913873024,23.6884510946,23.6855148869,23.6825786792,23.6796424715,23.6767062638,23.673770056,23.6708338483,23.6678976406,23.6649614329,23.6620252251,23.6590890174,23.6561528097,23.653216602,23.6502803942,23.6473441865,23.6444079788,23.6414717711,23.6385355634,23.6355993556,23.6326631479,23.6297269402,23.6267907325,23.6238545247,23.620918317,23.6179821093,23.6150459016,23.6121096939,23.6091734861,23.6062372784,23.6033010707,23.600364863,23.5974286552,23.5944924475,23.5915562398,23.5886200321,23.5856838243,23.5827476166,23.5798114089,23.5768752012,23.5739389935,23.5710027857,23.568066578,23.5651303703,23.5621941626,23.5592579548,23.5563217471,23.5533855394,23.5504493317,23.5475131239,23.5445769162,23.5416407085,23.5387045008,23.5357682931,23.5328320853,23.5298958776,23.5269596699,23.5240234622,23.5210872544,23.5181510467,23.515214839,23.5122786313,23.5093424235,23.5064062158,23.5034700081,23.5005338004,23.4975975927,23.4946613849,23.4917251772,23.4887889695,23.4858527618,23.482916554,23.4799803463,23.4770441386,23.4741079309,23.4711717231,23.4682355154,23.4652993077,23.4623631,23.4594268923,23.4564906845,23.4535544768,23.4506182691,23.4476820614,23.4447458536,23.4418096459,23.4388734382,23.4359372305,23.4330010227,23.430064815,23.4271286073,23.4241923996,23.4212561919,23.4183199841,23.4153837764,23.4124475687,23.409511361,23.4065751532,23.4036389455,23.4007027378,23.3977665301,23.3948303223,23.3918941146,23.3889579069,23.3860216992,23.3830854915,23.3801492837,23.377213076,23.3742768683,23.3713406606,23.3684044528,23.3654682451,23.3625320374,23.3595958297,23.3566596219,23.3537234142,23.3507872065,23.3478509988,23.3449147911,23.3419785833,23.3390423756,23.3361061679,23.3331699602,23.3302337524,23.3272975447,23.324361337,23.3214251293,23.3184889215,23.3155527138,23.3126165061,23.3096802984,23.3067440907,23.3038078829,23.3008716752,23.2979354675,23.2949992598,23.292063052,23.2891268443,23.2861906366,23.2832544289,23.2803182211,23.2773820134,23.2744458057,23.271509598,23.2685733903,23.2656371825,23.2627009748,23.2597647671,23.2568285594,23.2538923516,23.2509561439,23.2480199362,23.2450837285,23.2421475207,23.239211313,23.2362751053,23.2333388976,23.2304026899,23.2274664821,23.2245302744,23.2215940667,23.218657859,23.2157216512,23.2127854435,23.2098492358,23.2069130281,23.2039768203,23.2010406126,23.1981044049,23.1951681972,23.1922319895,23.1892957817,23.186359574,23.1834233663,23.1804871586,23.1775509508,23.1746147431,23.1716785354,23.1687423277,23.1658061199,23.1628699122,23.1599337045,23.1569974968,23.1540612891,23.1511250813,23.1481888736,23.1452526659,23.1423164582,23.1393802504,23.1364440427,23.133507835,23.1305716273,23.1276354195,23.1246992118,23.1217630041,23.1188267964,23.1158905887,23.1129543809,23.1100181732,23.1070819655,23.1041457578,23.10120955,23.0982733423,23.0953371346,23.0924009269,23.0894647191,23.0865285114,23.0835923037,23.080656096,23.0777198883,23.0747836805,23.0718474728,23.0689112651,23.0659750574,23.0630388496,23.0601026419,23.0571664342,23.0542302265,23.0512940187,23.048357811,23.0454216033,23.0424853956,23.0395491879,23.0366129801,23.0336767724,23.0307405647,23.027804357,23.0248681492,23.0219319415,23.0189957338,23.0160595261,23.0131233183,23.0101871106,23.0072509029,23.0043146952,23.0013784875,22.9984422797,22.995506072,22.9925698643,22.9896336566,22.9866974488,22.9837612411,22.9808250334,22.9778888257,22.9749526179,22.9720164102,22.9690802025,22.9661439948,22.9632077871,22.9602715793,22.9573353716,22.9543991639,22.9514629562,22.9485267484,22.9455905407,22.942654333,22.9397181253,22.9367819175,22.9338457098,22.9309095021,22.9279732944,22.9250370867,22.9221008789,22.9191646712,22.9162284635,22.9132922558,22.910356048,22.9074198403,22.9044836326,22.9015474249,22.8986112171,22.8956750094,22.8927388017,22.889802594,22.8868663863,22.8839301785,22.8809939708,22.8780577631,22.8751215554,22.8721853476,22.8692491399,22.8663129322,22.8633767245,22.8604405167,22.857504309,22.8545681013,22.8516318936,22.8486956859,22.8457594781,22.8428232704,22.8398870627,22.836950855,22.8340146472,22.8310784395,22.8281422318,22.8252060241,22.8222698163,22.8193336086,22.8163974009,22.8134611932,22.8105249855,22.8075887777,22.80465257,22.8017163623,22.7987801546,22.7958439468,22.7929077391,22.7899715314,22.7870353237,22.7840991159,22.7811629082,22.7782267005,22.7752904928,22.7723542851,22.7694180773,22.7664818696,22.7635456619,22.7606094542,22.7576732464,22.7547370387,22.751800831,22.7488646233,22.7459284155,22.7429922078,22.7400560001,22.7371197924,22.7341835847,22.7312473769,22.7283111692,22.7253749615,22.7224387538,22.719502546,22.7165663383,22.7136301306,22.7106939229,22.7077577151,22.7048215074,22.7018852997,22.698949092,22.6960128843,22.6930766765,22.6901404688,22.6872042611,22.6842680534,22.6813318456,22.6783956379,22.6754594302,22.6725232225,22.6695870147,22.666650807,22.6637145993,22.6607783916,22.6578421839,22.6549059761,22.6519697684,22.6490335607,22.646097353,22.6431611452,22.6402249375,22.6372887298,22.6343525221,22.6314163143,22.6284801066,22.6255438989,22.6226076912,22.6196714835,22.6167352757,22.613799068,22.6108628603,22.6079266526,22.6049904448,22.6020542371,22.5991180294,22.5961818217,22.5932456139,22.5903094062,22.5873731985,22.5844369908,22.5815007831,22.5785645753,22.5756283676,22.5726921599,22.5697559522,22.5668197444,22.5638835367,22.560947329,22.5580111213,22.5550749136,22.5521387058,22.5492024981,22.5462662904,22.5433300827,22.5403938749,22.5374576672,22.5345214595,22.5315852518,22.528649044,22.5257128363,22.5227766286,22.5198404209,22.5169042132,22.5139680054,22.5110317977,22.50809559,22.5051593823,22.5022231745,22.4992869668,22.4963507591,22.4917924332,22.4872341073,22.4826757814,22.4781174556,22.4735591297,22.4690008038,22.4644424779,22.459884152,22.4553258261,22.4507675002,22.4462091744,22.4416508485,22.4370925226,22.4325341967,22.4279758708,22.4234175449,22.4188592191,22.4143008932,22.4097425673,22.4051842414,22.4006259155,22.3960675896,22.3915092637,22.3869509379,22.382392612,22.3778342861,22.3732759602,22.3687176343,22.3641593084,22.3596009826,22.3550426567,22.3504843308,22.3459260049,22.341367679,22.3368093531,22.3322510272,22.3276927014,22.3231343755,22.3185760496,22.3140177237,22.3094593978,22.3049010719,22.3003427461,22.2957844202,22.2912260943,22.2866677684,22.2821094425,22.2775511166,22.2729927907,22.2684344649,22.263876139,22.2593178131,22.2547594872,22.2502011613,22.2456428354,22.2410845096,22.2365261837,22.2319678578,22.2274095319,22.222851206,22.2182928801,22.2137345542,22.2091762284,22.2046179025,22.2000595766,22.1955012507,22.1909429248,22.1863845989,22.1818262731,22.1772679472,22.1727096213,22.1681512954,22.1635929695,22.1590346436,22.1544763177,22.1499179919,22.145359666,22.1408013401,22.1362430142,22.1316846883,22.1271263624,22.1225680366,22.1180097107,22.1134513848,22.1088930589,22.104334733,22.0997764071,22.0952180812,22.0906597554,22.0861014295,22.0815431036,22.0769847777,22.0724264518,22.0678681259,22.0633098001,22.0587514742,22.0541931483,22.0496348224,22.0450764965,22.0405181706,22.0359598447,22.0314015189,22.026843193,22.0222848671,22.0177265412,22.0131682153,22.0086098894,22.0040515636,21.9994932377,21.9949349118,21.9903765859,21.98581826,21.9812599341,21.9767016082,21.9721432824,21.9675849565,21.9630266306,21.9584683047,21.9539099788,21.9493516529,21.9447933271,21.9402350012,21.9356766753,21.9311183494,21.9265600235,21.9220016976,21.9174433717,21.9128850459,21.90832672,21.9037683941,21.8992100682,21.8946517423,21.8900934164,21.8855350906,21.8809767647,21.8764184388,21.8718601129,21.867301787,21.8627434611,21.8581851352,21.8536268094,21.8490684835,21.8445101576,21.8399518317,21.8353935058,21.8308351799,21.8262768541,21.8217185282,21.8171602023,21.8126018764,21.8080435505,21.8034852246,21.7989268987,21.7943685729,21.789810247,21.7852519211,21.7806935952,21.7761352693,21.7715769434,21.7670186176,21.7624602917,21.7579019658,21.7533436399,21.748785314,21.7442269881,21.7396686622,21.7351103364,21.7305520105,21.7259936846,21.7214353587,21.7168770328,21.7123187069,21.7077603811,21.7032020552,21.6986437293,21.6940854034,21.6895270775,21.6849687516,21.6804104257,21.6758520999,21.671293774,21.6667354481,21.6621771222,21.6576187963,21.6530604704,21.6485021446,21.6439438187,21.6393854928,21.6348271669,21.630268841,21.6257105151,21.6211521892,21.6165938634,21.6120355375,21.6074772116,21.6029188857,21.5983605598,21.5938022339,21.5892439081,21.5846855822,21.5801272563,21.5755689304,21.5710106045,21.5664522786,21.5618939527,21.5573356269,21.552777301,21.5482189751,21.5436606492,21.5391023233,21.5345439974,21.5299856716,21.5254273457,21.5208690198,21.5163106939,21.511752368,21.5071940421,21.5026357162,21.4980773904,21.4935190645,21.4889607386,21.4844024127,21.4798440868,21.4752857609,21.4707274351,21.4661691092,21.4616107833,21.4570524574,21.4524941315,21.4479358056,21.4433774797,21.4388191539,21.434260828,21.4297025021,21.4251441762,21.4205858503,21.4160275244,21.4114691986,21.4069108727,21.4023525468,21.3977942209,21.393235895,21.3886775691,21.3841192432,21.3795609174,21.3750025915,21.3704442656,21.3658859397,21.3613276138,21.3567692879,21.3522109621,21.3476526362,21.3430943103,21.3385359844,21.3339776585,21.3294193326,21.3248610067,21.3203026809,21.315744355,21.3111860291,21.3066277032,21.3020693773,21.2975110514,21.2929527256,21.2883943997,21.2838360738,21.2792777479,21.274719422,21.2701610961,21.2656027702,21.2610444444,21.2564861185,21.2519277926,21.2473694667,21.2428111408,21.2382528149,21.2336944891,21.2291361632,21.2245778373,21.2200195114,21.2154611855,21.2109028596,21.2063445337,21.2017862079,21.197227882,21.1926695561,21.1881112302,21.1835529043,21.1789945784,21.1744362526,21.1698779267,21.1653196008,21.1607612749,21.156202949,21.1516446231,21.1470862972,21.1425279714,21.1379696455,21.1334113196,21.1288529937,21.1242946678,21.1197363419,21.1151780161,21.1106196902,21.1060613643,21.1015030384,21.0969447125,21.0923863866,21.0878280607,21.0832697349,21.078711409,21.0741530831,21.0695947572,21.0650364313,21.0604781054,21.0559197796,21.0513614537,21.0468031278,21.0422448019,21.037686476,21.0331281501,21.0285698242,21.0240114984,21.0194531725,21.0148948466,21.0103365207,21.0057781948,21.0012198689,20.9966615431,20.9921032172,20.9875448913,20.9829865654,20.9784282395,20.9738699136,20.9693115877,20.9647532619,20.960194936,20.9556366101,20.9510782842,20.9465199583,20.9419616324,20.9374033066,20.9328449807,20.9282866548,20.9237283289,20.919170003,20.9146116771,20.9100533512,20.9054950254,20.9009366995,20.8963783736,20.8918200477,20.8872617218,20.8827033959,20.8781450701,20.8735867442,20.8690284183,20.8644700924,20.8599117665,20.8553534406,20.8507951147,20.8462367889,20.841678463,20.8371201371,20.8325618112,20.8280034853,20.8234451594,20.8188868336,20.8143285077,20.8097701818,20.8052118559,20.80065353,20.7960952041,20.7915368782,20.7869785524,20.7824202265,20.7778619006,20.7733035747,20.7687452488,20.7641869229,20.7596285971,20.7550702712,20.7505119453,20.7459536194,20.7413952935,20.7368369676,20.7322786417,20.7277203159,20.72316199,20.7186036641,20.7140453382,20.7094870123,20.7049286864,20.7003703606,20.6958120347,20.6912537088,20.6866953829,20.682137057,20.6775787311,20.6730204052,20.6684620794,20.6639037535,20.6593454276,20.6547871017,20.6502287758,20.6456704499,20.6411121241,20.6365537982,20.6319954723,20.6274371464,20.6228788205,20.6183204946,20.6137621687,20.6092038429,20.604645517,20.6000871911,20.5955288652,20.5909705393,20.5864122134,20.5818538876,20.5772955617,20.5727372358,20.5681789099,20.563620584,20.5590622581,20.5545039322,20.5499456064,20.5453872805,20.5408289546,20.5362706287,20.5317123028,20.5271539769,20.5225956511,20.5180373252,20.5134789993,20.5089206734,20.5043623475,20.4998040216,20.4952456957,20.4906873699,20.486129044,20.4815707181,20.4770123922,20.4724540663,20.4678957404,20.4633374146,20.4587790887,20.4542207628,20.4496624369,20.445104111,20.4405457851,20.4359874592,20.4314291334,20.4268708075,20.4223124816,20.4177541557,20.4131958298,20.4086375039,20.4040791781,20.3995208522,20.3949625263,20.3904042004,20.3858458745,20.3812875486,20.3767292227,20.3721708969,20.367612571,20.3630542451,20.3584959192,20.3539375933,20.3493792674,20.3448209416,20.3402626157,20.3357042898,20.3311459639,20.326587638,20.3220293121,20.3174709862,20.3129126604,20.3083543345,20.3037960086,20.2992376827,20.2946793568,20.2901210309,20.2855627051,20.2810043792,20.2764460533,20.2718877274,20.2673294015,20.2627710756,20.2582127497,20.2536544239,20.249096098,20.2445377721,20.2399794462,20.2354211203,20.2308627944,20.2263044686,20.2217461427,20.2171878168,20.2126294909,20.208071165,20.2035128391,20.1989545132,20.1943961874,20.1898378615,20.1852795356,20.1807212097,20.1761628838,20.1716045579,20.1670462321,20.1624879062,20.1579295803,20.1533712544,20.1488129285,20.1442546026,20.1396962767,20.1351379509,20.130579625,20.1260212991,20.1214629732,20.1169046473,20.1123463214,20.1077879956,20.1032296697,20.0986713438,20.0941130179,20.089554692,20.0849963661,20.0804380402,20.0758797144,20.0713213885,20.0667630626,20.0622047367,20.0576464108,20.0530880849,20.0485297591,20.0439714332,20.0394131073,20.0348547814,20.0302964555,20.0257381296,20.0211798037,20.0166214779,20.012063152,20.0075048261,20.0029465002,19.9983881743,19.9938298484,19.9892715226,19.9847131967,19.9801548708,19.9755965449,19.971038219,19.9664798931,19.9619215672,19.9573632414,19.9528049155,19.9482465896,19.9436882637,19.9391299378,19.9345716119,19.9300132861,19.9254549602,19.9208966343,19.9163383084,19.9117799825,19.9072216566,19.9026633307,19.8981050049,19.893546679,19.8889883531,19.8844300272,19.8798717013,19.8753133754,19.8707550496,19.8661967237,19.8616383978,19.8570800719,19.852521746,19.8479634201,19.8434050942,19.8388467684,19.8342884425,19.8297301166,19.8251717907,19.8206134648,19.8160551389,19.8114968131,19.8069384872,19.8023801613,19.7978218354,19.7932635095,19.7887051836,19.7841468577,19.7795885319,19.775030206,19.7704718801,19.7659135542,19.7613552283,19.7567969024,19.7522385766,19.7476802507,19.7431219248,19.7379559985,19.7327900723,19.727624146,19.7224582197,19.7172922935,19.7121263672,19.706960441,19.7017945147,19.6966285884,19.6914626622,19.6862967359,19.6811308097,19.6759648834,19.6707989571,19.6656330309,19.6604671046,19.6553011784,19.6501352521,19.6449693258,19.6398033996,19.6346374733,19.6294715471,19.6243056208,19.6191396945,19.6139737683,19.608807842,19.6036419158,19.5984759895,19.5933100632,19.588144137,19.5829782107,19.5778122845,19.5726463582,19.5674804319,19.5623145057,19.5571485794,19.5519826532,19.5468167269,19.5416508006,19.5364848744,19.5313189481,19.5261530219,19.5209870956,19.5158211693,19.5106552431,19.5054893168,19.5003233905,19.4951574643,19.489991538,19.4848256118,19.4796596855,19.4744937592,19.469327833,19.4641619067,19.4589959805,19.4538300542,19.4486641279,19.4434982017,19.4383322754,19.4331663492,19.4280004229,19.4228344966,19.4176685704,19.4125026441,19.4073367179,19.4021707916,19.3970048653,19.3918389391,19.3866730128,19.3815070866,19.3763411603,19.371175234,19.3660093078,19.3608433815,19.3556774553,19.350511529,19.3453456027,19.3401796765,19.3350137502,19.329847824,19.3246818977,19.3195159714,19.3143500452,19.3091841189,19.3040181927,19.2988522664,19.2936863401,19.2885204139,19.2833544876,19.2781885614,19.2730226351,19.2678567088,19.2626907826,19.2575248563,19.2523589301,19.2471930038,19.2420270775,19.2368611513,19.231695225,19.2265292988,19.2213633725,19.2161974462,19.21103152,19.2058655937,19.2006996675,19.1955337412,19.1903678149,19.1852018887,19.1800359624,19.1748700362,19.1697041099,19.1645381836,19.1593722574,19.1542063311,19.1490404049,19.1438744786,19.1387085523,19.1335426261,19.1283766998,19.1232107736,19.1180448473,19.112878921,19.1077129948,19.1025470685,19.0973811422,19.092215216,19.0870492897,19.0818833635,19.0767174372,19.0715515109,19.0663855847,19.0612196584,19.0560537322,19.0508878059,19.0457218796,19.0405559534,19.0353900271,19.0302241009,19.0250581746,19.0198922483,19.0147263221,19.0095603958,19.0043944696,18.9992285433,18.994062617,18.9888966908,18.9837307645,18.9785648383,18.973398912,18.9682329857,18.9630670595,18.9579011332,18.952735207,18.9475692807,18.9424033544,18.9372374282,18.9320715019,18.9269055757,18.9217396494,18.9165737231,18.9114077969,18.9062418706,18.9010759444,18.8959100181,18.8907440918,18.8855781656,18.8804122393,18.8752463131,18.8700803868,18.8649144605,18.8597485343,18.854582608,18.8494166818,18.8442507555,18.8390848292,18.833918903,18.8287529767,18.8235870505,18.8184211242,18.8132551979,18.8080892717,18.8029233454,18.7977574192,18.7925914929,18.7874255666,18.7822596404,18.7770937141,18.7719277879,18.7667618616,18.7615959353,18.7564300091,18.7512640828,18.7460981566,18.7409322303,18.735766304,18.7306003778,18.7254344515,18.7202685252,18.715102599,18.7099366727,18.7047707465,18.6996048202,18.6944388939,18.6892729677,18.6841070414,18.6789411152,18.6737751889,18.6686092626,18.6634433364,18.6582774101,18.6531114839,18.6479455576,18.6427796313,18.6376137051,18.6324477788,18.6272818526,18.6221159263,18.61695,18.6117840738,18.6066181475,18.6014522213,18.596286295,18.5911203687,18.5859544425,18.5807885162,18.57562259,18.5704566637,18.5652907374,18.5601248112,18.5549588849,18.5497929587,18.5446270324,18.5394611061,18.5342951799,18.5291292536,18.5239633274,18.5187974011,18.5136314748,18.5084655486,18.5032996223,18.4981336961,18.4929677698,18.4878018435,18.4826359173,18.477469991,18.4723040648,18.4671381385,18.4619722122,18.456806286,18.4516403597,18.4464744335,18.4413085072,18.4361425809,18.4309766547,18.4258107284,18.4206448022,18.4154788759,18.4103129496,18.4051470234,18.3999810971,18.3948151709,18.3896492446,18.3844833183,18.3793173921,18.3741514658,18.3689855396,18.3638196133,18.358653687,18.3534877608,18.3483218345,18.3431559083,18.337989982,18.3328240557,18.3276581295,18.3224922032,18.3173262769,18.3121603507,18.3069944244,18.3018284982,18.2966625719,18.2914966456,18.2863307194,18.2811647931,18.2759988669,18.2708329406,18.2656670143,18.2605010881,18.2553351618,18.2501692356,18.2450033093,18.239837383,18.2346714568,18.2295055305,18.2243396043,18.219173678,18.2140077517,18.2088418255,18.2036758992,18.198509973,18.1933440467,18.1881781204,18.1830121942,18.1778462679,18.1726803417,18.1675144154,18.1623484891,18.1571825629,18.1520166366,18.1468507104,18.1416847841,18.1365188578,18.1313529316,18.1261870053,18.1210210791,18.1158551528,18.1106892265,18.1055233003,18.100357374,18.0951914478,18.0900255215,18.0848595952,18.079693669,18.0745277427,18.0693618165,18.0641958902,18.0590299639,18.0538640377,18.0486981114,18.0435321852,18.0383662589,18.0332003326,18.0280344064,18.0228684801,18.0177025539,18.0125366276,18.0073707013,18.0022047751,17.9970388488,17.9918729226,17.9867069963,17.98154107,17.9763751438,17.9712092175,17.9660432913,17.960877365,17.9557114387,17.9505455125,17.9453795862,17.94021366,17.9350477337,17.9298818074,17.9247158812,17.9195499549,17.9143840286,17.9092181024,17.9040521761,17.8988862499,17.8937203236,17.8885543973,17.8833884711,17.8782225448,17.8730566186,17.8678906923,17.862724766,17.8575588398,17.8523929135,17.8472269873,17.842061061,17.8368951347,17.8317292085,17.8265632822,17.821397356,17.8162314297,17.8110655034,17.8058995772,17.8007336509,17.7955677247,17.7904017984,17.7852358721,17.7800699459,17.7749040196,17.7697380934,17.7645721671,17.7594062408,17.7542403146,17.7490743883,17.7439084621,17.7387425358,17.7335766095,17.7284106833,17.723244757,17.7180788308,17.7129129045,17.7077469782,17.702581052,17.6974151257,17.6922491995,17.6870832732,17.6819173469,17.6767514207,17.6715854944,17.6664195682,17.6612536419,17.6560877156,17.6509217894,17.6457558631,17.6405899369,17.6354240106,17.6302580843,17.6250921581,17.6199262318,17.6147603056,17.6095943793,17.604428453,17.5992625268,17.5940966005,17.5889306743,17.583764748,17.5785988217,17.5734328955,17.5682669692,17.563101043,17.5579351167,17.5527691904,17.5476032642,17.5424373379,17.5372714116,17.5321054854,17.5269395591,17.5217736329,17.5166077066,17.5114417803,17.5062758541,17.5011099278,17.4959440016,17.4907780753,17.485612149,17.4804462228,17.4752802965,17.4701143703,17.464948444,17.4597825177,17.4546165915,17.4494506652,17.444284739,17.4391188127,17.4339528864,17.4287869602,17.4236210339,17.4184551077,17.4132891814,17.4081232551,17.4029573289,17.3977914026,17.3926254764,17.3874595501,17.3822936238,17.3771276976,17.3719617713,17.3667958451,17.3616299188,17.3564639925,17.3512980663,17.34613214,17.3409662138,17.3358002875,17.3306343612,17.325468435,17.3203025087,17.3151365825,17.3099706562,17.3048047299,17.2996388037,17.2944728774,17.2893069512,17.2841410249,17.2789750986,17.2738091724,17.2686432461,17.2634773199,17.2583113936,17.2531454673,17.2479795411,17.2428136148,17.2376476886,17.2324817623,17.227315836,17.2221499098,17.2169839835,17.2118180573,17.206652131,17.2014862047,17.1963202785,17.1911543522,17.185988426,17.1808224997,17.1756565734,17.1704906472,17.1653247209,17.1601587947,17.1549928684,17.1498269421,17.1446610159,17.1394950896,17.1343291633,17.1291632371,17.1239973108,17.1188313846,17.1136654583,17.108499532,17.1033336058,17.0981676795,17.0930017533,17.087835827,17.0826699007,17.0775039745,17.0723380482,17.067172122,17.0620061957,17.0568402694,17.0516743432,17.0465084169,17.0413424907,17.0361765644,17.0310106381,17.0258447119,17.0206787856,17.0155128594,17.0103469331,17.0051810068,17.0000150806,16.9948491543,16.9896832281,16.9845173018,16.9793513755,16.9741854493,16.969019523,16.9638535968,16.9586876705,16.9535217442,16.948355818,16.9431898917,16.9380239655,16.9328580392,16.9276921129,16.9225261867,16.9173602604,16.9121943342,16.9070284079,16.9018624816,16.8966965554,16.8915306291,16.8863647029,16.8811987766,16.8760328503,16.8708669241,16.8657009978,16.8605350716,16.8553691453,16.850203219,16.8450372928,16.8398713665,16.8347054403,16.829539514,16.8243735877,16.8192076615,16.8140417352,16.808875809,16.8037098827,16.7985439564,16.7933780302,16.7882121039,16.7830461777,16.7778802514,16.7727143251,16.7675483989,16.7623824726,16.7572165463,16.7520506201,16.7468846938,16.7417187676,16.7365528413,16.731386915,16.7262209888,16.7210550625,16.7158891363,16.71072321,16.7055572837,16.7003913575,16.6952254312,16.690059505,16.6848935787,16.6797276524,16.6745617262,16.6693957999,16.6642298737,16.6590639474,16.6538980211,16.6487320949,16.6435661686,16.6384002424,16.6332343161,16.6280683898,16.6229024636,16.6179637851,16.6130251066,16.6080864282,16.6031477497,16.5982090712,16.5932703928,16.5883317143,16.5833930358,16.5784543574,16.5735156789,16.5685770004,16.563638322,16.5586996435,16.553760965,16.5488222865,16.5438836081,16.5389449296,16.5340062511,16.5290675727,16.5241288942,16.5191902157,16.5142515373,16.5093128588,16.5043741803,16.4994355019,16.4944968234,16.4895581449,16.4846194664,16.479680788,16.4747421095,16.469803431,16.4648647526,16.4599260741,16.4549873956,16.4500487172,16.4451100387,16.4401713602,16.4352326818,16.4302940033,16.4253553248,16.4204166463,16.4154779679,16.4105392894,16.4056006109,16.4006619325,16.395723254,16.3907845755,16.3858458971,16.3809072186,16.3759685401,16.3710298617,16.3660911832,16.3611525047,16.3562138262,16.3512751478,16.3463364693,16.3413977908,16.3364591124,16.3315204339,16.3265817554,16.321643077,16.3167043985,16.31176572,16.3068270416,16.3018883631,16.2969496846,16.2920110061,16.2870723277,16.2821336492,16.2771949707,16.2722562923,16.2673176138,16.2623789353,16.2574402569,16.2525015784,16.2475628999,16.2426242215,16.237685543,16.2327468645,16.227808186,16.2228695076,16.2179308291,16.2129921506,16.2080534722,16.2031147937,16.1981761152,16.1932374368,16.1882987583,16.1833600798,16.1784214014,16.1734827229,16.1685440444,16.1636053659,16.1586666875,16.153728009,16.1487893305,16.1438506521,16.1389119736,16.1339732951,16.1290346167,16.1240959382,16.1191572597,16.1142185813,16.1092799028,16.1043412243,16.0994025458,16.0944638674,16.0895251889,16.0845865104,16.079647832,16.0747091535,16.069770475,16.0648317966,16.0598931181,16.0549544396,16.0500157612,16.0450770827,16.0401384042,16.0351997257,16.0302610473,16.0253223688,16.0203836903,16.0154450119,16.0105063334,16.0055676549,16.0006289765,15.995690298,15.9907516195,15.9858129411,15.9808742626,15.9759355841,15.9709969056,15.9660582272,15.9611195487,15.9561808702,15.9512421918,15.9463035133,15.9413648348,15.9364261564,15.9314874779,15.9265487994,15.921610121,15.9166714425,15.911732764,15.9067940855,15.9018554071,15.8969167286,15.8919780501,15.8870393717,15.8821006932,15.8771620147,15.8722233363,15.8672846578,15.8623459793,15.8574073009,15.8524686224,15.8475299439,15.8425912655,15.837652587,15.8327139085,15.82777523,15.8228365516,15.8178978731,15.8129591946,15.8080205162,15.8030818377,15.7981431592,15.7932044808,15.7882658023,15.7833271238,15.7783884454,15.7734497669,15.7685110884,15.7635724099,15.7586337315,15.753695053,15.7487563745,15.7438176961,15.7388790176,15.7339403391,15.7290016607,15.7240629822,15.7191243037,15.7141856253,15.7092469468,15.7043082683,15.6993695898,15.6944309114,15.6894922329,15.6845535544,15.679614876,15.6746761975,15.669737519,15.6647988406,15.6598601621,15.6549214836,15.6499828052,15.6450441267,15.6401054482,15.6351667697,15.6302280913,15.6252894128,15.6203507343,15.6154120559,15.6104733774,15.6055346989,15.6005960205,15.595657342,15.5907186635,15.5857799851,15.5808413066,15.5759026281,15.5709639496,15.5660252712,15.5610865927,15.5561479142,15.5512092358,15.5462705573,15.5413318788,15.5363932004,15.5314545219,15.5265158434,15.521577165,15.5166384865,15.511699808,15.5067611295,15.5018224511,15.4968837726,15.4919450941,15.4870064157,15.4820677372,15.4771290587,15.4721903803,15.4672517018,15.4623130233,15.4573743449,15.4524356664,15.4474969879,15.4425583094,15.437619631,15.4326809525,15.427742274,15.4228035956,15.4178649171,15.4129262386,15.4079875602,15.4030488817,15.3981102032,15.3931715248,15.3882328463,15.3832941678,15.3783554893,15.3734168109,15.3684781324,15.3635394539,15.3586007755,15.353662097,15.3487234185,15.3437847401,15.3388460616,15.3339073831,15.3289687047,15.3240300262,15.3190913477,15.3141526692,15.3092139908,15.3042753123,15.2993366338,15.2943979554,15.2894592769,15.2845205984,15.27958192,15.2746432415,15.269704563,15.2647658846,15.2598272061,15.2548885276,15.2499498491,15.2450111707,15.2400724922,15.2351338137,15.2301951353,15.2252564568,15.2203177783,15.2153790999,15.2104404214,15.2055017429,15.2005630645,15.195624386,15.1906857075,15.185747029,15.1808083506,15.1758696721,15.1709309936,15.1659923152,15.1610536367,15.1561149582,15.1511762798,15.1462376013,15.1412989228,15.1363602444,15.1314215659,15.1264828874,15.1215442089,15.1166055305,15.111666852,15.1067281735,15.1017894951,15.0968508166,15.0919121381,15.0869734597,15.0820347812,15.0770961027,15.0721574243,15.0672187458,15.0622800673,15.0573413888,15.0524027104,15.0474640319,15.0425253534,15.037586675,15.0326479965,15.027709318,15.0227706396,15.0178319611,15.0128932826,15.0079546042,15.0030159257,14.9980772472,14.9931385687,14.9881998903,14.9832612118,14.9783225333,14.9733838549,14.9684451764,14.9635064979,14.9585678195,14.953629141,14.9486904625,14.9437517841,14.9388131056,14.9338744271,14.9289357486,14.9239970702,14.9190583917,14.9141197132,14.9091810348,14.9042423563,14.8993036778,14.8943649994,14.8894263209,14.8844876424,14.879548964,14.8746102855,14.869671607,14.8647329285,14.8597942501,14.8548555716,14.8499168931,14.8449782147,14.8400395362,14.8351008577,14.8301621793,14.8252235008,14.8202848223,14.8153461439,14.8104074654,14.8054687869,14.8005301084,14.79559143,14.7906527515,14.785714073,14.7807753946,14.7758367161,14.7708980376,14.7659593592,14.7610206807,14.7560820022,14.7511433238,14.7462046453,14.7412659668,14.7363272884,14.7313886099,14.7264499314,14.7215112529,14.7165725745,14.711633896,14.7066952175,14.7017565391,14.6968178606,14.6918791821,14.6869405037,14.6820018252,14.6770631467,14.6721244683,14.6671857898,14.6622471113,14.6573084328,14.6523697544,14.6474310759,14.6424923974,14.637553719,14.6326150405,14.627676362,14.6227376836,14.6177990051,14.6128603266,14.6079216482,14.6029829697,14.5980442912,14.5931056127,14.5881669343,14.5832282558,14.5782895773,14.5733508989,14.5684122204,14.5634735419,14.5585348635,14.553596185,14.5486575065,14.5437188281,14.5387801496,14.5338414711,14.5289027926,14.5239641142,14.5190254357,14.5140867572,14.5091480788,14.5042094003,14.4992707218,14.4943320434,14.4893933649,14.4844546864,14.479516008,14.4745773295,14.469638651,14.4646999725,14.4597612941,14.4548226156,14.4498839371,14.4449452587,14.4400065802,14.4350679017,14.4301292233,14.4251905448,14.4202518663,14.4153131879,14.4103745094,14.4054358309,14.4004971524,14.395558474,14.3906197955,14.385681117,14.3807424386,14.3758037601,14.3708650816,14.3659264032,14.3609877247,14.3560490462,14.3511103678,14.3461716893,14.3412330108,14.3362943323,14.3313556539,14.3264169754,14.3214782969,14.3165396185,14.31160094,14.3066622615,14.3017235831,14.2967849046,14.2918462261,14.2869075477,14.2819688692,14.2770301907,14.2720915122,14.2671528338,14.2622141553,14.2572754768,14.2523367984,14.2473981199,14.2424594414,14.237520763,14.2325820845,14.227643406,14.2227047276,14.2177660491,14.2128273706,14.2078886921,14.2029500137,14.1980113352,14.1930726567,14.1881339783,14.1831952998,14.1782566213,14.1733179429,14.1683792644,14.1634405859,14.1585019075,14.153563229,14.1486245505,14.143685872,14.1387471936,14.1338085151,14.1288698366,14.1239311582,14.1189924797,14.1140538012,14.1091151228,14.1041764443,14.0992377658,14.0942990874,14.0893604089,14.0844217304,14.0794830519,14.0745443735,14.069605695,14.0646670165,14.0597283381,14.0547896596,14.0498509811,14.0449123027,14.0399736242,14.0350349457,14.0300962673,14.0251575888,14.0202189103,14.0152802318,14.0103415534,14.0054028749,14.0004641964,13.995525518,13.9905868395,13.985648161,13.9807094826,13.9757708041,13.9708321256,13.9658934472,13.9609547687,13.9560160902,13.9510774117,13.9461387333,13.9412000548,13.9362613763,13.9313226979,13.9263840194,13.9214453409,13.9165066625,13.911567984,13.9066293055,13.9016906271,13.8967519486,13.8918132701,13.8868745916,13.8819359132,13.8769972347,13.8720585562,13.8671198778,13.8621811993,13.8572425208,13.8523038424,13.8473651639,13.8424264854,13.837487807,13.8325491285,13.82761045,13.8226717715,13.8177330931,13.8127944146,13.8078557361,13.8029170577,13.7979783792,13.7930397007,13.7881010223,13.7831623438,13.7782236653,13.7732849869,13.7683463084,13.7634076299,13.7584689514,13.753530273,13.7485915945,13.743652916,13.7387142376,13.7337755591,13.7288368806,13.7238982022,13.7189595237,13.7140208452,13.7090821668,13.7041434883,13.6992048098,13.6942661314,13.6893274529,13.6843887744,13.6794500959,13.6745114175,13.669572739,13.6646340605,13.6596953821,13.6547567036,13.6498180251,13.6448793467,13.6399406682,13.6362573221,13.632573976,13.62889063,13.6252072839,13.6215239378,13.6178405917,13.6141572456,13.6104738996,13.6067905535,13.6031072074,13.5994238613,13.5957405153,13.5920571692,13.5883738231,13.584690477,13.5810071309,13.5773237849,13.5736404388,13.5699570927,13.5662737466,13.5625904005,13.5589070545,13.5552237084,13.5515403623,13.5478570162,13.5441736702,13.5404903241,13.536806978,13.5331236319,13.5294402858,13.5257569398,13.5220735937,13.5183902476,13.5147069015,13.5110235555,13.5073402094,13.5036568633,13.4999735172,13.4962901711,13.4926068251,13.488923479,13.4852401329,13.4815567868,13.4778734407,13.4741900947,13.4705067486,13.4668234025,13.4631400564,13.4594567104,13.4557733643,13.4520900182,13.4484066721,13.444723326,13.44103998,13.4373566339,13.4336732878,13.4299899417,13.4263065957,13.4226232496,13.4189399035,13.4152565574,13.4115732113,13.4078898653,13.4042065192,13.4005231731,13.396839827,13.393156481,13.3894731349,13.3857897888,13.3821064427,13.3784230966,13.3747397506,13.3710564045,13.3673730584,13.3636897123,13.3600063662,13.3563230202,13.3526396741,13.348956328,13.3452729819,13.3415896359,13.3379062898,13.3342229437,13.3305395976,13.3268562515,13.3231729055,13.3194895594,13.3158062133,13.3121228672,13.3084395212,13.3047561751,13.301072829,13.2973894829,13.2937061368,13.2900227908,13.2863394447,13.2826560986,13.2789727525,13.2752894065,13.2716060604,13.2679227143,13.2642393682,13.2605560221,13.2568726761,13.25318933,13.2495059839,13.2458226378,13.2421392917,13.2384559457,13.2347725996,13.2310892535,13.2274059074,13.2237225614,13.2200392153,13.2163558692,13.2126725231,13.208989177,13.205305831,13.2016224849,13.1979391388,13.1942557927,13.1905724467,13.1868891006,13.1832057545,13.1795224084,13.1758390623,13.1721557163,13.1684723702,13.1647890241,13.161105678,13.157422332,13.1537389859,13.1500556398,13.1463722937,13.1426889476,13.1390056016,13.1353222555,13.1316389094,13.1279555633,13.1242722172,13.1205888712,13.1169055251,13.113222179,13.1095388329,13.1058554869,13.1021721408,13.0984887947,13.0948054486,13.0911221025,13.0874387565,13.0837554104,13.0800720643,13.0763887182,13.0727053722,13.0690220261,13.06533868,13.0616553339,13.0579719878,13.0542886418,13.0506052957,13.0469219496,13.0432386035,13.0395552574,13.0358719114,13.0321885653,13.0285052192,13.0248218731,13.0211385271,13.017455181,13.0137718349,13.0100884888,13.0064051427,13.0027217967,12.9990384506,12.9953551045,12.9916717584,12.9879884124,12.9843050663,12.9806217202,12.9769383741,12.973255028,12.969571682,12.9658883359,12.9622049898,12.9585216437,12.9548382977,12.9511549516,12.9474716055,12.9437882594,12.9401049133,12.9364215673,12.9327382212,12.9290548751,12.925371529,12.9216881829,12.9180048369,12.9143214908,12.9106381447,12.9069547986,12.9032714526,12.8995881065,12.8959047604,12.8922214143,12.8885380682,12.8848547222,12.8811713761,12.87748803,12.8738046839,12.8701213379,12.8664379918,12.8627546457,12.8590712996,12.8553879535,12.8517046075,12.8480212614,12.8443379153,12.8406545692,12.8369712232,12.8332878771,12.829604531,12.8259211849,12.8222378388,12.8185544928,12.8148711467,12.8111878006,12.8075044545,12.8038211084,12.8001377624,12.7964544163,12.7927710702,12.7890877241,12.7854043781,12.781721032,12.7780376859,12.7743543398,12.7706709937,12.7669876477,12.7633043016,12.7596209555,12.7559376094,12.7522542634,12.7485709173,12.7448875712,12.7412042251,12.737520879,12.733837533,12.7301541869,12.7264708408,12.7227874947,12.7191041486,12.7154208026,12.7117374565,12.7080541104,12.7043707643,12.7006874183,12.6970040722,12.6933207261,12.68963738,12.6859540339,12.6822706879,12.6785873418,12.6749039957,12.6712206496,12.6675373036,12.6638539575,12.6601706114,12.6564872653,12.6528039192,12.6491205732,12.6454372271,12.641753881,12.6380705349,12.6343871889,12.6307038428,12.6270204967,12.6233371506,12.6196538045,12.6159704585,12.6122871124,12.6086037663,12.6049204202,12.6012370741,12.5975537281,12.593870382,12.5901870359,12.5865036898,12.5828203438,12.5791369977,12.5754536516,12.5717703055,12.5680869594,12.5644036134,12.5607202673,12.5570369212,12.5533535751,12.5496702291,12.545986883,12.5423035369,12.5386201908,12.5349368447,12.5312534987,12.5275701526,12.5238868065,12.5202034604,12.5165201144,12.5128367683,12.5091534222,12.5054700761,12.50178673,12.498103384,12.4944200379,12.4907366918,12.4870533457,12.4833699996,12.4796866536,12.4760033075,12.4723199614,12.4686366153,12.4649532693,12.4612699232,12.4575865771,12.453903231,12.4502198849,12.4465365389,12.4428531928,12.4391698467,12.4354865006,12.4318031546,12.4281198085,12.4244364624,12.4207531163,12.4170697702,12.4133864242,12.4097030781,12.406019732,12.4023363859,12.3986530398,12.3949696938,12.3912863477,12.3876030016,12.3839196555,12.3802363095,12.3765529634,12.3728696173,12.3691862712,12.3655029251,12.3618195791,12.358136233,12.3544528869,12.3507695408,12.3470861948,12.3434028487,12.3397195026,12.3360361565,12.3323528104,12.3286694644,12.3249861183,12.3213027722,12.3176194261,12.3139360801,12.310252734,12.3065693879,12.3028860418,12.2992026957,12.2955193497,12.2918360036,12.2881526575,12.2844693114,12.2807859653,12.2771026193,12.2734192732,12.2697359271,12.266052581,12.262369235,12.2586858889,12.2550025428,12.2513191967,12.2476358506,12.2439525046,12.2402691585,12.2365858124,12.2329024663,12.2292191203,12.2255357742,12.2218524281,12.218169082,12.2144857359,12.2108023899,12.2071190438,12.2034356977,12.1997523516,12.1960690056,12.1923856595,12.1887023134,12.1850189673,12.1813356212,12.1776522752,12.1739689291,12.170285583,12.1666022369,12.1629188908,12.1592355448,12.1555521987,12.1518688526,12.1481855065,12.1445021605,12.1408188144,12.1371354683,12.1334521222,12.1297687761,12.1260854301,12.122402084,12.1187187379,12.1150353918,12.1113520458,12.1076686997,12.1039853536,12.1003020075,12.0966186614,12.0929353154,12.0892519693,12.0855686232,12.0818852771,12.078201931,12.074518585,12.0708352389,12.0671518928,12.0634685467,12.0597852007,12.0561018546,12.0524185085,12.0487351624,12.0450518163,12.0413684703,12.0376851242,12.0340017781,12.030318432,12.026635086,12.0229517399,12.0192683938,12.0155850477,12.0119017016,12.0082183556,12.0045350095,12.0008516634,11.9971683173,11.9934849713,11.9898016252,11.9861182791,11.982434933,11.9787515869,11.9750682409,11.9713848948,11.9677015487,11.9640182026,11.9603348565,11.9566515105,11.9529681644,11.9492848183,11.9456014722,11.9419181262,11.9382347801,11.934551434,11.9308680879,11.9271847418,11.9235013958,11.9198180497,11.9161347036,11.9124513575,11.9087680115,11.9050846654,11.9014013193,11.8977179732,11.8940346271,11.8903512811,11.886667935,11.8829845889,11.8793012428,11.8756178968,11.8719345507,11.8682512046,11.8645678585,11.8608845124,11.8572011664,11.8535178203,11.8498344742,11.8461511281,11.842467782,11.838784436,11.8351010899,11.8314177438,11.8277343977,11.8240510517,11.8203677056,11.8166843595,11.8130010134,11.8093176673,11.8056343213,11.8019509752,11.7982676291,11.794584283,11.790900937,11.7872175909,11.7835342448,11.7798508987,11.7761675526,11.7724842066,11.7688008605,11.7651175144,11.7614341683,11.7577508222,11.7540674762,11.7503841301,11.746700784,11.7430174379,11.7393340919,11.7356507458,11.7319673997,11.7282840536,11.7246007075,11.7209173615,11.7172340154,11.7135506693,11.7098673232,11.7061839772,11.7025006311,11.698817285,11.6951339389,11.6914505928,11.6877672468,11.6840839007,11.6804005546,11.6767172085,11.6730338625,11.6693505164,11.6656671703,11.6619838242,11.6583004781,11.6546171321,11.650933786,11.6472504399,11.6435670938,11.6398837477,11.6362004017,11.6325170556,11.6288337095,11.6251503634,11.6214670174,11.6177836713,11.6141003252,11.6104169791,11.606733633,11.603050287,11.5993669409,11.5956835948,11.5920002487,11.5883169027,11.5846335566,11.5809502105,11.5772668644,11.5735835183,11.5699001723,11.5662168262,11.5625334801,11.558850134,11.555166788,11.5514834419,11.5478000958,11.5441167497,11.5404334036,11.5367500576,11.5330667115,11.5293833654,11.5257000193,11.5220166732,11.5183333272,11.5146499811,11.510966635,11.5072832889,11.5035999429,11.4999165968,11.4962332507,11.4925499046,11.4888665585,11.4851832125,11.4814998664,11.4778165203,11.4741331742,11.4704498282,11.4667664821,11.463083136,11.4593997899,11.4557164438,11.4520330978,11.4483497517,11.4446664056,11.4409830595,11.4372997134,11.4336163674,11.4299330213,11.4262496752,11.4225663291,11.4188829831,11.415199637,11.4138551282,11.4125106195,11.4111661107,11.409821602,11.4084770932,11.4071325845,11.4057880757,11.404443567,11.4030990583,11.4017545495,11.4004100408,11.399065532,11.3977210233,11.3963765145,11.3950320058,11.393687497,11.3923429883,11.3909984795,11.3896539708,11.388309462,11.3869649533,11.3856204445,11.3842759358,11.382931427,11.3815869183,11.3802424095,11.3788979008,11.377553392,11.3762088833,11.3748643746,11.3735198658,11.3721753571,11.3708308483,11.3694863396,11.3681418308,11.3667973221,11.3654528133,11.3641083046,11.3627637958,11.3614192871,11.3600747783,11.3587302696,11.3573857608,11.3560412521,11.3546967433,11.3533522346,11.3520077258,11.3506632171,11.3493187083,11.3479741996,11.3466296909,11.3452851821,11.3439406734,11.3425961646,11.3412516559,11.3399071471,11.3385626384,11.3372181296,11.3358736209,11.3345291121,11.3331846034,11.3318400946,11.3304955859,11.3291510771,11.3278065684,11.3264620596,11.3251175509,11.3237730421,11.3224285334,11.3210840246,11.3197395159,11.3183950072,11.3170504984,11.3157059897,11.3143614809,11.3130169722,11.3116724634,11.3103279547,11.3089834459,11.3076389372,11.3062944284,11.3049499197,11.3036054109,11.3022609022,11.3009163934,11.2995718847,11.2982273759,11.2968828672,11.2955383584,11.2941938497,11.2928493409,11.2915048322,11.2901603235,11.2888158147,11.287471306,11.2861267972,11.2847822885,11.2834377797,11.282093271,11.2807487622,11.2794042535,11.2780597447,11.276715236,11.2753707272,11.2740262185,11.2726817097,11.271337201,11.2699926922,11.2686481835,11.2673036747,11.265959166,11.2646146572,11.2632701485,11.2619256398,11.260581131,11.2592366223,11.2578921135,11.2565476048,11.255203096,11.2538585873,11.2525140785,11.2511695698,11.249825061,11.2484805523,11.2471360435,11.2457915348,11.244447026,11.2431025173,11.2417580085,11.2404134998,11.239068991,11.2377244823,11.2363799735,11.2350354648,11.2336909561,11.2323464473,11.2310019386,11.2296574298,11.2283129211,11.2269684123,11.2256239036,11.2242793948,11.2229348861,11.2215903773,11.2202458686,11.2189013598,11.2175568511,11.2162123423,11.2148678336,11.2135233248,11.2121788161,11.2108343073,11.2094897986,11.2081452898,11.2068007811,11.2054562724,11.2041117636,11.2027672549,11.2014227461,11.2000782374,11.1987337286,11.1973892199,11.1960447111,11.1947002024,11.1933556936,11.1920111849,11.1906666761,11.1893221674,11.1879776586,11.1866331499,11.1852886411,11.1839441324,11.1825996236,11.1812551149,11.1799106061,11.1785660974,11.1772215887,11.1758770799,11.1745325712,11.1731880624,11.1718435537,11.1704990449,11.1691545362,11.1678100274,11.1664655187,11.1651210099,11.1637765012,11.1624319924,11.1610874837,11.1597429749,11.1583984662,11.1570539574,11.1557094487,11.1543649399,11.1530204312,11.1516759224,11.1503314137,11.148986905,11.1476423962,11.1462978875,11.1449533787,11.14360887,11.1422643612,11.1409198525,11.1395753437,11.138230835,11.1368863262,11.1355418175,11.1341973087,11.1328528,11.1315082912,11.1301637825,11.1288192737,11.127474765,11.1261302562,11.1247857475,11.1234412387,11.12209673,11.1207522213,11.1194077125,11.1180632038,11.116718695,11.1153741863,11.1140296775,11.1126851688,11.11134066,11.1099961513,11.1086516425,11.1073071338,11.105962625,11.1046181163,11.1032736075,11.1019290988,11.10058459,11.0992400813,11.0978955725,11.0965510638,11.095206555,11.0938620463,11.0925175376,11.0911730288,11.0898285201,11.0884840113,11.0871395026,11.0857949938,11.0844504851,11.0831059763,11.0817614676,11.0804169588,11.0790724501,11.0777279413,11.0763834326,11.0750389238,11.0736944151,11.0723499063,11.0710053976,11.0696608888,11.0683163801,11.0669718713,11.0656273626,11.0642828539,11.0629383451,11.0615938364,11.0602493276,11.0589048189,11.0575603101,11.0562158014,11.0548712926,11.0535267839,11.0521822751,11.0508377664,11.0494932576,11.0481487489,11.0468042401,11.0454597314,11.0441152226,11.0427707139,11.0414262051,11.0400816964,11.0387371876,11.0373926789,11.0360481702,11.0347036614,11.0333591527,11.0320146439,11.0306701352,11.0293256264,11.0279811177,11.0266366089,11.0252921002,11.0239475914,11.0226030827,11.0212585739,11.0199140652,11.0185695564,11.0172250477,11.0158805389,11.0145360302,11.0131915214,11.0118470127,11.0105025039,11.0091579952,11.0078134865,11.0064689777,11.005124469,11.0037799602,11.0024354515,11.0010909427,10.999746434,10.9984019252,10.9970574165,10.9957129077,10.994368399,10.9930238902,10.9916793815,10.9903348727,10.988990364,10.9876458552,10.9863013465,10.9849568377,10.983612329,10.9822678202,10.9809233115,10.9795788028,10.978234294,10.9768897853,10.9755452765,10.9742007678,10.972856259,10.9715117503,10.9701672415,10.9688227328,10.967478224,10.9661337153,10.9647892065,10.9634446978,10.962100189,10.9607556803,10.9594111715,10.9580666628,10.956722154,10.9553776453,10.9540331365,10.9526886278,10.9513441191,10.9499996103,10.9486551016,10.9473105928,10.9459660841,10.9446215753,10.9432770666,10.9419325578,10.9405880491,10.9392435403,10.9378990316,10.9365545228,10.9352100141,10.9338655053,10.9325209966,10.9311764878,10.9298319791,10.9284874703,10.9271429616,10.9257984528,10.9244539441,10.9231094354,10.9217649266,10.9204204179,10.9190759091,10.9177314004,10.9163868916,10.9150423829,10.9136978741,10.9123533654,10.9110088566,10.9096643479,10.9083198391,10.9069753304,10.9056308216,10.9042863129,10.9029418041,10.9015972954,10.9002527866,10.8989082779,10.8975637692,10.8962192604,10.8948747517,10.8935302429,10.8921857342,10.8908412254,10.8894967167,10.8881522079,10.8868076992,10.8854631904,10.8841186817,10.8827741729,10.8814296642,10.8800851554,10.8787406467,10.8773961379,10.8760516292,10.8747071204,10.8733626117,10.8720181029,10.8706735942,10.8693290855,10.8679845767,10.866640068,10.8652955592,10.8639510505,10.8626065417,10.861262033,10.8599175242,10.8585730155,10.8572285067,10.855883998,10.8545394892,10.8531949805,10.8518504717,10.850505963,10.8491614542,10.8478169455,10.8464724367,10.845127928,10.8437834192,10.8424389105,10.8410944018,10.839749893,10.8384053843,10.8370608755,10.8357163668,10.834371858,10.8330273493,10.8316828405,10.8303383318,10.828993823,10.8276493143,10.8263048055,10.8249602968,10.823615788,10.8222712793,10.8209267705,10.8195822618,10.818237753,10.8168932443,10.8155487355,10.8142042268,10.8128597181,10.8115152093,10.8101707006,10.8088261918,10.8074816831,10.8061371743,10.8047926656,10.8034481568,10.8021036481,10.8007591393,10.7994146306,10.7980701218,10.7967256131,10.7953811043,10.7940365956,10.7926920868,10.7913475781,10.7900030693,10.7886585606,10.7873140518,10.7859695431,10.7846250344,10.7832805256,10.7819360169,10.7805915081,10.7792469994,10.7779024906,10.7765579819,10.7752134731,10.7738689644,10.7725244556,10.7711799469,10.7698354381,10.7684909294,10.7671464206,10.7658019119,10.7644574031,10.7631128944,10.7617683856,10.7604238769,10.7590793681,10.7577348594,10.7563903507,10.7550458419,10.7537013332,10.7523568244,10.7510123157,10.7496678069,10.7483232982,10.7469787894,10.7456342807,10.7442897719,10.7429452632,10.7416007544,10.7402562457,10.7389117369,10.7375672282,10.7362227194,10.7348782107,10.7335337019,10.7321891932,10.7308446844,10.7295001757,10.728155667,10.7268111582,10.7254666495,10.7241221407,10.722777632,10.7214331232,10.7200886145,10.7187441057,10.717399597,10.7160550882,10.7147105795,10.7133660707,10.712021562,10.7106770532,10.7093325445,10.7079880357,10.706643527,10.7052990182,10.7039545095,10.7026100007,10.701265492,10.6999209833,10.6985764745,10.6972319658,10.695887457,10.6945429483,10.6931984395,10.6918539308,10.690509422,10.6891649133,10.6878204045,10.6864758958,10.685131387,10.6837868783,10.6824423695,10.6810978608,10.679753352,10.6784088433,10.6770643345,10.6757198258,10.674375317,10.6730308083,10.6716862996,10.6703417908,10.6689972821,10.6676527733,10.6663082646,10.6649637558,10.6636192471,10.6622747383,10.6609302296,10.6595857208,10.6582412121,10.6568967033,10.6555521946,10.6542076858,10.6528631771,10.6515186683,10.6501741596,10.6488296508,10.6474851421,10.6461406333,10.6447961246,10.6434516159,10.6421071071,10.6407625984,10.6394180896,10.6380735809,10.6367290721,10.6353845634,10.6340400546,10.6326955459,10.6313510371,10.6300065284,10.6286620196,10.6273175109,10.6259730021,10.6246284934,10.6232839846,10.6219394759,10.6205949671,10.6192504584,10.6179059496,10.6165614409,10.6152169322,10.6138724234,10.6125279147,10.6111834059,10.6098388972,10.6084943884,10.6071498797,10.6058053709,10.6044608622,10.6031163534,10.6045238532,10.605931353,10.6073388528,10.6087463526,10.6101538524,10.6115613522,10.612968852,10.6143763517,10.6157838515,10.6171913513,10.6185988511,10.6200063509,10.6214138507,10.6228213505,10.6242288503,10.6256363501,10.6270438499,10.6284513496,10.6298588494,10.6312663492,10.632673849,10.6340813488,10.6354888486,10.6368963484,10.6383038482,10.639711348,10.6411188478,10.6425263475,10.6439338473,10.6453413471,10.6467488469,10.6481563467,10.6495638465,10.6509713463,10.6523788461,10.6537863459,10.6551938457,10.6566013454,10.6580088452,10.659416345,10.6608238448,10.6622313446,10.6636388444,10.6650463442,10.666453844,10.6678613438,10.6692688436,10.6706763433,10.6720838431,10.6734913429,10.6748988427,10.6763063425,10.6777138423,10.6791213421,10.6805288419,10.6819363417,10.6833438415,10.6847513412,10.686158841,10.6875663408,10.6889738406,10.6903813404,10.6917888402,10.69319634,10.6946038398,10.6960113396,10.6974188394,10.6988263391,10.7002338389,10.7016413387,10.7030488385,10.7044563383,10.7058638381,10.7072713379,10.7086788377,10.7100863375,10.7114938373,10.712901337,10.7143088368,10.7157163366,10.7171238364,10.7185313362,10.719938836,10.7213463358,10.7227538356,10.7241613354,10.7255688352,10.7269763349,10.7283838347,10.7297913345,10.7311988343,10.7326063341,10.7340138339,10.7354213337,10.7368288335,10.7382363333,10.7396438331,10.7410513328,10.7424588326,10.7438663324,10.7452738322,10.746681332,10.7480888318,10.7494963316,10.7509038314,10.7523113312,10.753718831,10.7551263307,10.7565338305,10.7579413303,10.7593488301,10.7607563299,10.7621638297,10.7635713295,10.7649788293,10.7663863291,10.7677938289,10.7692013286,10.7706088284,10.7720163282,10.773423828,10.7748313278,10.7762388276,10.7776463274,10.7790538272,10.780461327,10.7818688268,10.7832763265,10.7846838263,10.7860913261,10.7874988259,10.7889063257,10.7903138255,10.7917213253,10.7931288251,10.7945363249,10.7959438247,10.7973513244,10.7987588242,10.800166324,10.8015738238,10.8029813236,10.8043888234,10.8057963232,10.807203823,10.8086113228,10.8100188226,10.8114263223,10.8128338221,10.8142413219,10.8156488217,10.8170563215,10.8184638213,10.8198713211,10.8212788209,10.8226863207,10.8240938205,10.8255013202,10.82690882,10.8283163198,10.8297238196,10.8311313194,10.8325388192,10.833946319,10.8353538188,10.8367613186,10.8381688184,10.8395763181,10.8409838179,10.8423913177,10.8437988175,10.8452063173,10.8466138171,10.8480213169,10.8494288167,10.8508363165,10.8522438163,10.853651316,10.8550588158,10.8564663156,10.8578738154,10.8592813152,10.860688815,10.8620963148,10.8635038146,10.8649113144,10.8663188142,10.8677263139,10.8691338137,10.8705413135,10.8719488133,10.8733563131,10.8747638129,10.8761713127,10.8775788125,10.8789863123,10.8803938121,10.8818013118,10.8832088116,10.8846163114,10.8860238112,10.887431311,10.8888388108,10.8902463106,10.8916538104,10.8930613102,10.89446881,10.8958763097,10.8972838095,10.8986913093,10.9000988091,10.9015063089,10.9029138087,10.9043213085,10.9057288083,10.9071363081,10.9085438079,10.9099513076,10.9113588074,10.9127663072,10.914173807,10.9155813068,10.9169888066,10.9183963064,10.9198038062,10.921211306,10.9226188058,10.9240263055,10.9254338053,10.9268413051,10.9282488049,10.9296563047,10.9310638045,10.9324713043,10.9338788041,10.9352863039,10.9366938037,10.9381013034,10.9395088032,10.940916303,10.9423238028,10.9437313026,10.9451388024,10.9465463022,10.947953802,10.9493613018,10.9507688016,10.9521763013,10.9535838011,10.9549913009,10.9563988007,10.9578063005,10.9592138003,10.9606213001,10.9620287999,10.9634362997,10.9648437995,10.9662512992,10.967658799,10.9690662988,10.9704737986,10.9718812984,10.9732887982,10.974696298,10.9761037978,10.9775112976,10.9789187974,10.9803262971,10.9817337969,10.9831412967,10.9845487965,10.9859562963,10.9873637961,10.9887712959,10.9901787957,10.9915862955,10.9929937953,10.994401295,10.9958087948,10.9972162946,10.9986237944,11.0000312942,11.001438794,11.0028462938,11.0042537936,11.0056612934,11.0070687932,11.0084762929,11.0098837927,11.0112912925,11.0126987923,11.0141062921,11.0155137919,11.0169212917,11.0183287915,11.0197362913,11.0211437911,11.0225512908,11.0239587906,11.0253662904,11.0267737902,11.02818129,11.0295887898,11.0309962896,11.0324037894,11.0338112892,11.035218789,11.0366262887,11.0380337885,11.0394412883,11.0408487881,11.0422562879,11.0436637877,11.0450712875,11.0464787873,11.0478862871,11.0492937869,11.0507012866,11.0521087864,11.0535162862,11.054923786,11.0563312858,11.0577387856,11.0591462854,11.0605537852,11.061961285,11.0633687848,11.0647762845,11.0661837843,11.0675912841,11.0689987839,11.0704062837,11.0718137835,11.0732212833,11.0746287831,11.0760362829,11.0774437827,11.0788512824,11.0802587822,11.081666282,11.0830737818,11.0844812816,11.0858887814,11.0872962812,11.088703781,11.0901112808,11.0915187806,11.0929262803,11.0943337801,11.0957412799,11.0971487797,11.0985562795,11.0999637793,11.1013712791,11.1027787789,11.1041862787,11.1055937785,11.1070012782,11.108408778,11.1098162778,11.1112237776,11.1126312774,11.1140387772,11.115446277,11.1168537768,11.1182612766,11.1196687764,11.1210762761,11.1224837759,11.1238912757,11.1252987755,11.1267062753,11.1281137751,11.1295212749,11.1309287747,11.1323362745,11.1337437743,11.135151274,11.1365587738,11.1379662736,11.1393737734,11.1407812732,11.142188773,11.1435962728,11.1450037726,11.1464112724,11.1478187722,11.1492262719,11.1506337717,11.1520412715,11.1534487713,11.1548562711,11.1562637709,11.1576712707,11.1590787705,11.1604862703,11.1618937701,11.1633012699,11.1647087696,11.1661162694,11.1675237692,11.168931269,11.1703387688,11.1717462686,11.1731537684,11.1745612682,11.175968768,11.1773762678,11.1787837675,11.1801912673,11.1815987671,11.1830062669,11.1844137667,11.1858212665,11.1872287663,11.1886362661,11.1900437659,11.1914512657,11.1928587654,11.1942662652,11.195673765,11.1970812648,11.1984887646,11.1998962644,11.2013037642,11.202711264,11.2041187638,11.2055262636,11.2069337633,11.2083412631,11.2097487629,11.2111562627,11.2125637625,11.2139712623,11.2153787621,11.2167862619,11.2181937617,11.2196012615,11.2210087612,11.222416261,11.2238237608,11.2252312606,11.2266387604,11.2280462602,11.22945376,11.2308612598,11.2322687596,11.2336762594,11.2350837591,11.2364912589,11.2378987587,11.2393062585,11.2407137583,11.2421212581,11.2435287579,11.2449362577,11.2463437575,11.2477512573,11.249158757,11.2505662568,11.2519737566,11.2533812564,11.2547887562,11.256196256,11.2576037558,11.2590112556,11.2604187554,11.2618262552,11.2632337549,11.2646412547,11.2660487545,11.2674562543,11.2688637541,11.2702712539,11.2716787537,11.2730862535,11.2744937533,11.2759012531,11.2773087528,11.2787162526,11.2801237524,11.2815312522,11.282938752,11.2843462518,11.2857537516,11.2871612514,11.2885687512,11.289976251,11.2913837507,11.2927912505,11.2941987503,11.2956062501,11.2970137499,11.2984212497,11.2998287495,11.3012362493,11.3026437491,11.3040512489,11.3054587486,11.3068662484,11.3082737482,11.309681248,11.3110887478,11.3124962476,11.3139037474,11.3153112472,11.316718747,11.3181262468,11.3195337465,11.3209412463,11.3223487461,11.3237562459,11.3251637457,11.3265712455,11.3279787453,11.3293862451,11.3307937449,11.3322012447,11.3336087444,11.3350162442,11.336423744,11.3378312438,11.3392387436,11.3406462434,11.3420537432,11.343461243,11.3448687428,11.3462762426,11.3476837423,11.3490912421,11.3504987419,11.3519062417,11.3533137415,11.3547212413,11.3561287411,11.3575362409,11.3589437407,11.3603512405,11.3617587402,11.36316624,11.3645737398,11.3659812396,11.3673887394,11.3687962392,11.370203739,11.3716112388,11.3730187386,11.3744262384,11.3758337381,11.3772412379,11.3786487377,11.3800562375,11.3814637373,11.3828712371,11.3842787369,11.3856862367,11.3870937365,11.3885012363,11.389908736,11.3913162358,11.3927237356,11.3941312354,11.3955387352,11.396946235,11.3983537348,11.3997612346,11.4011687344,11.4025762342,11.4039837339,11.4053912337,11.4067987335,11.4082062333,11.4096137331,11.4110212329,11.4124287327,11.4138362325,11.4152437323,11.4166512321,11.4180587318,11.4194662316,11.4208737314,11.4222812312,11.423688731,11.4250962308,11.4265037306,11.4279112304,11.4293187302,11.43072623,11.4321337297,11.4335412295,11.4349487293,11.4363562291,11.4377637289,11.4391712287,11.4405787285,11.4419862283,11.4433937281,11.4448012279,11.4462087276,11.4476162274,11.4490237272,11.450431227,11.4518387268,11.4532462266,11.456902958,11.4605596894,11.4642164208,11.4678731522,11.4715298836,11.475186615,11.4788433464,11.4825000778,11.4861568092,11.4898135406,11.493470272,11.4971270034,11.5007837348,11.5044404662,11.5080971976,11.511753929,11.5154106604,11.5190673918,11.5227241233,11.5263808547,11.5300375861,11.5336943175,11.5373510489,11.5410077803,11.5446645117,11.5483212431,11.5519779745,11.5556347059,11.5592914373,11.5629481687,11.5666049001,11.5702616315,11.5739183629,11.5775750943,11.5812318257,11.5848885571,11.5885452885,11.5922020199,11.5958587513,11.5995154827,11.6031722141,11.6068289455,11.6104856769,11.6141424083,11.6177991397,11.6214558711,11.6251126025,11.6287693339,11.6324260653,11.6360827967,11.6397395282,11.6433962596,11.647052991,11.6507097224,11.6543664538,11.6580231852,11.6616799166,11.665336648,11.6689933794,11.6726501108,11.6763068422,11.6799635736,11.683620305,11.6872770364,11.6909337678,11.6945904992,11.6982472306,11.701903962,11.7055606934,11.7092174248,11.7128741562,11.7165308876,11.720187619,11.7238443504,11.7275010818,11.7311578132,11.7348145446,11.738471276,11.7421280074,11.7457847388,11.7494414702,11.7530982016,11.7567549331,11.7604116645,11.7640683959,11.7677251273,11.7713818587,11.7750385901,11.7786953215,11.7823520529,11.7860087843,11.7896655157,11.7933222471,11.7969789785,11.8006357099,11.8042924413,11.8079491727,11.8116059041,11.8152626355,11.8189193669,11.8225760983,11.8262328297,11.8298895611,11.8335462925,11.8372030239,11.8408597553,11.8445164867,11.8481732181,11.8518299495,11.8554866809,11.8591434123,11.8628001437,11.8664568751,11.8701136065,11.873770338,11.8774270694,11.8810838008,11.8847405322,11.8883972636,11.892053995,11.8957107264,11.8993674578,11.9030241892,11.9066809206,11.910337652,11.9139943834,11.9176511148,11.9213078462,11.9249645776,11.928621309,11.9322780404,11.9359347718,11.9395915032,11.9432482346,11.946904966,11.9505616974,11.9542184288,11.9578751602,11.9615318916,11.965188623,11.9688453544,11.9725020858,11.9761588172,11.9798155486,11.98347228,11.9871290114,11.9907857429,11.9944424743,11.9980992057,12.0017559371,12.0054126685,12.0090693999,12.0127261313,12.0163828627,12.0200395941,12.0236963255,12.0273530569,12.0310097883,12.0346665197,12.0383232511,12.0419799825,12.0456367139,12.0492934453,12.0529501767,12.0566069081,12.0602636395,12.0639203709,12.0675771023,12.0712338337,12.0748905651,12.0785472965,12.0822040279,12.0858607593,12.0895174907,12.0931742221,12.0968309535,12.1004876849,12.1041444163,12.1078011478,12.1114578792,12.1151146106,12.118771342,12.1224280734,12.1260848048,12.1297415362,12.1333982676,12.137054999,12.1407117304,12.1443684618,12.1480251932,12.1516819246,12.155338656,12.1589953874,12.1626521188,12.1663088502,12.1699655816,12.173622313,12.1772790444,12.1809357758,12.1845925072,12.1882492386,12.19190597,12.1955627014,12.1992194328,12.2028761642,12.2065328956,12.210189627,12.2138463584,12.2175030898,12.2211598212,12.2248165527,12.2284732841,12.2321300155,12.2357867469,12.2394434783,12.2431002097,12.2467569411,12.2504136725,12.2540704039,12.2577271353,12.2613838667,12.2650405981,12.2686973295,12.2723540609,12.2760107923,12.2796675237,12.2833242551,12.2869809865,12.2906377179,12.2942944493,12.2979511807,12.3016079121,12.3052646435,12.3089213749,12.3125781063,12.3162348377,12.3198915691,12.3235483005,12.3272050319,12.3308617633,12.3345184947,12.3381752261,12.3418319576,12.345488689,12.3491454204,12.3528021518,12.3564588832,12.3601156146,12.363772346,12.3674290774,12.3710858088,12.3747425402,12.3783992716,12.382056003,12.3857127344,12.3893694658,12.3930261972,12.3966829286,12.40033966,12.4039963914,12.4076531228,12.4113098542,12.4149665856,12.418623317,12.4222800484,12.4259367798,12.4295935112,12.4332502426,12.436906974,12.4405637054,12.4442204368,12.4478771682,12.4515338996,12.455190631,12.4588473625,12.4625040939,12.4661608253,12.4698175567,12.4734742881,12.4771310195,12.4807877509,12.4844444823,12.4881012137,12.4917579451,12.4954146765,12.4990714079,12.5027281393,12.5063848707,12.5100416021,12.5136983335,12.5173550649,12.5210117963,12.5246685277,12.5283252591,12.5319819905,12.5356387219,12.5392954533,12.5429521847,12.5466089161,12.5502656475,12.5539223789,12.5575791103,12.5612358417,12.5648925731,12.5685493045,12.5722060359,12.5758627674,12.5795194988,12.5831762302,12.5868329616,12.590489693,12.5941464244,12.5978031558,12.6014598872,12.6051166186,12.60877335,12.6124300814,12.6160868128,12.6197435442,12.6234002756,12.627057007,12.6307137384,12.6343704698,12.6380272012,12.6416839326,12.645340664,12.6489973954,12.6526541268,12.6563108582,12.6599675896,12.663624321,12.6672810524,12.6709377838,12.6745945152,12.6782512466,12.681907978,12.6855647094,12.6892214408,12.6928781723,12.6965349037,12.7001916351,12.7038483665,12.7075050979,12.7111618293,12.7148185607,12.7184752921,12.7221320235,12.7257887549,12.7294454863,12.7331022177,12.7367589491,12.7404156805,12.7440724119,12.7477291433,12.7513858747,12.7550426061,12.7586993375,12.7623560689,12.7660128003,12.7696695317,12.7733262631,12.7769829945,12.7806397259,12.7842964573,12.7879531887,12.7916099201,12.7952666515,12.7989233829,12.8025801143,12.8062368457,12.8098935772,12.8135503086,12.81720704,12.8208637714,12.8245205028,12.8281772342,12.8318339656,12.835490697,12.8391474284,12.8428041598,12.8464608912,12.8501176226,12.853774354,12.8574310854,12.8610878168,12.8647445482,12.8684012796,12.872058011,12.8757147424,12.8793714738,12.8830282052,12.8866849366,12.890341668,12.8939983994,12.8976551308,12.9013118622,12.9049685936,12.908625325,12.9122820564,12.9159387878,12.9195955192,12.9232522506,12.9269089821,12.9305657135,12.9342224449,12.9378791763,12.9415359077,12.9451926391,12.9488493705,12.9525061019,12.9561628333,12.9598195647,12.9634762961,12.9671330275,12.9707897589,12.9744464903,12.9781032217,12.9817599531,12.9854166845,12.9890734159,12.9927301473,12.9963868787,13.0000436101,13.0037003415,13.0073570729,13.0110138043,13.0146705357,13.0183272671,13.0219839985,13.0256407299,13.0292974613,13.0329541927,13.0366109241,13.0402676555,13.043924387,13.0475811184,13.0512378498,13.0548945812,13.0585513126,13.062208044,13.0658647754,13.0695215068,13.0731782382,13.0768349696,13.080491701,13.0841484324,13.0878051638,13.0914618952,13.0951186266,13.098775358,13.1024320894,13.1060888208,13.1097455522,13.1134022836,13.117059015,13.1207157464,13.1243724778,13.1280292092,13.1316859406,13.135342672,13.1389994034,13.1426561348,13.1463128662,13.1499695976,13.153626329,13.1572830604,13.1609397919,13.1645965233,13.1682532547,13.1719099861,13.1755667175,13.1792234489,13.1828801803,13.1865369117,13.1901936431,13.1938503745,13.1975071059,13.2011638373,13.2048205687,13.2084773001,13.2121340315,13.2157907629,13.2194474943,13.2231042257,13.2267609571,13.2304176885,13.2340744199,13.2377311513,13.2413878827,13.2450446141,13.2487013455,13.2523580769,13.2560148083,13.2596715397,13.2633282711,13.2669850025,13.2706417339,13.2742984653,13.2779551968,13.2816119282,13.2852686596,13.288925391,13.2925821224,13.2962388538,13.2998955852,13.3035523166,13.307209048,13.3108657794,13.3145225108,13.3181792422,13.3218359736,13.325492705,13.3291494364,13.3328061678,13.3364628992,13.3401196306,13.343776362,13.3474330934,13.3510898248,13.3547465562,13.3584032876,13.362060019,13.3657167504,13.3693734818,13.3730302132,13.3766869446,13.380343676,13.3840004074,13.3876571388,13.3913138702,13.3949706017,13.3986273331,13.4022840645,13.4059407959,13.4095975273,13.4132542587,13.4169109901,13.4205677215,13.4242244529,13.4278811843,13.4315379157,13.4351946471,13.4388513785,13.4425081099,13.4461648413,13.4498215727,13.4534783041,13.4571350355,13.4607917669,13.4644484983,13.4681052297,13.4717619611,13.4754186925,13.4790754239,13.4827321553,13.4863888867,13.4900456181,13.4937023495,13.4973590809,13.5010158123,13.5046725437,13.5083292751,13.5119860066,13.515642738,13.5192994694,13.5229562008,13.5266129322,13.5302696636,13.533926395,13.5375831264,13.5412398578,13.5448965892,13.5485533206,13.552210052,13.5558667834,13.5595235148,13.5631802462,13.5668369776,13.570493709,13.5741504404,13.5778071718,13.5814639032,13.5851206346,13.588777366,13.5924340974,13.5960908288,13.5997475602,13.6034042916,13.607061023,13.6107177544,13.6143744858,13.6180312172,13.6216879486,13.62534468,13.6290014115,13.6326581429,13.6363148743,13.6399716057,13.6436283371,13.6472850685,13.6509417999,13.6545985313,13.6582552627,13.6619119941,13.6669937086,13.672075423,13.6771571375,13.682238852,13.6873205664,13.6924022809,13.6974839954,13.7025657099,13.7076474243,13.7127291388,13.7178108533,13.7228925678,13.7279742822,13.7330559967,13.7381377112,13.7432194257,13.7483011401,13.7533828546,13.7584645691,13.7635462836,13.768627998,13.7737097125,13.778791427,13.7838731414,13.7889548559,13.7940365704,13.7991182849,13.8041999993,13.8092817138,13.8143634283,13.8194451428,13.8245268572,13.8296085717,13.8346902862,13.8397720007,13.8448537151,13.8499354296,13.8550171441,13.8600988585,13.865180573,13.8702622875,13.875344002,13.8804257164,13.8855074309,13.8905891454,13.8956708599,13.9007525743,13.9058342888,13.9109160033,13.9159977178,13.9210794322,13.9261611467,13.9312428612,13.9363245757,13.9414062901,13.9464880046,13.9515697191,13.9566514335,13.961733148,13.9668148625,13.971896577,13.9769782914,13.9820600059,13.9871417204,13.9922234349,13.9973051493,14.0023868638,14.0074685783,14.0125502928,14.0176320072,14.0227137217,14.0277954362,14.0328771507,14.0379588651,14.0430405796,14.0481222941,14.0532040085,14.058285723,14.0633674375,14.068449152,14.0735308664,14.0786125809,14.0836942954,14.0887760099,14.0938577243,14.0989394388,14.1040211533,14.1091028678,14.1141845822,14.1192662967,14.1243480112,14.1294297256,14.1345114401,14.1395931546,14.1446748691,14.1497565835,14.154838298,14.1599200125,14.165001727,14.1700834414,14.1751651559,14.1802468704,14.1853285849,14.1904102993,14.1954920138,14.2005737283,14.2056554428,14.2107371572,14.2158188717,14.2209005862,14.2259823006,14.2310640151,14.2361457296,14.2412274441,14.2463091585,14.251390873,14.2564725875,14.261554302,14.2666360164,14.2717177309,14.2767994454,14.2818811599,14.2869628743,14.2920445888,14.2971263033,14.3022080178,14.3072897322,14.3123714467,14.3174531612,14.3225348756,14.3276165901,14.3326983046,14.3377800191,14.3428617335,14.347943448,14.3530251625,14.358106877,14.3631885914,14.3682703059,14.3733520204,14.3784337349,14.3835154493,14.3885971638,14.3936788783,14.3987605927,14.4038423072,14.4089240217,14.4140057362,14.4190874506,14.4241691651,14.4292508796,14.4343325941,14.4394143085,14.444496023,14.4495777375,14.454659452,14.4597411664,14.4648228809,14.4699045954,14.4749863099,14.4800680243,14.4851497388,14.4902314533,14.4953131677,14.5003948822,14.5054765967,14.5105583112,14.5156400256,14.5207217401,14.5258034546,14.5308851691,14.5359668835,14.541048598,14.5461303125,14.551212027,14.5562937414,14.5613754559,14.5664571704,14.5715388849,14.5766205993,14.5817023138,14.5867840283,14.5918657427,14.5969474572,14.6020291717,14.6071108862,14.6121926006,14.6172743151,14.6223560296,14.6274377441,14.6325194585,14.637601173,14.6426828875,14.647764602,14.6528463164,14.6579280309,14.6630097454,14.6680914598,14.6731731743,14.6782548888,14.6833366033,14.6884183177,14.6935000322,14.6985817467,14.7036634612,14.7087451756,14.7138268901,14.7189086046,14.7239903191,14.7290720335,14.734153748,14.7392354625,14.744317177,14.7493988914,14.7544806059,14.7595623204,14.7646440348,14.7697257493,14.7748074638,14.7798891783,14.7849708927,14.7900526072,14.7951343217,14.8002160362,14.8052977506,14.8103794651,14.8154611796,14.8205428941,14.8256246085,14.830706323,14.8357880375,14.840869752,14.8459514664,14.8510331809,14.8561148954,14.8611966098,14.8662783243,14.8713600388,14.8764417533,14.8815234677,14.8866051822,14.8916868967,14.8967686112,14.9018503256,14.9069320401,14.9120137546,14.9170954691,14.9221771835,14.927258898,14.9323406125,14.9374223269,14.9425040414,14.9475857559,14.9526674704,14.9577491848,14.9628308993,14.9679126138,14.9729943283,14.9780760427,14.9831577572,14.9882394717,14.9933211862,14.9984029006,15.0034846151,15.0085663296,15.0136480441,15.0187297585,15.023811473,15.0288931875,15.0339749019,15.0390566164,15.0441383309,15.0492200454,15.0543017598,15.0593834743,15.0644651888,15.0695469033,15.0746286177,15.0797103322,15.0847920467,15.0898737612,15.0949554756,15.1000371901,15.1051189046,15.1102006191,15.1152823335,15.120364048,15.1254457625,15.1305274769,15.1356091914,15.1406909059,15.1457726204,15.1508543348,15.1559360493,15.1610177638,15.1660994783,15.1711811927,15.1762629072,15.1813446217,15.1864263362,15.1915080506,15.1965897651,15.2016714796,15.206753194,15.2118349085,15.216916623,15.2219983375,15.2270800519,15.2321617664,15.2372434809,15.2423251954,15.2474069098,15.2524886243,15.2575703388,15.2626520533,15.2677337677,15.2728154822,15.2778971967,15.2829789112,15.2880606256,15.2931423401,15.2982240546,15.303305769,15.3083874835,15.313469198,15.3185509125,15.3236326269,15.3287143414,15.3337960559,15.3388777704,15.3439594848,15.3490411993,15.3541229138,15.3592046283,15.3642863427,15.3693680572,15.3744497717,15.3795314862,15.3846132006,15.3896949151,15.3947766296,15.399858344,15.4049400585,15.410021773,15.4151034875,15.4201852019,15.4252669164,15.4303486309,15.4354303454,15.4405120598,15.4455937743,15.4506754888,15.4557572033,15.4608389177,15.4659206322,15.4710023467,15.4760840611,15.4811657756,15.4862474901,15.4913292046,15.496410919,15.5014926335,15.506574348,15.5116560625,15.5167377769,15.5218194914,15.5269012059,15.5319829204,15.5370646348,15.5421463493,15.5472280638,15.5523097783,15.5573914927,15.5624732072,15.5675549217,15.5726366361,15.5777183506,15.5828000651,15.5878817796,15.592963494,15.5980452085,15.603126923,15.6082086375,15.6132903519,15.6183720664,15.6234537809,15.6285354954,15.6336172098,15.6386989243,15.6437806388,15.6488623533,15.6539440677,15.6590257822,15.6641074967,15.6691892111,15.6742709256,15.6793526401,15.6844343546,15.689516069,15.6945977835,15.699679498,15.7047612125,15.7098429269,15.7149246414,15.7200063559,15.7250880704,15.7301697848,15.7352514993,15.7403332138,15.7454149282,15.7504966427,15.7555783572,15.7606600717,15.7657417861,15.7708235006,15.7759052151,15.7809869296,15.786068644,15.7911503585,15.796232073,15.8013137875,15.8063955019,15.8114772164,15.8165589309,15.8216406454,15.8267223598,15.8318040743,15.8368857888,15.8419675032,15.8470492177,15.8521309322,15.8572126467,15.8622943611,15.8673760756,15.8724577901,15.8775395046,15.882621219,15.8877029335,15.892784648,15.8978663625,15.9029480769,15.9080297914,15.9131115059,15.9181932204,15.9232749348,15.9283566493,15.9334383638,15.9385200782,15.9436017927,15.9486835072,15.9537652217,15.9588469361,15.9639286506,15.9690103651,15.9740920796,15.979173794,15.9842555085,15.989337223,15.9944189375,15.9995006519,16.0045823664,16.0096640809,16.0147457953,16.0198275098,16.0249092243,16.0299909388,16.0350726532,16.0401543677,16.0452360822,16.0503177967,16.0553995111,16.0604812256,16.0655629401,16.0706446546,16.075726369,16.0808080835,16.085889798,16.0909715125,16.0960532269,16.1011349414,16.1062166559,16.1112983703,16.1163800848,16.1214617993,16.1265435138,16.1316252282,16.1367069427,16.1417886572,16.1468703717,16.1519520861,16.1570338006,16.1621155151,16.1671972296,16.172278944,16.1773606585,16.182442373,16.1875240875,16.1926058019,16.1976875164,16.2027692309,16.2078509453,16.2129326598,16.2180143743,16.2230960888,16.2281778032,16.2332595177,16.2383412322,16.2434229467,16.2485046611,16.2535863756,16.2586680901,16.2637498046,16.268831519,16.2739132335,16.278994948,16.2840766624,16.2891583769,16.2942400914,16.2993218059,16.3044035203,16.3094852348,16.3145669493,16.3196486638,16.3247303782,16.3298120927,16.3348938072,16.3399755217,16.3450572361,16.3501389506,16.3552206651,16.3603023796,16.365384094,16.3704658085,16.375547523,16.3806292374,16.3857109519,16.3907926664,16.3958743809,16.4009560953,16.4060378098,16.4111195243,16.4162012388,16.4212829532,16.4263646677,16.4314463822,16.4365280967,16.4416098111,16.4466915256,16.4517732401,16.4568549545,16.461936669,16.4670183835,16.472100098,16.4771818124,16.4822635269,16.4873452414,16.4924269559,16.4975086703,16.5025903848,16.5076720993,16.5127538138,16.5178355282,16.5229172427,16.5279989572,16.5330806717,16.5381623861,16.5432441006,16.5483258151,16.5534075295,16.558489244,16.5635709585,16.568652673,16.5737343874,16.5788161019,16.5838978164,16.5889795309,16.5940612453,16.5991429598,16.6042246743,16.6093063888,16.6143881032,16.6194698177,16.6245515322,16.6296332467,16.6347149611,16.6397966756,16.6448783901,16.6499601045,16.655041819,16.6601235335,16.665205248,16.6702869624,16.6753686769,16.6804503914,16.6855321059,16.6906138203,16.6956955348,16.7007772493,16.7058589638,16.7109406782,16.7160223927,16.7211041072,16.7261858216,16.7312675361,16.7365255599,16.7417835837,16.7470416074,16.7522996312,16.757557655,16.7628156788,16.7680737025,16.7733317263,16.7785897501,16.7838477739,16.7891057976,16.7943638214,16.7996218452,16.804879869,16.8101378927,16.8153959165,16.8206539403,16.8259119641,16.8311699878,16.8364280116,16.8416860354,16.8469440591,16.8522020829,16.8574601067,16.8627181305,16.8679761542,16.873234178,16.8784922018,16.8837502256,16.8890082493,16.8942662731,16.8995242969,16.9047823207,16.9100403444,16.9152983682,16.920556392,16.9258144158,16.9310724395,16.9363304633,16.9415884871,16.9468465108,16.9521045346,16.9573625584,16.9626205822,16.9678786059,16.9731366297,16.9783946535,16.9836526773,16.988910701,16.9941687248,16.9994267486,17.0046847724,17.0099427961,17.0152008199,17.0204588437,17.0257168675,17.0309748912,17.036232915,17.0414909388,17.0467489625,17.0520069863,17.0572650101,17.0625230339,17.0677810576,17.0730390814,17.0782971052,17.083555129,17.0888131527,17.0940711765,17.0993292003,17.1045872241,17.1098452478,17.1151032716,17.1203612954,17.1256193192,17.1308773429,17.1361353667,17.1413933905,17.1466514142,17.151909438,17.1571674618,17.1624254856,17.1676835093,17.1729415331,17.1781995569,17.1834575807,17.1887156044,17.1939736282,17.199231652,17.2044896758,17.2097476995,17.2150057233,17.2202637471,17.2255217709,17.2307797946,17.2360378184,17.2412958422,17.2465538659,17.2518118897,17.2570699135,17.2623279373,17.267585961,17.2728439848,17.2781020086,17.2833600324,17.2886180561,17.2938760799,17.2991341037,17.3043921275,17.3096501512,17.314908175,17.3201661988,17.3254242226,17.3306822463,17.3359402701,17.3411982939,17.3464563176,17.3517143414,17.3569723652,17.362230389,17.3674884127,17.3727464365,17.3780044603,17.3832624841,17.3885205078,17.3937785316,17.3990365554,17.4042945792,17.4095526029,17.4148106267,17.4200686505,17.4253266743,17.430584698,17.4358427218,17.4411007456,17.4463587693,17.4516167931,17.4568748169,17.4621328407,17.4673908644,17.4726488882,17.477906912,17.4831649358,17.4884229595,17.4936809833,17.4989390071,17.5041970309,17.5094550546,17.5147130784,17.5199711022,17.525229126,17.5304871497,17.5357451735,17.5410031973,17.5462612211,17.5515192448,17.5567772686,17.5620352924,17.5672933161,17.5725513399,17.5778093637,17.5830673875,17.5883254112,17.593583435,17.5988414588,17.6040994826,17.6093575063,17.6146155301,17.6198735539,17.6251315777,17.6303896014,17.6356476252,17.640905649,17.6461636728,17.6514216965,17.6566797203,17.6619377441,17.6671957678,17.6724537916,17.6777118154,17.6829698392,17.6882278629,17.6934858867,17.6987439105,17.7040019343,17.709259958,17.7145179818,17.7197760056,17.7250340294,17.7302920531,17.7355500769,17.7408081007,17.7460661245,17.7513241482,17.756582172,17.7618401958,17.7670982195,17.7723562433,17.7776142671,17.7828722909,17.7881303146,17.7933883384,17.7986463622,17.803904386,17.8091624097,17.8144204335,17.8196784573,17.8249364811,17.8301945048,17.8354525286,17.8407105524,17.8459685762,17.8512265999,17.8564846237,17.8617426475,17.8670006712,17.872258695,17.8775167188,17.8827747426,17.8880327663,17.8932907901,17.8985488139,17.9038068377,17.9090648614,17.9143228852,17.919580909,17.9248389328,17.9300969565,17.9353549803,17.9406130041,17.9458710279,17.9511290516,17.9563870754,17.9616450992,17.9669031229,17.9721611467,17.9774191705,17.9826771943,17.987935218,17.9931932418,17.9984512656,18.0037092894,18.0089673131,18.0142253369,18.0194833607,18.0247413845,18.0299994082,18.035257432,18.0405154558,18.0457734796,18.0510315033,18.0562895271,18.0615475509,18.0668055746,18.0720635984,18.0773216222,18.082579646,18.0878376697,18.0930956935,18.0983537173,18.1036117411,18.1088697648,18.1141277886,18.1193858124,18.1246438362,18.1299018599,18.1351598837,18.1404179075,18.1456759313,18.150933955,18.1561919788,18.1614500026,18.1667080264,18.1719660501,18.1772240739,18.1824820977,18.1877401214,18.1929981452,18.198256169,18.2035141928,18.2087722165,18.2140302403,18.2192882641,18.2245462879,18.2298043116,18.2350623354,18.2403203592,18.245578383,18.2508364067,18.2560944305,18.2613524543,18.2666104781,18.2718685018,18.2771265256,18.2823845494,18.2876425731,18.2929005969,18.2981586207,18.3034166445,18.3086746682,18.313932692,18.3191907158,18.3244487396,18.3297067633,18.3349647871,18.3402228109,18.3454808347,18.3507388584,18.3559968822,18.361254906,18.3665129298,18.3717709535,18.3770289773,18.3822870011,18.3875450248,18.3928030486,18.3980610724,18.4033190962,18.4085771199,18.4138351437,18.4190931675,18.4243511913,18.429609215,18.4348672388,18.4401252626,18.4453832864,18.4506413101,18.4558993339,18.4611573577,18.4664153815,18.4716734052,18.476931429,18.4821894528,18.4874474765,18.4927055003,18.4979635241,18.5032215479,18.5084795716,18.5137375954,18.5189956192,18.524253643,18.5295116667,18.5347696905,18.5400277143,18.5452857381,18.5505437618,18.5558017856,18.5610598094,18.5663178332,18.5715758569,18.5768338807,18.5820919045,18.5873499282,18.592607952,18.5978659758,18.6031239996,18.6083820233,18.6136400471,18.6188980709,18.6241560947,18.6294141184,18.6346721422,18.639930166,18.6451881898,18.6504462135,18.6557042373,18.6609622611,18.6662202849,18.6714783086,18.6767363324,18.6819943562,18.6872523799,18.6925104037,18.6977684275,18.7030264513,18.708284475,18.7135424988,18.7188005226,18.7240585464,18.7293165701,18.7345745939,18.7398326177,18.7450906415,18.7503486652,18.755606689,18.7608647128,18.7661227366,18.7713807603,18.7766387841,18.7818968079,18.7871548316,18.7924128554,18.7976708792,18.802928903,18.8081869267,18.8134449505,18.8187029743,18.8239609981,18.8292190218,18.8344770456,18.8397350694,18.8449930932,18.8502511169,18.8555091407,18.8607671645,18.8660251883,18.871283212,18.8765412358,18.8817992596,18.8870572834,18.8923153071,18.8975733309,18.9028313547,18.9080893784,18.9133474022,18.918605426,18.9238634498,18.9291214735,18.9343794973,18.9396375211,18.9448955449,18.9501535686,18.9554115924,18.9606696162,18.96592764,18.9711856637,18.9764436875,18.9817017113,18.9869597351,18.9922177588,18.9974757826,19.0027338064,19.0079918301,19.0132498539,19.0185078777,19.0237659015,19.0290239252,19.034281949,19.0395399728,19.0447979966,19.0500560203,19.0553140441,19.0605720679,19.0658300917,19.0710881154,19.0763461392,19.081604163,19.0868621868,19.0921202105,19.0973782343,19.1026362581,19.1078942818,19.1131523056,19.1184103294,19.1236683532,19.1289263769,19.1341844007,19.1394424245,19.1447004483,19.149958472,19.1552164958,19.1604745196,19.1657325434,19.1709905671,19.1762485909,19.1815066147,19.1867646385,19.1920226622,19.197280686,19.2025387098,19.2077967335,19.2130547573,19.2183127811,19.2235708049,19.2288288286,19.2340868524,19.2393448762,19.2446029,19.2498609237,19.2551189475,19.2603769713,19.2656349951,19.2708930188,19.2761510426,19.2814090664,19.2866670902,19.2919251139,19.2971831377,19.3024411615,19.3076991852,19.312957209,19.3182152328,19.3234732566,19.3287312803,19.3339893041,19.3392473279,19.3445053517,19.3497633754,19.3550213992,19.360279423,19.3655374468,19.3707954705,19.3760534943,19.3813115181,19.3865695419,19.3918275656,19.3970855894,19.4023436132,19.4076016369,19.4128596607,19.4181176845,19.4233757083,19.428633732,19.4338917558,19.4391497796,19.4444078034,19.4496658271,19.4549238509,19.4601818747,19.4654398985,19.4706979222,19.475955946,19.4812139698,19.4864719936,19.4917300173,19.4969880411,19.5022460649,19.5075040887,19.5127621124,19.5180201362,19.52327816,19.5285361837,19.5337942075,19.5390522313,19.5443102551,19.5495682788,19.5548263026,19.5600843264,19.5653423502,19.5706003739,19.5758583977,19.5811164215,19.5863744453,19.591632469,19.5968904928,19.6021485166,19.6074065404,19.6126645641,19.6179225879,19.6231806117,19.6284386354,19.6336966592,19.638954683,19.6442127068,19.6494707305,19.6547287543,19.6599867781,19.6652448019,19.6705028256,19.6757608494,19.6810188732,19.686276897,19.6915349207,19.6967929445,19.7020509683,19.7073089921,19.7125670158,19.7178250396,19.7230830634,19.7283410871,19.7335991109,19.7388571347,19.7441151585,19.7493731822,19.754631206,19.7598892298,19.7651472536,19.7704052773,19.7756633011,19.7809213249,19.7861793487,19.7914373724,19.7966953962,19.80195342,19.8072114438,19.8124694675,19.8177274913,19.8229855151,19.8282435388,19.8335015626,19.8387595864,19.8440176102,19.8492756339,19.8545336577,19.8597916815,19.8650497053,19.870307729,19.8755657528,19.8808237766,19.8860818004,19.8913398241,19.8965978479,19.9018558717,19.9071138955,19.9122421781,19.9173704608,19.9224987435,19.9276270262,19.9327553089,19.9378835916,19.9430118743,19.948140157,19.9532684397,19.9583967223,19.963525005,19.9686532877,19.9737815704,19.9789098531,19.9840381358,19.9891664185,19.9942947012,19.9994229839,20.0045512666,20.0096795492,20.0148078319,20.0199361146,20.0250643973,20.03019268,20.0353209627,20.0404492454,20.0455775281,20.0507058108,20.0558340934,20.0609623761,20.0660906588,20.0712189415,20.0763472242,20.0814755069,20.0866037896,20.0917320723,20.096860355,20.1019886376,20.1071169203,20.112245203,20.1173734857,20.1225017684,20.1276300511,20.1327583338,20.1378866165,20.1430148992,20.1481431819,20.1532714645,20.1583997472,20.1635280299,20.1686563126,20.1737845953,20.178912878,20.1840411607,20.1891694434,20.1942977261,20.1994260087,20.2045542914,20.2096825741,20.2148108568,20.2199391395,20.2250674222,20.2301957049,20.2353239876,20.2404522703,20.245580553,20.2507088356,20.2558371183,20.260965401,20.2660936837,20.2712219664,20.2763502491,20.2814785318,20.2866068145,20.2917350972,20.2968633798,20.3019916625,20.3071199452,20.3122482279,20.3173765106,20.3225047933,20.327633076,20.3327613587,20.3378896414,20.3430179241,20.3481462067,20.3532744894,20.3584027721,20.3635310548,20.3686593375,20.3737876202,20.3789159029,20.3840441856,20.3891724683,20.3943007509,20.3994290336,20.4045573163,20.409685599,20.4148138817,20.4199421644,20.4250704471,20.4301987298,20.4353270125,20.4404552951,20.4455835778,20.4507118605,20.4558401432,20.4609684259,20.4660967086,20.4712249913,20.476353274,20.4814815567,20.4866098394,20.491738122,20.4968664047,20.5019946874,20.5071229701,20.5122512528,20.5173795355,20.5225078182,20.5276361009,20.5327643836,20.5378926662,20.5430209489,20.5481492316,20.5532775143,20.558405797,20.5635340797,20.5686623624,20.5737906451,20.5789189278,20.5840472105,20.5891754931,20.5943037758,20.5994320585,20.6045603412,20.6096886239,20.6148169066,20.6199451893,20.625073472,20.6302017547,20.6353300373,20.64045832,20.6455866027,20.6507148854,20.6558431681,20.6609714508,20.6660997335,20.6712280162,20.6763562989,20.6814845815,20.6866128642,20.6917411469,20.6968694296,20.7019977123,20.707125995,20.7122542777,20.7173825604,20.7225108431,20.7276391258,20.7327674084,20.7378956911,20.7430239738,20.7481522565,20.7532805392,20.7584088219,20.7635371046,20.7686653873,20.77379367,20.7789219526,20.7840502353,20.789178518,20.7943068007,20.7994350834,20.8045633661,20.8096916488,20.8148199315,20.8199482142,20.8250764969,20.8302047795,20.8353330622,20.8404613449,20.8455896276,20.8507179103,20.855846193,20.8609744757,20.8661027584,20.8712310411,20.8763593237,20.8814876064,20.8866158891,20.8917441718,20.8968724545,20.9020007372,20.9071290199,20.9122573026,20.9173855853,20.922513868,20.9276421506,20.9327704333,20.937898716,20.9430269987,20.9481552814,20.9532835641,20.9584118468,20.9635401295,20.9686684122,20.9737966948,20.9789249775,20.9840532602,20.9891815429,20.9943098256,20.9994381083,21.004566391,21.0096946737,21.0148229564,21.019951239,21.0250795217,21.0302078044,21.0353360871,21.0404643698,21.0455926525,21.0507209352,21.0558492179,21.0609775006,21.0661057833,21.0712340659,21.0763623486,21.0814906313,21.086618914,21.0917471967,21.0968754794,21.1020037621,21.1071320448,21.1122603275,21.1173886101,21.1225168928,21.1276451755,21.1327734582,21.1379017409,21.1430300236,21.1481583063,21.153286589,21.1584148717,21.1635431544,21.168671437,21.1737997197,21.1789280024,21.1840562851,21.1891845678,21.1943128505,21.1994411332,21.2045694159,21.2096976986,21.2148259812,21.2199542639,21.2250825466,21.2302108293,21.235339112,21.2404673947,21.2455956774,21.2507239601,21.2558522428,21.2609805254,21.2661088081,21.2712370908,21.2763653735,21.2814936562,21.2866219389,21.2917502216,21.2968785043,21.302006787,21.3071350697,21.3122633523,21.317391635,21.3225199177,21.3276482004,21.3327764831,21.3379047658,21.3430330485,21.3481613312,21.3532896139,21.3584178965,21.3635461792,21.3686744619,21.3738027446,21.3789310273,21.38405931,21.3891875927,21.3943158754,21.3994441581,21.4045724408,21.4097007234,21.4148290061,21.4199572888,21.4250855715,21.4302138542,21.4353421369,21.4404704196,21.4455987023,21.450726985,21.4558552676,21.4609835503,21.466111833,21.4712401157,21.4763683984,21.4814966811,21.4866249638,21.4917532465,21.4968815292,21.5020098119,21.5071380945,21.5122663772,21.5173946599,21.5225229426,21.5276512253,21.532779508,21.5379077907,21.5430360734,21.5481643561,21.5532926387,21.5584209214,21.5635492041,21.5686774868,21.5738057695,21.5789340522,21.5840623349,21.5891906176,21.5943189003,21.5994471829,21.6045754656,21.6097037483,21.614832031,21.6199603137,21.6250885964,21.6302168791,21.6353451618,21.6404734445,21.6456017272,21.6507300098,21.6558582925,21.6609865752,21.6661148579,21.6712431406,21.6763714233,21.681499706,21.6866279887,21.6917562714,21.696884554,21.7020128367,21.7071411194,21.7122694021,21.7173976848,21.7225259675,21.7276542502,21.7327825329,21.7379108156,21.7430390983,21.7481673809,21.7532956636,21.7584239463,21.763552229,21.7686805117,21.7738087944,21.7789370771,21.7840653598,21.7891936425,21.7943219251,21.7994502078,21.8045784905,21.8097067732,21.8148350559,21.8199633386,21.8250916213,21.830219904,21.8353481867,21.8404764693,21.845604752,21.8507330347,21.8558613174,21.8609896001,21.8661178828,21.8712461655,21.8763744482,21.8815027309,21.8866310136,21.8917592962,21.8968875789,21.9020158616,21.9071441443,21.912272427,21.9174007097,21.9225289924,21.9276572751,21.9327855578,21.9379138404,21.9430421231,21.9481704058,21.9532986885,21.9584269712,21.9635552539,21.9686835366,21.9738118193,21.978940102,21.9840683847,21.9891966673,21.99432495,21.9994532327,22.0045815154,22.0097097981,22.0148380808,22.0199663635,22.0250946462,22.0302229289,22.0353512115,22.0404794942,22.0456077769,22.0507360596,22.0558643423,22.060992625,22.0661209077,22.0712491904,22.0763774731,22.0815057558,22.0866340384,22.0917623211,22.0968906038,22.1020188865,22.1071471692,22.1122754519,22.1174037346,22.1225320173,22.1276603,22.1327885826,22.1379168653,22.143045148,22.1481734307,22.1533017134,22.1584299961,22.1635582788,22.1686865615,22.1738148442,22.1789431268,22.1840714095,22.1891996922,22.1943279749,22.1994562576,22.2045845403,22.209712823,22.2148411057,22.2199693884,22.2250976711,22.2302259537,22.2353542364,22.2404825191,22.2456108018,22.2507390845,22.2558673672,22.2609956499,22.2661239326,22.2712522153,22.2763804979,22.2815087806,22.2866370633,22.291765346,22.2968936287,22.3020219114,22.3071501941,22.3122784768,22.3174067595,22.3225350422,22.3276633248,22.3327916075,22.3379198902,22.3430481729,22.3481764556,22.3533047383,22.358433021,22.3635613037,22.3686895864,22.373817869,22.3789461517,22.3840744344,22.3892027171,22.3943309998,22.3994592825,22.4045875652,22.4097158479,22.4148441306,22.4199724132,22.4251006959,22.4302289786,22.4353572613,22.440485544,22.4456138267,22.4507421094,22.4558703921,22.4609986748,22.4661269575,22.4712552401,22.4763835228,22.4815118055,22.4866400882,22.4917683709,22.4968966536,22.5020249363,22.507153219,22.5122815017,22.5174097843,22.522538067,22.5276663497,22.5327946324,22.5379229151,22.5430511978,22.5481794805,22.5533077632,22.5584360459,22.5635643286,22.5686926112,22.5738208939,22.5789491766,22.5840774593,22.589205742,22.5943340247,22.5994623074,22.6045905901,22.6097188728,22.6148471554,22.6199754381,22.6251037208,22.6302320035,22.6353602862,22.6404885689,22.6456168516,22.6507451343,22.655873417,22.6610016997,22.6661299823,22.671258265,22.6763865477,22.6815148304,22.6866431131,22.6917713958,22.6968996785,22.7020279612,22.7071562439,22.7122845265,22.7174128092,22.7225410919,22.7276693746,22.7327976573,22.73792594,22.7430542227,22.7481825054,22.7533107881,22.7584390707,22.7635673534,22.7686956361,22.7738239188,22.7789522015,22.7840804842,22.7892087669,22.7943370496,22.7994653323,22.804593615,22.8097218976,22.8148501803,22.819978463,22.8251067457,22.8302350284,22.8353633111,22.8404915938,22.8456198765,22.8507481592,22.8558764418,22.8610047245,22.8661330072,22.8712612899,22.8763895726,22.8815178553,22.886646138,22.8917744207,22.8969027034,22.9020309861,22.9071592687,22.9122875514,22.9174158341,22.9225441168,22.9276723995,22.9328006822,22.9379289649,22.9430572476,22.9481855303,22.9533138129,22.9584420956,22.9635703783,22.968698661,22.9738269437,22.9789552264,22.9840835091,22.9892117918,22.9943400745,22.9994683571,23.0045966398,23.0096901803,23.0147837208,23.0198772613,23.0249708017,23.0300643422,23.0351578827,23.0402514232,23.0453449637,23.0504385041,23.0555320446,23.0606255851,23.0657191256,23.070812666,23.0759062065,23.080999747,23.0860932875,23.091186828,23.0962803684,23.1013739089,23.1064674494,23.1115609899,23.1166545303,23.1217480708,23.1268416113,23.1319351518,23.1370286923,23.1421222327,23.1472157732,23.1523093137,23.1574028542,23.1624963946,23.1675899351,23.1726834756,23.1777770161,23.1828705566,23.187964097,23.1930576375,23.198151178,23.2032447185,23.2083382589,23.2134317994,23.2185253399,23.2236188804,23.2287124208,23.2338059613,23.2388995018,23.2439930423,23.2490865828,23.2541801232,23.2592736637,23.2643672042,23.2694607447,23.2745542851,23.2796478256,23.2847413661,23.2898349066,23.2949284471,23.3000219875,23.305115528,23.3102090685,23.315302609,23.3203961494,23.3254896899,23.3305832304,23.3356767709,23.3407703114,23.3458638518,23.3509573923,23.3560509328,23.3611444733,23.3662380137,23.3713315542,23.3764250947,23.3815186352,23.3866121757,23.3917057161,23.3967992566,23.4018927971,23.4069863376,23.412079878,23.4171734185,23.422266959,23.4273604995,23.4324540399,23.4375475804,23.4426411209,23.4477346614,23.4528282019,23.4579217423,23.4630152828,23.4681088233,23.4732023638,23.4782959042,23.4833894447,23.4884829852,23.4935765257,23.4986700662,23.5037636066,23.5088571471,23.5139506876,23.5190442281,23.5241377685,23.529231309,23.5343248495,23.53941839,23.5445119305,23.5496054709,23.5546990114,23.5597925519,23.5648860924,23.5699796328,23.5750731733,23.5801667138,23.5852602543,23.5903537948,23.5954473352,23.6005408757,23.6056344162,23.6107279567,23.6158214971,23.6209150376,23.6260085781,23.6311021186,23.636195659,23.6412891995,23.64638274,23.6514762805,23.656569821,23.6616633614,23.6667569019,23.6718504424,23.6769439829,23.6820375233,23.6871310638,23.6922246043,23.6973181448,23.7024116853,23.7075052257,23.7125987662,23.7176923067,23.7227858472,23.7278793876,23.7329729281,23.7380664686,23.7431600091,23.7482535496,23.75334709,23.7584406305,23.763534171,23.7686277115,23.7737212519,23.7788147924,23.7839083329,23.7890018734,23.7940954139,23.7991889543,23.8042824948,23.8093760353,23.8144695758,23.8195631162,23.8246566567,23.8297501972,23.8348437377,23.8399372781,23.8450308186,23.8501243591,23.8552178996,23.8603114401,23.8654049805,23.870498521,23.8755920615,23.880685602,23.8857791424,23.8908726829,23.8959662234,23.9010597639,23.9061533044,23.9112468448,23.9163403853,23.9214339258,23.9265274663,23.9316210067,23.9367145472,23.9418080877,23.9469016282,23.9519951687,23.9570887091,23.9621822496,23.9672757901,23.9723693306,23.977462871,23.9825564115,23.987649952,23.9927434925,23.997837033,24.0029305734,24.0080241139,24.0131176544,24.0182111949,24.0233047353,24.0283982758,24.0334918163,24.0385853568,24.0436788972,24.0487724377,24.0538659782,24.0589595187,24.0640530592,24.0691465996,24.0742401401,24.0793336806,24.0844272211,24.0895207615,24.094614302,24.0997078425,24.104801383,24.1098949235,24.1149884639,24.1200820044,24.1251755449,24.1302690854,24.1353626258,24.1404561663,24.1455497068,24.1506432473,24.1557367878,24.1608303282,24.1659238687,24.1710174092,24.1761109497,24.1812044901,24.1862980306,24.1913915711,24.1964851116,24.2015786521,24.2066721925,24.211765733,24.2168592735,24.221952814,24.2270463544,24.2321398949,24.2372334354,24.2423269759,24.2474205163,24.2525140568,24.2576075973,24.2627011378,24.2677946783,24.2728882187,24.2779817592,24.2830752997,24.2881688402,24.2932623806,24.2983559211,24.3034494616,24.3085430021,24.3136365426,24.318730083,24.3238236235,24.328917164,24.3340107045,24.3391042449,24.3441977854,24.3492913259,24.3543848664,24.3594784069,24.3645719473,24.3696654878,24.3747590283,24.3798525688,24.3849461092,24.3900396497,24.3951331902,24.4002267307,24.4053202711,24.4104138116,24.4155073521,24.4206008926,24.4256944331,24.4307879735,24.435881514,24.4409750545,24.446068595,24.4511621354,24.4562556759,24.4613492164,24.4664427569,24.4715362974,24.4766298378,24.4817233783,24.4868169188,24.4919104593,24.4970039997,24.5020975402,24.5071910807,24.5122846212,24.5173781617,24.5224717021,24.5275652426,24.5326587831,24.5377523236,24.542845864,24.5479394045,24.553032945,24.5581264855,24.563220026,24.5683135664,24.5734071069,24.5785006474,24.5835941879,24.5886877283,24.5937812688,24.5988748093,24.6039683498,24.6090618902,24.6141554307,24.6192489712,24.6243425117,24.6294360522,24.6345295926,24.6396231331,24.6447166736,24.6498102141,24.6549037545,24.659997295,24.6650908355,24.670184376,24.6752779165,24.6803714569,24.6854649974,24.6905585379,24.6956520784,24.7007456188,24.7058391593,24.7109326998,24.7160262403,24.7211197808,24.7262133212,24.7313068617,24.7364004022,24.7414939427,24.7465874831,24.7516810236,24.7567745641,24.7618681046,24.7669616451,24.7720551855,24.777148726,24.7822422665,24.787335807,24.7924293474,24.7975228879,24.8026164284,24.8077099689,24.8128035093,24.8178970498,24.8229905903,24.8280841308,24.8331776713,24.8382712117,24.8433647522,24.8484582927,24.8535518332,24.8586453736,24.8637389141,24.8688324546,24.8739259951,24.8790195356,24.884113076,24.8892066165,24.894300157,24.8993936975,24.9044872379,24.9095807784,24.9146743189,24.9197678594,24.9248613999,24.9299549403,24.9350484808,24.9401420213,24.9452355618,24.9503291022,24.9554226427,24.9605161832,24.9656097237,24.9707032642,24.9757968046,24.9808903451,24.9859838856,24.9910774261,24.9961709665,25.001264507,25.0063580475,25.011451588,25.0165451284,25.0216386689,25.0267322094,25.0318257499,25.0369192904,25.0420128308,25.0471063713,25.0521999118,25.0572934523,25.0623869927,25.0674805332,25.0725740737,25.0776676142,25.0827611547,25.0878546951,25.0929482356,25.0980417761,25.1031353166,25.108228857,25.1133223975,25.118415938,25.1235094785,25.128603019,25.1336965594,25.1387900999,25.1438836404,25.1489771809,25.1540707213,25.1591642618,25.1642578023,25.1693513428,25.1744448833,25.1795384237,25.1846319642,25.1897255047,25.1948190452,25.1999125856,25.2050061261,25.2100996666,25.2151932071,25.2202867475,25.225380288,25.2304738285,25.235567369,25.2406609095,25.2457544499,25.2508479904,25.2559415309,25.2610350714,25.2661286118,25.2712221523,25.2763156928,25.2814092333,25.2865027738,25.2915963142,25.2966898547,25.3017833952,25.3068769357,25.3119704761,25.3170640166,25.3221575571,25.3272510976,25.3323446381,25.3374381785,25.342531719,25.3476252595,25.3527188,25.3578123404,25.3629058809,25.3679994214,25.3730929619,25.3781865024,25.3832800428,25.3883735833,25.3934671238,25.3985606643,25.4036542047,25.4087477452,25.4138412857,25.4189348262,25.4240283666,25.4291219071,25.4342154476,25.4393089881,25.4444025286,25.449496069,25.4545896095,25.45968315,25.4647766905,25.4698702309,25.4749637714,25.4800573119,25.4851508524,25.4902443929,25.4953379333,25.5004314738,25.5055250143,25.5106185548,25.5157120952,25.5208056357,25.5258991762,25.5309927167,25.5360862572,25.5411797976,25.5462733381,25.5513668786,25.5564604191,25.5615539595,25.5666475,25.5717410405,25.576834581,25.5819281215,25.5870216619,25.5921152024,25.5972087429,25.6023022834,25.6073958238,25.6124893643,25.6175829048,25.6226764453,25.6277699857,25.6328635262,25.6379570667,25.6430506072,25.6481441477,25.6532376881,25.6583312286,25.6634247691,25.6685183096,25.67361185,25.6787053905,25.683798931,25.6888924715,25.693986012,25.6990795524,25.7041730929,25.7092666334,25.7143601739,25.7194537143,25.7245472548,25.7296407953,25.7347343358,25.7398278763,25.7449214167,25.7500149572,25.7551084977,25.7602020382,25.7652955786,25.7703891191,25.7754826596,25.7805762001,25.7856697406,25.790763281,25.7958568215,25.800950362,25.8060439025,25.8111374429,25.8162309834,25.8213245239,25.8264180644,25.8315116048,25.8366051453,25.8416986858,25.8467922263,25.8518857668,25.8569793072,25.8620728477,25.8671663882,25.8722599287,25.8773534691,25.8824470096,25.8875405501,25.8926340906,25.8977276311,25.9028211715,25.907914712,25.9130082525,25.918101793,25.9231953334,25.9282888739,25.9333824144,25.9384759549,25.9435694954,25.9486630358,25.9537565763,25.9588501168,25.9639436573,25.9690371977,25.9741307382,25.9792242787,25.9843178192,25.9894113597,25.9945049001,25.9995984406,26.0046919811,26.0097855216,26.014879062,26.0199726025,26.025066143,26.0301596835,26.0352532239,26.0403467644,26.0454403049,26.0505338454,26.0556273859,26.0607209263,26.0658144668,26.0709080073,26.0760015478,26.0810950882,26.0860553894,26.0910156906,26.0959759917,26.1009362929,26.105896594,26.1108568952,26.1158171963,26.1207774975,26.1257377986,26.1306980998,26.1356584009,26.1406187021,26.1455790032,26.1505393044,26.1554996056,26.1604599067,26.1654202079,26.170380509,26.1753408102,26.1803011113,26.1852614125,26.1902217136,26.1951820148,26.2001423159,26.2051026171,26.2100629182,26.2150232194,26.2199835206,26.2249438217,26.2299041229,26.234864424,26.2398247252,26.2447850263,26.2497453275,26.2547056286,26.2596659298,26.2646262309,26.2695865321,26.2745468333,26.2795071344,26.2844674356,26.2894277367,26.2943880379,26.299348339,26.3043086402,26.3092689413,26.3142292425,26.3191895436,26.3241498448,26.3291101459,26.3340704471,26.3390307483,26.3439910494,26.3489513506,26.3539116517,26.3588719529,26.363832254,26.3687925552,26.3737528563,26.3787131575,26.3836734586,26.3886337598,26.3935940609,26.3985543621,26.4035146633,26.4084749644,26.4134352656,26.4183955667,26.4233558679,26.428316169,26.4332764702,26.4382367713,26.4431970725,26.4481573736,26.4531176748,26.458077976,26.4630382771,26.4679985783,26.4729588794,26.4779191806,26.4828794817,26.4878397829,26.492800084,26.4977603852,26.5027206863,26.5076809875,26.5126412886,26.5176015898,26.522561891,26.5275221921,26.5324824933,26.5374427944,26.5424030956,26.5473633967,26.5523236979,26.557283999,26.5622443002,26.5672046013,26.5721649025,26.5771252036,26.5820855048,26.587045806,26.5920061071,26.5969664083,26.6019267094,26.6068870106,26.6118473117,26.6168076129,26.621767914,26.6267282152,26.6316885163,26.6366488175,26.6416091187,26.6465694198,26.651529721,26.6564900221,26.6614503233,26.6664106244,26.6713709256,26.6763312267,26.6812915279,26.686251829,26.6912121302,26.6961724313,26.7011327325,26.7060930337,26.7110533348,26.716013636,26.7209739371,26.7259342383,26.7308945394,26.7358548406,26.7408151417,26.7457754429,26.750735744,26.7556960452,26.7606563463,26.7656166475,26.7705769487,26.7755372498,26.780497551,26.7854578521,26.7904181533,26.7953784544,26.8003387556,26.8052990567,26.8102593579,26.815219659,26.8201799602,26.8251402614,26.8301005625,26.8350608637,26.8400211648,26.844981466,26.8499417671,26.8549020683,26.8598623694,26.8648226706,26.8697829717,26.8747432729,26.879703574,26.8846638752,26.8896241764,26.8945844775,26.8995447787,26.9045050798,26.909465381,26.9144256821,26.9193859833,26.9243462844,26.9293065856,26.9342668867,26.9392271879,26.944187489,26.9491477902,26.9541080914,26.9590683925,26.9640286937,26.9689889948,26.973949296,26.9789095971,26.9838698983,26.9888301994,26.9937905006,26.9987508017,27.0037111029,27.0086714041,27.0136317052,27.0185920064,27.0235523075,27.0285126087,27.0334729098,27.038433211,27.0433935121,27.0483538133,27.0533141144,27.0582744156,27.0632347167,27.0681950179,27.0731553191,27.0781156202,27.0830759214,27.0880362225,27.0929965237,27.0979568248,27.102917126,27.1078774271,27.1128377283,27.1177980294,27.1227583306,27.1277186317,27.1326789329,27.1376392341,27.1425995352,27.1475598364,27.1525201375,27.1574804387,27.1624407398,27.167401041,27.1723613421,27.1773216433,27.1822819444,27.1872422456,27.1922025467,27.1971628479,27.2021231491,27.2070834502,27.2120437514,27.2170040525,27.2219643537,27.2269246548,27.231884956,27.2368452571,27.2418055583,27.2467658594,27.2517261606,27.2566864618,27.2616467629,27.2666070641,27.2715673652,27.2765276664,27.2814879675,27.2864482687,27.2914085698,27.296368871,27.3013291721,27.3062894733,27.3112497744,27.3162100756,27.3211703768,27.3261306779,27.3310909791,27.3360512802,27.3410115814,27.3459718825,27.3509321837,27.3558924848,27.360852786,27.3658130871,27.3707733883,27.3757336894,27.3806939906,27.3856542918,27.3906145929,27.3955748941,27.4005351952,27.4054954964,27.4104557975,27.4154160987,27.4203763998,27.425336701,27.4302970021,27.4352573033,27.4402176045,27.4451779056,27.4501382068,27.4550985079,27.4600588091,27.4650191102,27.4699794114,27.4749397125,27.4799000137,27.4848603148,27.489820616,27.4947809171,27.4997412183,27.5047015195,27.5096618206,27.5146221218,27.5195824229,27.5245427241,27.5295030252,27.5344633264,27.5394236275,27.5443839287,27.5493442298,27.554304531,27.5592648321,27.5642251333,27.5691854345,27.5741457356,27.5791060368,27.5840663379,27.5890266391,27.5939869402,27.5989472414,27.6039075425,27.6088678437,27.6138281448,27.618788446,27.6237487472,27.6287090483,27.6336693495,27.6386296506,27.6435899518,27.6485502529,27.6535105541,27.6584708552,27.6634311564,27.6683914575,27.6733517587,27.6783120598,27.683272361,27.6882326622,27.6931929633,27.6981532645,27.7031135656,27.7080738668,27.7130341679,27.7179944691,27.7229547702,27.7279150714,27.7328753725,27.7378356737,27.7427959748,27.747756276,27.7527165772,27.7576768783,27.7626371795,27.7675974806,27.7725577818,27.7775180829,27.7824783841,27.7874386852,27.7923989864,27.7973592875,27.8023195887,27.8072798899,27.812240191,27.8172004922,27.8221607933,27.8271210945,27.8320813956,27.8370416968,27.8420019979,27.8469622991,27.8519226002,27.8568829014,27.8618432025,27.8668035037,27.8717638049,27.876724106,27.8816844072,27.8866447083,27.8916050095,27.8965653106,27.9015256118,27.9064859129,27.9114462141,27.9164065152,27.9213668164,27.9263271175,27.9312874187,27.9362477199,27.941208021,27.9461683222,27.9511286233,27.9560889245,27.9610492256,27.9660095268,27.9709698279,27.9759301291,27.9808904302,27.9858507314,27.9908110325,27.9957713337,28.0007316349,28.005691936,28.0106522372,28.0156125383,28.0205728395,28.0255331406,28.0304934418,28.0354537429,28.0404140441,28.0453743452,28.0503346464,28.0552949476,28.0602552487,28.0652155499,28.070175851,28.0751361522,28.0800964533,28.0850567545,28.0900170556,28.0949773568,28.0999376579,28.1048979591,28.1098582602,28.1148185614,28.1197788626,28.1247391637,28.1296994649,28.134659766,28.1396200672,28.1445803683,28.1495406695,28.1545009706,28.1594612718,28.1644215729,28.1693818741,28.1743421752,28.1793024764,28.1842627776,28.1892230787,28.1941833799,28.199143681,28.2041039822,28.2090642833,28.2140245845,28.2189848856,28.2239451868,28.2289054879,28.2338657891,28.2388260903,28.2437863914,28.2487466926,28.2537069937,28.2586672949,28.263627596,28.2685878972,28.2735481983,28.2785084995,28.2834688006,28.2884291018,28.2933894029,28.2983497041,28.3033100053,28.3082703064,28.3132306076,28.3181909087,28.3231512099,28.328111511,28.3330718122,28.3380321133,28.3429924145,28.3479527156,28.3529130168,28.3578733179,28.3628336191,28.3677939203,28.3727542214,28.3777145226,28.3826748237,28.3876351249,28.392595426,28.3975557272,28.4025160283,28.4074763295,28.4124366306,28.4173969318,28.422357233,28.4273175341,28.4322778353,28.4372381364,28.4421984376,28.4471587387,28.4521190399,28.457079341,28.4620396422,28.4669999433,28.4719602445,28.4769205456,28.4818808468,28.486841148,28.4918014491,28.4967617503,28.5017220514,28.5066823526,28.5116426537,28.5166029549,28.521563256,28.5265235572,28.5314838583,28.5364441595,28.5414044606,28.5463647618,28.551325063,28.5562853641,28.5612456653,28.5662059664,28.5711662676,28.5761265687,28.5810868699,28.586047171,28.5910074722,28.5959677733,28.6009280745,28.6058883757,28.6108486768,28.615808978,28.6207692791,28.6257295803,28.6306898814,28.6356501826,28.6406104837,28.6455707849,28.650531086,28.6554913872,28.6604516883,28.6654119895,28.6703722907,28.6753325918,28.680292893,28.6852531941,28.6902134953,28.6951737964,28.7001340976,28.7050943987,28.7100546999,28.715015001,28.7199753022,28.7249356033,28.7298959045,28.7348562057,28.7398165068,28.744776808,28.7497371091,28.7546974103,28.7596577114,28.7646180126,28.7695783137,28.7745386149,28.779498916,28.7844592172,28.7894195183,28.7943798195,28.7993401207,28.8043004218,28.809260723,28.8142210241,28.8191813253,28.8241416264,28.8291019276,28.8340622287,28.8390225299,28.843982831,28.8489431322,28.8539034334,28.8588637345,28.8638240357,28.8687843368,28.873744638,28.8787049391,28.8836652403,28.8886255414,28.8935858426,28.8985461437,28.9035064449,28.908466746,28.9134270472,28.9183873484,28.9233476495,28.9283079507,28.9332682518,28.938228553,28.9431888541,28.9481491553,28.9531094564,28.9580697576,28.9630300587,28.9679903599,28.972950661,28.9779109622,28.9828712634,28.9878315645,28.9927918657,28.9977521668,29.002712468,29.0076727691,29.0126330703,29.0175933714,29.0225536726,29.0275139737,29.0324742749,29.0374345761,29.0423948772,29.0473551784,29.0523154795,29.0572757807,29.0622360818,29.067196383,29.0721566841,29.0771169853,29.0818688952,29.086620805,29.0913727149,29.0961246248,29.1008765347,29.1056284446,29.1103803544,29.1151322643,29.1198841742,29.1246360841,29.1293879939,29.1341399038,29.1388918137,29.1436437236,29.1483956335,29.1531475433,29.1578994532,29.1626513631,29.167403273,29.1721551828,29.1769070927,29.1816590026,29.1864109125,29.1911628224,29.1959147322,29.2006666421,29.205418552,29.2101704619,29.2149223718,29.2196742816,29.2244261915,29.2291781014,29.2339300113,29.2386819211,29.243433831,29.2481857409,29.2529376508,29.2576895607,29.2624414705,29.2671933804,29.2719452903,29.2766972002,29.28144911,29.2862010199,29.2909529298,29.2957048397,29.3004567496,29.3052086594,29.3099605693,29.3147124792,29.3194643891,29.3242162989,29.3289682088,29.3337201187,29.3384720286,29.3432239385,29.3479758483,29.3527277582,29.3574796681,29.362231578,29.3669834879,29.3717353977,29.3764873076,29.3812392175,29.3859911274,29.3907430372,29.3954949471,29.400246857,29.4049987669,29.4097506768,29.4145025866,29.4192544965,29.4240064064,29.4287583163,29.4335102261,29.438262136,29.4430140459,29.4477659558,29.4525178657,29.4572697755,29.4620216854,29.4667735953,29.4715255052,29.4762774151,29.4810293249,29.4857812348,29.4905331447,29.4952850546,29.5000369644,29.5047888743,29.5095407842,29.5142926941,29.519044604,29.5237965138,29.5285484237,29.5333003336,29.5380522435,29.5428041533,29.5475560632,29.5523079731,29.557059883,29.5618117929,29.5665637027,29.5713156126,29.5760675225,29.5808194324,29.5855713422,29.5903232521,29.595075162,29.5998270719,29.6045789818,29.6093308916,29.6140828015,29.6188347114,29.6235866213,29.6283385312,29.633090441,29.6378423509,29.6425942608,29.6473461707,29.6520980805,29.6568499904,29.6616019003,29.6663538102,29.6711057201,29.6758576299,29.6806095398,29.6853614497,29.6901133596,29.6948652694,29.6996171793,29.7043690892,29.7091209991,29.713872909,29.7186248188,29.7233767287,29.7281286386,29.7328805485,29.7376324584,29.7423843682,29.7471362781,29.751888188,29.7566400979,29.7613920077,29.7661439176,29.7708958275,29.7756477374,29.7803996473,29.7851515571,29.789903467,29.7946553769,29.7994072868,29.8041591966,29.8089111065,29.8136630164,29.8184149263,29.8231668362,29.827918746,29.8326706559,29.8374225658,29.8421744757,29.8469263855,29.8516782954,29.8564302053,29.8611821152,29.8659340251,29.8706859349,29.8754378448,29.8801897547,29.8849416646,29.8896935745,29.8944454843,29.8991973942,29.9039493041,29.908701214,29.9134531238,29.9182050337,29.9229569436,29.9277088535,29.9324607634,29.9372126732,29.9419645831,29.946716493,29.9514684029,29.9562203127,29.9609722226,29.9657241325,29.9704760424,29.9752279523,29.9799798621,29.984731772,29.9894836819,29.9942355918,29.9989875017,30.0037394115,30.0084913214,30.0132432313,30.0179951412,30.022747051,30.0274989609,30.0322508708,30.0370027807,30.0417546906,30.0465066004,30.0512585103,30.0560104202,30.0607623301,30.0655142399,30.0702661498,30.0750180597,30.0797699696,30.0845218795,30.0892737893,30.0940256992,30.0987776091,30.103529519,30.1082814288,30.1130333387,30.1177852486,30.1225371585,30.1272890684,30.1320409782,30.1367928881,30.141544798,30.1462967079,30.1510486178,30.1558005276,30.1605524375,30.1653043474,30.1700562573,30.1748081671,30.179560077,30.1843119869,30.1890638968,30.1938158067,30.1985677165,30.2033196264,30.2080715363,30.2128234462,30.217575356,30.2223272659,30.2270791758,30.2318310857,30.2365829956,30.2413349054,30.2460868153,30.2508387252,30.2555906351,30.260342545,30.2650944548,30.2698463647,30.2745982746,30.2793501845,30.2841020943,30.2888540042,30.2936059141,30.298357824,30.3031097339,30.3078616437,30.3126135536,30.3173654635,30.3221173734,30.3268692832,30.3316211931,30.336373103,30.3411250129,30.3458769228,30.3506288326,30.3553807425,30.3601326524,30.3648845623,30.3696364721,30.374388382,30.3791402919,30.3838922018,30.3886441117,30.3933960215,30.3981479314,30.4028998413,30.4076517512,30.4124036611,30.4171555709,30.4219074808,30.4266593907,30.4314113006,30.4361632104,30.4409151203,30.4456670302,30.4504189401,30.45517085,30.4599227598,30.4646746697,30.4694265796,30.4741784895,30.4789303993,30.4836823092,30.4884342191,30.493186129,30.4979380389,30.5026899487,30.5074418586,30.5121937685,30.5169456784,30.5216975883,30.5264494981,30.531201408,30.5359533179,30.5407052278,30.5454571376,30.5502090475,30.5549609574,30.5597128673,30.5644647772,30.569216687,30.5739685969,30.5787205068,30.5834724167,30.5882243265,30.5929762364,30.5977281463,30.6024800562,30.6072319661,30.6119838759,30.6167357858,30.6214876957,30.6262396056,30.6309915154,30.6357434253,30.6404953352,30.6452472451,30.649999155,30.6547510648,30.6595029747,30.6642548846,30.6690067945,30.6737587044,30.6785106142,30.6832625241,30.688014434,30.6927663439,30.6975182537,30.7022701636,30.7070220735,30.7117739834,30.7165258933,30.7212778031,30.726029713,30.7307816229,30.7355335328,30.7402854426,30.7450373525,30.7497892624,30.7545411723,30.7592930822,30.764044992,30.7687969019,30.7735488118,30.7783007217,30.7830526316,30.7878045414,30.7925564513,30.7973083612,30.8020602711,30.8068121809,30.8115640908,30.8163160007,30.8210679106,30.8258198205,30.8305717303,30.8353236402,30.8400755501,30.84482746,30.8495793698,30.8543312797,30.8590831896,30.8638350995,30.8685870094,30.8733389192,30.8780908291,30.882842739,30.8875946489,30.8923465588,30.8970984686,30.9018503785,30.9066022884,30.9113541983,30.9161061081,30.920858018,30.9256099279,30.9303618378,30.9351137477,30.9398656575,30.9446175674,30.9493694773,30.9541213872,30.958873297,30.9636252069,30.9683771168,30.9731290267,30.9778809366,30.9826328464,30.9873847563,30.9921366662,30.9968885761,31.0016404859,31.0063923958,31.0111443057,31.0158962156,31.0206481255,31.0254000353,31.0301519452,31.0349038551,31.039655765,31.0444076749,31.0491595847,31.0539114946,31.0586634045,31.0634153144,31.0681672242,31.0729191341,31.077671044,31.0824229539,31.0871748638,31.0919267736,31.0966786835,31.1014305934,31.1061825033,31.1109344131,31.115686323,31.1204382329,31.1251901428,31.1299420527,31.1346939625,31.1394458724,31.1441977823,31.1489496922,31.1537016021,31.1584535119,31.1632054218,31.1679573317,31.1727092416,31.1774611514,31.1822130613,31.1869649712,31.1917168811,31.196468791,31.2012207008,31.2059726107,31.2107245206,31.2154764305,31.2202283403,31.2249802502,31.2297321601,31.23448407,31.2392359799,31.2439878897,31.2487397996,31.2534917095,31.2582436194,31.2629955292,31.2677474391,31.272499349,31.2772512589,31.2820031688,31.2867550786,31.2915069885,31.2962588984,31.3010108083,31.3057627182,31.310514628,31.3152665379,31.3200184478,31.3247703577,31.3295222675,31.3342741774,31.3390260873,31.3437779972,31.3485299071,31.3532818169,31.3580337268,31.3627856367,31.3675375466,31.3722894564,31.3770413663,31.3817932762,31.3865451861,31.391297096,31.3960490058,31.4008009157,31.4055528256,31.4103047355,31.4150566454,31.4198085552,31.4245604651,31.429312375,31.4340642849,31.4388161947,31.4435681046,31.4483200145,31.4530719244,31.4578238343,31.4625757441,31.467327654,31.4720795639,31.4768314738,31.4815833836,31.4863352935,31.4910872034,31.4958391133,31.5005910232,31.505342933,31.5100948429,31.5148467528,31.5195986627,31.5243505725,31.5291024824,31.5338543923,31.5386063022,31.5433582121,31.5481101219,31.5528620318,31.5576139417,31.5623658516,31.5671177615,31.5718696713,31.5766215812,31.5813734911,31.586125401,31.5908773108,31.5956292207,31.6003811306,31.6051330405,31.6098849504,31.6146368602,31.6193887701,31.62414068,31.6288925899,31.6336444997,31.6383964096,31.6431483195,31.6479002294,31.6526521393,31.6574040491,31.662155959,31.6669078689,31.6716597788,31.6764116887,31.6811635985,31.6859155084,31.6906674183,31.6954193282,31.700171238,31.7049231479,31.7096750578,31.7144269677,31.7191788776,31.7239307874,31.7286826973,31.7334346072,31.7381865171,31.7429384269,31.7476903368,31.7524422467,31.7571941566,31.7619460665,31.7666979763,31.7714498862,31.7762017961,31.780953706,31.7857056158,31.7904575257,31.7952094356,31.7999613455,31.8047132554,31.8094651652,31.8142170751,31.818968985,31.8237208949,31.8284728048,31.8332247146,31.8379766245,31.8427285344,31.8474804443,31.8522323541,31.856984264,31.8617361739,31.8664880838,31.8712399937,31.8759919035,31.8807438134,31.8854957233,31.8902476332,31.894999543,31.8997514529,31.9045033628,31.9092552727,31.9140071826,31.9187590924,31.9235110023,31.9282629122,31.9330148221,31.937766732,31.9425186418,31.9472705517,31.9518952285,31.9565199054,31.9611445822,31.965769259,31.9703939359,31.9750186127,31.9796432895,31.9842679664,31.9888926432,31.99351732,31.9981419969,32.0027666737,32.0073913505,32.0120160274,32.0166407042,32.021265381,32.0258900579,32.0305147347,32.0351394115,32.0397640884,32.0443887652,32.049013442,32.0536381188,32.0582627957,32.0628874725,32.0675121493,32.0721368262,32.076761503,32.0813861798,32.0860108567,32.0906355335,32.0952602103,32.0998848872,32.104509564,32.1091342408,32.1137589177,32.1183835945,32.1230082713,32.1276329482,32.132257625,32.1368823018,32.1415069787,32.1461316555,32.1507563323,32.1553810092,32.160005686,32.1646303628,32.1692550397,32.1738797165,32.1785043933,32.1831290701,32.187753747,32.1923784238,32.1970031006,32.2016277775,32.2062524543,32.2108771311,32.215501808,32.2201264848,32.2247511616,32.2293758385,32.2340005153,32.2386251921,32.243249869,32.2478745458,32.2524992226,32.2571238995,32.2617485763,32.2663732531,32.27099793,32.2756226068,32.2802472836,32.2848719605,32.2894966373,32.2941213141,32.298745991,32.3033706678,32.3079953446,32.3126059735