arachni 0.4.0.4 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (688) hide show
  1. data/ACKNOWLEDGMENTS.md +2 -2
  2. data/AUTHORS.md +1 -4
  3. data/CHANGELOG.md +102 -3
  4. data/CONTRIBUTORS.md +4 -1
  5. data/EXPLOITATION.md +6 -6
  6. data/Gemfile +3 -0
  7. data/HACKING.md +29 -10
  8. data/LICENSE.md +176 -339
  9. data/NOTICE +12 -0
  10. data/README.md +160 -119
  11. data/Rakefile +83 -45
  12. data/arachni.gemspec +124 -0
  13. data/bin/arachni +14 -8
  14. data/bin/arachni_console +52 -0
  15. data/bin/arachni_rpc +14 -8
  16. data/bin/arachni_rpcd +15 -9
  17. data/bin/arachni_rpcd_monitor +14 -8
  18. data/bin/arachni_script +41 -0
  19. data/bin/arachni_web +18 -19
  20. data/bin/arachni_web_autostart +17 -18
  21. data/external/metasploit/plugins/arachni.rb +7 -9
  22. data/external/metasploit/{LICENSE → plugins/arachni/LICENSE} +0 -0
  23. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_exec.rb +1 -1
  24. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_path_traversal.rb +2 -2
  25. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_php_eval.rb +1 -1
  26. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_php_include.rb +1 -1
  27. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_sqlmap.rb +2 -2
  28. data/external/scripts/LICENSE.tpl +174 -0
  29. data/external/scripts/README.md +95 -0
  30. data/external/scripts/README.tpl +30 -0
  31. data/external/scripts/build.sh +631 -0
  32. data/external/scripts/build_all.sh +29 -0
  33. data/external/scripts/build_and_package.sh +100 -0
  34. data/external/scripts/cross_build_and_package.sh +20 -0
  35. data/external/scripts/installer.sh.tpl +166 -0
  36. data/external/scripts/lib/readlink_f.sh +40 -0
  37. data/external/scripts/package.sh +134 -0
  38. data/external/scripts/push_nightlies.sh +125 -0
  39. data/extras/placeholder +0 -0
  40. data/gfx/README.md +18 -0
  41. data/gfx/compiled/banner.png +0 -0
  42. data/gfx/compiled/favicon.ico +0 -0
  43. data/gfx/compiled/icon.png +0 -0
  44. data/gfx/compiled/logo.png +0 -0
  45. data/gfx/compiled/spider.png +0 -0
  46. data/gfx/font/Beneath_the_Surface.ttf +0 -0
  47. data/gfx/font/bts_readme.txt +14 -0
  48. data/gfx/source/banner.svg +999 -0
  49. data/gfx/source/icon.svg +627 -0
  50. data/gfx/source/logo.svg +672 -0
  51. data/gfx/source/spider.png +0 -0
  52. data/gfx/source/spider.svg +277 -0
  53. data/lib/arachni.rb +30 -5
  54. data/lib/arachni/audit_store.rb +111 -143
  55. data/lib/arachni/banner.rb +37 -0
  56. data/lib/arachni/bloom_filter.rb +74 -0
  57. data/lib/arachni/cache.rb +21 -0
  58. data/lib/arachni/cache/base.rb +170 -0
  59. data/lib/arachni/cache/least_cost_replacement.rb +89 -0
  60. data/lib/arachni/cache/least_recently_used.rb +73 -0
  61. data/lib/arachni/cache/random_replacement.rb +52 -0
  62. data/lib/arachni/component/manager.rb +391 -0
  63. data/lib/arachni/component/options.rb +38 -0
  64. data/lib/arachni/component/options/address.rb +41 -0
  65. data/lib/arachni/component/options/base.rb +126 -0
  66. data/lib/arachni/component/options/bool.rb +55 -0
  67. data/lib/arachni/component/options/enum.rb +51 -0
  68. data/lib/arachni/component/options/float.rb +45 -0
  69. data/lib/arachni/component/options/int.rb +44 -0
  70. data/lib/arachni/component/options/path.rb +36 -0
  71. data/lib/arachni/component/options/port.rb +37 -0
  72. data/lib/arachni/component/options/string.rb +44 -0
  73. data/lib/arachni/component/options/url.rb +42 -0
  74. data/lib/arachni/crypto/rsa_aes_cbc.rb +14 -8
  75. data/lib/arachni/database.rb +4 -4
  76. data/lib/arachni/database/base.rb +14 -8
  77. data/lib/arachni/database/hash.rb +21 -12
  78. data/lib/arachni/database/queue.rb +15 -9
  79. data/lib/arachni/element/base.rb +147 -0
  80. data/lib/arachni/element/capabilities/auditable.rb +623 -0
  81. data/lib/arachni/element/capabilities/auditable/rdiff.rb +243 -0
  82. data/lib/arachni/element/capabilities/auditable/taint.rb +141 -0
  83. data/lib/arachni/element/capabilities/auditable/timeout.rb +330 -0
  84. data/lib/arachni/element/capabilities/body.rb +19 -0
  85. data/lib/arachni/element/capabilities/mutable.rb +286 -0
  86. data/lib/arachni/element/capabilities/path.rb +19 -0
  87. data/lib/arachni/element/capabilities/refreshable.rb +48 -0
  88. data/lib/arachni/element/capabilities/server.rb +19 -0
  89. data/lib/arachni/element/cookie.rb +1043 -0
  90. data/lib/arachni/element/form.rb +1364 -0
  91. data/lib/arachni/element/header.rb +87 -0
  92. data/lib/arachni/element/link.rb +227 -0
  93. data/lib/arachni/exceptions.rb +12 -34
  94. data/lib/arachni/framework.rb +345 -436
  95. data/lib/arachni/http.rb +445 -409
  96. data/lib/arachni/http/cookie_jar.rb +163 -0
  97. data/lib/arachni/issue.rb +102 -65
  98. data/lib/arachni/mixins/observable.rb +25 -28
  99. data/lib/arachni/mixins/progress_bar.rb +11 -5
  100. data/lib/arachni/mixins/terminal.rb +17 -11
  101. data/lib/arachni/module.rb +4 -4
  102. data/lib/arachni/module/auditor.rb +270 -793
  103. data/lib/arachni/module/base.rb +107 -101
  104. data/lib/arachni/module/element_db.rb +54 -59
  105. data/lib/arachni/module/key_filler.rb +35 -35
  106. data/lib/arachni/module/manager.rb +178 -68
  107. data/lib/arachni/module/output.rb +25 -30
  108. data/lib/arachni/module/trainer.rb +85 -156
  109. data/lib/arachni/module/utilities.rb +29 -138
  110. data/lib/arachni/options.rb +496 -162
  111. data/lib/arachni/page.rb +186 -0
  112. data/lib/arachni/parser.rb +392 -2
  113. data/lib/arachni/plugin.rb +4 -4
  114. data/lib/arachni/plugin/base.rb +113 -44
  115. data/lib/arachni/plugin/manager.rb +120 -54
  116. data/lib/arachni/report.rb +4 -4
  117. data/lib/arachni/report/base.rb +59 -44
  118. data/lib/arachni/report/manager.rb +33 -32
  119. data/lib/arachni/rpc/client.rb +2 -0
  120. data/lib/arachni/rpc/client/base.rb +31 -18
  121. data/lib/arachni/rpc/client/dispatcher.rb +24 -11
  122. data/lib/arachni/rpc/client/instance.rb +24 -11
  123. data/lib/arachni/rpc/server/base.rb +12 -9
  124. data/lib/arachni/rpc/server/dispatcher.rb +161 -164
  125. data/lib/arachni/rpc/server/dispatcher/handler.rb +164 -0
  126. data/lib/arachni/rpc/server/{node.rb → dispatcher/node.rb} +86 -104
  127. data/lib/arachni/rpc/server/distributor.rb +432 -0
  128. data/lib/arachni/rpc/server/framework.rb +266 -758
  129. data/lib/arachni/rpc/server/instance.rb +38 -53
  130. data/lib/arachni/rpc/server/module/manager.rb +17 -20
  131. data/lib/arachni/rpc/server/output.rb +73 -179
  132. data/lib/arachni/rpc/server/plugin/manager.rb +58 -24
  133. data/lib/arachni/ruby.rb +6 -4
  134. data/lib/arachni/ruby/array.rb +30 -9
  135. data/lib/arachni/ruby/enumerable.rb +29 -0
  136. data/lib/arachni/ruby/object.rb +47 -12
  137. data/lib/arachni/ruby/string.rb +69 -24
  138. data/lib/arachni/ruby/webrick.rb +31 -0
  139. data/lib/arachni/session.rb +279 -0
  140. data/lib/arachni/spider.rb +295 -149
  141. data/lib/arachni/typhoeus/hydra.rb +18 -4
  142. data/lib/arachni/typhoeus/request.rb +52 -65
  143. data/lib/arachni/typhoeus/response.rb +62 -22
  144. data/lib/arachni/typhoeus/utils.rb +25 -0
  145. data/lib/arachni/ui/cli/cli.rb +331 -298
  146. data/lib/arachni/ui/cli/output.rb +105 -77
  147. data/lib/arachni/ui/foo/output.rb +116 -0
  148. data/lib/arachni/ui/rpc/dispatcher_monitor.rb +5 -12
  149. data/lib/arachni/ui/rpc/rpc.rb +43 -48
  150. data/lib/arachni/ui/web/addon_manager.rb +18 -13
  151. data/lib/arachni/ui/web/addons/sample.rb +14 -8
  152. data/lib/arachni/ui/web/addons/scheduler.rb +14 -8
  153. data/lib/arachni/ui/web/addons/scheduler/views/index.erb +1 -1
  154. data/lib/arachni/ui/web/addons/scheduler/views/options.erb +0 -3
  155. data/lib/arachni/ui/web/dispatcher_manager.rb +14 -9
  156. data/lib/arachni/ui/web/instance_manager.rb +14 -8
  157. data/lib/arachni/ui/web/log.rb +14 -10
  158. data/lib/arachni/ui/web/output_stream.rb +11 -5
  159. data/lib/arachni/ui/web/report_manager.rb +14 -10
  160. data/lib/arachni/ui/web/scheduler.rb +16 -11
  161. data/lib/arachni/ui/web/server.rb +62 -56
  162. data/lib/arachni/ui/web/server/public/style.css +1 -1
  163. data/lib/arachni/ui/web/server/views/addon.erb +1 -1
  164. data/lib/arachni/ui/web/server/views/dispatchers.erb +3 -3
  165. data/lib/arachni/ui/web/server/views/dispatchers_edit.erb +2 -2
  166. data/lib/arachni/ui/web/server/views/error.erb +1 -1
  167. data/lib/arachni/ui/web/server/views/home.erb +2 -2
  168. data/lib/arachni/ui/web/server/views/instance.erb +6 -6
  169. data/lib/arachni/ui/web/server/views/layout.erb +4 -4
  170. data/lib/arachni/ui/web/server/views/settings.erb +13 -8
  171. data/lib/arachni/ui/web/server/views/welcome.erb +1 -1
  172. data/lib/arachni/ui/web/utilities.rb +24 -35
  173. data/lib/arachni/uri.rb +619 -0
  174. data/lib/arachni/utilities.rb +316 -0
  175. data/lib/arachni/version.rb +12 -6
  176. data/lib/version +1 -0
  177. data/modules/audit/code_injection.rb +64 -81
  178. data/modules/audit/code_injection_timing.rb +57 -75
  179. data/modules/audit/csrf.rb +87 -185
  180. data/modules/audit/ldapi.rb +42 -67
  181. data/modules/audit/os_cmd_injection.rb +53 -71
  182. data/modules/audit/os_cmd_injection/payloads.txt +1 -1
  183. data/modules/audit/os_cmd_injection_timing.rb +54 -75
  184. data/modules/audit/os_cmd_injection_timing/payloads.txt +1 -3
  185. data/modules/audit/path_traversal.rb +84 -110
  186. data/modules/audit/response_splitting.rb +41 -53
  187. data/modules/audit/rfi.rb +68 -76
  188. data/modules/audit/session_fixation.rb +86 -0
  189. data/modules/audit/sqli.rb +51 -77
  190. data/modules/audit/sqli/regexp_ids.txt +5 -19
  191. data/modules/audit/sqli/regexp_ignore.txt +2 -0
  192. data/modules/audit/sqli_blind_rdiff.rb +51 -62
  193. data/modules/audit/sqli_blind_timing.rb +53 -73
  194. data/modules/audit/trainer.rb +21 -58
  195. data/modules/audit/unvalidated_redirect.rb +41 -51
  196. data/modules/audit/xpath.rb +38 -69
  197. data/modules/audit/xpath/errors.txt +2 -3
  198. data/modules/audit/xss.rb +65 -69
  199. data/modules/audit/xss_event.rb +50 -69
  200. data/modules/audit/xss_path.rb +63 -89
  201. data/modules/audit/xss_script_tag.rb +53 -66
  202. data/modules/audit/xss_tag.rb +46 -65
  203. data/modules/audit/xss_uri.rb +22 -24
  204. data/modules/recon/allowed_methods.rb +46 -62
  205. data/modules/recon/backdoors.rb +39 -66
  206. data/modules/recon/backup_files.rb +49 -79
  207. data/modules/recon/common_directories.rb +39 -63
  208. data/modules/recon/common_directories/directories.txt +0 -5
  209. data/modules/recon/common_files.rb +34 -63
  210. data/modules/recon/directory_listing.rb +66 -116
  211. data/modules/recon/grep/captcha.rb +34 -41
  212. data/modules/recon/grep/credit_card.rb +57 -68
  213. data/modules/recon/grep/cvs_svn_users.rb +40 -50
  214. data/modules/recon/grep/emails.rb +34 -41
  215. data/modules/recon/grep/html_objects.rb +30 -33
  216. data/modules/recon/grep/http_only_cookies.rb +57 -0
  217. data/modules/recon/grep/insecure_cookies.rb +55 -0
  218. data/modules/recon/grep/mixed_resource.rb +93 -0
  219. data/modules/recon/grep/private_ip.rb +34 -32
  220. data/modules/recon/grep/ssn.rb +33 -31
  221. data/modules/recon/grep/unencrypted_password_forms.rb +84 -0
  222. data/modules/recon/htaccess_limit.rb +38 -54
  223. data/modules/recon/http_put.rb +48 -62
  224. data/modules/recon/interesting_responses.rb +77 -79
  225. data/modules/recon/webdav.rb +53 -79
  226. data/modules/recon/xst.rb +44 -63
  227. data/modules/test2.rb +46 -0
  228. data/path_extractors/anchors.rb +17 -15
  229. data/path_extractors/forms.rb +17 -15
  230. data/path_extractors/frames.rb +17 -18
  231. data/path_extractors/generic.rb +52 -55
  232. data/path_extractors/links.rb +16 -14
  233. data/path_extractors/meta_refresh.rb +33 -18
  234. data/path_extractors/scripts.rb +17 -15
  235. data/plugins/autologin.rb +60 -85
  236. data/plugins/beep_notify.rb +25 -27
  237. data/plugins/cookie_collector.rb +28 -45
  238. data/plugins/defaults/autothrottle.rb +43 -51
  239. data/plugins/defaults/content_types.rb +63 -52
  240. data/plugins/defaults/healthmap.rb +45 -62
  241. data/plugins/defaults/{metamodules → meta}/remedies/discovery.rb +34 -69
  242. data/plugins/defaults/meta/remedies/manual_verification.rb +61 -0
  243. data/plugins/defaults/meta/remedies/timing_attacks.rb +108 -0
  244. data/plugins/defaults/meta/uniformity.rb +81 -0
  245. data/plugins/defaults/profiler.rb +68 -115
  246. data/plugins/defaults/resolver.rb +33 -28
  247. data/plugins/email_notify.rb +60 -62
  248. data/plugins/form_dicattack.rb +67 -121
  249. data/plugins/http_dicattack.rb +51 -65
  250. data/plugins/libnotify.rb +37 -41
  251. data/plugins/proxy.rb +407 -152
  252. data/plugins/proxy/panel/403_forbidden.html.erb +11 -0
  253. data/plugins/proxy/panel/404_not_found.html.erb +6 -0
  254. data/plugins/proxy/panel/css/bootstrap.min.css +9 -0
  255. data/plugins/proxy/panel/css/panel.css +30 -0
  256. data/plugins/proxy/panel/help.html.erb +66 -0
  257. data/plugins/proxy/panel/img/glyphicons-halflings-white.png +0 -0
  258. data/plugins/proxy/panel/img/glyphicons-halflings.png +0 -0
  259. data/plugins/proxy/panel/img/record.png +0 -0
  260. data/plugins/proxy/panel/inspect.html.erb +7 -0
  261. data/plugins/proxy/panel/js/bootstrap.min.js +6 -0
  262. data/plugins/proxy/panel/js/jquery.min.js +2 -0
  263. data/plugins/proxy/panel/js/panel.js +39 -0
  264. data/plugins/proxy/panel/layout.html.erb +25 -0
  265. data/plugins/proxy/panel/page_accordion.html.erb +67 -0
  266. data/plugins/proxy/panel/page_twin_accordion.html.erb +18 -0
  267. data/plugins/proxy/panel/panel.html.erb +63 -0
  268. data/plugins/proxy/panel/shutdown_message.html.erb +7 -0
  269. data/plugins/proxy/panel/verify_login_check.html.erb +31 -0
  270. data/plugins/proxy/panel/verify_login_final.html.erb +26 -0
  271. data/plugins/proxy/panel/verify_login_sequence.html.erb +45 -0
  272. data/plugins/proxy/server.rb +175 -47
  273. data/plugins/proxy/ssl-interceptor-cert.pem +34 -0
  274. data/plugins/proxy/ssl-interceptor-pkey.pem +51 -0
  275. data/plugins/rescan.rb +27 -28
  276. data/plugins/script.rb +53 -0
  277. data/plugins/vector_feed.rb +226 -0
  278. data/plugins/waf_detector.rb +70 -73
  279. data/reports/afr.rb +23 -24
  280. data/reports/ap.rb +25 -36
  281. data/reports/html.rb +109 -163
  282. data/reports/html/default.erb +13 -12
  283. data/reports/html/default/configuration.erb +21 -21
  284. data/reports/html/default/css/main.css +350 -350
  285. data/reports/html/default/issues.erb +1 -1
  286. data/reports/html/default/js/charts.js +2 -2
  287. data/reports/html/default/js/helpers.js +0 -42
  288. data/reports/html/default/js/init.js +0 -1
  289. data/reports/html/default/sitemap.erb +2 -2
  290. data/reports/html/default/summary.erb +4 -4
  291. data/reports/html/default/summary_issue.erb +1 -1
  292. data/reports/json.rb +26 -28
  293. data/reports/marshal.rb +23 -25
  294. data/reports/metareport.rb +65 -98
  295. data/reports/plugin_formatters/html/autologin.rb +34 -41
  296. data/reports/plugin_formatters/html/content_types.rb +46 -52
  297. data/reports/plugin_formatters/html/cookie_collector.rb +41 -47
  298. data/reports/plugin_formatters/html/discovery.rb +36 -41
  299. data/reports/plugin_formatters/html/form_dicattack.rb +28 -34
  300. data/reports/plugin_formatters/html/healthmap.rb +48 -55
  301. data/reports/plugin_formatters/html/http_dicattack.rb +28 -34
  302. data/reports/plugin_formatters/html/profiler.rb +26 -30
  303. data/reports/plugin_formatters/html/profiler/template.erb +7 -7
  304. data/reports/plugin_formatters/html/resolver.rb +44 -52
  305. data/reports/plugin_formatters/html/timing_attacks.rb +42 -44
  306. data/reports/plugin_formatters/html/uniformity.rb +37 -42
  307. data/reports/plugin_formatters/html/waf_detector.rb +26 -34
  308. data/reports/plugin_formatters/stdout/autologin.rb +28 -40
  309. data/reports/plugin_formatters/stdout/content_types.rb +36 -53
  310. data/reports/plugin_formatters/stdout/cookie_collector.rb +28 -41
  311. data/reports/plugin_formatters/stdout/discovery.rb +27 -37
  312. data/reports/plugin_formatters/stdout/form_dicattack.rb +22 -35
  313. data/reports/plugin_formatters/stdout/healthmap.rb +40 -57
  314. data/reports/plugin_formatters/stdout/http_dicattack.rb +22 -36
  315. data/reports/plugin_formatters/stdout/profiler.rb +55 -74
  316. data/reports/plugin_formatters/stdout/resolver.rb +18 -34
  317. data/reports/plugin_formatters/stdout/timing_attacks.rb +27 -39
  318. data/reports/plugin_formatters/stdout/uniformity.rb +32 -44
  319. data/reports/plugin_formatters/stdout/waf_detector.rb +20 -32
  320. data/reports/plugin_formatters/xml/autologin.rb +27 -49
  321. data/reports/plugin_formatters/xml/content_types.rb +41 -66
  322. data/reports/plugin_formatters/xml/cookie_collector.rb +29 -49
  323. data/reports/plugin_formatters/xml/discovery.rb +23 -41
  324. data/reports/plugin_formatters/xml/form_dicattack.rb +22 -40
  325. data/reports/plugin_formatters/xml/healthmap.rb +44 -63
  326. data/reports/plugin_formatters/xml/http_dicattack.rb +22 -41
  327. data/reports/plugin_formatters/xml/profiler.rb +65 -89
  328. data/reports/plugin_formatters/xml/resolver.rb +21 -41
  329. data/reports/plugin_formatters/xml/timing_attacks.rb +27 -45
  330. data/reports/plugin_formatters/xml/uniformity.rb +36 -55
  331. data/reports/plugin_formatters/xml/waf_detector.rb +23 -42
  332. data/reports/stdout.rb +120 -121
  333. data/reports/txt.rb +29 -45
  334. data/reports/xml.rb +109 -148
  335. data/reports/xml/buffer.rb +66 -79
  336. data/reports/yaml.rb +26 -28
  337. data/rpcd_handlers/placeholder +0 -0
  338. data/spec/arachni/audit_store_spec.rb +223 -0
  339. data/spec/arachni/bloom_filter_spec.rb +76 -0
  340. data/spec/arachni/cache/base_spec.rb +275 -0
  341. data/spec/arachni/cache/least_cost_replacement_spec.rb +58 -0
  342. data/spec/arachni/cache/least_recently_used_spec.rb +91 -0
  343. data/spec/arachni/cache/random_replacement_spec.rb +43 -0
  344. data/spec/arachni/component/manager_spec.rb +448 -0
  345. data/spec/arachni/component/options/address_spec.rb +32 -0
  346. data/spec/arachni/component/options/base_spec.rb +105 -0
  347. data/spec/arachni/component/options/bool_spec.rb +67 -0
  348. data/spec/arachni/component/options/enum_spec.rb +51 -0
  349. data/spec/arachni/component/options/float_spec.rb +42 -0
  350. data/spec/arachni/component/options/int_spec.rb +46 -0
  351. data/spec/arachni/component/options/path_spec.rb +32 -0
  352. data/spec/arachni/component/options/port_spec.rb +38 -0
  353. data/spec/arachni/component/options/string_spec.rb +38 -0
  354. data/spec/arachni/component/options/url_spec.rb +36 -0
  355. data/spec/arachni/crypto/rsa_aes_cbc_spec.rb +31 -0
  356. data/spec/arachni/database/hash_spec.rb +217 -0
  357. data/spec/arachni/database/queue_spec.rb +52 -0
  358. data/spec/arachni/element/base_spec.rb +127 -0
  359. data/spec/arachni/element/body_spec.rb +9 -0
  360. data/spec/arachni/element/capabilities/auditable/rdiff_spec.rb +47 -0
  361. data/spec/arachni/element/capabilities/auditable/taint_spec.rb +110 -0
  362. data/spec/arachni/element/capabilities/auditable/timeout_spec.rb +107 -0
  363. data/spec/arachni/element/capabilities/mutable_spec.rb +261 -0
  364. data/spec/arachni/element/cookie_spec.rb +362 -0
  365. data/spec/arachni/element/form_spec.rb +668 -0
  366. data/spec/arachni/element/header_spec.rb +49 -0
  367. data/spec/arachni/element/link_spec.rb +220 -0
  368. data/spec/arachni/element/path_spec.rb +9 -0
  369. data/spec/arachni/element/server_spec.rb +9 -0
  370. data/spec/arachni/framework_spec.rb +860 -0
  371. data/spec/arachni/http/cookie_jar_spec.rb +267 -0
  372. data/spec/arachni/http_spec.rb +991 -0
  373. data/spec/arachni/issue_spec.rb +307 -0
  374. data/spec/arachni/mixins/observable_spec.rb +59 -0
  375. data/spec/arachni/mixins/progress_bar_spec.rb +41 -0
  376. data/spec/arachni/module/auditor_spec.rb +506 -0
  377. data/spec/arachni/module/element_db_spec.rb +131 -0
  378. data/spec/arachni/module/key_filler.rb +15 -0
  379. data/spec/arachni/module/manager_spec.rb +154 -0
  380. data/spec/arachni/module/trainer_spec.rb +102 -0
  381. data/spec/arachni/module/utilities_spec.rb +30 -0
  382. data/spec/arachni/module/utilities_spec/read_file.txt +3 -0
  383. data/spec/arachni/options_spec.rb +555 -0
  384. data/spec/arachni/page_spec.rb +290 -0
  385. data/spec/arachni/parser_spec.rb +508 -0
  386. data/spec/arachni/plugin/manager_spec.rb +174 -0
  387. data/spec/arachni/report/base_spec.rb +53 -0
  388. data/spec/arachni/report/manager_spec.rb +82 -0
  389. data/spec/arachni/rpc/client/base_spec.rb +157 -0
  390. data/spec/arachni/rpc/client/dispatcher_spec.rb +40 -0
  391. data/spec/arachni/rpc/client/instance_spec.rb +92 -0
  392. data/spec/arachni/rpc/server/base_spec.rb +40 -0
  393. data/spec/arachni/rpc/server/dispatcher/handler.rb +120 -0
  394. data/spec/arachni/rpc/server/dispatcher/node_spec.rb +220 -0
  395. data/spec/arachni/rpc/server/dispatcher_spec.rb +136 -0
  396. data/spec/arachni/rpc/server/distributor_spec.rb +628 -0
  397. data/spec/arachni/rpc/server/framework_hpg_spec.rb +321 -0
  398. data/spec/arachni/rpc/server/framework_simple_spec.rb +453 -0
  399. data/spec/arachni/rpc/server/instance_spec.rb +81 -0
  400. data/spec/arachni/rpc/server/modules/manager_spec.rb +79 -0
  401. data/spec/arachni/rpc/server/options_spec.rb +124 -0
  402. data/spec/arachni/rpc/server/output_spec.rb +238 -0
  403. data/spec/arachni/rpc/server/plugin/manager_spec.rb +86 -0
  404. data/spec/arachni/ruby/array_spec.rb +103 -0
  405. data/spec/arachni/ruby/enumerable_spec.rb +37 -0
  406. data/spec/arachni/ruby/object_spec.rb +38 -0
  407. data/spec/arachni/ruby/string_spec.rb +77 -0
  408. data/spec/arachni/ruby/webrick_spec.rb +15 -0
  409. data/spec/arachni/session_spec.rb +308 -0
  410. data/spec/arachni/spider_spec.rb +383 -0
  411. data/spec/arachni/typhoeus/hydra_spec.rb +14 -0
  412. data/spec/arachni/typhoeus/requrest_spec.rb +58 -0
  413. data/spec/arachni/typhoeus/response_spec.rb +78 -0
  414. data/spec/arachni/uri_spec.rb +462 -0
  415. data/spec/arachni/utilities_spec.rb +297 -0
  416. data/spec/fixtures/auditstore.afr +2959 -0
  417. data/spec/fixtures/cookies.txt +9 -0
  418. data/spec/fixtures/modules/test.rb +58 -0
  419. data/spec/fixtures/modules/test2.rb +46 -0
  420. data/spec/fixtures/modules/test3.rb +46 -0
  421. data/spec/fixtures/passwords.txt +17 -0
  422. data/spec/fixtures/plugins/bad.rb +46 -0
  423. data/spec/fixtures/plugins/defaults/default.rb +45 -0
  424. data/spec/fixtures/plugins/distributable.rb +42 -0
  425. data/spec/fixtures/plugins/loop.rb +32 -0
  426. data/spec/fixtures/plugins/wait.rb +34 -0
  427. data/spec/fixtures/plugins/with_options.rb +31 -0
  428. data/spec/fixtures/reports/base_spec/plugin_formatters/with_formatters/foobar.rb +21 -0
  429. data/spec/fixtures/reports/base_spec/with_formatters.rb +23 -0
  430. data/spec/fixtures/reports/base_spec/with_outfile.rb +24 -0
  431. data/spec/fixtures/reports/base_spec/without_outfile.rb +20 -0
  432. data/spec/fixtures/reports/manager_spec/afr.rb +21 -0
  433. data/spec/fixtures/reports/manager_spec/foo.rb +26 -0
  434. data/spec/fixtures/rescan.afr.tpl +145 -0
  435. data/spec/fixtures/rpcd_handlers/echo.rb +68 -0
  436. data/spec/fixtures/run_mod/body.rb +58 -0
  437. data/spec/fixtures/run_mod/cookies.rb +58 -0
  438. data/spec/fixtures/run_mod/empty.rb +58 -0
  439. data/spec/fixtures/run_mod/flch.rb +63 -0
  440. data/spec/fixtures/run_mod/forms.rb +58 -0
  441. data/spec/fixtures/run_mod/headers.rb +58 -0
  442. data/spec/fixtures/run_mod/links.rb +58 -0
  443. data/spec/fixtures/run_mod/nil.rb +57 -0
  444. data/spec/fixtures/run_mod/path.rb +58 -0
  445. data/spec/fixtures/run_mod/server.rb +58 -0
  446. data/spec/fixtures/script_plugin.rb +1 -0
  447. data/spec/fixtures/taint_module/taint.rb +48 -0
  448. data/spec/fixtures/usernames.txt +13 -0
  449. data/spec/fixtures/wait_module/wait.rb +48 -0
  450. data/spec/helpers/auditor.rb +9 -0
  451. data/spec/helpers/misc.rb +41 -0
  452. data/spec/helpers/processes.rb +112 -0
  453. data/spec/helpers/requires.rb +8 -0
  454. data/spec/helpers/server.rb +54 -0
  455. data/spec/logs/Dispatcher - 2752-13830.log +49 -0
  456. data/spec/logs/Dispatcher - 2766-8238.log +35 -0
  457. data/spec/logs/Dispatcher - 2808-9029.log +31 -0
  458. data/spec/logs/Dispatcher - 2854-8571.log +26 -0
  459. data/spec/logs/Dispatcher - 2888-10411.log +20 -0
  460. data/spec/logs/Dispatcher - 2922-14464.log +13 -0
  461. data/spec/logs/Dispatcher - 2957-15255.log +19 -0
  462. data/spec/logs/Dispatcher - 3216-14203.log +35 -0
  463. data/spec/logs/Dispatcher - 3305-8622.log +43 -0
  464. data/spec/logs/Dispatcher - 3340-15426.log +35 -0
  465. data/spec/logs/Dispatcher - 3399-12586.log +40 -0
  466. data/spec/logs/Dispatcher - 3433-14149.log +26 -0
  467. data/spec/logs/Dispatcher - 3582-6198.log +27 -0
  468. data/spec/logs/Dispatcher - 3616-11169.log +13 -0
  469. data/spec/logs/Dispatcher - 3849-9016.log +7 -0
  470. data/spec/logs/output_spec.log +4 -0
  471. data/spec/logs/placeholder +0 -0
  472. data/spec/modules/audit/code_injection_spec.rb +25 -0
  473. data/spec/modules/audit/code_injection_timing_spec.rb +24 -0
  474. data/spec/modules/audit/csrf_spec.rb +38 -0
  475. data/spec/modules/audit/ldapi_spec.rb +19 -0
  476. data/spec/modules/audit/os_cmd_injection_spec.rb +24 -0
  477. data/spec/modules/audit/os_cmd_injection_timing_spec.rb +24 -0
  478. data/spec/modules/audit/path_traversal_spec.rb +23 -0
  479. data/spec/modules/audit/response_splitting_spec.rb +19 -0
  480. data/spec/modules/audit/rfi_spec.rb +19 -0
  481. data/spec/modules/audit/session_fixation_spec.rb +23 -0
  482. data/spec/modules/audit/sqli_blind_rdiff_spec.rb +19 -0
  483. data/spec/modules/audit/sqli_blind_timing_spec.rb +23 -0
  484. data/spec/modules/audit/sqli_spec.rb +24 -0
  485. data/spec/modules/audit/trainer_spec.rb +25 -0
  486. data/spec/modules/audit/unvalidated_redirect_spec.rb +24 -0
  487. data/spec/modules/audit/xpath_spec.rb +25 -0
  488. data/spec/modules/audit/xss_event_spec.rb +19 -0
  489. data/spec/modules/audit/xss_path_spec.rb +19 -0
  490. data/spec/modules/audit/xss_script_tag_spec.rb +19 -0
  491. data/spec/modules/audit/xss_spec.rb +24 -0
  492. data/spec/modules/audit/xss_tag_spec.rb +19 -0
  493. data/spec/modules/recon/allowed_methods_spec.rb +19 -0
  494. data/spec/modules/recon/backdoors_spec.rb +19 -0
  495. data/spec/modules/recon/backup_files_spec.rb +19 -0
  496. data/spec/modules/recon/common_directories_spec.rb +19 -0
  497. data/spec/modules/recon/common_files_spec.rb +19 -0
  498. data/spec/modules/recon/directory_listing_spec.rb +19 -0
  499. data/spec/modules/recon/grep/captcha_spec.rb +19 -0
  500. data/spec/modules/recon/grep/credit_card_spec.rb +19 -0
  501. data/spec/modules/recon/grep/cvs_svn_users_spec.rb +19 -0
  502. data/spec/modules/recon/grep/emails_spec.rb +19 -0
  503. data/spec/modules/recon/grep/html_objects_spec.rb +19 -0
  504. data/spec/modules/recon/grep/http_only_cookies_spec.rb +19 -0
  505. data/spec/modules/recon/grep/insecure_cookies_spec.rb +19 -0
  506. data/spec/modules/recon/grep/mixed_resource_spec.rb +20 -0
  507. data/spec/modules/recon/grep/private_ip_spec.rb +26 -0
  508. data/spec/modules/recon/grep/ssn_spec.rb +19 -0
  509. data/spec/modules/recon/grep/unencrypted_password_forms_spec.rb +19 -0
  510. data/spec/modules/recon/htaccess_limit_spec.rb +19 -0
  511. data/spec/modules/recon/http_put_spec.rb +19 -0
  512. data/spec/modules/recon/interesting_responses_spec.rb +27 -0
  513. data/spec/modules/recon/webdav_spec.rb +19 -0
  514. data/spec/modules/recon/xst_spec.rb +19 -0
  515. data/spec/path_extractors/anchors_spec.rb +19 -0
  516. data/spec/path_extractors/forms_spec.rb +19 -0
  517. data/spec/path_extractors/frames_spec.rb +20 -0
  518. data/spec/path_extractors/generic_spec.rb +28 -0
  519. data/spec/path_extractors/links_spec.rb +19 -0
  520. data/spec/path_extractors/meta_refresh_spec.rb +24 -0
  521. data/spec/path_extractors/scripts_spec.rb +19 -0
  522. data/spec/pems/cacert.pem +39 -0
  523. data/spec/pems/client/cert.pem +39 -0
  524. data/spec/pems/client/foo-cert.pem +39 -0
  525. data/spec/pems/client/foo-key.pem +51 -0
  526. data/spec/pems/client/key.pem +51 -0
  527. data/spec/pems/server/cert.pem +39 -0
  528. data/spec/pems/server/key.pem +51 -0
  529. data/spec/plugins/autologin_spec.rb +76 -0
  530. data/spec/plugins/autothrottle_spec.rb +45 -0
  531. data/spec/plugins/content_types_spec.rb +93 -0
  532. data/spec/plugins/cookie_collector_spec.rb +32 -0
  533. data/spec/plugins/form_dicattack_spec.rb +60 -0
  534. data/spec/plugins/healthmap_spec.rb +40 -0
  535. data/spec/plugins/http_dicattack_spec.rb +40 -0
  536. data/spec/plugins/meta/remedies/discovery_spec.rb +15 -0
  537. data/spec/plugins/meta/remedies/manual_verification_spec.rb +28 -0
  538. data/spec/plugins/meta/remedies/timing_attacks_spec.rb +30 -0
  539. data/spec/plugins/meta/uniformity_spec.rb +83 -0
  540. data/spec/plugins/profiler_spec.rb +82 -0
  541. data/spec/plugins/rescan_spec.rb +26 -0
  542. data/spec/plugins/resolver_spec.rb +16 -0
  543. data/spec/plugins/script_spec.rb +12 -0
  544. data/spec/plugins/vector_feed_spec.rb +155 -0
  545. data/spec/plugins/waf_detector_spec.rb +41 -0
  546. data/spec/reports/afr_spec.rb +13 -0
  547. data/spec/reports/ap_spec.rb +9 -0
  548. data/spec/reports/html_spec.rb +13 -0
  549. data/spec/reports/json_spec.rb +17 -0
  550. data/spec/reports/marshal_spec.rb +13 -0
  551. data/spec/reports/stdout_spec.rb +9 -0
  552. data/spec/reports/txt_spec.rb +8 -0
  553. data/spec/reports/xml_spec.rb +13 -0
  554. data/spec/reports/yaml_spec.rb +13 -0
  555. data/spec/servers/arachni/element/capabilities/auditable/rdiff.rb +36 -0
  556. data/spec/servers/arachni/element/capabilities/auditable/taint.rb +10 -0
  557. data/spec/servers/arachni/element/capabilities/auditable/timeout.rb +30 -0
  558. data/spec/servers/arachni/element/cookie.rb +37 -0
  559. data/spec/servers/arachni/element/form.rb +93 -0
  560. data/spec/servers/arachni/element/header.rb +22 -0
  561. data/spec/servers/arachni/element/link.rb +26 -0
  562. data/spec/servers/arachni/framework.rb +54 -0
  563. data/spec/servers/arachni/http.rb +140 -0
  564. data/spec/servers/arachni/http_auth.rb +9 -0
  565. data/spec/servers/arachni/module/auditor.rb +135 -0
  566. data/spec/servers/arachni/module/trainer.rb +40 -0
  567. data/spec/servers/arachni/parser.rb +70 -0
  568. data/spec/servers/arachni/rpc/server/framework_hpg.rb +21 -0
  569. data/spec/servers/arachni/rpc/server/framework_simple.rb +30 -0
  570. data/spec/servers/arachni/session.rb +110 -0
  571. data/spec/servers/arachni/spider.rb +148 -0
  572. data/spec/servers/modules/audit/code_injection.rb +140 -0
  573. data/spec/servers/modules/audit/code_injection_timing.rb +110 -0
  574. data/spec/servers/modules/audit/csrf.rb +80 -0
  575. data/spec/servers/modules/audit/ldapi.rb +73 -0
  576. data/spec/servers/modules/audit/os_cmd_injection.rb +140 -0
  577. data/spec/servers/modules/audit/os_cmd_injection_timing.rb +111 -0
  578. data/spec/servers/modules/audit/path_traversal.rb +176 -0
  579. data/spec/servers/modules/audit/response_splitting.rb +114 -0
  580. data/spec/servers/modules/audit/rfi.rb +113 -0
  581. data/spec/servers/modules/audit/session_fixation.rb +87 -0
  582. data/spec/servers/modules/audit/sqli.rb +118 -0
  583. data/spec/servers/modules/audit/sqli/coldfusion +1 -0
  584. data/spec/servers/modules/audit/sqli/db2 +4 -0
  585. data/spec/servers/modules/audit/sqli/emc +2 -0
  586. data/spec/servers/modules/audit/sqli/informix +3 -0
  587. data/spec/servers/modules/audit/sqli/interbase +2 -0
  588. data/spec/servers/modules/audit/sqli/jdbc +0 -0
  589. data/spec/servers/modules/audit/sqli/mssql +26 -0
  590. data/spec/servers/modules/audit/sqli/mysql +13 -0
  591. data/spec/servers/modules/audit/sqli/oracle +6 -0
  592. data/spec/servers/modules/audit/sqli/postgresql +7 -0
  593. data/spec/servers/modules/audit/sqli/sqlite +4 -0
  594. data/spec/servers/modules/audit/sqli/sybase +0 -0
  595. data/spec/servers/modules/audit/sqli_blind_rdiff.rb +74 -0
  596. data/spec/servers/modules/audit/sqli_blind_timing.rb +121 -0
  597. data/spec/servers/modules/audit/trainer_module.rb +160 -0
  598. data/spec/servers/modules/audit/unvalidated_redirect.rb +115 -0
  599. data/spec/servers/modules/audit/xpath.rb +111 -0
  600. data/spec/servers/modules/audit/xpath/dotnet +5 -0
  601. data/spec/servers/modules/audit/xpath/general +13 -0
  602. data/spec/servers/modules/audit/xpath/java +3 -0
  603. data/spec/servers/modules/audit/xpath/libxml2 +2 -0
  604. data/spec/servers/modules/audit/xpath/php +2 -0
  605. data/spec/servers/modules/audit/xss.rb +152 -0
  606. data/spec/servers/modules/audit/xss_event.rb +80 -0
  607. data/spec/servers/modules/audit/xss_path.rb +44 -0
  608. data/spec/servers/modules/audit/xss_script_tag.rb +73 -0
  609. data/spec/servers/modules/audit/xss_tag.rb +139 -0
  610. data/spec/servers/modules/module_server.rb +14 -0
  611. data/spec/servers/modules/recon/allowed_methods.rb +5 -0
  612. data/spec/servers/modules/recon/backdoors.rb +4 -0
  613. data/spec/servers/modules/recon/backup_files.rb +28 -0
  614. data/spec/servers/modules/recon/common_directories.rb +6 -0
  615. data/spec/servers/modules/recon/common_files.rb +6 -0
  616. data/spec/servers/modules/recon/directory_listing.rb +30 -0
  617. data/spec/servers/modules/recon/grep/captcha.rb +27 -0
  618. data/spec/servers/modules/recon/grep/credit_card.rb +28 -0
  619. data/spec/servers/modules/recon/grep/cvs_svn_users.rb +23 -0
  620. data/spec/servers/modules/recon/grep/emails.rb +21 -0
  621. data/spec/servers/modules/recon/grep/html_objects.rb +7 -0
  622. data/spec/servers/modules/recon/grep/http_only_cookies.rb +21 -0
  623. data/spec/servers/modules/recon/grep/insecure_cookies.rb +21 -0
  624. data/spec/servers/modules/recon/grep/mixed_resource.rb +83 -0
  625. data/spec/servers/modules/recon/grep/private_ip.rb +18 -0
  626. data/spec/servers/modules/recon/grep/ssn.rb +5 -0
  627. data/spec/servers/modules/recon/grep/unencrypted_password_forms.rb +33 -0
  628. data/spec/servers/modules/recon/htaccess_limit.rb +8 -0
  629. data/spec/servers/modules/recon/http_put.rb +7 -0
  630. data/spec/servers/modules/recon/interesting_responses.rb +5 -0
  631. data/spec/servers/modules/recon/webdav.rb +25 -0
  632. data/spec/servers/modules/recon/xst.rb +6 -0
  633. data/spec/servers/plugins/autologin.rb +38 -0
  634. data/spec/servers/plugins/autothrottle.rb +8 -0
  635. data/spec/servers/plugins/content_types.rb +17 -0
  636. data/spec/servers/plugins/cookie_collector.rb +20 -0
  637. data/spec/servers/plugins/form_dicattack.rb +28 -0
  638. data/spec/servers/plugins/healthmap.rb +16 -0
  639. data/spec/servers/plugins/http_dicattack.rb +9 -0
  640. data/spec/servers/plugins/http_dicattack_secure.rb +9 -0
  641. data/spec/servers/plugins/http_dicattack_unprotected.rb +5 -0
  642. data/spec/servers/plugins/meta/remedies/discovery.rb +7 -0
  643. data/spec/servers/plugins/meta/remedies/timing_attacks.rb +29 -0
  644. data/spec/servers/plugins/profiler.rb +82 -0
  645. data/spec/servers/plugins/rescan.rb +31 -0
  646. data/spec/servers/plugins/waf_detector.rb +33 -0
  647. data/spec/shared/component.rb +43 -0
  648. data/spec/shared/element/capabilities/auditable.rb +729 -0
  649. data/spec/shared/element/capabilities/refreshable.rb +56 -0
  650. data/spec/shared/module.rb +162 -0
  651. data/spec/shared/path_extractor.rb +47 -0
  652. data/spec/shared/plugin.rb +50 -0
  653. data/spec/shared/reports.rb +47 -0
  654. data/spec/spec_helper.rb +53 -0
  655. metadata +870 -323
  656. data/extras/modules/recon/raft_dirs.rb +0 -108
  657. data/extras/modules/recon/raft_dirs/raft-large-directories.txt +0 -62290
  658. data/extras/modules/recon/raft_files.rb +0 -110
  659. data/extras/modules/recon/raft_files/raft-large-files.txt +0 -37037
  660. data/extras/modules/recon/svn_digger_dirs.rb +0 -108
  661. data/extras/modules/recon/svn_digger_dirs/Licence.txt +0 -674
  662. data/extras/modules/recon/svn_digger_dirs/ReadMe-Arachni.txt +0 -4
  663. data/extras/modules/recon/svn_digger_dirs/ReadMe.txt +0 -6
  664. data/extras/modules/recon/svn_digger_dirs/all-dirs.txt +0 -5960
  665. data/extras/modules/recon/svn_digger_files.rb +0 -114
  666. data/extras/modules/recon/svn_digger_files/Licence.txt +0 -674
  667. data/extras/modules/recon/svn_digger_files/ReadMe-Arachni.txt +0 -4
  668. data/extras/modules/recon/svn_digger_files/ReadMe.txt +0 -6
  669. data/extras/modules/recon/svn_digger_files/all-extensionless.txt +0 -25419
  670. data/extras/modules/recon/svn_digger_files/all.txt +0 -43135
  671. data/lib/arachni/component_manager.rb +0 -293
  672. data/lib/arachni/component_options.rb +0 -425
  673. data/lib/arachni/parser/auditable.rb +0 -606
  674. data/lib/arachni/parser/elements.rb +0 -315
  675. data/lib/arachni/parser/page.rb +0 -168
  676. data/lib/arachni/parser/parser.rb +0 -866
  677. data/lib/arachni/rpc/server/options.rb +0 -95
  678. data/lib/arachni/ui/web/addons/autodeploy.rb +0 -207
  679. data/lib/arachni/ui/web/addons/autodeploy/lib/manager.rb +0 -398
  680. data/lib/arachni/ui/web/addons/autodeploy/views/index.erb +0 -291
  681. data/modules/recon/mixed_resource.rb +0 -100
  682. data/modules/recon/unencrypted_password_forms.rb +0 -107
  683. data/path_extractors/sitemap.rb +0 -31
  684. data/plugins/defaults/metamodules/remedies/manual_verification.rb +0 -65
  685. data/plugins/defaults/metamodules/remedies/timing_attacks.rb +0 -134
  686. data/plugins/defaults/metamodules/uniformity.rb +0 -99
  687. data/reports/metareport/arachni_metareport.rb +0 -174
  688. data/reports/plugin_formatters/stdout/metamodules.rb +0 -82
@@ -0,0 +1,125 @@
1
+ #!/usr/bin/env bash
2
+ #
3
+ # Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com>
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ path_to_readlink_function=`dirname $0`"/lib/readlink_f.sh"
18
+ if [[ ! -e "$path_to_readlink_function" ]]; then
19
+ echo "Could not find $path_to_readlink_function"
20
+ exit
21
+ fi
22
+
23
+ source $path_to_readlink_function
24
+
25
+ root="$(dirname "$(readlink_f "${0}")")"
26
+ nightlies="$HOME/builds/nightlies"
27
+
28
+ package_patterns="arachni*.gz"
29
+ dest="segfault@downloads.arachni-scanner.com:www/arachni/downloads/nightlies/"
30
+
31
+ rm -f $package_patterns
32
+
33
+ output_log_32bit="$root/32bit.log"
34
+ output_log_64bit="$root/64bit.log"
35
+
36
+ rm -f $output_log_32bit
37
+ rm -f $output_log_64bit
38
+
39
+ if [ -n "${OSX_SSH_CMD+x}" ]; then
40
+ output_log_osx="$root/osx.log"
41
+ rm -f $output_log_osx
42
+ fi
43
+
44
+ mkdir -p $nightlies
45
+ cd $nightlies
46
+
47
+ if ls *.lock > /dev/null 2>&1; then
48
+ echo "Found a lock file, another build process is in progress or the dir is dirty.";
49
+ exit 1
50
+ fi
51
+
52
+ if ls *.pid > /dev/null 2>&1; then
53
+ echo "Found a pid file, another build process is in progress or the dir is dirty.";
54
+ exit 1
55
+ fi
56
+
57
+ rm -f arachn*.gz arachn*installer.sh
58
+ rm -f *.log
59
+
60
+ echo "Building packages, this could take a while; to monitor the progress of the:"
61
+ echo " * 32bit build: tail -f $output_log_32bit"
62
+ echo " * 64bit build: tail -f $output_log_64bit"
63
+
64
+
65
+ if [ -n "${OSX_SSH_CMD+x}" ]; then
66
+ echo " * OSX build: tail -f $output_log_osx"
67
+ fi
68
+
69
+ echo
70
+ echo 'You better go grab some coffee now...'
71
+
72
+ bash -c "touch 32bit_build.lock && \
73
+ bash $root/cross_build_and_package.sh 2>> $output_log_32bit 1>> $output_log_32bit ;\
74
+ rm 32bit_build.lock" &
75
+
76
+ echo $! > 32bit.pid
77
+
78
+ bash -c "touch 64bit_build.lock && \
79
+ bash $root/build_and_package.sh 2>> $output_log_64bit 1>> $output_log_64bit &&\
80
+ rm 64bit_build.lock" &
81
+
82
+ echo $! > 64bit.pid
83
+
84
+ if [ -n "${OSX_SSH_CMD+x}" ]; then
85
+ bash -c "touch osx_build.lock && \
86
+ eval \"$OSX_SSH_CMD\" 2>> $output_log_osx 1>> $output_log_osx &&\
87
+ rm osx_build.lock" &
88
+
89
+ echo $! > 64bit.pid
90
+ fi
91
+
92
+ # wait for the locks to be created
93
+ while [ ! -e "32bit_build.lock" ]; do sleep 0.1; done
94
+ while [ ! -e "64bit_build.lock" ]; do sleep 0.1; done
95
+
96
+ if [ -n "${OSX_SSH_CMD+x}" ]; then
97
+ while [ ! -e "osx_build.lock" ]; do sleep 0.1; done
98
+ fi
99
+
100
+
101
+ # and then wait for the locks to be removed
102
+ while [ -e "32bit_build.lock" ]; do sleep 0.1; done
103
+ echo ' * 32bit package ready'
104
+
105
+ while [ -e "64bit_build.lock" ]; do sleep 0.1; done
106
+ echo ' * 64bit package ready'
107
+
108
+ if [ -n "${OSX_SSH_CMD+x}" ]; then
109
+ while [ -e "osx_build.lock" ]; do sleep 0.1; done
110
+ echo ' * OSX package ready'
111
+ fi
112
+
113
+
114
+ echo
115
+ echo -n 'Removing PID files'
116
+ rm *.pid
117
+ echo ' - done.'
118
+ echo
119
+
120
+ echo 'Pushing to server, this could take a while also...'
121
+ rsync --human-readable --progress --executability --compress --stats \
122
+ $package_patterns $dest
123
+
124
+ echo
125
+ echo 'All done.'
File without changes
@@ -0,0 +1,18 @@
1
+ # Arachni graphics
2
+
3
+ ## Source
4
+
5
+ The SVG files under the ```source/``` directory are Inkscape[1] SVG.
6
+
7
+ ## Compiled
8
+
9
+ For compiled PNG images see the ```compiled/``` directory.
10
+
11
+ ## Font
12
+
13
+ "BENEATH THE SURFACE" V1.00
14
+ Copyright (c) S. Bergasa, 2008. All rights reserved.
15
+
16
+ See the ```font/``` directory for the TTF and its readme.
17
+
18
+ PS. A big thanks to my buddy Andreas (rainmakergr@gmail.com) for the original spider drawing.
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,14 @@
1
+ "BENEATH THE SURFACE" V1.00
2
+
3
+
4
+ Copyright (c) S. Bergasa, 2008. All rights reserved.
5
+
6
+
7
+
8
+ This font is free for personnal use only, commercial usage of it is strictly PROHIBITED.
9
+
10
+ This font file may not be modified and this readme file must be included with the font.
11
+
12
+
13
+
14
+ "seaQuest DSV" and "seaQuest 2032" are trademarks of Universal Pictures and Amblin Entertainment.
@@ -0,0 +1,999 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="468px"
13
+ height="60px"
14
+ id="svg5658"
15
+ version="1.1"
16
+ inkscape:version="0.48.0 r9654"
17
+ sodipodi:docname="banner.svg">
18
+ <defs
19
+ id="defs5660">
20
+ <filter
21
+ id="filter3062"
22
+ inkscape:label="Jam spread"
23
+ x="0"
24
+ y="0"
25
+ width="1"
26
+ height="1"
27
+ inkscape:menu="Textures"
28
+ inkscape:menu-tooltip="Glossy clumpy jam spread"
29
+ color-interpolation-filters="sRGB">
30
+ <feGaussianBlur
31
+ id="feGaussianBlur3064"
32
+ stdDeviation="2.3"
33
+ in="SourceAlpha"
34
+ result="result0" />
35
+ <feMorphology
36
+ id="feMorphology3066"
37
+ in="SourceAlpha"
38
+ radius="6.6"
39
+ result="result1" />
40
+ <feGaussianBlur
41
+ id="feGaussianBlur3068"
42
+ stdDeviation="8.9"
43
+ in="result1" />
44
+ <feColorMatrix
45
+ id="feColorMatrix3070"
46
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
47
+ result="result91" />
48
+ <feComposite
49
+ id="feComposite3072"
50
+ in2="result91"
51
+ in="result0"
52
+ operator="out"
53
+ result="result2" />
54
+ <feGaussianBlur
55
+ id="feGaussianBlur3074"
56
+ stdDeviation="1.7"
57
+ result="result4" />
58
+ <feDiffuseLighting
59
+ id="feDiffuseLighting3076"
60
+ surfaceScale="10"
61
+ result="result92">
62
+ <feDistantLight
63
+ id="feDistantLight3078"
64
+ azimuth="225"
65
+ elevation="45" />
66
+ </feDiffuseLighting>
67
+ <feBlend
68
+ id="feBlend3080"
69
+ in2="SourceGraphic"
70
+ mode="multiply"
71
+ result="result93" />
72
+ <feComposite
73
+ id="feComposite3082"
74
+ in2="SourceAlpha"
75
+ operator="in"
76
+ result="result3" />
77
+ <feSpecularLighting
78
+ id="feSpecularLighting3084"
79
+ in="result4"
80
+ surfaceScale="5"
81
+ specularExponent="17.89999962"
82
+ result="result94">
83
+ <feDistantLight
84
+ id="feDistantLight3086"
85
+ azimuth="225"
86
+ elevation="45" />
87
+ </feSpecularLighting>
88
+ <feComposite
89
+ id="feComposite3088"
90
+ in2="result3"
91
+ operator="atop"
92
+ result="fbSourceGraphic" />
93
+ <feColorMatrix
94
+ result="fbSourceGraphicAlpha"
95
+ in="fbSourceGraphic"
96
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
97
+ id="feColorMatrix3945" />
98
+ <feGaussianBlur
99
+ id="feGaussianBlur3947"
100
+ stdDeviation="1"
101
+ in="fbSourceGraphic"
102
+ result="result0" />
103
+ <feTurbulence
104
+ id="feTurbulence3949"
105
+ result="result1"
106
+ numOctaves="7"
107
+ seed="488"
108
+ baseFrequency="0.017"
109
+ type="turbulence" />
110
+ <feComposite
111
+ in2="result1"
112
+ id="feComposite3951"
113
+ in="result0"
114
+ operator="out"
115
+ result="result2" />
116
+ <feGaussianBlur
117
+ id="feGaussianBlur3953"
118
+ stdDeviation="0.5"
119
+ result="result5" />
120
+ <feSpecularLighting
121
+ id="feSpecularLighting3955"
122
+ in="result5"
123
+ specularExponent="100"
124
+ specularConstant="4"
125
+ result="result4"
126
+ surfaceScale="1.5">
127
+ <feDistantLight
128
+ id="feDistantLight3957"
129
+ azimuth="225"
130
+ elevation="62" />
131
+ </feSpecularLighting>
132
+ <feComposite
133
+ in2="result2"
134
+ id="feComposite3959"
135
+ operator="atop"
136
+ in="result4"
137
+ result="result91" />
138
+ <feBlend
139
+ in2="result91"
140
+ id="feBlend3961"
141
+ mode="multiply" />
142
+ </filter>
143
+ <filter
144
+ id="filter5423"
145
+ inkscape:label="Button"
146
+ x="0"
147
+ y="0"
148
+ width="1"
149
+ height="1"
150
+ inkscape:menu="Bevels"
151
+ inkscape:menu-tooltip="Soft bevel, slightly depressed middle"
152
+ color-interpolation-filters="sRGB">
153
+ <feGaussianBlur
154
+ id="feGaussianBlur5425"
155
+ stdDeviation="2.3"
156
+ in="SourceAlpha"
157
+ result="result0" />
158
+ <feMorphology
159
+ id="feMorphology5427"
160
+ in="SourceAlpha"
161
+ radius="6.6"
162
+ result="result1" />
163
+ <feGaussianBlur
164
+ id="feGaussianBlur5429"
165
+ stdDeviation="8.9"
166
+ in="result1" />
167
+ <feColorMatrix
168
+ id="feColorMatrix5431"
169
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
170
+ result="result91" />
171
+ <feComposite
172
+ id="feComposite5433"
173
+ in2="result91"
174
+ in="result0"
175
+ operator="out"
176
+ result="result2" />
177
+ <feGaussianBlur
178
+ id="feGaussianBlur5435"
179
+ stdDeviation="1.7"
180
+ result="result4" />
181
+ <feDiffuseLighting
182
+ id="feDiffuseLighting5437"
183
+ surfaceScale="10"
184
+ result="result92">
185
+ <feDistantLight
186
+ id="feDistantLight5439"
187
+ azimuth="225"
188
+ elevation="45" />
189
+ </feDiffuseLighting>
190
+ <feBlend
191
+ id="feBlend5441"
192
+ in2="SourceGraphic"
193
+ mode="multiply"
194
+ result="result93" />
195
+ <feComposite
196
+ id="feComposite5443"
197
+ in2="SourceAlpha"
198
+ operator="in"
199
+ result="result3" />
200
+ <feSpecularLighting
201
+ id="feSpecularLighting5445"
202
+ in="result4"
203
+ surfaceScale="5"
204
+ specularExponent="17.89999962"
205
+ result="result94">
206
+ <feDistantLight
207
+ id="feDistantLight5447"
208
+ azimuth="225"
209
+ elevation="45" />
210
+ </feSpecularLighting>
211
+ <feComposite
212
+ id="feComposite5449"
213
+ in2="result3"
214
+ operator="atop" />
215
+ </filter>
216
+ <filter
217
+ id="filter3062-5"
218
+ inkscape:label="Jam spread"
219
+ x="0"
220
+ y="0"
221
+ width="1"
222
+ height="1"
223
+ inkscape:menu="Textures"
224
+ inkscape:menu-tooltip="Glossy clumpy jam spread"
225
+ color-interpolation-filters="sRGB">
226
+ <feGaussianBlur
227
+ id="feGaussianBlur3064-7"
228
+ stdDeviation="2.3"
229
+ in="SourceAlpha"
230
+ result="result0" />
231
+ <feMorphology
232
+ id="feMorphology3066-3"
233
+ in="SourceAlpha"
234
+ radius="6.6"
235
+ result="result1" />
236
+ <feGaussianBlur
237
+ id="feGaussianBlur3068-2"
238
+ stdDeviation="8.9"
239
+ in="result1" />
240
+ <feColorMatrix
241
+ id="feColorMatrix3070-7"
242
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
243
+ result="result91" />
244
+ <feComposite
245
+ id="feComposite3072-2"
246
+ in2="result91"
247
+ in="result0"
248
+ operator="out"
249
+ result="result2" />
250
+ <feGaussianBlur
251
+ id="feGaussianBlur3074-1"
252
+ stdDeviation="1.7"
253
+ result="result4" />
254
+ <feDiffuseLighting
255
+ id="feDiffuseLighting3076-3"
256
+ surfaceScale="10"
257
+ result="result92">
258
+ <feDistantLight
259
+ id="feDistantLight3078-4"
260
+ azimuth="225"
261
+ elevation="45" />
262
+ </feDiffuseLighting>
263
+ <feBlend
264
+ id="feBlend3080-9"
265
+ in2="SourceGraphic"
266
+ mode="multiply"
267
+ result="result93" />
268
+ <feComposite
269
+ id="feComposite3082-4"
270
+ in2="SourceAlpha"
271
+ operator="in"
272
+ result="result3" />
273
+ <feSpecularLighting
274
+ id="feSpecularLighting3084-1"
275
+ in="result4"
276
+ surfaceScale="5"
277
+ specularExponent="17.89999962"
278
+ result="result94">
279
+ <feDistantLight
280
+ id="feDistantLight3086-9"
281
+ azimuth="225"
282
+ elevation="45" />
283
+ </feSpecularLighting>
284
+ <feComposite
285
+ id="feComposite3088-5"
286
+ in2="result3"
287
+ operator="atop"
288
+ result="fbSourceGraphic" />
289
+ <feColorMatrix
290
+ result="fbSourceGraphicAlpha"
291
+ in="fbSourceGraphic"
292
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
293
+ id="feColorMatrix3945-7" />
294
+ <feGaussianBlur
295
+ id="feGaussianBlur3947-4"
296
+ stdDeviation="1"
297
+ in="fbSourceGraphic"
298
+ result="result0" />
299
+ <feTurbulence
300
+ id="feTurbulence3949-1"
301
+ result="result1"
302
+ numOctaves="7"
303
+ seed="488"
304
+ baseFrequency="0.017"
305
+ type="turbulence" />
306
+ <feComposite
307
+ in2="result1"
308
+ id="feComposite3951-2"
309
+ in="result0"
310
+ operator="out"
311
+ result="result2" />
312
+ <feGaussianBlur
313
+ id="feGaussianBlur3953-2"
314
+ stdDeviation="0.5"
315
+ result="result5" />
316
+ <feSpecularLighting
317
+ id="feSpecularLighting3955-1"
318
+ in="result5"
319
+ specularExponent="100"
320
+ specularConstant="4"
321
+ result="result4"
322
+ surfaceScale="1.5">
323
+ <feDistantLight
324
+ id="feDistantLight3957-6"
325
+ azimuth="225"
326
+ elevation="62" />
327
+ </feSpecularLighting>
328
+ <feComposite
329
+ in2="result2"
330
+ id="feComposite3959-2"
331
+ operator="atop"
332
+ in="result4"
333
+ result="result91" />
334
+ <feBlend
335
+ in2="result91"
336
+ id="feBlend3961-0"
337
+ mode="multiply" />
338
+ </filter>
339
+ <filter
340
+ id="filter4078"
341
+ inkscape:label="Matte bevel"
342
+ inkscape:menu="Bevels"
343
+ inkscape:menu-tooltip="Soft, pastel-colored, blurry bevel"
344
+ x="-0.25"
345
+ y="-0.25"
346
+ width="1.5"
347
+ height="1.5"
348
+ color-interpolation-filters="sRGB">
349
+ <feGaussianBlur
350
+ id="feGaussianBlur4080"
351
+ stdDeviation="1"
352
+ result="result6" />
353
+ <feComposite
354
+ id="feComposite4082"
355
+ in2="result6"
356
+ operator="in"
357
+ in="result6"
358
+ result="result7" />
359
+ <feGaussianBlur
360
+ id="feGaussianBlur4084"
361
+ stdDeviation="8"
362
+ result="result3"
363
+ in="result7" />
364
+ <feComposite
365
+ id="feComposite4086"
366
+ in2="result7"
367
+ operator="over"
368
+ result="result91" />
369
+ <feComposite
370
+ id="feComposite4088"
371
+ in2="result91"
372
+ operator="in"
373
+ in="result3"
374
+ result="result5" />
375
+ <feColorMatrix
376
+ id="feColorMatrix4090"
377
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0 "
378
+ result="result4" />
379
+ <feSpecularLighting
380
+ id="feSpecularLighting4092"
381
+ surfaceScale="3"
382
+ specularConstant="2"
383
+ specularExponent="45"
384
+ in="result4"
385
+ result="result11">
386
+ <fePointLight
387
+ id="fePointLight4094"
388
+ x="-5000"
389
+ y="-10000"
390
+ z="20000" />
391
+ </feSpecularLighting>
392
+ <feComposite
393
+ k4="0"
394
+ k3="0"
395
+ k2="0"
396
+ id="feComposite4096"
397
+ in2="result4"
398
+ operator="arithmetic"
399
+ k1="1"
400
+ result="result10" />
401
+ <feComposite
402
+ k4="0"
403
+ k1="0"
404
+ id="feComposite4098"
405
+ in2="result10"
406
+ operator="arithmetic"
407
+ k2="0.5"
408
+ k3="1"
409
+ in="result5"
410
+ result="result8" />
411
+ <feComposite
412
+ id="feComposite4100"
413
+ in2="result8"
414
+ result="result9" />
415
+ <feBlend
416
+ id="feBlend4102"
417
+ in2="result9"
418
+ mode="normal" />
419
+ </filter>
420
+ <filter
421
+ id="filter5423-2"
422
+ inkscape:label="Matte bevel"
423
+ x="-0.25"
424
+ y="-0.25"
425
+ width="1.5"
426
+ height="1.5"
427
+ inkscape:menu="Bevels"
428
+ inkscape:menu-tooltip="Soft, pastel-colored, blurry bevel"
429
+ color-interpolation-filters="sRGB">
430
+ <feGaussianBlur
431
+ id="feGaussianBlur5425-2"
432
+ stdDeviation="2.3"
433
+ in="SourceAlpha"
434
+ result="result0" />
435
+ <feMorphology
436
+ id="feMorphology5427-9"
437
+ in="SourceAlpha"
438
+ radius="6.6"
439
+ result="result1" />
440
+ <feGaussianBlur
441
+ id="feGaussianBlur5429-7"
442
+ stdDeviation="8.9"
443
+ in="result1" />
444
+ <feColorMatrix
445
+ id="feColorMatrix5431-4"
446
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
447
+ result="result91" />
448
+ <feComposite
449
+ id="feComposite5433-3"
450
+ in2="result91"
451
+ in="result0"
452
+ operator="out"
453
+ result="result2" />
454
+ <feGaussianBlur
455
+ id="feGaussianBlur5435-5"
456
+ stdDeviation="1.7"
457
+ result="result4" />
458
+ <feDiffuseLighting
459
+ id="feDiffuseLighting5437-6"
460
+ surfaceScale="10"
461
+ result="result92">
462
+ <feDistantLight
463
+ id="feDistantLight5439-1"
464
+ azimuth="225"
465
+ elevation="45" />
466
+ </feDiffuseLighting>
467
+ <feBlend
468
+ id="feBlend5441-4"
469
+ in2="SourceGraphic"
470
+ mode="multiply"
471
+ result="result93" />
472
+ <feComposite
473
+ id="feComposite5443-0"
474
+ in2="SourceAlpha"
475
+ operator="in"
476
+ result="result3" />
477
+ <feSpecularLighting
478
+ id="feSpecularLighting5445-3"
479
+ in="result4"
480
+ surfaceScale="5"
481
+ specularExponent="17.89999962"
482
+ result="result94">
483
+ <feDistantLight
484
+ id="feDistantLight5447-1"
485
+ azimuth="225"
486
+ elevation="45" />
487
+ </feSpecularLighting>
488
+ <feComposite
489
+ id="feComposite5449-2"
490
+ in2="result3"
491
+ operator="atop"
492
+ result="fbSourceGraphic" />
493
+ <feColorMatrix
494
+ result="fbSourceGraphicAlpha"
495
+ in="fbSourceGraphic"
496
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
497
+ id="feColorMatrix4052" />
498
+ <feGaussianBlur
499
+ id="feGaussianBlur4054"
500
+ stdDeviation="1"
501
+ result="result6"
502
+ in="fbSourceGraphic" />
503
+ <feComposite
504
+ id="feComposite4056"
505
+ in2="result6"
506
+ operator="in"
507
+ in="result6"
508
+ result="result7" />
509
+ <feGaussianBlur
510
+ id="feGaussianBlur4058"
511
+ stdDeviation="8"
512
+ result="result3"
513
+ in="result7" />
514
+ <feComposite
515
+ id="feComposite4060"
516
+ in2="result7"
517
+ operator="over"
518
+ result="result91" />
519
+ <feComposite
520
+ id="feComposite4062"
521
+ in2="result91"
522
+ operator="in"
523
+ in="result3"
524
+ result="result5" />
525
+ <feColorMatrix
526
+ id="feColorMatrix4064"
527
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0 "
528
+ result="result4" />
529
+ <feSpecularLighting
530
+ id="feSpecularLighting4066"
531
+ surfaceScale="3"
532
+ specularConstant="2"
533
+ specularExponent="45"
534
+ in="result4"
535
+ result="result11">
536
+ <fePointLight
537
+ id="fePointLight4068"
538
+ x="-5000"
539
+ y="-10000"
540
+ z="20000" />
541
+ </feSpecularLighting>
542
+ <feComposite
543
+ k4="0"
544
+ k3="0"
545
+ k2="0"
546
+ id="feComposite4070"
547
+ in2="result4"
548
+ operator="arithmetic"
549
+ k1="1"
550
+ result="result10" />
551
+ <feComposite
552
+ k4="0"
553
+ k1="0"
554
+ id="feComposite4072"
555
+ in2="result10"
556
+ operator="arithmetic"
557
+ k2="0.5"
558
+ k3="1"
559
+ in="result5"
560
+ result="result8" />
561
+ <feComposite
562
+ id="feComposite4074"
563
+ in2="result8"
564
+ result="result9" />
565
+ <feBlend
566
+ id="feBlend4076"
567
+ in2="result9"
568
+ mode="normal" />
569
+ </filter>
570
+ <filter
571
+ id="filter3812"
572
+ inkscape:label="Drop shadow"
573
+ inkscape:menu="Bevels"
574
+ inkscape:menu-tooltip="Soft bevel, slightly depressed middle"
575
+ x="-.25"
576
+ y="-.25"
577
+ width="1.5"
578
+ height="1.5"
579
+ color-interpolation-filters="sRGB">
580
+ <feGaussianBlur
581
+ id="feGaussianBlur3814"
582
+ stdDeviation="1"
583
+ result="result6" />
584
+ <feComposite
585
+ id="feComposite3816"
586
+ in2="result6"
587
+ operator="in"
588
+ in="result6"
589
+ result="result7" />
590
+ <feGaussianBlur
591
+ id="feGaussianBlur3818"
592
+ stdDeviation="8"
593
+ result="result3"
594
+ in="result7" />
595
+ <feComposite
596
+ id="feComposite3820"
597
+ in2="result7"
598
+ operator="over"
599
+ result="result91" />
600
+ <feComposite
601
+ id="feComposite3822"
602
+ in2="result91"
603
+ operator="in"
604
+ in="result3"
605
+ result="result5" />
606
+ <feColorMatrix
607
+ id="feColorMatrix3824"
608
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0 "
609
+ result="result4" />
610
+ <feSpecularLighting
611
+ id="feSpecularLighting3826"
612
+ surfaceScale="3"
613
+ specularConstant="2"
614
+ specularExponent="45"
615
+ in="result4"
616
+ result="result11">
617
+ <fePointLight
618
+ id="fePointLight3828"
619
+ x="-5000"
620
+ y="-10000"
621
+ z="20000" />
622
+ </feSpecularLighting>
623
+ <feComposite
624
+ k4="0"
625
+ k3="0"
626
+ k2="0"
627
+ id="feComposite3830"
628
+ in2="result4"
629
+ operator="arithmetic"
630
+ k1="1"
631
+ result="result10" />
632
+ <feComposite
633
+ k4="0"
634
+ k1="0"
635
+ id="feComposite3832"
636
+ in2="result10"
637
+ operator="arithmetic"
638
+ k2="0.5"
639
+ k3="1"
640
+ in="result5"
641
+ result="result8" />
642
+ <feComposite
643
+ id="feComposite3834"
644
+ in2="result8"
645
+ result="result9" />
646
+ <feBlend
647
+ id="feBlend3836"
648
+ in2="result9"
649
+ mode="normal"
650
+ result="fbSourceGraphic" />
651
+ <feColorMatrix
652
+ result="fbSourceGraphicAlpha"
653
+ in="fbSourceGraphic"
654
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
655
+ id="feColorMatrix3838" />
656
+ <feGaussianBlur
657
+ id="feGaussianBlur3840"
658
+ stdDeviation="2.3"
659
+ in="fbSourceGraphicAlpha"
660
+ result="result0" />
661
+ <feMorphology
662
+ id="feMorphology3842"
663
+ in="fbSourceGraphicAlpha"
664
+ radius="6.6"
665
+ result="result1" />
666
+ <feGaussianBlur
667
+ id="feGaussianBlur3844"
668
+ stdDeviation="8.9"
669
+ in="result1" />
670
+ <feColorMatrix
671
+ id="feColorMatrix3846"
672
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
673
+ result="result91" />
674
+ <feComposite
675
+ id="feComposite3848"
676
+ in2="result91"
677
+ in="result0"
678
+ operator="out"
679
+ result="result2" />
680
+ <feGaussianBlur
681
+ id="feGaussianBlur3850"
682
+ stdDeviation="1.7"
683
+ result="result4" />
684
+ <feDiffuseLighting
685
+ id="feDiffuseLighting3852"
686
+ surfaceScale="10"
687
+ result="result92">
688
+ <feDistantLight
689
+ id="feDistantLight3854"
690
+ azimuth="225"
691
+ elevation="45" />
692
+ </feDiffuseLighting>
693
+ <feBlend
694
+ id="feBlend3856"
695
+ in2="fbSourceGraphic"
696
+ mode="multiply"
697
+ result="result93" />
698
+ <feComposite
699
+ id="feComposite3858"
700
+ in2="fbSourceGraphicAlpha"
701
+ operator="in"
702
+ result="result3" />
703
+ <feSpecularLighting
704
+ id="feSpecularLighting3860"
705
+ in="result4"
706
+ surfaceScale="5"
707
+ specularExponent="17.89999962"
708
+ result="result94">
709
+ <feDistantLight
710
+ id="feDistantLight3862"
711
+ azimuth="225"
712
+ elevation="45" />
713
+ </feSpecularLighting>
714
+ <feComposite
715
+ id="feComposite3864"
716
+ in2="result3"
717
+ operator="atop"
718
+ result="fbSourceGraphic" />
719
+ <feColorMatrix
720
+ result="fbSourceGraphicAlpha"
721
+ in="fbSourceGraphic"
722
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
723
+ id="feColorMatrix5042" />
724
+ <feGaussianBlur
725
+ id="feGaussianBlur5044"
726
+ in="fbSourceGraphicAlpha"
727
+ stdDeviation="2"
728
+ result="blur" />
729
+ <feColorMatrix
730
+ id="feColorMatrix5046"
731
+ result="bluralpha"
732
+ type="matrix"
733
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0 " />
734
+ <feOffset
735
+ id="feOffset5048"
736
+ in="bluralpha"
737
+ dx="4"
738
+ dy="4"
739
+ result="offsetBlur" />
740
+ <feMerge
741
+ id="feMerge5050"
742
+ result="fbSourceGraphic">
743
+ <feMergeNode
744
+ id="feMergeNode5052"
745
+ in="offsetBlur" />
746
+ <feMergeNode
747
+ id="feMergeNode5054"
748
+ in="fbSourceGraphic" />
749
+ </feMerge>
750
+ <feColorMatrix
751
+ result="fbSourceGraphicAlpha"
752
+ in="fbSourceGraphic"
753
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
754
+ id="feColorMatrix5056" />
755
+ <feGaussianBlur
756
+ id="feGaussianBlur5058"
757
+ in="fbSourceGraphicAlpha"
758
+ stdDeviation="3.1"
759
+ result="blur" />
760
+ <feColorMatrix
761
+ id="feColorMatrix5060"
762
+ result="bluralpha"
763
+ type="matrix"
764
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0 " />
765
+ <feOffset
766
+ id="feOffset5062"
767
+ in="bluralpha"
768
+ dx="4"
769
+ dy="4"
770
+ result="offsetBlur" />
771
+ <feMerge
772
+ id="feMerge5064"
773
+ result="fbSourceGraphic">
774
+ <feMergeNode
775
+ id="feMergeNode5066"
776
+ in="offsetBlur" />
777
+ <feMergeNode
778
+ id="feMergeNode5068"
779
+ in="fbSourceGraphic" />
780
+ </feMerge>
781
+ <feColorMatrix
782
+ result="fbSourceGraphicAlpha"
783
+ in="fbSourceGraphic"
784
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
785
+ id="feColorMatrix5070" />
786
+ <feGaussianBlur
787
+ id="feGaussianBlur5072"
788
+ in="fbSourceGraphicAlpha"
789
+ stdDeviation="3.1"
790
+ result="blur" />
791
+ <feColorMatrix
792
+ id="feColorMatrix5074"
793
+ result="bluralpha"
794
+ type="matrix"
795
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0 " />
796
+ <feOffset
797
+ id="feOffset5076"
798
+ in="bluralpha"
799
+ dx="7.5"
800
+ dy="8.4"
801
+ result="offsetBlur" />
802
+ <feMerge
803
+ id="feMerge5078"
804
+ result="fbSourceGraphic">
805
+ <feMergeNode
806
+ id="feMergeNode5080"
807
+ in="offsetBlur" />
808
+ <feMergeNode
809
+ id="feMergeNode5082"
810
+ in="fbSourceGraphic" />
811
+ </feMerge>
812
+ <feColorMatrix
813
+ result="fbSourceGraphicAlpha"
814
+ in="fbSourceGraphic"
815
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
816
+ id="feColorMatrix5084" />
817
+ <feGaussianBlur
818
+ id="feGaussianBlur5086"
819
+ in="fbSourceGraphicAlpha"
820
+ stdDeviation="3.1"
821
+ result="blur" />
822
+ <feColorMatrix
823
+ id="feColorMatrix5088"
824
+ result="bluralpha"
825
+ type="matrix"
826
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0 " />
827
+ <feOffset
828
+ id="feOffset5090"
829
+ in="bluralpha"
830
+ dx="7.5"
831
+ dy="8.4"
832
+ result="offsetBlur" />
833
+ <feMerge
834
+ id="feMerge5092">
835
+ <feMergeNode
836
+ id="feMergeNode5094"
837
+ in="offsetBlur" />
838
+ <feMergeNode
839
+ id="feMergeNode5096"
840
+ in="fbSourceGraphic" />
841
+ </feMerge>
842
+ </filter>
843
+ <filter
844
+ id="filter3291"
845
+ inkscape:label="Button"
846
+ x="0"
847
+ y="0"
848
+ width="1"
849
+ height="1"
850
+ inkscape:menu="Bevels"
851
+ inkscape:menu-tooltip="Soft bevel, slightly depressed middle"
852
+ color-interpolation-filters="sRGB">
853
+ <feGaussianBlur
854
+ id="feGaussianBlur3293"
855
+ stdDeviation="2.3"
856
+ in="SourceAlpha"
857
+ result="result0" />
858
+ <feMorphology
859
+ id="feMorphology3295"
860
+ in="SourceAlpha"
861
+ radius="6.6"
862
+ result="result1" />
863
+ <feGaussianBlur
864
+ id="feGaussianBlur3297"
865
+ stdDeviation="8.9"
866
+ in="result1" />
867
+ <feColorMatrix
868
+ id="feColorMatrix3299"
869
+ values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
870
+ result="result91" />
871
+ <feComposite
872
+ id="feComposite3301"
873
+ in2="result91"
874
+ in="result0"
875
+ operator="out"
876
+ result="result2" />
877
+ <feGaussianBlur
878
+ id="feGaussianBlur3303"
879
+ stdDeviation="1.7"
880
+ result="result4" />
881
+ <feDiffuseLighting
882
+ id="feDiffuseLighting3305"
883
+ surfaceScale="10"
884
+ result="result92">
885
+ <feDistantLight
886
+ id="feDistantLight3307"
887
+ azimuth="225"
888
+ elevation="45" />
889
+ </feDiffuseLighting>
890
+ <feBlend
891
+ id="feBlend3309"
892
+ in2="SourceGraphic"
893
+ mode="multiply"
894
+ result="result93" />
895
+ <feComposite
896
+ id="feComposite3311"
897
+ in2="SourceAlpha"
898
+ operator="in"
899
+ result="result3" />
900
+ <feSpecularLighting
901
+ id="feSpecularLighting3313"
902
+ in="result4"
903
+ surfaceScale="5"
904
+ specularExponent="17.9"
905
+ result="result94">
906
+ <feDistantLight
907
+ id="feDistantLight3315"
908
+ azimuth="225"
909
+ elevation="45" />
910
+ </feSpecularLighting>
911
+ <feComposite
912
+ id="feComposite3317"
913
+ in2="result3"
914
+ operator="atop" />
915
+ </filter>
916
+ </defs>
917
+ <sodipodi:namedview
918
+ id="base"
919
+ pagecolor="#ffffff"
920
+ bordercolor="#666666"
921
+ borderopacity="1.0"
922
+ inkscape:pageopacity="0.0"
923
+ inkscape:pageshadow="2"
924
+ inkscape:zoom="2"
925
+ inkscape:cx="229.32571"
926
+ inkscape:cy="22.418564"
927
+ inkscape:document-units="px"
928
+ inkscape:current-layer="layer1"
929
+ showgrid="false"
930
+ inkscape:window-width="1440"
931
+ inkscape:window-height="846"
932
+ inkscape:window-x="-4"
933
+ inkscape:window-y="-4"
934
+ inkscape:window-maximized="1" />
935
+ <metadata
936
+ id="metadata5663">
937
+ <rdf:RDF>
938
+ <cc:Work
939
+ rdf:about="">
940
+ <dc:format>image/svg+xml</dc:format>
941
+ <dc:type
942
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
943
+ <dc:title />
944
+ </cc:Work>
945
+ </rdf:RDF>
946
+ </metadata>
947
+ <g
948
+ id="layer1"
949
+ inkscape:label="Layer 1"
950
+ inkscape:groupmode="layer">
951
+ <text
952
+ xml:space="preserve"
953
+ style="font-size:56.51638031000000240px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
954
+ x="11.068031"
955
+ y="64.448509"
956
+ id="text2993"
957
+ sodipodi:linespacing="125%"
958
+ transform="matrix(1.3983171,0,0,1.9626391,-191.77679,61.849009)"
959
+ inkscape:transform-center-y="5.8333333"><tspan
960
+ sodipodi:role="line"
961
+ id="tspan2995"
962
+ x="11.068031"
963
+ y="64.448509"
964
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Beneath the Surface;-inkscape-font-specification:Beneath the Surface;" /></text>
965
+ <text
966
+ xml:space="preserve"
967
+ style="font-size:11.10945702px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Beneath the Surface;-inkscape-font-specification:Beneath the Surface"
968
+ x="127.53805"
969
+ y="47.868961"
970
+ id="text3090"
971
+ sodipodi:linespacing="125%"
972
+ transform="scale(0.85368729,1.1713891)"><tspan
973
+ sodipodi:role="line"
974
+ id="tspan3092"
975
+ x="127.53805"
976
+ y="47.868961"
977
+ style="font-size:9.6320343px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Beneath the Surface;-inkscape-font-specification:Beneath the Surface">Web Application security Scanner Framework</tspan></text>
978
+ <text
979
+ xml:space="preserve"
980
+ style="font-size:48.14813995000000091px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Beneath the Surface;-inkscape-font-specification:Beneath the Surface"
981
+ x="94.015717"
982
+ y="49.002491"
983
+ id="text4321"
984
+ sodipodi:linespacing="125%"
985
+ transform="scale(1.0832844,0.92311862)"><tspan
986
+ sodipodi:role="line"
987
+ id="tspan4323"
988
+ x="94.015717"
989
+ y="49.002491">arachni</tspan></text>
990
+ <path
991
+ d=""
992
+ id="path5056"
993
+ inkscape:connector-curvature="0" />
994
+ <path
995
+ inkscape:connector-curvature="0"
996
+ d="m 81.302291,0.35009403 c -0.03124,-0.003599 -0.105043,0.0188484 -0.240281,0.0636803 -0.159022,0.0527126 -0.385759,0.12979944 -0.500585,0.17367692 -0.234754,0.0897042 -1.261475,0.68834481 -1.261475,0.73523431 0,0.075053 -0.327355,0.2190655 -0.507259,0.219991 -0.168262,8.941e-4 -0.178608,0.010785 -0.04005,0.063682 0.08185,0.03125 0.110784,0.049696 0.08009,0.057893 -0.0019,5.588e-4 -0.0048,-5.589e-4 -0.0067,0 -0.01031,0.00211 -0.02679,0.00563 -0.04672,0.00578 -0.04575,4.471e-4 -0.08201,0.015654 -0.106792,0.040523 -0.360003,0.1104436 -0.644178,0.2033935 -0.867681,0.3241979 -0.0126,-0.026722 -0.03091,-0.056102 -0.04672,-0.075259 -0.0639,-0.077411 -0.493292,-0.056123 -0.600701,-0.052104 -0.539702,0.020193 -1.034886,0.079435 -1.575176,0.1331525 -0.178144,0.021216 -0.355852,0.04785 -0.533957,0.069471 0.666274,-0.2916536 1.336872,-0.583305 1.942272,-0.9610136 0.0725,-0.045234 -0.05219,-0.1464047 -0.08009,-0.21999205 -0.645979,0.0525416 -1.288646,0.21139155 -1.915573,0.34735495 -0.502825,0.1090488 -1.007569,0.2200725 -1.50843,0.3357759 -0.0033,-0.011803 -0.0015,-0.02432 -0.0067,-0.034735 0.01215,-0.054536 5.16e-4,-0.1193771 -0.04672,-0.1852559 -0.04213,-0.05877 -0.151301,-0.041646 -0.226931,-0.063683 -1.445743,0.110096 -2.909419,0.5043361 -4.264987,0.9378589 -0.539274,0.1891265 -0.748329,0.2594178 -0.954447,0.3473538 -0.430709,0.1071901 -0.861088,0.2125026 -1.288172,0.3299864 -0.818262,0.225086 -2.419074,0.7188688 -3.210442,0.9957505 -0.503963,0.1763258 -1.009557,0.3556442 -1.49508,0.5673449 -0.97924,0.4269723 -1.936501,0.8905732 -2.896719,1.3488937 -0.390319,0.1863021 -0.769681,0.3902657 -1.154683,0.5847133 -0.542894,0.3169063 -1.145544,0.6320366 -1.62857,1.0246963 -0.151281,0.1229794 -0.311865,0.2484457 -0.400469,0.4110375 -0.135977,0.2495276 -0.0473,0.4290331 0.233608,0.4631388 -0.02059,0.026621 -0.05359,0.04323 -0.113467,0.052102 -0.05338,0.00791 -0.115591,0.033289 -0.160187,0.063683 -0.0467,0.015432 -0.09331,0.031126 -0.140163,0.046314 -0.01147,-5.588e-4 -0.02223,0.00149 -0.03337,0 -0.64888,0.068072 -1.287668,0.2152162 -1.908899,0.3878783 -0.708421,0.2066873 -1.111076,0.4348551 -1.848827,0.8452298 -0.09606,0.053436 -0.0908,0.1673722 -0.01335,0.2257804 0.02801,0.02113 0.07671,0.00706 0.113466,0.011578 0.496743,-0.095316 0.976062,-0.2397234 1.455034,-0.3878783 -0.01271,0.017747 0.0055,0.042554 0.06007,0.057892 0.03751,0.01054 0.01414,0.01319 -0.0534,0.00578 -0.06752,-0.00739 -0.126816,0.00132 -0.126816,0.017358 0,0.0387 -0.200874,0.1563094 -0.266977,0.1563094 -0.02859,0 -0.04476,0.045221 -0.03337,0.098416 0.01929,0.090013 -0.01642,0.1132011 -0.153512,0.098417 -0.02619,-0.0028 -0.03195,0.01767 -0.01335,0.04631 0.01861,0.02864 -0.0017,0.07766 -0.04672,0.104207 -0.04493,0.02655 -0.08095,0.06594 -0.08009,0.08684 9.02e-4,0.02089 0.03431,0.01304 0.07342,-0.01736 0.04665,-0.03628 0.07419,-0.045 0.113467,-0.02895 -0.08199,0.03883 -0.164973,0.07694 -0.246956,0.115785 -0.01124,-0.06794 -0.11959,-0.04519 -0.133488,0.03474 -0.0019,0.0107 -0.0089,0.02679 -0.01335,0.04052 -0.0778,0.03689 -0.155833,0.07306 -0.233605,0.109997 -0.659521,0.232592 -1.368266,0.440159 -1.835479,0.891543 -0.316399,0.166201 -0.606173,0.330798 -0.981147,0.573135 -0.109642,0.07086 -0.809566,0.535539 -0.914402,0.717866 -0.05287,0.09197 -0.0088,0.204136 -0.01335,0.30683 0.06509,0.01851 0.132146,0.06441 0.200233,0.05789 0.248812,-0.02386 0.937826,-0.314386 1.07459,-0.370512 0.07343,-0.03013 0.147153,-0.06193 0.220256,-0.09263 -0.02297,0.111497 -0.0446,0.220613 -0.07342,0.329988 -0.0321,0.159752 -0.06272,0.324897 -0.09344,0.486296 -0.02509,0.0051 -0.05249,0.01868 -0.07342,0.02895 -0.05875,0.02881 -0.07674,0.02258 -0.08009,-0.01158 -0.0034,-0.03528 -0.01053,-0.03375 -0.03337,0 -0.01578,0.02329 0.01777,0.0624 0.07342,0.08684 0.0052,0.0023 0.0021,0.0037 0.0067,0.0058 -0.05433,0.02687 -0.06002,0.02752 -0.100118,0.04631 -0.144902,0.008 -0.342529,0.02786 -0.373769,0.04631 -0.04295,0.02538 0.113927,0.07444 0.186885,0.05789 0.04503,-0.0102 0.0582,0.01336 0.04005,0.06947 -0.01574,0.04864 -0.0026,0.08105 0.03337,0.08105 0.03351,0 0.06674,0.01972 0.06674,0.04631 0,0.0266 -0.04175,0.0521 -0.08677,0.0521 -0.04502,0 -0.08009,0.0237 -0.08009,0.05789 0,0.0342 -0.03315,0.0862 -0.07342,0.109997 -0.07963,0.04705 -0.164259,0.137148 -0.186885,0.191044 -0.108915,0.02894 -0.147509,0.06351 -0.166862,0.156311 -0.0076,0.0145 -0.0125,0.02388 -0.02001,0.04052 -0.0372,0.08218 -0.101372,0.150522 -0.140164,0.150522 -0.03879,0 -0.06524,0.0099 -0.06007,0.02316 0.02779,0.07105 -0.08067,0.399087 -0.133489,0.399457 -0.04432,4.47e-4 -0.04588,0.0059 0,0.02316 0.03691,0.01388 0.07725,0.157525 0.100117,0.341566 0.01262,0.101575 0.02082,0.160628 0.02001,0.208413 -0.04993,-0.173859 -0.171139,-0.571779 -0.220258,-0.555768 -1.647338,0.536963 -1.83773,0.292953 -1.89555,1.128904 0.0012,0.420079 0.03787,0.83757 0.08009,1.256265 -0.139564,0.01887 -0.273703,0.03981 -0.380444,0.06368 -0.132528,-0.296817 -0.358536,-0.569608 -0.553981,-0.827862 -0.08243,-0.09837 -0.157908,-0.201315 -0.246956,-0.295251 -0.294997,-0.311197 -0.69676,-0.66699 -1.021192,-0.943647 -0.704707,-0.600928 -1.442382,-1.173627 -2.169204,-1.75414 -0.52259,-0.400427 -1.026269,-0.818744 -1.575173,-1.192585 -0.188705,-0.128522 -0.360757,-0.239409 -0.580679,-0.318409 -0.395727,0.238107 -0.813771,0.449214 -1.208079,0.68892 -0.02698,-0.0094 -0.05314,-0.0195 -0.08009,-0.02895 -0.0065,-0.0024 -0.01367,-0.0035 -0.02001,-0.0058 l -0.0534,-0.04052 0,0.01736 c -0.188891,-0.0694 -0.465207,-0.167912 -0.614052,-0.219991 -0.150881,-0.05604 -0.303577,-0.110603 -0.453863,-0.167889 0.05111,0.0044 0.102392,0.0073 0.153513,0.01158 0.03994,-0.01538 0.07999,-0.0313 0.120139,-0.04631 0.08205,0.03486 0.16453,0.0843 0.233607,0.04631 0.04103,-0.02257 -0.04466,-0.05777 -0.106792,-0.09263 0.629413,-0.229532 1.277244,-0.429433 1.868852,-0.723655 0.06878,-0.0342 -0.0498,-0.147755 -0.12014,-0.179467 -0.107118,-0.0483 -0.241025,-0.01925 -0.360422,-0.03473 C 38.554872,11.266777 37.480756,11.085156 36.396476,10.938589 34.846614,10.6988 33.294156,10.460854 31.744372,10.220723 31.127717,10.019356 30.509243,9.8171002 29.888869,9.6244308 L 29.475052,9.8675787 C 27.266803,9.5263474 25.056999,9.1829937 22.847307,8.8486708 21.909884,8.701324 20.97379,8.5555564 20.037355,8.4029006 18.225057,8.0386957 16.399156,7.7241756 14.570965,7.4245183 14.377316,7.3855273 14.183646,7.3430849 13.990286,7.3029438 13.767889,7.2595469 13.544489,7.2217753 13.322839,7.1755798 12.302235,6.9628705 12.973285,6.8703755 11.213707,8.0902817 c -0.03413,0.023654 0.0042,0.027735 0.06675,0.028945 -0.07058,0.076936 0.275089,0.028217 0.407143,0.046314 0.238707,0.032714 0.475753,0.069924 0.714168,0.1042059 2.238967,0.3823481 4.478834,0.743836 6.727865,1.0767998 1.398033,0.2978243 2.784461,0.6335566 4.158193,1.0073272 0.706835,0.210591 1.097647,0.324972 1.508431,0.451561 0.05971,0.02424 0.116509,0.04935 0.153511,0.07526 0.864404,0.398723 1.789593,0.690485 2.71651,0.961014 0.58569,0.159226 0.738134,0.224513 1.268148,-0.625238 0.101749,0.02216 0.205377,0.04115 0.307025,0.06368 0.04143,0.0179 0.0793,0.03151 0.09344,0.02316 0.0089,0.002 0.01783,0.0038 0.0267,0.0058 0.0019,0.0038 0.0067,0.0058 0.0067,0.01158 0,0.02177 0.0214,0.0324 0.04672,0.02316 0.01707,-0.0062 0.07314,-8.95e-4 0.140164,0.0058 0.08917,0.02013 0.177901,0.04323 0.266979,0.06368 0.02348,0.01475 0.04167,0.03115 0.04672,0.0521 0.01444,0.05994 0.0462,0.06519 0.200233,0.05789 0.101192,-0.0048 0.217604,0.0138 0.260305,0.03474 0.03899,0.01911 0.143705,0.02834 0.240281,0.02895 0.497566,0.120025 0.988683,0.243575 1.481732,0.376302 0.0047,0.01234 0.02006,0.01678 0.04672,0.01736 0.07991,0.02159 0.160511,0.04171 0.24028,0.06368 -0.0084,0.04831 0.0061,0.08684 0.03337,0.08684 0.02858,0 0.05706,-0.01836 0.06007,-0.04052 0.003,-0.02216 0.01971,-0.0025 0.04005,0.04052 0.03786,0.08005 0.18794,0.133914 0.160187,0.05789 -0.0064,-0.01743 0.03163,-0.03134 0.100118,-0.04052 0.699693,0.198885 1.389889,0.420795 2.075759,0.654184 -0.01568,0.0193 -0.04005,0.04982 -0.04005,0.0521 0,0.0013 0.03122,-5.7e-5 0.04005,0 -0.868278,0.367969 -1.023413,0.425871 -0.654098,0.613659 -0.02289,0.01651 0.0027,0.01686 0.04005,0.01736 0.101688,0.04977 0.217758,0.107641 0.380445,0.185255 1.385933,0.625782 2.765867,1.264791 4.124819,1.933606 0.02961,0.02868 0.05708,0.05825 0.08677,0.08684 0.717958,0.671172 1.581662,1.207119 2.362762,1.817822 l 0.160187,0.144731 0.654099,-0.347355 c 0.798135,0.446674 1.588374,0.909125 2.349413,1.400998 -0.432929,0.124546 -0.545088,0.234284 -0.433841,0.706286 0.142456,0.435701 0.308557,0.865149 0.487237,1.291001 -0.04159,0.084 -0.07538,0.188018 -0.08677,0.283674 -0.01696,0.142439 -0.05186,0.214643 -0.126816,0.254727 -0.08167,0.04367 -0.105509,0.04113 -0.106792,0.0058 -0.001,-0.02965 -0.02712,-0.02297 -0.06674,0.01736 -0.04838,0.04924 -0.03764,0.07064 0.04005,0.104206 0.05347,0.0231 0.122445,0.04599 0.153513,0.0521 0.03172,0.0062 0.03792,0.02861 0.01335,0.0521 -0.03557,0.034 -0.05532,0.03555 -0.09344,0 -0.03656,-0.03408 -0.04587,-0.03237 -0.04672,0.01158 -6.44e-4,0.04154 0.04408,0.05789 0.166863,0.05789 l 0.166863,0 -0.09344,0.09842 c -0.0656,0.06562 -0.142867,0.09842 -0.233606,0.09842 -0.161884,0 -0.14154,0.01195 0.06007,0.04052 0.115883,0.01643 0.153511,0.01065 0.153511,-0.02895 0,-0.04679 0.0082,-0.04645 0.08677,0 0.04744,0.02804 0.1059,0.04481 0.133488,0.03474 0.0276,-0.01007 0.05456,0.01115 0.06007,0.0521 0.02357,0.174185 0.02962,0.208811 0.06007,0.254726 0.01764,0.0266 0.04447,0.07453 0.0534,0.109997 0.0089,0.03546 0.03424,0.07572 0.06007,0.08684 0.02582,0.01112 0.09861,0.0095 0.160187,0 0.109825,-0.01697 0.109063,-0.01336 0.0067,-0.06368 -0.115523,-0.05678 -0.252367,-0.257577 -0.20691,-0.301041 0.01596,-0.01525 -0.02147,-0.06714 -0.08009,-0.115784 -0.107762,-0.08943 -0.118644,-0.106828 -0.12014,-0.179468 -6.45e-4,-0.02687 -0.01813,-0.02066 -0.0534,0.01158 -0.03699,0.0338 -0.05254,0.03468 -0.0534,0.0058 -5.15e-4,-0.02272 0.0327,-0.04867 0.07342,-0.05789 0.087,-0.01972 0.07202,-0.174803 -0.02001,-0.208411 -0.04465,-0.0163 -0.03464,-0.03323 0.0267,-0.06947 0.04723,-0.02791 0.08677,-0.06216 0.08677,-0.07526 0,-0.01308 -0.02031,-0.01745 -0.04005,-0.0058 -0.08427,0.04979 -0.180211,-0.05856 -0.180211,-0.202624 0,-0.07567 0.02794,-0.148545 0.08677,-0.237359 0.279118,0.657938 0.57857,1.308271 0.88103,1.956764 -0.03473,0.02483 -0.06006,0.0413 -0.06006,0.05212 0,0.0166 -0.03505,0.02227 -0.07342,0.01736 -0.05651,-0.04987 -0.122114,-0.152053 -0.09345,-0.179467 0.01664,-0.0159 0.0057,-0.02895 -0.0267,-0.02895 -0.03589,0 -0.04808,-0.03071 -0.0267,-0.08105 0.03785,-0.08911 -0.0883,-0.184896 -0.266978,-0.202624 -0.114403,-0.01135 -0.117056,0.01438 -0.01335,0.121573 0.107786,0.111392 0.102907,0.164287 -0.01335,0.138942 -0.05252,-0.01145 -0.111445,-0.03887 -0.133491,-0.05789 -0.02416,-0.02085 -0.03919,-0.01085 -0.04005,0.02316 -5.15e-4,0.03103 0.03508,0.05789 0.08009,0.05789 0.04502,0 0.07924,0.02686 0.08009,0.05789 0.0024,0.07749 0.124084,0.16122 0.206909,0.144733 0.0988,-0.01967 0.08424,-0.0697 -0.0267,-0.08684 -0.07565,-0.0117 -0.07219,-0.01441 0.02001,-0.01736 0.07379,-0.0024 0.128749,0.02281 0.146839,0.06368 0.01619,0.03656 -0.0043,0.06257 -0.04005,0.06368 -0.0347,0.001 -0.0099,0.01382 0.0534,0.02895 0.0097,0.0023 0.01788,0.0083 0.0267,0.01158 -0.0037,0.01817 -0.02228,0.03347 -0.0534,0.04052 -0.04433,0.01006 -0.06867,0.03172 -0.05339,0.04631 0.01527,0.0146 -0.01963,0.03498 -0.08009,0.04631 -0.06044,0.01134 -0.113465,0.04783 -0.113465,0.08105 0,0.03322 -0.02542,0.0684 -0.06007,0.08105 -0.03903,0.01424 -0.05082,0.01149 -0.0267,-0.01158 0.02612,-0.02498 -0.01741,-0.04053 -0.126813,-0.04053 -0.01871,0 -0.03162,0.005 -0.04672,0.0058 -0.02061,-0.05683 -0.03758,-0.111527 -0.06007,-0.167889 -0.405546,-0.631854 -0.128261,-0.309428 -1.615222,0.492085 -0.253204,0.061 -0.357148,0.0766 -0.320375,0.162099 -0.0073,0.0036 -0.01265,0.0079 -0.02001,0.01158 -0.0012,7.83e-4 6.44e-4,0.0144 0,0.01736 -0.02666,0.0097 -0.05345,0.01919 -0.08009,0.02895 -0.203095,-0.03844 -0.405946,-0.07687 -0.607377,-0.121573 1.29e-4,-0.02898 0.0164,-0.04798 0.06007,-0.05789 0.0482,-0.01093 0.08677,-0.03048 0.08677,-0.04631 0,-0.04501 -0.215452,-0.03368 -0.220258,0.01158 -0.0035,0.03224 -0.01135,0.03224 -0.03337,0 -0.01514,-0.02216 -0.08767,-0.04052 -0.160188,-0.04052 -0.09479,0 -0.126816,-0.01806 -0.126816,-0.06368 0,-0.04329 0.02373,-0.0591 0.08009,-0.04631 0.05902,0.01337 0.07086,0.0082 0.04672,-0.02895 -0.01856,-0.02857 -0.05532,-0.0521 -0.08677,-0.0521 -0.03146,0 -0.01523,-0.03338 0.04005,-0.06947 0.05528,-0.03609 0.134134,-0.05524 0.173537,-0.04631 0.03941,0.0089 0.07342,-1.12e-4 0.07342,-0.01736 0,-0.01719 -0.06337,-0.02895 -0.140164,-0.02895 -0.07679,0 -0.124539,-0.01778 -0.106792,-0.03473 0.01773,-0.01695 0.06941,-0.02156 0.113466,-0.01158 0.09712,0.02202 0.103202,-0.03839 0.0067,-0.06368 -0.04578,-0.01199 -0.04157,-0.01929 0.01335,-0.01736 0.147666,0.0052 0.220258,-0.0037 0.220258,-0.02895 0,-0.01365 -0.100215,-0.02316 -0.220258,-0.02316 -0.177812,0 -0.213584,0.01393 -0.213584,0.06368 0,0.05158 -0.03186,0.05226 -0.180209,0.03474 -0.131529,-0.01554 -0.160066,-0.01017 -0.113466,0.01736 0.03425,0.02022 0.04958,0.05608 0.03337,0.08105 -0.01621,0.02497 0.03,0.07985 0.100116,0.115785 0.106806,0.05473 0.113825,0.06755 0.04672,0.09263 -0.06916,0.02589 -0.06843,0.02858 0,0.02895 0.05904,4.47e-4 0.0596,0.01319 0.01335,0.04053 -0.04626,0.02733 -0.03844,0.0465 0.02001,0.08105 -0.399931,-0.09443 -0.80054,-0.193424 -1.201404,-0.283674 -0.366888,-0.08189 -0.732897,-0.155421 -1.101287,-0.23157 l 1.43501,-0.758391 c -0.210881,-0.176242 -0.547097,-0.212321 -0.820959,-0.260514 -1.11108,-0.195537 -2.239062,-0.307487 -3.363932,-0.422616 -3.613597,-0.356526 -7.234372,-0.601208 -10.866033,-0.769969 -1.225033,-0.04803 -2.457095,-0.121703 -3.684306,-0.121575 -0.288953,-0.04393 -0.578664,-0.08955 -0.867682,-0.133152 -0.211987,-0.03198 -0.42179,-0.06217 -0.634074,-0.09263 -0.120398,-0.01727 -0.23948,-0.03218 -0.360421,-0.04631 -0.04319,-0.0051 -0.09724,-0.03257 -0.13349,-0.01158 -0.06592,0.03817 -0.124655,0.06954 -0.186884,0.104206 -0.009,0.0035 -0.01766,0.01235 -0.0267,0.01736 -0.136267,0.07547 -0.268707,0.148325 -0.387121,0.208412 -0.008,-7.82e-4 -0.02633,-0.0052 -0.03337,-0.0058 -1.05605,-0.09456 -2.111661,-0.191627 -3.170373,-0.260517 -0.743989,-0.06734 -0.05789,-0.0083 -0.714167,-0.0521 -0.08292,-0.0055 -0.179717,-0.05622 -0.253629,-0.02316 -0.05604,0.02507 -0.111076,0.04971 -0.166862,0.07526 -0.14782,-0.03124 -0.259833,0.04294 -0.487237,0.23157 -0.4116,0.202657 -0.813384,0.419905 -1.201404,0.654185 -0.04138,0.02498 0.03688,0.08748 0.08009,0.109996 0.07287,0.03797 0.164971,0.04418 0.246955,0.06368 2.674712,0.44263 5.396993,0.631884 8.076108,1.053642 0.670341,0.100496 1.340089,0.193666 2.009014,0.30104 1.535023,0.246397 3.063172,0.538996 4.585359,0.839441 -0.215975,0.09967 -0.435485,0.194871 -0.654098,0.289463 0.03097,0.05842 0.03312,0.142098 0.09344,0.179465 0.06624,0.04104 0.159486,0.02041 0.240282,0.02895 0.167597,0.01773 0.339336,0.03107 0.507258,0.04631 1.08081,0.09812 2.15913,0.192458 3.237117,0.312619 2.73961,0.313535 5.471868,0.675582 8.196247,1.076799 0.501668,0.06985 0.745661,0.109773 1.214752,0.167888 0.08576,0.01063 0.178684,0.06662 0.25363,0.02895 0.02674,-0.01345 0.05351,-0.02687 0.08009,-0.04053 0.200174,0.03906 0.276319,0.03904 0.393795,-0.04631 0.0083,0.09156 0.01674,0.191137 0.06007,0.272095 0.01905,0.03558 0.150899,0.188473 0.226931,0.156309 0.0064,0.03082 0.01355,0.06181 0.02001,0.09263 -0.05651,0.05388 -0.05186,0.06865 0.01335,0.09263 0.0019,7.82e-4 0.0046,-7.82e-4 0.0067,0 0.06386,0.30123 0.13107,0.602776 0.200235,0.903123 -0.0027,0.0017 -0.0037,0.0046 -0.0067,0.0058 -0.03455,0.01308 -0.05456,0.113978 -0.04672,0.248938 0.0098,0.168366 -0.0012,0.2312 -0.0534,0.23157 -0.04982,4.47e-4 -0.0446,0.0068 0.01335,0.02894 0.06015,0.02297 0.05949,0.03437 0.0067,0.03474 -0.04694,4.47e-4 -0.06268,0.02156 -0.04005,0.06368 0.01986,0.03699 0.01339,0.06368 -0.02001,0.06368 -0.03203,0 -0.06007,0.02446 -0.06007,0.0521 0,0.02834 0.02624,0.0413 0.06007,0.02895 0.04217,-0.01539 0.04352,-0.0017 0,0.04631 -0.04818,0.05317 -0.04785,0.0691 0.0067,0.06947 0.05422,4.47e-4 0.0572,0.0017 0,0.02316 -0.05159,0.01932 -0.05545,0.03673 -0.01335,0.0521 0.02815,0.01028 0.04679,0.0817 0.0534,0.162099 -0.03832,0.01771 -0.0288,0.05609 -0.01335,0.162099 -0.0137,0.05016 -0.03675,0.07898 -0.08009,0.09842 -0.05831,0.02616 -0.06835,0.04576 -0.0267,0.04631 0.03751,5.59e-4 0.06674,0.0151 0.06674,0.03474 0,0.01964 -0.03509,0.02758 -0.08009,0.01736 -0.04986,-0.0113 -0.08009,1.04e-4 -0.08009,0.02895 0,0.02604 0.03508,0.04631 0.08009,0.04631 0.04501,0 0.08009,0.01595 0.08009,0.03474 0,0.0028 -0.0057,0.0035 -0.0067,0.0058 -0.02302,-0.03503 -0.08844,-0.0289 -0.260305,0.01736 -0.131295,0.03534 -0.2407,0.08855 -0.266978,0.127363 -0.0044,5.59e-4 -0.0089,-5.59e-4 -0.01335,0 -0.02875,0.0032 -0.05802,0.0026 -0.08677,0.0058 -0.0044,-0.0036 -0.0089,-0.0074 -0.01335,-0.01158 -0.02186,-0.02041 -0.06673,-0.03115 -0.120142,-0.04631 l 0.467214,-0.324198 c -0.252556,0.102915 -0.50654,0.194399 -0.767564,0.277884 -0.129221,-0.0061 -0.24028,0.0023 -0.24028,0.04053 0,0.0086 0.01745,0.0159 0.04005,0.02316 -0.05005,0.01521 -0.103266,0.02578 -0.153513,0.04052 -0.02211,-0.02011 -0.05161,-0.0387 -0.08677,-0.05789 -0.297554,0.02081 -0.118942,-0.0013 -0.480561,0.08105 -0.554076,0.12615 -1.106716,0.261913 -1.655268,0.405247 -0.539256,0.168013 -0.832711,0.262495 -1.134659,0.411036 -0.0366,-0.0082 -0.07765,-0.01736 -0.126816,-0.01736 -0.124924,0 -0.220258,0.04667 -0.220258,0.104207 0,0.04225 0.02508,0.06335 0.06674,0.06368 -0.02752,0.01608 -0.05793,0.03465 -0.08677,0.0521 -0.04102,5.59e-4 -0.08351,-8.94e-4 -0.126815,-0.0058 -0.354048,-0.03999 -0.47906,0.09496 -0.160187,0.173679 0.0067,0.0017 0.0071,0.0042 0.01335,0.0058 -0.0051,0.0033 -0.01487,0.0082 -0.02001,0.01158 -0.03107,0.0079 -0.06236,0.0153 -0.09344,0.02316 -0.03748,-0.0017 -0.06503,-0.0032 -0.113466,-0.0058 -0.255084,-0.01382 -0.460538,0.0023 -0.460538,0.03474 0,0.03242 0.05847,0.06088 0.13349,0.06368 0.03343,0.0013 0.04045,0.0035 0.0534,0.0058 -0.177808,0.0444 -0.355949,0.08932 -0.533956,0.133151 -0.02735,-8.94e-4 -0.05021,0.0076 -0.06675,0.01736 -0.135425,0.03329 -0.271642,0.06536 -0.407142,0.09842 0.03107,-0.02971 0.0076,-0.07614 -0.0534,-0.09842 -0.061,-0.02227 -0.106791,-0.001 -0.106791,0.04631 0,0.02996 -0.04106,0.07515 -0.100118,0.115785 -0.40925,0.09945 -0.818823,0.202073 -1.228101,0.30104 -0.190806,0.01391 -0.380345,0.06322 -0.487237,0.115786 -0.05554,0.01349 -0.111331,0.02701 -0.166861,0.04052 -0.253154,0.06177 -0.507382,0.118766 -0.760891,0.179466 -0.02646,-0.0057 -0.05206,-0.01658 -0.06674,-0.04052 -0.05996,-0.09785 -0.353746,-0.10736 -0.353746,-0.01158 0,0.03756 -0.06327,0.0488 -0.133489,0.02316 -0.08584,-0.03135 -0.100256,-0.01425 -0.0534,0.05789 0.0455,0.07006 0.01121,0.109996 -0.09344,0.109996 -0.06666,0 -0.109509,0.02166 -0.13349,0.05789 -1.123329,0.264097 -2.243903,0.528806 -3.370606,0.781549 -0.05098,-0.03063 -0.155117,-0.01784 -0.186885,-0.01736 -0.08436,0.01393 -0.182079,-7.82e-4 -0.253629,0.04052 -0.387532,0.223128 -0.781042,0.444978 -1.16136,0.677342 -0.03225,0.0024 -0.06618,0.009 -0.08677,0.01158 -0.170467,0.02127 -0.334517,0.07042 -0.500585,0.109995 -0.381377,0.09087 -1.378987,0.354 -1.70199,0.439982 -1.912654,0.49871 -3.829943,0.99367 -5.699995,1.603621 -0.05812,0.0035 -0.115428,0.0091 -0.173536,0.01158 -0.0087,0.0017 -0.01171,0.0042 -0.02001,0.0058 -0.03701,7.82e-4 -0.0795,4.4e-5 -0.100115,0 -0.01858,-5.5e-5 -0.03836,-0.0095 -0.0534,0 -0.02705,0.01702 -0.04695,0.02983 -0.07342,0.04631 -0.212796,0.04651 -0.247034,0.07603 -0.433841,0.22578 -0.06676,0.02339 -0.133626,0.04571 -0.200233,0.06947 -0.699279,0.246419 -1.416012,0.482412 -2.075759,0.804705 -0.703647,0.343737 -1.422799,0.666461 -2.095784,1.053642 -0.08569,0.0493 -0.137549,0.148537 -0.146839,0.23736 -0.0054,0.0517 0.07169,0.08532 0.106791,0.127362 0.537703,0.01688 1.035732,-0.108101 1.561826,-0.202623 0.332101,-0.05967 0.662502,-0.119358 0.994496,-0.179468 0.14433,0.0067 0.296017,-0.0067 0.413817,-0.0058 0.215477,0.0035 0.432942,-0.0017 0.647423,-0.01158 -0.01732,0.0085 -0.03608,0.01467 -0.05339,0.02316 -0.226105,0.110684 -0.585571,0.218406 -0.467213,0.509453 0.03032,0.07456 0.139653,0.07298 0.233605,0.05789 -0.012,0.01931 -0.01803,0.03523 -0.0067,0.04631 0.02725,0.02659 -0.0063,0.0521 -0.07342,0.0521 -0.0671,0 -0.09049,0.02821 -0.0534,0.06368 0.01854,0.01773 0.02324,0.03463 0.01335,0.04631 -0.02217,0.0061 -0.04461,0.01113 -0.06675,0.01736 -0.03356,0 -0.05607,0.0064 -0.06674,0.01736 -0.08235,0.02359 -0.165038,0.0447 -0.246956,0.06947 0.0526,-0.05773 0.09803,-0.111151 0.04672,-0.09842 -0.02063,0.0051 -0.03333,0.0067 -0.05339,0.01158 0.0037,-0.0043 0.0096,-0.0073 0.01335,-0.01158 0.02694,-0.02122 0.08658,-0.06951 0.106791,-0.08684 -0.131563,0.05365 -0.262323,0.108168 -0.393793,0.162098 -1.317708,0.303025 -1.15596,0.116836 -1.561826,0.619449 -0.0098,0.01299 -0.01696,0.02751 -0.0267,0.04053 -0.05724,0.02005 -0.116283,0.03798 -0.173535,0.05789 -1.712598,0.694811 -1.231967,0.470678 -3.590865,1.661513 -0.24857,0.125484 -0.4848241,0.268482 -0.7208428,0.411036 -0.2311288,0.139598 -0.6859957,0.355127 -0.7208423,0.671552 -0.00688,0.06253 0.096868,0.09348 0.1468378,0.138942 0.1462577,-0.03133 0.297876,-0.05637 0.440515,-0.09842 0.5181793,-0.152753 1.2582053,-0.443612 1.7620593,-0.642607 -0.730944,0.408159 -1.4556338,0.823392 -2.1892246,1.227319 -0.5212129,0.299157 -0.9196863,0.519697 -1.4216622,0.827862 -0.1458705,0.08955 -0.2939838,0.174523 -0.4271652,0.277885 -0.065602,0.05087 -0.3719515,0.291795 -0.086768,0.387878 -0.062299,0.06023 -0.059257,0.08919 0.040046,0.05789 -0.083966,0.04675 -0.5599926,0.308335 -0.5740045,0.38209 -0.033061,0.173939 0.017621,0.189586 0.1201414,0.254727 0.2539028,-0.0844 0.4840871,-0.208892 0.7208423,-0.324198 0.1329095,-0.06473 0.2667711,-0.127595 0.4004673,-0.191044 0.072574,0.05608 0.1016664,0.196466 0.1201413,0.260515 -0.2500213,0.1727 -0.4759126,0.328443 -0.774238,0.538401 -1.0531442,0.741189 -2.0900943,1.502086 -3.1236519,2.263595 -0.074287,0.05851 -0.7214269,0.548963 -0.8543319,0.706286 -0.034301,0.04059 -0.086631,0.108205 -0.046722,0.144731 0.079252,0.07253 0.2150504,0.144717 0.3203751,0.104208 1.1083911,-0.426303 1.755176,-0.82877 2.6364152,-1.354684 C 6.6805986,46.219507 7.2122532,45.86734 7.7363,45.50605 c -0.050816,0.148267 -0.1097043,0.299583 -0.1668617,0.445773 -0.030611,0.02383 -0.063096,0.04539 -0.093442,0.06947 -0.010766,0.01486 -0.038681,0.03218 -0.026698,0.04631 0.017407,0.02052 0.035626,0.03466 0.053396,0.0521 -0.042459,0.125396 -0.071651,0.273969 0.00667,0.364722 -0.071919,0.0474 -0.1417703,0.09713 -0.2135833,0.144731 -0.3040929,0.263346 -0.6960031,0.420072 -1.0278675,0.648395 -0.1936779,0.127478 -0.2998455,0.291986 -0.3604211,0.480509 -0.00929,0.0078 -0.023346,0.02044 -0.033372,0.02895 -0.1675951,0.03755 -0.3499264,0.123919 -0.3670968,0.214202 -0.057775,0.03101 -0.1126822,0.06166 -0.1601875,0.08684 -0.029668,-0.0237 -0.075125,-0.04768 -0.1201398,-0.05789 -0.090027,-0.02041 -0.1601875,-0.0038 -0.1601875,0.03473 0,0.03855 -0.1599416,0.154744 -0.3537471,0.254728 -0.380858,0.196482 -0.3619397,0.266305 0.07342,0.266305 0.032317,0 0.059209,0.0032 0.086768,0.0058 -0.078691,0.04516 -0.090379,0.06037 -0.033372,0.06368 -0.00296,0.0019 -0.00368,0.004 -0.00667,0.0058 -0.00506,0.003 0.012254,0.0015 0.020012,0 0.04122,8.94e-4 0.105267,-0.007 0.2002352,-0.01158 0.00829,0.0096 0.013348,0.01762 0.013348,0.02895 0,0.03091 0.019009,0.05461 0.053396,0.06368 l -0.5339568,0.335776 c 0.046943,-4.47e-4 0.093222,4.47e-4 0.1401638,0 0.2628622,-0.0038 0.529515,-0.003 0.7875862,-0.0521 0.020612,-0.0046 0.039545,-0.01239 0.060072,-0.01736 -0.1354653,0.434463 -0.1975762,0.883449 -0.2402812,1.331527 -0.078915,0.180987 -0.2237624,0.395909 -0.313701,0.434192 -0.054081,0.02302 -0.062902,0.08898 -0.026696,0.144732 0.036204,0.05575 0.00214,0.134108 -0.07342,0.179465 -0.075485,0.04536 -0.1457171,0.225768 -0.1535133,0.399458 -0.00779,0.173694 -0.063702,0.335885 -0.1268141,0.358933 -0.063116,0.02305 -0.091958,0.102107 -0.066745,0.179468 0.00506,0.01551 0.00538,0.03114 0.00667,0.04631 -0.049735,0.04773 -0.1025975,0.09208 -0.153512,0.138941 -0.3504669,0.167304 -0.6781007,0.45288 -0.8009359,0.741022 -0.6758519,0.661716 -1.3337071,1.341468 -1.9355954,2.055181 -0.2293187,0.258601 -0.6522623,0.894127 0.086768,0.798917 l 0.066744,0.02316 c 0.2455068,0.076 0.27391,0.106331 0.1535135,0.156309 -0.1063483,0.04414 -0.049438,0.05584 0.1802097,0.02895 0.2613895,-0.03061 0.2855681,-0.02567 0.1334897,0.02895 -0.1542788,0.05541 -0.1634813,0.08241 -0.053396,0.156309 0.160318,0.107614 0.3003511,0.125416 0.3003511,0.03474 0,-0.03547 0.052618,-0.05517 0.1201399,-0.04631 0.06752,0.0089 0.1454043,-0.02403 0.1735373,-0.06947 0.028133,-0.04544 -0.00694,-0.07367 -0.080094,-0.06368 -0.073151,0.01 -0.1587493,-0.01825 -0.1868854,-0.06368 -0.028133,-0.04543 -0.00393,-0.08056 0.046722,-0.07526 0.05064,0.0054 0.1869857,0.0067 0.3070253,0 0.2071385,-0.01154 0.2072737,-0.01866 0.013348,-0.06368 -0.1920258,-0.04459 -0.1937433,-0.05367 -0.020012,-0.15631 0.023753,-0.01404 0.035463,-0.02238 0.053396,-0.03474 0.3643982,-0.04684 0.8228732,-0.381116 1.2014033,-0.712078 0.027949,-0.0034 0.053409,-0.0067 0.080094,-0.01158 -0.1251406,0.114282 -0.2608868,0.218926 -0.3937932,0.3242 l 1.875536,-0.66569 c 0.2608062,-0.216461 0.5263046,-0.438123 0.6741205,-0.729444 0.2664204,-0.454259 0.5838447,-0.884378 0.8409836,-1.343104 0.3020915,-0.506575 0.6435275,-1.004947 0.8743556,-1.53994 0.026036,-0.13401 0.052327,-0.16428 0.013348,-0.289462 -0.011891,-0.03818 -0.030613,-0.07573 -0.053396,-0.109994 -0.00978,-0.01473 -0.044799,-0.01204 -0.04672,-0.02895 -0.00231,-0.02132 -0.00152,-0.04224 0,-0.06368 0.078592,-0.109122 0.1501711,-0.218974 0.2135819,-0.335776 0.033023,-0.103925 0.048126,-0.195757 0.06007,-0.277885 0.034637,-0.01107 0.062721,-0.02391 0.080094,-0.04053 0.044178,-0.04224 0.030901,-0.08575 -0.033372,-0.09842 -0.0032,-5.59e-4 -0.00364,-0.0049 -0.00667,-0.0058 0.062806,-0.120889 0.1315413,-0.242783 0.2002336,-0.364722 0.084454,-0.149916 0.1737452,-0.296726 0.2603051,-0.445773 0.3276428,-0.03972 0.6606843,-0.206923 0.5139331,-0.260515 -0.052723,-0.01926 -0.098194,-0.127149 -0.1001162,-0.243148 -0.00121,-0.0779 -0.00445,-0.129168 -0.00667,-0.185256 0.23686,-0.387326 0.4789377,-0.773701 0.7341904,-1.152059 0.201924,-0.292856 0.400161,-0.589904 0.607377,-0.879966 0.41616,-0.582537 0.854977,-1.155586 1.274824,-1.736773 0.475601,-0.225254 0.941528,-0.471679 1.414987,-0.700498 0.577762,-0.342242 1.115636,-0.728686 1.668616,-1.099956 0.189302,-0.133163 1.070992,-0.612939 0.720843,-0.891543 -0.04467,-0.03555 -0.115122,-0.02646 -0.173536,-0.04053 -0.06273,0.01107 -0.124458,0.02258 -0.186884,0.03474 -0.0037,-0.01504 -0.0087,-0.02323 -0.01335,-0.04052 -0.05436,-0.200868 -0.02731,-0.272147 0.100118,-0.301041 0.09098,-0.02063 0.160188,-0.08918 0.160188,-0.156309 0.05568,-0.04029 0.111544,-0.08096 0.166861,-0.121574 0.09003,0 0.160186,0.03696 0.160186,0.08684 0,0.05894 0.07841,0.07981 0.220258,0.05789 0.21202,-0.03276 0.293612,-0.210369 0.140163,-0.301041 -0.104703,-0.06187 -0.115205,-0.146645 -0.06007,-0.179466 0.0024,-0.0019 0.0043,-0.004 0.0067,-0.0058 0.02176,-0.0095 0.04798,-0.01458 0.08677,-0.0058 0.104488,0.02369 0.174015,-0.02548 0.220258,-0.162099 0.012,-0.03546 0.03528,-0.06944 0.0534,-0.09842 0.03593,-0.02664 0.07074,-0.05449 0.10679,-0.08105 0.0147,-0.01082 0.03199,-0.01817 0.04672,-0.02895 0.01095,-0.0041 0.01794,-0.0094 0.02001,-0.01736 0.09641,-0.07035 0.188889,-0.139871 0.287002,-0.208413 0.08456,-0.05907 0.219436,-0.08643 0.260305,-0.173677 0.0059,-0.01266 0.0044,-0.02741 0.0067,-0.04053 0.09806,-0.03788 0.190749,-0.07902 0.287002,-0.127363 0.02578,-0.01295 0.04824,-0.02242 0.07342,-0.03474 0.0083,-4.47e-4 0.01959,-7.83e-4 0.0267,0 0.108747,0.01004 0.225655,-0.0277 0.260305,-0.08105 0.05123,-0.07889 0.07848,-0.08152 0.153513,-0.01158 0.07066,0.06586 0.09884,0.06325 0.100118,-0.02316 9.02e-4,-0.06206 0.04677,-0.115785 0.106791,-0.115785 0.06002,0 0.106791,0.02821 0.106791,0.06368 0,0.141529 0.239839,0.05439 0.347072,-0.127363 0.06277,-0.106394 0.162569,-0.191045 0.220258,-0.191045 0.05769,0 0.07379,-0.02563 0.04005,-0.05789 -0.01447,-0.01384 -0.02112,-0.03166 -0.0267,-0.04631 0.113027,-0.05993 0.220796,-0.122821 0.327048,-0.202625 0.0022,1.09e-4 0.0044,-1.11e-4 0.0067,0 0.176131,0.0107 0.220133,0.005 0.173535,-0.121573 0.04776,-0.02384 0.09556,-0.04658 0.13349,-0.06947 0.05399,-0.0044 0.106453,-0.01736 0.160187,-0.01158 0.04215,0.0045 0.08069,0.02687 0.12014,0.04052 0.02395,0.01935 0.0565,0.03359 0.07342,0.05789 0.123217,0.1771 -0.04181,0.490794 0.0267,0.68892 0.331061,0.878961 1.433698,-0.05018 2.082433,-0.694709 0.574978,-0.0264 1.281545,-0.828499 1.595197,-1.024696 0.0031,-0.0019 0.180874,-0.471205 0.19356,-0.503665 0.01587,-0.03446 0.03265,-0.06914 0.04672,-0.104207 0.146452,-0.114231 0.312878,-0.244716 0.473886,-0.387878 0.488184,-0.07194 1.037714,-0.292207 1.475058,-0.370511 0.606454,-0.172265 0.156859,-0.04398 0.740865,-0.225781 0.102231,-0.03183 0.211135,-0.04838 0.307026,-0.09263 0.670449,-0.309399 1.333964,-0.633479 1.988992,-0.966803 0.07076,-0.03601 0.135167,-0.07947 0.180209,-0.138942 0.03656,-0.04826 0.03734,-0.111851 0.0534,-0.167889 -0.02104,-0.04338 -0.03253,-0.09084 -0.06674,-0.127363 -0.0399,-0.0426 -0.09381,-0.08169 -0.160188,-0.109995 0.318338,-0.05238 0.636465,-0.102573 0.95445,-0.156311 3.035902,-0.518841 6.069087,-1.092855 8.997181,-1.974131 0.380344,-0.129494 0.615972,-0.205423 0.814287,-0.277884 0.749467,-0.124248 1.49531,-0.261091 2.235946,-0.422615 0.03745,-0.0086 0.07597,-0.01471 0.113466,-0.02316 0.04865,0.06262 0.09679,0.123527 0.146839,0.185256 -0.03147,0.165869 -0.0704,0.317804 -0.100118,0.329987 -0.02251,0.0092 -0.06264,0.05633 -0.09344,0.104206 -0.04571,0.07104 -0.04295,0.0895 0.03337,0.115785 0.0035,0.001 0.0035,-0.001 0.0067,0 -0.0012,0.01158 -0.0056,0.02314 -0.0067,0.03474 -0.05829,5.59e-4 -0.08222,0.01936 -0.06007,0.04052 0.02063,0.01972 -9.02e-4,0.04361 -0.04005,0.05789 -0.03913,0.01428 -0.07174,0.05435 -0.08009,0.08684 -0.01134,0.04396 0.01698,0.05979 0.126816,0.06368 0.0085,4.47e-4 0.01788,4.9e-5 0.0267,0 -0.0069,0.05276 -0.01553,0.104246 -0.0267,0.15631 -0.05443,0.02754 -0.09958,0.05141 -0.160187,0.08105 0.0046,0.03594 0.0019,0.06944 0.01335,0.104206 0.001,0.003 0.01679,0.02643 0.03337,0.04631 -0.100175,0.04299 -0.107531,0.04459 0.01335,0.01158 0.01826,0.01942 0.03495,0.03409 0.04672,0.02895 0.07261,-0.03175 0.129073,-0.05538 0.193559,-0.08105 0.04669,-0.0073 0.09173,-0.0143 0.140164,-0.01736 0.167003,-0.01054 0.334815,0.0013 0.500584,0.01736 0.26796,0.03112 0.517898,0.116909 0.780914,0.167889 0.258614,0.05325 0.506851,0.142917 0.754215,0.225779 0.219051,0.07787 0.420008,0.182264 0.607377,0.306831 0.184742,0.128087 0.38314,0.233034 0.587352,0.335776 0.19262,0.09803 0.3987,0.180712 0.607377,0.248937 0.255785,0.07449 0.514372,0.127524 0.780914,0.162099 0.292104,0.02856 0.58191,0.06085 0.874353,0.08684 0.297002,0.01686 0.591458,0.06294 0.887706,0.08684 0.308928,0.01541 0.613215,0.05532 0.921075,0.08105 0.327592,0.02564 0.650458,0.08052 0.974473,0.127363 0.295478,0.05103 0.596347,0.04462 0.894379,0.02316 0.211911,-0.01898 0.423623,-0.01686 0.634075,-0.04631 0.421646,-0.09081 0.818648,-0.262289 1.188054,-0.468928 0.179274,0.102501 0.286139,0.159395 0.654099,0.387879 0.0068,0.0042 0.01339,0.01239 0.02001,0.01736 -0.01251,0.0095 -0.02055,0.01927 -0.03337,0.02895 -0.04078,0.02255 -0.0768,0.04613 -0.12014,0.06947 -0.01405,0.0076 0.0025,0.0069 0.0267,0.0058 -0.0027,0.002 -0.0039,0.0038 -0.0067,0.0058 -0.05064,0.03735 0.102502,0.07303 0.153512,0.109996 0.18746,0.135854 0.37539,0.272075 0.553981,0.416825 0.180044,0.173744 0.103473,0.08476 0.233607,0.254727 l 0.367095,-0.185256 c 0.05352,0.0289 0.106487,0.05789 0.160187,0.08684 0.87235,0.470198 1.738157,0.946185 2.58302,1.453101 0.147589,0.09208 0.293683,0.185325 0.440515,0.277883 -0.170428,0.10812 -0.364753,0.228857 -0.614051,0.370512 -0.0492,0.02795 0.01067,0.106325 0.04005,0.150519 0.108616,0.163442 0.414483,0.385537 0.553979,0.486296 0.182904,0.132111 0.373895,0.254101 0.560655,0.38209 1.963864,1.242619 3.993032,2.419527 5.79344,3.844058 0.420856,0.33372 0.692059,0.538579 1.027867,0.85102 -0.210894,0.01975 -0.257423,0.151629 -0.847658,0.625237 -1.004774,0.49175 -1.035538,0.445192 -0.553979,0.422616 0.001,0.0181 0.113856,0.01129 0.160187,0.01736 0.05516,0.0073 0.104363,0.01287 0.153513,0.01736 -1.729555,0.760074 -3.397542,1.619024 -4.992504,2.570424 -0.271233,0.105505 -0.614071,0.232611 -0.834308,0.341566 -0.695534,0.344092 -1.39402,0.680138 -2.069084,1.053641 -0.03345,0.01851 -0.06106,0.04313 -0.08677,0.06947 -1.832307,0.868578 -3.653407,1.745836 -5.426342,2.703577 -0.149362,0.09225 -0.991164,0.466456 -0.720842,0.787337 -1.311559,0.742659 -2.59386,1.526541 -3.804449,2.390958 -1.011998,0.722616 -1.380364,1.050136 -2.30269,1.812033 -0.535901,0.471055 -1.067588,0.949581 -1.548477,1.464678 -0.07376,0.06353 -0.147937,0.120146 -0.220256,0.185256 -0.03597,0.01918 -0.071,0.03847 -0.106792,0.05789 -0.01916,0.01039 0.02755,-0.0037 0.06007,-0.01158 -0.0765,0.06933 -0.156806,0.138148 -0.226931,0.202623 -0.129541,0.05097 -0.258865,0.10298 -0.387119,0.15631 0.06682,-0.108476 0.153723,-0.245615 0.287001,-0.439982 -0.313998,0.214822 -0.620764,0.44613 -0.887703,0.706287 -0.529672,0.244441 -1.042384,0.516445 -1.521779,0.833651 l 1.034542,-0.358933 c -0.065,0.03656 -0.07138,0.04415 -0.146838,0.08684 0.05334,-0.02385 0.166619,-0.07401 0.280327,-0.127365 l 0.113466,-0.04052 c 0.0072,0.03296 0.03183,0.06595 0.0801,0.08105 0.06447,0.02017 0.350884,-0.108968 0.393792,-0.127363 0.06535,-0.02803 0.216569,-0.0961 0.37377,-0.167889 -0.09367,0.08225 -0.190783,0.163182 -0.280327,0.248938 -0.113805,0.112913 -0.569816,0.507446 -0.547306,0.671551 0.0065,0.047 0.04409,0.0843 0.06674,0.127364 0.09134,-0.04268 0.182147,-0.08493 0.273654,-0.127364 -0.146531,0.221889 -0.294535,0.443612 -0.440516,0.665764 -0.09788,0.160144 -0.227164,0.306494 -0.320374,0.468929 -0.01049,0.01827 -0.03198,0.04033 -0.02001,0.05789 0.03123,0.04582 0.07788,0.132507 0.133489,0.109996 0.437016,-0.176888 0.83261,-0.419994 1.241452,-0.642606 0.491897,-0.168973 0.975885,-0.355621 1.448358,-0.561557 0.0598,-0.02337 0.12035,-0.04659 0.180211,-0.06947 0.01287,-0.0049 0.01922,-0.01304 0.0267,-0.02316 0.04138,-0.01889 0.08571,-0.03278 0.126815,-0.05211 0.143133,-0.06728 0.214681,-0.216234 0.327048,-0.318407 0.188589,-0.171475 0.381627,-0.335388 0.574005,-0.503664 0.479586,-0.390304 0.973054,-0.770432 1.475058,-1.140482 0.491693,-0.167371 0.955202,-0.401246 1.435011,-0.596292 0.0652,0.04269 0.154187,0.05911 0.226931,0.02895 0.714162,-0.29613 1.364795,-0.691098 2.049062,-1.036275 1.003625,-0.639435 1.950922,-1.342626 2.896719,-2.043603 0.58359,-0.340115 1.207959,-0.698286 1.388289,-0.804704 0.109963,-0.06489 0.232751,-0.138532 0.353747,-0.208414 0.0071,0.0032 0.01218,0.0087 0.02001,0.01158 0.09792,0.03592 0.213333,-0.01588 0.313698,-0.04631 0.329051,-0.09978 0.913286,-0.405808 1.181381,-0.5384 1.20147,-0.605465 2.409759,-1.192582 3.617561,-1.788876 0.578817,-0.260331 1.060276,-0.490999 1.548477,-0.735235 0.713241,0.03696 1.469675,-0.142817 1.288173,-0.648395 0.03718,-0.01884 0.02798,-0.0151 0.06674,-0.03473 0.737861,-0.37375 1.475924,-0.777195 2.155852,-1.227319 0.08498,-0.05626 0.165571,-0.1193 0.246956,-0.179468 0.0998,-0.02782 0.200528,-0.05331 0.300351,-0.08105 0.173287,0.183391 0.86102,-0.03483 1.007844,-0.06947 0.889488,-0.254482 1.779391,-0.55226 2.603043,-0.949436 0.08254,-0.02455 0.164513,-0.05046 0.246956,-0.07526 0.03086,-0.0059 0.06263,-0.01113 0.09344,-0.01736 0.0886,-0.01793 0.179612,-0.01564 0.260305,-0.0521 0.07819,-0.03533 0.155958,-0.0738 0.233605,-0.109995 0.205047,-0.06356 0.409793,-0.125408 0.614051,-0.191046 -0.0329,0.114868 -0.01171,0.229748 0.133489,0.324198 0.163399,-0.0034 0.200767,0.0097 0.367097,-0.06947 0.55786,-0.265499 1.173775,-0.535671 1.755384,-0.845228 0.09895,0.009 0.199759,0.02012 0.293677,0.04631 -0.127898,-0.197018 1.338442,-0.615674 1.722014,-0.816285 l -1.608548,1.094167 c 0.481781,-0.243097 2.180999,-0.441408 1.795432,-1.152059 -0.201618,-0.136595 -0.395811,-0.162591 -0.654097,-0.179467 -0.387753,-0.02533 -0.774678,-0.0141 -1.161359,0.01158 0.04356,-0.09958 0.03669,-0.205911 -0.07342,-0.301041 -0.0459,-0.03965 -0.111457,-0.05773 -0.166862,-0.08684 -0.510289,-0.0818 -1.03639,-0.02586 -1.548475,0.03473 0.0092,-0.01697 0.01587,-0.03542 0.0267,-0.0521 0.03305,-0.05089 0.01658,-0.08099 -0.04005,-0.09263 0.07889,-0.04819 0.140704,-0.09972 0.166861,-0.144731 0.0605,-0.104097 -0.0124,-0.174126 -0.06007,-0.266306 -0.09785,-0.131385 -0.221855,-0.237158 -0.360401,-0.329986 -0.01417,-0.156532 -0.05822,-0.286658 -0.113465,-0.306831 -0.06545,-0.0239 -0.125992,-0.152462 -0.133491,-0.289461 -0.0037,-0.069 -0.001,-0.120229 0.0067,-0.156309 0.07039,-0.03011 0.159653,-0.06673 0.213583,-0.09263 0.03745,-0.001 0.06892,-8.4e-5 0.12014,0 0.19506,4.47e-4 0.353748,-0.02516 0.353748,-0.0521 0,-0.02694 -0.04792,-0.04631 -0.106792,-0.04631 -0.03125,0 -0.06712,-0.02061 -0.100117,-0.0521 0.116347,-0.07791 0.23576,-0.172787 0.43384,-0.329985 0.178387,-0.170467 0.839879,-0.759483 0.800936,-0.995751 -0.0106,-0.06426 -0.07541,-0.111994 -0.113465,-0.167887 -0.398345,0.193059 -0.79624,0.386082 -1.194729,0.578923 -0.0019,-0.180286 0.02466,-0.447027 0,-0.659973 0.120785,-0.01217 0.226484,-0.03061 0.280327,-0.0521 0.129816,-0.05179 0.109577,-0.06151 -0.106792,-0.0521 -0.07722,0.0034 -0.130151,0.0044 -0.19356,0.0058 -0.01441,-0.06155 -0.03567,-0.11586 -0.06674,-0.15052 -0.03678,-0.04102 -0.09359,-0.06573 -0.140163,-0.09842 -0.105507,0.0627 -0.213301,0.124381 -0.320376,0.185256 -0.02963,-0.02256 -0.04671,-0.04975 -0.04671,-0.08683 0,-0.07388 -0.03508,-0.122963 -0.08009,-0.109995 -0.512616,0.147571 -0.656514,0.205099 -0.674121,0.272095 -0.0186,-0.04289 -0.04132,-0.08452 -0.06007,-0.127363 0.03263,-0.02065 0.05295,-0.04847 0.0534,-0.08105 0.0015,-0.09643 0.01638,-0.09424 0.106792,-0.01158 0.07362,0.06731 0.109482,0.06768 0.12014,0.01158 0.03356,-0.17667 0.04798,-0.196563 0.126816,-0.243148 0.04502,-0.02659 0.08009,-0.09646 0.08009,-0.15052 0,-0.07902 -0.02457,-0.07025 -0.140163,0.02316 -0.132215,0.106837 -0.158733,0.107087 -0.320374,0.01158 -0.0759,-0.04484 -0.172083,-0.07148 -0.260305,-0.08684 -0.167907,-0.368369 -0.343702,-0.737291 -0.527282,-1.099957 -0.06497,-0.128344 -0.128553,-0.256462 -0.200234,-0.38209 -0.03275,-0.05741 -0.03878,-0.187045 -0.106791,-0.162098 -0.137133,0.05029 -0.274825,0.103209 -0.407144,0.162098 -0.218177,-0.526903 -0.442653,-1.050053 -0.667446,-1.574675 -0.06126,-0.140276 -0.116539,-0.283147 -0.180212,-0.422613 -9.02e-4,-0.0017 -0.170735,-0.365122 -0.213581,-0.428404 -0.01333,-0.01969 -0.02747,-0.05224 -0.04672,-0.06368 -0.0305,-0.09997 -0.100644,-0.03637 -0.307025,0.121574 -0.919454,0.405277 -1.342777,0.441602 -1.488406,0.52682 -1.382834,-0.946247 -2.796991,-1.858621 -4.238287,-2.73831 -0.627542,-0.363045 -1.235019,-0.753173 -1.862177,-1.117324 4e-5,-0.136584 0.07883,-0.271172 0.246956,-0.370513 0.133681,-0.07899 0.246101,-0.119225 0.246954,-0.09263 9.02e-4,0.0266 0.0477,0.001 0.106792,-0.0521 0.09252,-0.08328 0.120458,-0.07937 0.20691,0 0.13171,0.120935 0.447189,0.145081 0.447189,0.03474 0,-0.03145 0.04408,-0.06311 0.100117,-0.08684 0.268243,0.120707 0.544502,0.21902 0.827633,0.318409 0.819591,0.287699 1.645657,0.561287 2.469553,0.83944 0.715565,0.243856 1.430987,0.486689 2.129157,0.76418 -0.593933,0.166884 -0.990264,0.410006 -1.908899,0.920489 -0.11834,0.06577 -0.06158,0.242328 0.02001,0.301041 0.06312,0.04542 0.145407,0.06355 0.220258,0.09263 0.696172,0.102889 1.397236,0.144545 2.102456,0.179467 1.50833,0.07469 3.023385,0.09189 4.531964,0.162099 0.390647,0.01536 0.78346,0.03464 1.174705,0.0521 l -0.160185,0.09842 c 0.06879,4.47e-4 0.138198,0.0024 0.206907,0.0058 0.09829,0.0064 0.195733,0.01779 0.287004,0.0521 0.09485,0.03388 0.189686,0.04803 0.287001,0.07526 0.09659,0.03173 0.201152,0.05637 0.300351,0.08105 0.122551,0.0331 0.249615,0.05304 0.37377,0.08105 0.168978,0.03216 0.336149,0.05917 0.50726,0.08105 0.151501,0.02772 0.302164,0.06025 0.453863,0.08684 0.121917,0.02389 0.244954,0.04713 0.367097,0.06947 0.100455,0.02228 0.198079,0.05304 0.300351,0.06947 0.113436,0.01003 0.226963,0.0326 0.340397,0.04053 0.13337,0.01104 0.258962,0.03564 0.387119,0.06947 0.09474,0.01701 0.191961,0.03872 0.287002,0.0521 0.02433,0.01271 0.04672,0.01984 0.04672,0.02895 0,0.03561 0.0098,0.037 0.07342,0.0058 0.06425,-0.0315 0.113842,-0.02126 0.246956,0.03473 0.09108,0.03833 0.166861,0.08516 0.166861,0.109997 0,0.02706 0.03093,0.0401 0.08009,0.02895 0.111442,-0.02527 0.467212,0.01376 0.467212,0.0521 0,0.01693 -0.05929,0.03288 -0.126814,0.03474 -0.117791,0.0031 -0.117509,0.0042 0.01335,0.02895 0.07502,0.01421 0.195783,0.02709 0.266978,0.02895 0.107352,0.0027 0.119258,-0.0056 0.06674,-0.04631 0.04738,0.01788 0.09275,0.04008 0.140163,0.05789 0.05849,0.03771 0.108063,0.07912 0.106792,0.104207 -0.0015,0.03375 0.02719,0.06715 0.06674,0.07526 0.03956,0.0081 0.06686,-0.0049 0.06007,-0.02895 -0.0042,-0.01482 0.0047,-0.03533 0.01335,-0.05789 0.727238,0.270994 1.456934,0.534788 2.195898,0.781549 0.624466,0.180311 1.24334,0.398983 1.89555,0.497875 0.609634,0.09243 1.034652,-0.124044 1.528453,-0.445773 1.459741,0.255073 2.916098,0.509729 4.378451,0.752603 0.706483,0.109188 0.714212,0.09533 1.408312,-0.729446 0.157501,-0.08334 0.311904,-0.163526 0.467214,-0.248936 0.07172,-0.03945 -0.163499,-0.0051 -0.253629,-0.0058 0.02456,-0.02884 0.03403,-0.03908 0.06007,-0.06947 0.08697,-0.101509 -0.275257,-0.0822 -0.413817,-0.121574 -0.560188,-0.159196 -1.125872,-0.299394 -1.688641,-0.451562 -0.398791,-0.137122 -0.854533,-0.231359 -1.234776,-0.422614 0.207116,-0.03119 0.311167,-0.04753 0.627399,-0.08105 0.817511,-0.08667 0.905923,0.0015 1.621896,-0.822074 0.13639,-0.0851 0.273721,-0.172821 0.453864,-0.277883 0.0029,-0.0017 -0.0015,-0.0046 0,-0.0058 -0.02697,0.0031 -0.124951,0.03473 -0.166861,0.04052 -0.02896,0.004 -0.05774,0.0079 -0.08677,0.01158 0.01265,-0.01499 0.02038,-0.02508 0.03337,-0.04052 0.102122,-0.121541 -0.347272,5.59e-4 -0.520608,0 -2.325396,0.01932 -4.649581,0.04812 -6.974819,0.01736 -0.356764,-0.101482 -0.712738,-0.206868 -1.067915,-0.30683 -0.222668,-0.06267 -0.174957,-0.0515 -0.320375,-0.09263 0.151375,-0.09504 0.266837,-0.169054 0.480562,-0.301041 0.05985,-0.03696 -0.02005,-0.130258 -0.06674,-0.179465 -0.09661,-0.101838 -0.698443,-0.0542 -0.807611,-0.06368 -0.417921,0.02627 -0.838031,0.05265 -1.2548,0.09263 -0.188064,-0.04934 -0.185059,-0.04488 -0.607377,-0.156311 -1.310213,-0.299987 -2.618556,-0.626911 -3.937935,-0.90312 -0.07946,-0.03439 -0.127851,-0.05272 -0.420492,-0.179467 -1.269531,-0.578843 -2.517957,-1.19347 -3.784423,-1.777298 0.04928,-0.03556 0.09216,-0.06423 0.146838,-0.104207 0.02241,-0.01638 0.01901,-0.03186 0.0067,-0.0521 0.06612,-0.02341 0.05261,-0.02884 -0.03337,-0.03474 -0.04935,-0.0436 -0.123389,-0.09121 -0.166861,-0.127364 -0.06861,-0.05706 -0.78024,-0.510482 -0.787588,-0.515243 -0.963426,-0.612415 -1.900963,-1.262088 -2.896719,-1.83519 -0.635304,-0.314967 -0.529429,-0.164347 -1.508429,0.549978 -0.03662,-0.01921 -0.0707,-0.03474 -0.08677,-0.03474 -0.05901,-0.03004 -0.115469,-0.06128 -0.173536,-0.09263 -0.0137,-0.01317 -0.02001,-0.02602 -0.02001,-0.03474 0,-0.028 -0.06038,-0.04631 -0.13349,-0.0521 -0.211362,-0.12094 -0.421485,-0.247596 -0.61405,-0.393667 l -0.480561,0.260514 c -0.01429,-0.0048 -0.03327,-0.01158 -0.0534,-0.01158 -0.04142,0 -0.07484,0.01317 -0.0801,0.02895 -0.04885,-0.05208 -0.0976,-0.104483 -0.146838,-0.156309 0.113415,-0.09059 0.230067,-0.178386 0.340398,-0.272096 0.09561,-0.09163 0.93401,-0.710586 0.507259,-0.943645 -0.07176,-0.03919 -0.166753,0.01664 -0.246955,0.04052 -0.204926,0.06106 -0.507742,0.191864 -0.760889,0.30683 0.03757,-0.06287 0.07238,-0.124392 0.08009,-0.173677 0.008,-0.05106 -0.01865,-0.09947 -0.0267,-0.15052 -0.01984,-0.02147 -0.02935,-0.03324 -0.04672,-0.0521 0.0026,-0.0015 0.0041,-0.0042 0.0067,-0.0058 1.624408,-0.25082 3.239893,-0.544266 4.83899,-0.903121 0.02875,-0.0062 0.05801,-0.01116 0.08677,-0.01736 0.0062,0.0046 0.01429,0.0078 0.02001,0.01158 0.04004,0.02664 0.09978,-0.02474 0.146838,-0.04052 0.02406,-0.0081 0.03192,-0.01004 0.0534,-0.01736 0.11555,-0.02496 0.231645,-0.04987 0.347073,-0.07526 0.146186,-0.03215 0.304347,-0.03136 0.433838,-0.09842 0.04966,-0.02571 0.09749,-0.05489 0.146841,-0.08105 0.01063,-0.0032 0.02303,-0.0019 0.03337,-0.0058 0.0054,-0.0021 9.02e-4,-0.0075 -0.0067,-0.01158 0.235084,-0.125171 0.472018,-0.254012 0.700819,-0.38788 0.06596,-0.02807 0.170134,-0.06966 0.20691,-0.08684 0.759433,-0.354803 1.516849,-0.722581 2.269319,-1.088377 0.304339,-0.147948 0.681394,-0.338298 0.947773,-0.54419 0.09997,-0.07727 0.17773,-0.173936 0.266979,-0.260516 0.01529,-0.08253 0.06618,-0.16707 0.04672,-0.248937 -0.02286,-0.09615 -0.08467,-0.155763 -0.173535,-0.196834 0.475527,-0.03046 0.955912,-0.02292 1.428334,0.03474 0.470626,0.08278 0.903954,0.263137 1.354918,0.399458 0.110115,0.02806 0.214702,0.06072 0.327047,0.08105 0.149535,0.02706 1.12844,0.15117 1.22143,0.162099 0.761448,0.0895 1.524719,0.155024 2.289342,0.219991 0.214513,0.01682 0.426243,0.03519 0.640748,0.0521 0.166189,0.01309 0.334527,0.02624 0.500585,0.04052 0.104814,0.009 0.209238,0.01727 0.3137,0.02895 0.03121,0.0035 0.06891,0.03447 0.09344,0.01736 0.09873,-0.06882 0.177166,-0.119769 0.26698,-0.179466 2.599487,0.56553 5.185863,1.162928 7.735708,1.881503 0.152217,0.03798 0.307121,0.08163 0.460537,0.115785 0.07015,0.01562 0.143726,0.05978 0.213584,0.06368 -0.0104,0.01688 -0.02134,0.03556 -0.03337,0.0521 0.02461,-0.01856 0.05271,-0.03757 0.08009,-0.05789 0.0068,-0.0019 0.01346,-0.0028 0.02001,-0.0058 0.499851,-0.230496 0.953782,-0.388047 1.281498,-0.526821 0.03415,0.01517 0.06591,0.03103 0.100117,0.04631 0.368126,0.164464 0.736664,0.333451 1.101287,0.503663 l -0.09344,0.05789 c 0.1312,0.02883 0.262398,0.05303 0.393795,0.08105 0.253793,0.119341 0.507641,0.238701 0.760888,0.358933 0.0066,0.01382 0.01408,0.02599 0.02001,0.04053 0.02758,0.06743 0.05489,0.08334 0.106793,0.05789 0.0223,-0.01093 0.03908,-0.01391 0.0534,-0.01158 0.0087,0.0041 0.01798,0.0074 0.0267,0.01158 0.0062,0.0072 0.0147,0.0169 0.02001,0.02895 0.01939,0.0438 0.06292,0.06011 0.173537,0.06368 0.131902,0.06262 0.261789,0.128601 0.393792,0.191046 -0.0012,0.0051 0.0019,0.0058 0,0.01158 -0.01482,0.04582 -0.005,0.104052 0.02001,0.127363 0.03506,0.03269 0.04587,0.02882 0.04672,-0.01158 5.16e-4,-0.02793 0.05028,-0.04076 0.106792,-0.04631 0.18884,0.0891 0.377939,0.178122 0.56733,0.266305 0.02817,0.02872 0.05073,0.06039 0.0534,0.08105 0.0045,0.03542 0.03567,0.05896 0.06674,0.0521 0.03107,-0.0069 0.10017,-0.0025 0.160188,0.01158 0.01544,0.0036 0.02645,0.0029 0.04005,0.0058 2.189865,1.031163 4.405145,2.033847 6.507611,3.195663 0.8316,0.533786 0.34721,0.333578 1.91557,-0.509454 0.0879,-0.03946 0.188,-0.08305 0.21358,-0.109996 0.0275,-0.01413 0.0515,-0.02606 0.0801,-0.04052 0.0263,-0.01328 -0.0416,-0.03725 -0.0667,-0.0521 -0.0815,-0.04806 -0.16975,-0.09408 -0.25363,-0.138942 -0.13866,-0.07415 -0.28223,-0.145275 -0.42049,-0.219991 -0.18885,-0.102054 -0.37278,-0.203442 -0.56066,-0.30683 -1.29873,-0.714458 -2.589246,-1.443278 -3.851165,-2.205701 0.174716,-0.120849 0.347019,-0.242552 0.52061,-0.364722 0.149938,-0.07282 0.299265,-0.144119 0.447188,-0.219992 0.0045,-0.0023 0.0055,-0.01053 0.0067,-0.01158 -0.02657,0.0042 -0.125253,0.03767 -0.166862,0.03473 0.0335,-0.02306 0.06645,-0.0466 0.100118,-0.06947 -0.797699,-0.48265 -1.68998,-0.82828 -2.562996,-1.192584 -1.514259,-0.63188 -0.156689,-0.07483 -1.508431,-0.625239 -0.81795,-0.305589 -1.152395,-0.477107 -1.775407,0.173679 -0.02085,-0.01901 -0.04021,-0.03701 -0.06007,-0.05789 -0.06696,-0.0704 -0.150891,-0.127363 -0.186884,-0.127363 -0.03598,0 -0.07772,-0.02814 -0.09344,-0.06368 -0.01991,-0.04495 -0.05583,-0.05511 -0.12014,-0.04053 -0.0703,0.0159 -0.08957,0.0059 -0.07342,-0.04052 0.01176,-0.03384 0.06175,-0.06038 0.113467,-0.05789 0.05136,0.0025 0.09344,-0.0074 0.09344,-0.02316 0,-0.01577 -0.04855,-0.02895 -0.106792,-0.02895 -0.05825,0 -0.121839,-0.01721 -0.140163,-0.03474 -0.01912,-0.01827 0.0048,-0.02258 0.0534,-0.01158 0.05564,0.01262 0.08677,5.58e-4 0.08677,-0.03473 0,-0.03224 -0.02894,-0.04275 -0.06674,-0.02895 -0.03457,0.01262 -0.08704,-0.0022 -0.12014,-0.02895 -0.0331,-0.02675 -0.106984,-0.04687 -0.166862,-0.04631 -0.342157,0.0035 -0.574004,-0.01601 -0.574004,-0.04631 0.251579,-0.108594 0.505801,-0.211736 0.76089,-0.312619 -0.01941,-0.06153 -0.01202,-0.136948 -0.06007,-0.185255 -0.04843,-0.04869 -0.130639,-0.05887 -0.200235,-0.08105 -0.137045,-0.04366 -0.2803,-0.08043 -0.420492,-0.115785 -0.342819,-0.08646 -0.68688,-0.166705 -1.034543,-0.23736 0.16078,-0.09985 0.319636,-0.205238 0.473889,-0.312618 0.04242,-0.02954 -0.09997,-0.03221 -0.153514,-0.04052 -0.123148,-0.01914 -0.2495,-0.02798 -0.373769,-0.04052 -0.707293,-0.07141 -1.413302,-0.124815 -2.122483,-0.179467 -0.595524,-0.02715 -1.193669,-0.05936 -1.788755,-0.09263 -1.094731,-0.160033 -2.196316,-0.304719 -3.297187,-0.428404 -0.17719,-0.01935 -0.356706,-0.03874 -0.53396,-0.05789 -0.256281,-0.02724 -0.510972,-0.05608 -0.767561,-0.08105 -1.296653,-0.136066 -2.595348,-0.262242 -3.897891,-0.341565 -0.231354,-0.0077 -0.462715,-0.01747 -0.694144,-0.02316 -0.184429,-0.0045 -0.381849,-0.0634 -0.553981,-0.0058 -0.41327,0.138309 -0.812573,0.300217 -1.208079,0.474719 -1.323311,-0.227251 -2.646379,-0.445925 -3.971308,-0.665764 0.21332,-0.128506 0.424949,-0.260282 0.634075,-0.393668 0.02579,-0.01645 -0.04816,-0.04426 -0.08009,-0.04631 -0.0922,-0.006 -0.182069,0.01216 -0.273653,0.02316 -0.153068,0.0184 -0.307827,0.04319 -0.460539,0.06368 -0.356069,0.04496 -0.711645,0.08893 -1.067916,0.133152 -0.0174,-0.0033 -0.03,-0.0026 -0.04672,-0.0058 0.03566,-0.03548 0.08356,-0.07268 0.146838,-0.115785 0.07208,-0.03505 0.104869,-0.05143 0.220258,-0.104206 0.05918,-0.01475 0.118415,-0.01527 0.160187,-0.0058 0.190897,0.04329 0.33284,-0.06096 0.166861,-0.121574 -0.0083,-0.003 -0.0133,-0.0077 -0.02001,-0.01158 0.0098,-0.0043 0.01662,-0.0072 0.0267,-0.01158 0.04704,-0.01255 0.101306,-0.03085 0.140163,-0.04052 0.05165,0.04344 0.07232,0.04169 0.07342,-0.01736 0.378255,-0.08861 0.33864,-0.05116 0.493911,-0.231569 0.0083,-0.0034 0.01162,-0.0081 0.02001,-0.01158 0.0052,-0.0021 0.02686,-0.02938 0.04005,-0.04052 0.07118,-0.02456 0.138615,-0.08402 0.166862,-0.15052 6.44e-4,-0.0017 -6.45e-4,-0.0041 0,-0.0058 0.0061,-0.0059 0.02368,-0.02043 0.0267,-0.02316 0.04053,-0.04241 0.08029,-0.08458 0.12014,-0.127364 0.0047,-8.94e-4 0.0089,-0.0058 0.01335,-0.0058 0.05352,0 0.100115,-0.04144 0.100115,-0.09263 0,-0.0106 0.0056,-0.02204 0.01335,-0.03473 0.0019,-0.0021 0.0048,-0.0036 0.0067,-0.0058 0.03314,-0.04709 0.110495,-0.101802 0.200233,-0.138942 0.119665,-0.04952 0.18506,-0.110572 0.146839,-0.133153 -0.03821,-0.02258 0.0082,-0.05869 0.106792,-0.08105 0.09862,-0.02236 0.18021,-0.07652 0.18021,-0.121574 0,-0.04506 0.07684,-0.117953 0.166861,-0.162099 0.09002,-0.04415 0.160188,-0.136039 0.160188,-0.202624 0,-0.06658 0.0537,-0.121575 0.12014,-0.121575 0.06644,0 0.09325,-0.04154 0.06007,-0.09263 -0.03317,-0.05108 0.06011,-0.196384 0.206908,-0.324197 0.140808,-0.122599 0.233913,-0.281003 0.260305,-0.405246 0.197943,-0.128502 0.389097,-0.255932 0.567329,-0.393669 0.02485,-0.0064 0.04718,-0.01158 0.06675,-0.01158 0.129892,0 0.2886,-0.17327 0.327047,-0.324198 0.07067,-0.06429 0.14025,-0.129701 0.206909,-0.196834 0.150044,0.01954 0.171138,0.0057 0.08009,-0.0521 -0.007,-0.0045 -0.0075,-0.01282 -0.01335,-0.01736 0.246255,-0.25713 0.467907,-0.535408 0.654098,-0.845229 0.100214,-0.07344 0.17574,-0.08783 0.307025,-0.04631 0.25787,0.08155 0.280104,0.04873 0.273654,-0.428404 -0.003,-0.218249 0.0284,-0.381154 0.07342,-0.364721 0.04502,0.01643 0.08677,0.07047 0.08677,0.121573 0,0.0511 0.04677,0.09263 0.106792,0.09263 0.06001,0 0.09511,-0.03672 0.08009,-0.08105 -0.01499,-0.04433 0.05939,-0.08068 0.160188,-0.08105 0.100797,-4.47e-4 0.216054,-0.02017 0.260304,-0.04631 0.04424,-0.02614 0.02329,-0.0521 -0.04672,-0.0521 -0.07003,0 -0.126814,-0.08466 -0.126814,-0.191046 0,-0.16032 0.04674,-0.191045 0.260303,-0.191045 0.216016,0 0.243954,-0.02697 0.200236,-0.162099 -0.03045,-0.0941 0.0023,-0.162099 0.07342,-0.162099 0.06702,0 0.120141,-0.07004 0.120141,-0.156308 0,-0.0239 0.0041,-0.04855 0.01335,-0.06947 0.776724,-0.379716 0.919808,-0.378039 1.348244,-0.688921 0.08877,-0.06442 0.205587,-0.131501 0.273652,-0.214202 0.01937,-0.02353 0.03284,-0.05477 0.04672,-0.08105 -0.01276,-0.03631 -0.0186,-0.07691 -0.04005,-0.109996 0.054,-0.03445 0.115714,-0.0736 0.18021,-0.115784 1.318862,-0.308939 1.265355,-0.138522 1.354917,-0.781548 -0.02576,-0.665625 -0.08946,-1.333497 -0.153512,-1.997289 0.10413,-0.129729 0.210924,-0.257367 0.3137,-0.387879 0.03008,-0.04812 0.08921,-0.09012 0.09344,-0.144732 0.0035,-0.04536 -0.02525,-0.139488 -0.07342,-0.121573 -0.163191,0.0607 -0.247052,0.08979 -0.380444,0.138942 -0.04841,-0.503126 -0.09693,-1.0069512 -0.126815,-1.5109934 -0.07886,-0.9629662 -0.145075,-1.9244482 -0.19356,-2.8888328 0.0394,-0.014856 0.0809,-0.025323 0.12014,-0.040523 0.02789,-0.010785 -0.0023,-0.054703 0,-0.081051 0.0069,-0.079614 0.01957,-0.1577591 0.0267,-0.2373584 0.04578,-0.5101189 0.07476,-1.0259419 0.146839,-1.5341488 0.152438,-1.1377535 0.341928,-2.2706649 0.480561,-3.4098631 l -0.213584,0.092627 c 0.05484,-0.2839395 0.111982,-0.56667305 0.19356,-0.84522984 L 79.680287,1.3111424 c -0.0049,0.036906 -0.01494,0.073112 -0.02001,0.1099965 -0.09958,0.048735 -0.195437,0.1054007 -0.293676,0.1563084 -0.02262,-0.036825 -0.04892,-0.061036 -0.07342,-0.057892 0.279765,-0.2148071 1.081026,-0.68892034 1.194729,-0.68892034 0.07479,0 0.107846,-0.024981 0.07342,-0.0578908 -0.03443,-0.0329109 0.0326,-0.0815318 0.153513,-0.10420816 0.120912,-0.022673 0.220258,-0.0673351 0.220258,-0.10420592 0,-0.0368753 0.06939,-0.0538068 0.153511,-0.0347349 0.09052,0.020526 0.174739,-0.0141542 0.20691,-0.0868385 0.02542,-0.0574404 0.03791,-0.0890414 0.0067,-0.092628 z M 89.231559,27.050082 c -0.753906,0.568758 -0.239335,0.328702 0,0 z M 77.357681,2.4110634 c -0.04522,0.056045 -0.08989,0.1104727 -0.133489,0.1794664 -0.113669,0.205925 -0.324117,0.5281566 -0.226932,0.7757593 -0.0026,0.01217 -0.0044,0.025947 -0.0067,0.040525 -0.122025,0.054444 -0.244011,0.1096971 -0.367097,0.1620979 0.0047,0.016617 0.0091,0.03518 0.01335,0.052103 -0.0015,9.277e-4 -0.0051,-9.165e-4 -0.0067,0 -0.03776,0.020967 0.0145,0.069786 0.03337,0.1099962 0.03277,0.1620451 0.0484,0.3300925 0.07342,0.486296 0.01173,0.073192 0.02206,0.1467475 0.03337,0.2199922 -0.03572,0.00466 -0.07802,0.00578 -0.13349,0.00578 -0.168312,0 -0.276762,-0.049699 -0.313701,-0.1331531 -0.09704,-0.2192836 -0.243947,-0.1370415 -0.273654,0.1505199 -0.02059,0.1993379 0.001,0.2440568 0.08009,0.1736783 0.09436,-0.084144 0.111972,-0.080349 0.113468,0.011578 0.001,0.069393 0.129613,0.1169258 0.380444,0.1447311 0.07569,0.00839 0.147386,0.021412 0.206908,0.034735 0.0053,0.036787 0.01478,0.073199 0.02001,0.1099961 -0.197723,-0.030908 -0.493912,0.078199 -0.493912,0.1852561 0,0.051949 0.04677,0.092627 0.106791,0.092627 0.06002,0 0.115399,0.053724 0.120141,0.1157851 0.0052,0.067409 0.02719,0.077096 0.06007,0.028947 0.108815,-0.1593367 0.25363,-0.0707 0.25363,0.1505199 0,0.1576172 -0.04586,0.2257794 -0.160188,0.2257794 -0.09003,0 -0.166862,0.026123 -0.166862,0.063682 0,0.037547 0.05345,0.050863 0.113467,0.028945 0.136305,-0.049765 0.132948,0.00976 0,0.2836735 -0.08113,0.1671542 -0.06402,0.2392964 0.06007,0.3126189 0.166445,0.098348 0.105484,0.2390092 -0.07342,0.1736769 -0.05587,-0.020401 -0.100118,0.036614 -0.100118,0.1273641 0,0.090752 -0.05847,0.167333 -0.133489,0.1678885 -0.09232,7.824e-4 -0.08868,0.023061 0.02001,0.06368 0.136566,0.05103 0.134161,0.066221 -0.03337,0.1042082 -0.142901,0.0324 -0.157363,0.057094 -0.06007,0.092628 0.0738,0.026948 0.0984,0.097286 0.06007,0.1563083 -0.04015,0.061892 -0.11956,0.084916 -0.193559,0.057893 -0.0859,-0.03137 -0.111916,-0.011656 -0.06674,0.057892 0.04467,0.068784 -0.0051,0.1181522 -0.14684,0.1447315 -0.117846,0.022101 -0.182771,0.069854 -0.146838,0.104207 0.03593,0.034348 0.158664,0.04472 0.273654,0.023156 0.236605,-0.044373 0.305695,0.1298766 0.07342,0.185256 -0.07502,0.017896 -0.03995,0.031902 0.08009,0.034736 0.15137,0.00355 0.223036,0.053627 0.233608,0.1620979 0.01062,0.1091393 -0.02767,0.1455675 -0.13349,0.1215734 -0.09205,-0.02087 -0.153514,0.010059 -0.153514,0.075262 0,0.059089 0.05345,0.091388 0.113468,0.069471 0.06002,-0.021918 0.105937,-0.00589 0.10679,0.040523 0.0012,0.062288 0.03187,0.058419 0.106792,-0.011577 0.05527,-0.051636 0.09928,-0.065151 0.140164,-0.052104 0.003,0.00981 0.01045,0.019107 0.01335,0.028946 0.01587,0.061162 0.03034,0.118406 0.04672,0.1794665 0.02067,0.077005 0.04006,0.1544664 0.06007,0.2315699 0.0031,0.013319 0.0036,0.027196 0.0067,0.040525 -0.0066,-7.824e-4 -0.0121,0.00288 -0.02001,0 -0.06257,-0.022845 -0.141083,0.019298 -0.173535,0.092628 -0.04059,0.091713 -0.01,0.1261402 0.08677,0.104207 0.103353,-0.023437 0.135828,0.045214 0.126816,0.2663049 -0.0068,0.1654565 -0.05133,0.3375094 -0.100118,0.3820899 -0.05541,0.050632 -0.02648,0.097409 0.08009,0.1215745 0.09383,0.021275 0.172683,0.097679 0.173536,0.1736769 9.02e-4,0.075998 0.04419,0.1850984 0.100118,0.2373584 0.01677,0.01566 0.03289,0.02657 0.04005,0.04053 0.0036,0.01072 0.0062,0.02642 0.0067,0.03474 -1.29e-4,0.0017 5.16e-4,0.0041 0,0.0058 -8.4e-5,0.0025 -0.0063,0.0035 -0.0067,0.0058 -0.0078,0.02121 -0.02798,0.04304 -0.06674,0.05789 -0.09816,0.03761 -0.09101,0.06524 0.0267,0.109996 0.03273,0.01245 0.05672,0.02388 0.07342,0.03474 0.0021,0.0017 0.0048,0.0042 0.0067,0.0058 -0.0012,0.01993 0.0022,0.04251 0.0067,0.0521 -0.01324,0.01823 -0.03427,0.04159 -0.07342,0.06947 -0.07974,0.05675 -0.116541,0.117403 -0.08009,0.138941 0.01822,0.01076 0.02255,0.03896 0.01335,0.06947 -6.45e-4,0.0022 -0.006,0.0036 -0.0067,0.0058 -0.01024,0.02904 -0.03031,0.05976 -0.06007,0.09263 -0.04315,0.04764 -0.07495,0.07924 -0.106791,0.08684 -0.01053,0.0013 -0.03012,-0.0019 -0.04672,-0.0058 -0.01509,-0.0057 -0.03109,-0.014 -0.04672,-0.02895 -0.04663,-0.04458 -0.147299,-0.0678 -0.226931,-0.0521 -0.08877,0.01749 0.02016,0.09237 0.280327,0.196836 0.1588,0.06376 0.253547,0.112112 0.293677,0.144731 0.0017,0.0017 0.01267,0.0045 0.01335,0.0058 0.0033,0.0037 0.0051,0.0082 0.0067,0.01158 5.16e-4,0.01149 -0.01531,0.02625 -0.03337,0.04052 -0.0077,0.0026 -0.01649,0.0035 -0.0267,0.0058 -0.143739,0.03259 -0.16853,0.132966 -0.100117,0.370511 0.0077,0.0266 0.0835,0.04631 0.173536,0.04631 0.09003,0 0.166862,0.03191 0.166862,0.06947 0,0.03756 -0.04413,0.05274 -0.09344,0.03474 -0.04931,-0.01801 -0.168535,0.02469 -0.266979,0.09263 -0.160809,0.110981 -0.163687,0.131163 -0.01335,0.219991 0.03758,0.0222 0.06872,0.03865 0.08677,0.0521 0.01803,0.01791 0.02478,0.0302 0.02001,0.03473 -0.0095,0.0091 -0.06768,0.01736 -0.126815,0.01736 -0.0029,1.9e-5 -0.0037,-1.7e-5 -0.0067,0 -0.158824,7.83e-4 -0.169604,0.01193 -0.04672,0.05789 0.08459,0.03164 0.212604,0.04002 0.287,0.02316 0.01861,-0.0042 0.03995,-0.0059 0.06007,-0.0058 0.0086,1.12e-4 0.01871,-5.59e-4 0.0267,0 0.05136,0.0048 0.09941,0.0259 0.126816,0.0521 0.107418,0.102698 0.14073,0.578383 0.07342,0.810493 -0.0069,0.02242 -0.01587,0.04208 -0.0267,0.06368 -0.0027,0.0052 -0.0037,0.0128 -0.0067,0.01736 -0.0024,0.0043 -0.01073,0.0072 -0.01335,0.01158 -0.03727,0.05367 -0.112311,0.142293 -0.213583,0.243148 -0.02843,0.01971 -0.05877,0.03773 -0.08677,0.05789 -0.02814,0.01986 -0.06712,0.04373 -0.04005,0.06368 -0.111085,0.105701 -0.234691,0.213811 -0.360421,0.324198 0.189511,-0.519986 0.366859,-1.043219 0.533957,-1.568886 l -1.842154,0.764181 c -0.133664,0.557172 -0.332256,1.103202 -0.533957,1.644144 -0.157744,0.431211 -0.05159,0.13431 -0.186885,0.555769 -0.02438,0.07594 -0.0744,0.186929 -0.08009,0.289462 -0.06497,0.048 -0.139681,0.0941 -0.220257,0.138942 -0.240087,0.133598 -0.433841,0.29003 -0.433841,0.347353 0,0.01719 -0.0063,0.03198 -0.01335,0.04631 -0.01525,0.02022 -0.0363,0.04105 -0.06007,0.0521 -0.0085,0.0025 -0.01751,0.0058 -0.0267,0.0058 -0.05441,0 -0.07676,0.05368 -0.04672,0.121575 0.008,0.01812 0.01595,0.0352 0.01335,0.0521 -1.29e-4,0.002 -0.0065,0.0039 -0.0067,0.0058 -0.02706,0.114688 -0.285184,0.197038 -0.587353,0.167888 -0.179347,-0.0173 -0.218684,0.0057 -0.180211,0.09263 -1.29e-4,0.004 0,0.0075 0,0.01158 0.0027,0.01478 0.0017,0.03129 -0.0067,0.0521 -6.45e-4,0.0021 -0.006,0.0037 -0.0067,0.0058 -0.03433,0.07784 -0.133052,0.190712 -0.273653,0.295251 -0.276986,0.205945 -0.348661,0.310145 -0.233606,0.370512 -0.03036,0.02155 -0.05643,0.0479 -0.08677,0.06947 -0.0826,-0.01115 -0.103155,-0.0027 -0.06674,0.04631 -0.443941,0.316031 -0.886826,0.635537 -1.321545,0.961016 -0.175721,0.131563 -0.303261,0.229872 -0.447189,0.341564 0.02249,-0.06549 -0.01446,-0.134451 -0.02001,-0.202622 -0.07355,-0.04735 -0.132141,-0.123037 -0.220257,-0.144733 -0.461664,-0.113671 -1.460337,0.410343 -1.855502,0.607872 -0.0072,-0.0069 -0.01875,-0.01158 -0.03337,-0.01158 -0.02251,0 -0.04005,0.0099 -0.04005,0.02316 0,0.0082 -0.0094,0.01299 -0.02001,0.01736 -0.001,-0.02309 -0.0098,-0.05572 -0.02001,-0.08684 0.0244,0 0.05046,-0.02374 0.06007,-0.0521 0.009,-0.0266 0.03276,-0.04631 0.0534,-0.04631 0.02065,0 0.04005,-0.0099 0.04005,-0.02316 0,-0.0133 0.01167,-0.02895 0.0267,-0.02895 0.01499,0 0.0267,-0.01048 0.0267,-0.02316 0,-0.01269 0.02631,-0.02511 0.06007,-0.02895 0.04439,-0.005 0.03742,-0.0041 -0.0267,-0.0058 -0.09238,-0.0023 -0.117388,-0.0245 -0.04672,-0.04053 0.0623,-0.01412 0.04625,-0.05789 -0.02001,-0.05789 -0.04092,0 -0.05192,-0.01067 -0.04005,-0.02895 0.009,-0.01402 0.02001,-0.0436 0.02001,-0.06947 0,-0.02587 0.01167,-0.04631 0.0267,-0.04631 0.01499,0 0.0267,0.0099 0.0267,0.02316 0,0.0169 0.02676,0.02316 0.09344,0.02316 0.144556,0 0.123886,-0.03991 -0.0267,-0.05211 -0.06717,-0.0053 -0.144003,-0.0052 -0.166863,0 -0.02912,0.0066 -0.04005,-0.0052 -0.04005,-0.02895 0,-0.01868 0.01167,-0.03473 0.0267,-0.03473 0.01499,0 0.0267,-0.0099 0.0267,-0.02316 0,-0.0133 0.02421,-0.02316 0.04672,-0.02316 0.02251,0 0.04005,-0.0098 0.04005,-0.02316 0,-0.01343 0.02308,-0.02316 0.0534,-0.02316 0.03031,0 0.0534,-0.0097 0.0534,-0.02316 0,-0.0169 -0.02675,-0.02895 -0.09344,-0.02895 -0.101986,0 -0.109687,-0.0052 -0.08009,-0.09263 0.0094,-0.02771 0.02869,-0.0521 0.04672,-0.0521 0.02078,0 0.03437,-0.01547 0.0267,-0.04631 -0.0066,-0.0266 -0.02674,-0.04631 -0.04005,-0.04631 -0.03066,0 -0.03076,-0.160682 0,-0.167887 0.01261,-0.003 0.03052,-0.02908 0.04005,-0.05789 0.0148,-0.04487 0.01277,-0.0521 -0.03337,-0.0521 -0.02272,0 -0.03893,-0.0015 -0.04672,-0.01158 0.04151,-0.09479 0.07411,-0.189005 0.08677,-0.277884 0.007,-4.47e-4 0.01149,1.12e-4 0.02001,0 0.06425,-0.0017 0.07312,-0.0063 0.0267,-0.01158 -0.02278,-0.0026 -0.03717,-0.0021 -0.04672,-0.0058 9.02e-4,-0.0079 0.0061,-0.01532 0.0067,-0.02316 0.01531,-0.0052 0.03816,-0.0077 0.07342,-0.01158 0.05716,-0.0063 0.09344,-0.02069 0.09344,-0.03474 0,-0.01291 0.01754,-0.02316 0.04005,-0.02316 0.02252,0 0.04672,-0.01565 0.04672,-0.02895 0,-0.0133 0.01753,-0.02316 0.04005,-0.02316 0.02251,0 0.04005,-0.0099 0.04005,-0.02316 0,-0.01901 -0.04077,-0.02316 -0.180212,-0.02316 l -0.173535,0 0,-0.04631 c 0,-0.03762 0.01095,-0.0521 0.05339,-0.0521 0.03031,0 0.0534,0.0097 0.0534,0.02316 0,0.0133 0.01753,0.02895 0.04005,0.02895 0.02273,0 0.04005,-0.01682 0.04005,-0.03474 0,-0.02746 0.02224,-0.03474 0.126815,-0.03474 0.118192,0 0.120141,1.11e-4 0.120141,-0.04631 0,-0.04651 -0.0019,-0.04631 -0.120141,-0.04631 -0.118192,0 -0.126815,-0.0055 -0.126815,-0.05211 0,-0.03224 -0.01277,-0.04631 -0.04005,-0.04631 -0.02251,0 -0.04005,-0.0098 -0.04005,-0.02316 0,-0.0133 -0.01754,-0.02316 -0.04005,-0.02316 -0.02729,0 -0.04005,0.01408 -0.04005,0.04631 0,0.03224 0.01277,0.04631 0.04005,0.04631 0.02273,0 0.04005,0.01682 0.04005,0.03474 0,0.02794 0.01527,0.03474 0.13349,0.03474 0.07502,0 0.140164,0.0027 0.140164,0.01158 0,0.0089 -0.06514,0.01736 -0.140164,0.01736 -0.103065,0 -0.13349,0.0049 -0.13349,0.02316 0,0.01627 -0.02994,0.02316 -0.08677,0.02316 -0.04225,0 -0.06467,0.0072 -0.08009,0.01736 -0.0201,-0.02236 -0.04158,-0.04057 -0.06007,-0.06368 -0.137432,-0.01326 -0.286058,0.0046 -0.440515,0.04053 -0.03982,-0.04361 -0.07794,-0.08581 -0.126816,-0.138942 -0.170444,-0.124283 -0.355407,-0.231103 -0.547306,-0.324197 0.277645,-0.132324 0.553553,-0.2669 0.814286,-0.422615 0.05609,-0.0335 -0.0075,-0.121802 -0.04005,-0.173677 -0.09429,-0.150209 -0.885752,-0.167217 -1.087938,-0.191046 0.01677,-0.0036 0.02001,-0.01336 0.02001,-0.02895 0,-0.01977 0.01649,-0.03474 0.04005,-0.03474 0.02274,0 0.04005,0.01682 0.04005,0.03474 0,0.01791 0.01732,0.02895 0.04005,0.02895 0.02251,0 0.04005,-0.01098 0.04005,-0.02316 0,-0.0122 0.04176,-0.02363 0.08677,-0.02895 0.07498,-0.0089 0.12016,-0.05789 0.05339,-0.05789 -0.01499,0 -0.0267,-0.0099 -0.0267,-0.02316 0,-0.01343 -0.02309,-0.02895 -0.05339,-0.02895 -0.03031,0 -0.06007,-0.0097 -0.06007,-0.02316 0,-0.01612 -0.02553,-0.02316 -0.08009,-0.02316 -0.05456,0 -0.08009,0.007 -0.08009,0.02316 0,0.0133 0.01753,0.02316 0.04005,0.02316 0.02274,0 0.04005,0.01682 0.04005,0.03473 0,0.02609 -0.01615,0.03474 -0.09344,0.03474 l -0.100118,0 0,-0.08105 c 0,-0.08897 -0.03861,-0.110412 -0.06674,-0.03474 -0.01847,0.04972 -0.06674,0.06632 -0.06674,0.02316 0,-0.01343 -0.02309,-0.02316 -0.0534,-0.02316 -0.03031,0 -0.0534,-0.0097 -0.0534,-0.02316 0,-0.0133 -0.01754,-0.02316 -0.04005,-0.02316 -0.03031,0 -0.04672,0.01575 -0.04672,0.06947 0,0.07217 0.0051,0.07526 0.100116,0.07526 0.07729,0 0.09344,0.0029 0.09344,0.02895 0,0.0215 -0.01702,0.03474 -0.0534,0.03474 -0.03001,0 -0.0534,0.0085 -0.0534,0.01736 0,0.0026 0.0037,0.0036 0.0067,0.0058 -0.117827,-0.0088 -0.23577,-0.01471 -0.353747,-0.02316 -0.199535,-0.158861 -0.499265,-0.122225 -0.767564,-0.06368 -0.299728,-0.02605 -0.597838,-0.06129 -0.894378,-0.104205 -0.180096,-0.328802 -1.043851,-0.212528 -1.328219,-0.219991 -0.496762,0.02968 -0.99147,0.06285 -1.488407,0.09842 -0.09012,-0.09054 -0.20871,-0.199374 -0.37377,-0.358933 -0.0019,-0.0015 -0.283552,-0.223993 -0.293677,-0.219991 -0.0051,0.002 -0.0083,0.0038 -0.01335,0.0058 -0.311328,-0.268777 -0.628868,-0.531232 -0.95445,-0.787337 -0.122137,-0.196368 -0.255932,-0.388375 -0.393793,-0.497875 -0.0454,-0.03606 -0.101994,-0.05762 -0.153513,-0.08684 -0.05514,0.02782 -0.111501,0.05355 -0.166862,0.08105 -0.139708,-0.07841 -0.288631,-0.13797 -0.453863,-0.162099 -0.21828,-0.03188 -0.329495,-0.0071 -0.547306,0.01736 -0.108049,0.02412 -0.218724,0.04647 -0.32705,0.06947 -0.124873,-0.139668 -0.256556,-0.274655 -0.393792,-0.405247 0.265805,-0.136261 0.533798,-0.271044 0.800935,-0.405247 -0.01326,-0.07454 0.01231,-0.245565 -0.133489,-0.266305 -0.06757,-0.0096 -0.426664,0.107477 -0.433841,0.109996 -0.291158,0.102189 -0.619125,0.252098 -0.947774,0.411036 -0.508055,0.146842 -1.019995,0.289116 -1.528453,0.434194 -0.559647,0.175876 -1.061819,0.390089 -1.548477,0.659974 -0.009,-0.0034 -0.01647,-0.0066 -0.0267,-0.01158 -0.04865,-0.02385 -0.143212,-0.02883 -0.240281,-0.01736 -0.134611,0.01591 -0.166861,0.0086 -0.166861,-0.04053 0,-0.05975 -0.07267,-0.110191 -0.186887,-0.133151 0.10534,-0.187786 0.209401,-0.387669 0.166864,-0.596292 -0.174848,-0.227697 -0.359238,-0.293592 -0.533958,-0.254727 0.01717,-0.02424 0.03036,-0.05604 0.04005,-0.08684 0.07304,-0.232229 0.127533,-0.318408 0.19356,-0.318408 0.02798,0 0.04672,-0.0351 0.04672,-0.07526 0,-0.04016 0.05259,-0.129725 0.113465,-0.196834 0.06088,-0.06711 0.09392,-0.136714 0.07342,-0.156309 -0.02249,-0.02149 -0.01131,-0.02546 0.0267,-0.01158 0.0359,0.01312 0.06007,0.002 0.06007,-0.02316 0,-0.0243 0.05344,-0.07193 0.113465,-0.109995 0.06002,-0.03807 0.106792,-0.08574 0.106792,-0.104207 0,-0.01847 0.03583,-0.03473 0.08009,-0.03473 0.06032,0 0.07126,-0.02592 0.04672,-0.09842 -0.0202,-0.05969 -0.0097,-0.09263 0.0267,-0.09263 0.0324,0 0.07328,-0.05231 0.09344,-0.115785 9.02e-4,-0.0025 0.0058,-0.0033 0.0067,-0.0058 0.144402,-0.09222 0.278419,-0.202434 0.40047,-0.306831 0.0228,0.09138 0.08197,0.158344 0.140163,0.133154 0.94415,-0.408762 1.671238,-0.763177 2.402808,-1.30837 0.632189,-0.214734 1.259886,-0.44197 1.902223,-0.6310272 0.05976,-0.01745 0.128954,-0.020252 0.180212,-0.052103 0.0025,-0.00148 0.0041,-0.00422 0.0067,-0.00578 0.02678,-0.00748 0.05325,-0.015838 0.08009,-0.023157 2.574582,-1.5718514 1.881001,-1.1665587 1.047891,-0.9146996 -0.379263,0.114655 -0.760361,0.2197193 -1.141333,0.3299874 -0.147329,0.023153 -0.44971,0.1369045 -0.734192,0.2142014 0.132918,-0.1202892 0.281847,-0.2638918 0.320375,-0.4341923 0.009,-0.00373 0.01738,-0.00863 0.0267,-0.011578 0.07299,-0.023083 0.149348,-0.065793 0.166862,-0.098418 0.01751,-0.032624 0.05628,-0.057893 0.08677,-0.057893 0.0305,0 0.04576,-0.018581 0.03337,-0.040523 -0.01236,-0.021944 0.0694,-0.091579 0.186885,-0.1563106 0.136138,-0.074999 0.192656,-0.1304298 0.153512,-0.1447315 -0.0342,-0.012487 -0.11035,0.016211 -0.173536,0.063683 -0.05992,0.045007 -0.143799,0.07533 -0.186885,0.069471 0.119306,-0.074393 0.239174,-0.147766 0.360421,-0.2199921 0.0031,0.039602 0.01696,0.069471 0.03337,0.069471 0.04936,0 0.233605,-0.1330764 0.233605,-0.1678885 0,-0.01608 0.02125,-0.020878 0.04672,-0.011578 0.02546,0.0093 0.09688,-0.011472 0.160187,-0.046314 0.06331,-0.034849 0.138412,-0.06368 0.166862,-0.06368 0.02846,0 0.0424,-0.028218 0.0267,-0.063683 -0.01984,-0.044841 -0.0012,-0.063681 0.06007,-0.063681 0.0837,0 0.100135,-0.028833 0.08677,-0.1215745 0.03697,-0.020278 0.0764,-0.037746 0.113465,-0.057892 0.02985,6.59e-5 0.0534,-0.00729 0.0534,-0.028946 0.02455,-0.013282 0.04883,-0.027292 0.07342,-0.040525 0.01115,-0.00168 0.02093,-0.00578 0.03337,-0.00578 0.0697,0 0.118144,-0.029212 0.140164,-0.081051 0.0032,-0.00758 0.0091,-0.010975 0.01335,-0.017357 0.02892,-0.015358 0.05781,-0.031019 0.08677,-0.046314 0.02027,0.00551 0.02444,0.0032 0.02001,-0.011578 0.05282,-0.027865 0.107251,-0.053386 0.160187,-0.08105 0.01973,-5.59e-5 0.03632,-5.589e-4 0.06007,0 0.03752,7.824e-4 0.06675,-0.023955 0.06675,-0.057892 0,-0.00206 -1.29e-4,-0.00382 0,-0.00578 0.04711,-0.02446 0.09299,-0.050934 0.140164,-0.07526 0.0069,-8.942e-4 0.01254,8.941e-4 0.02001,0 0.09003,-0.010629 0.166864,-0.040449 0.166864,-0.063682 0,-0.023235 0.08774,-0.058442 0.193559,-0.081049 0.117932,-0.025198 0.17674,-0.061358 0.160186,-0.08684 -0.01775,-0.027337 0.02925,-0.038858 0.126816,-0.040524 0.08163,-0.00148 0.114327,-0.013543 0.07342,-0.023158 -0.139951,-0.032885 0.04795,-0.068592 0.213582,-0.040523 0.147462,0.024999 0.285815,-0.013158 0.146839,-0.040525 -0.04474,-0.00883 -0.02439,-0.045699 0.06007,-0.1157861 0.0026,-0.00213 0.0041,-0.0037 0.0067,-0.00578 0.01578,-0.00561 0.03099,-0.011671 0.04672,-0.017359 0.06419,-0.018082 0.129402,-0.033931 0.19356,-0.052104 0.07247,-0.020529 0.692537,-0.1844512 0.807609,-0.2489363 0.01845,-0.010338 0.03502,-0.024286 0.0534,-0.034737 0.671034,-0.2118509 1.341861,-0.4163084 2.01569,-0.6194482 0.929434,-0.294877 1.424183,-0.4442758 2.309366,-0.746812 0.212944,-0.072781 0.438454,-0.1233455 0.634075,-0.2257799 0.06222,-0.012566 0.190237,-0.038938 0.226931,-0.046314 2.353482,-0.4736552 4.701495,-0.9733639 7.034891,-1.5167825 0.582108,-0.2658639 1.189478,-0.4958311 1.762058,-0.7757582 z m -4.385125,0.7178665 c -0.546899,0.1169297 -1.093312,0.2311435 -1.641919,0.341565 0.01929,-0.010603 0.03845,-0.023079 0.0534,-0.046314 0.03648,-0.056718 0.08074,-0.07288 0.146838,-0.057892 0.06258,0.01419 0.08007,0.00813 0.0534,-0.017359 -0.02731,-0.026102 0.01914,-0.040525 0.153512,-0.040525 0.136238,0 0.19356,-0.012395 0.19356,-0.046314 0,-0.00227 -6.44e-4,-0.00366 0,-0.00578 0.347837,-0.043689 0.692869,-0.086818 1.041217,-0.127363 z m -1.86885,0.2373592 c -0.01803,0.020322 -0.07736,0.046695 -0.153514,0.063681 -0.08638,0.019262 -0.133524,0.020895 -0.166862,0.011578 0.0395,-0.019792 0.05151,-0.025379 0.09344,-0.046314 0.07555,-0.010353 0.151342,-0.018784 0.226932,-0.028946 z m 0.08677,0.115785 c 0.01514,-0.00286 0.03709,-0.0052 0.06007,0 0.0067,0.00148 0.01359,-5.254e-4 0.02001,0 -0.03794,0.00761 -0.07552,0.015561 -0.113466,0.023157 0.0025,-0.00227 0.0067,-0.00304 0.0067,-0.00578 0,-0.00954 0.01156,-0.014506 0.0267,-0.017359 z M 70.78333,3.51102 c 0.03636,-0.00317 0.09406,-1.341e-4 0.166862,0.00578 0.05772,0.00477 0.0977,0.00701 0.133489,0.00578 -0.249852,0.049923 -0.497519,0.1014992 -0.74754,0.15052 0.01854,-0.00947 0.04073,-0.019102 0.06007,-0.028946 0.04084,-0.011565 0.07923,-0.022978 0.113466,-0.040525 0.06849,-0.0351 0.147393,-0.055854 0.173537,-0.046314 0.02613,0.00954 0.04672,-0.00279 0.04672,-0.023157 0,-0.012355 0.01702,-0.019996 0.0534,-0.023157 z m -3.857842,0.6426062 c -0.145016,0.043124 -0.325898,0.090568 -0.513935,0.1447309 9.02e-4,-0.00288 0.005,-0.00302 0.0067,-0.00578 0.16888,-0.046841 0.338359,-0.092217 0.507259,-0.1389421 z m -0.560655,0.1563089 c 0.0019,0.00132 0.005,0.00482 0.0067,0.00578 -0.03182,0.00913 -0.05462,0.013987 -0.08677,0.023157 0.0093,-0.00516 0.01756,-0.012078 0.0267,-0.017358 0.01745,-0.00483 0.03595,-0.00674 0.0534,-0.011578 z m 10.225285,0.214202 c 0.02555,-0.00348 0.05686,-0.00132 0.08677,0 0.05198,0.00232 0.08267,0.00519 0.106792,0.011578 0.003,0.019452 0.01042,0.038437 0.01335,0.057893 -0.008,0.00742 -0.01408,0.014171 -0.0267,0.023157 -0.155141,0.1104506 -0.307026,0.103633 -0.307026,-0.011578 0,-0.039117 0.05017,-0.070613 0.126814,-0.08105 z m -14.276687,0.289462 c -0.120692,0.075554 -0.21548,0.1544226 -0.287003,0.2315701 -0.04286,0.021434 -0.09232,0.04398 -0.12014,0.057892 -0.09821,0.048964 -0.142949,0.067873 -0.273652,0.1331531 -0.02076,-0.020184 -0.05139,-0.033252 -0.0801,-0.040525 -0.05603,-0.014208 -0.115326,0.00778 -0.173536,0.011578 -0.01309,0.00265 -0.027,0.003 -0.04005,0.00578 -0.0028,-0.00515 -0.0031,-0.012223 -0.0067,-0.017358 0.255165,-0.1058168 0.513179,-0.2132484 0.774237,-0.3068301 0.06981,-0.025025 0.136943,-0.050712 0.20691,-0.07526 z m -1.515104,0.4747181 c 0.06009,-0.024535 -0.08633,0.075496 -0.166862,0.1389423 -0.24598,0.092533 -0.487274,0.1966193 -0.727518,0.301041 0.293596,-0.1549247 0.583832,-0.3132012 0.89438,-0.4399833 z m 1.428336,0.3878786 c 0.01179,0.015489 0.02125,0.03065 0.03337,0.046314 -0.25335,0.081513 -0.502397,0.1643813 -0.760891,0.23157 0.0091,-0.00534 0.01758,-0.012038 0.0267,-0.017358 0.0179,-0.00731 0.03556,-0.015802 0.0534,-0.023157 0.213363,-0.083373 0.429122,-0.1631183 0.647423,-0.2373584 z m -2.436181,0.4226155 c -0.0217,0.017933 -0.04505,0.034154 -0.06674,0.052103 -0.07553,0.062488 -0.07762,0.063156 -0.120141,0.098416 -0.03541,0.011894 -0.07131,0.023006 -0.106792,0.034736 -0.02181,0.018266 -0.04457,0.034183 -0.06674,0.052103 -0.04031,0.016024 -0.06534,0.051395 -0.100118,0.075259 -0.02121,0.014561 -0.0453,0.026147 -0.06674,0.040526 -0.299608,0.09092 -0.599094,0.1790383 -0.907728,0.2431479 -0.01634,0.00339 -0.03577,0.00802 -0.0534,0.011578 0.03815,-0.016617 0.07515,-0.035791 0.113465,-0.052103 0.293489,-0.1215835 0.579788,-0.2487251 0.874356,-0.3705108 l -0.246955,0.1736769 c 0.247421,-0.1229347 0.496395,-0.2417989 0.74754,-0.3589329 z m 17.240151,0.2836735 c 0.02827,0.2682921 0.05202,0.5358957 0.08009,0.8047053 0.005,0.12364 0.01131,0.247081 0.02001,0.3705109 -0.02231,-0.019782 -0.06027,-0.04342 -0.126816,-0.075261 C 76.783878,7.3771604 76.763075,7.3398012 76.870434,7.17561 76.963289,7.0335944 77.01076,6.7910232 77.030621,6.3824848 z M 58.42889,7.1177191 c -0.02828,0.021891 -0.05851,0.041761 -0.08677,0.063681 -0.02981,-0.00984 -0.0207,-0.02073 0.02001,-0.046314 0.02199,-0.00637 0.04473,-0.011076 0.06674,-0.017359 z m -0.260304,0.075259 c -0.03388,0.020911 -0.0901,0.06264 -0.133489,0.098418 -0.121038,0.023137 -0.249312,0.043902 -0.340398,0.034736 0.157539,-0.042996 0.317549,-0.086916 0.473887,-0.1331536 z m 0.113465,0.034735 c -0.0094,0.00729 -0.01736,0.015859 -0.0267,0.023157 -0.02982,0.00538 -0.07241,0.014636 -0.113465,0.023157 0.03764,-0.020756 0.08595,-0.037777 0.140163,-0.046314 z M 77.13075,7.592437 c 0.0019,0.025064 0.0042,0.050243 0.0067,0.075259 -0.0029,0.00633 -0.0049,0.00795 0,0.00578 5.16e-4,0.00383 -5.15e-4,0.00775 0,0.011578 0.0061,-0.00273 0.01386,-0.0031 0.02001,-0.00578 0.0044,0.046234 0.0092,0.092697 0.01335,0.1389419 -0.07139,0.031975 -0.141988,0.066878 -0.213584,0.098418 0.0076,-0.2296352 0.0395,-0.3184084 0.140165,-0.3184084 0.01728,0 0.02459,-0.00297 0.03337,-0.00578 z m -0.600703,0.098416 c 0.01326,-1.118e-4 0.03147,1.118e-4 0.04672,0.00578 0.06099,0.022273 0.08126,0.071193 0.04672,0.1042059 -0.09355,0.089436 -0.160187,0.072738 -0.160187,-0.040526 0,-0.041475 0.02697,-0.068683 0.06674,-0.069471 z M 59.50348,8.0729433 c -0.01268,0.011632 -0.03552,0.027758 -0.04005,0.034735 -0.02297,0.035366 -0.0368,0.043615 -0.06007,0.028947 0.03427,-0.020251 0.06571,-0.043587 0.100117,-0.063681 z m -0.76089,0.046314 c 0.0022,0.00199 0.0044,0.00392 0.0067,0.00578 -0.142209,0.076684 -0.286245,0.1530906 -0.427166,0.2315689 0.138686,-0.080776 0.281171,-0.1573891 0.420491,-0.2373595 z m 0.146838,0.3184084 c -5.15e-4,0.00436 0,0.00664 0,0.011578 0,0.041877 -0.03463,0.088117 -0.08009,0.098416 -0.04114,0.00934 -0.09493,0.045475 -0.126814,0.08684 -0.0036,-0.013505 -0.006,-0.028153 -0.01335,-0.040524 1.29e-4,-0.00374 -1.14e-4,-0.00783 0,-0.011578 0.07381,-0.04803 0.145562,-0.097658 0.220256,-0.1447315 z m -3.310535,0.7294448 c -0.04191,0.014209 -0.08497,0.026171 -0.126815,0.040525 0.01555,-0.011894 0.03134,-0.022675 0.04672,-0.034735 0.02702,-0.00259 0.05336,-0.00192 0.08009,-0.00578 z m -0.921076,0.06947 c 0.02475,0.0051 0.04065,0.012197 0.03337,0.01736 -0.01783,0.012683 -0.04857,0.00505 -0.06674,0.017359 -0.09093,0.06154 -0.156245,0.151471 -0.240281,0.2199909 -0.06046,0.049294 -0.123815,0.092178 -0.186885,0.138942 -0.02972,0.024574 -0.06248,0.046113 -0.09344,0.069471 -0.106482,0.040828 -0.214295,0.079956 -0.320375,0.1215745 -0.246561,0.1174715 -0.493977,0.236184 -0.740866,0.353143 0.0021,-0.0811 0.126949,-0.1903589 0.226931,-0.1910441 0.06953,-4.47e-4 0.0717,-0.00464 0.0067,-0.028948 -0.06545,-0.024479 -0.06705,-0.037489 0.0067,-0.081049 0.04774,-0.028207 0.119589,-0.052102 0.153511,-0.052102 0.03392,0 0.04524,-0.011223 0.0267,-0.028947 -0.01854,-0.017728 0.01162,-0.034736 0.07342,-0.034736 0.06242,0 0.113466,-0.020007 0.113466,-0.046314 0,-0.030848 0.03447,-0.042303 0.09344,-0.028945 0.07585,0.017191 0.08112,0.00665 0.0534,-0.075261 -0.0278,-0.082111 -0.0054,-0.1029419 0.106791,-0.1331536 0.05509,-0.014838 0.0998,-0.034816 0.120142,-0.052102 0.135141,-0.04064 0.270968,-0.07834 0.40714,-0.115785 0.174245,-0.05152 0.160378,-0.050107 0.226934,-0.06947 z m -1.13466,1.2620556 c -0.192228,0.09835 -0.339219,0.181965 -0.694145,0.38209 -0.03759,0.02601 -0.41942,0.278747 -0.473888,0.358933 -0.124367,0.05492 -0.24876,0.108295 -0.373769,0.162099 0.03306,-0.128611 0.07548,-0.250953 0.126813,-0.358933 0.01816,-0.006 0.0399,-0.0089 0.04672,-0.01736 0.199513,-0.08435 0.399303,-0.173368 0.600702,-0.254725 0.253629,-0.09535 0.510758,-0.182945 0.767564,-0.272096 z m -1.127985,0.266305 c 0.0065,-0.001 0.0089,0.001 0,0.0058 -0.05824,0.03109 -0.121523,0.0564 -0.180211,0.08684 0.01726,-0.02082 0.03414,-0.04035 0.0534,-0.05789 0.0303,-0.0071 0.107205,-0.03162 0.126815,-0.03474 z m 25.029253,0.642606 c 0.02414,0.110989 0.04471,0.224523 0.06674,0.335776 -0.05163,-0.07477 -0.07593,-0.158483 -0.08009,-0.237359 -9.02e-4,-0.03432 0.0069,-0.06601 0.01335,-0.09842 z m -47.502187,0.02895 c 0.01561,0.0036 0.0311,0.008 0.04672,0.01158 0.0068,0.0073 0.01406,0.01395 0.02001,0.02316 0.01728,0.0266 0.009,0.04631 -0.02001,0.04631 -0.02907,0 -0.0534,-0.01972 -0.0534,-0.04631 0,-0.0133 0.0028,-0.02597 0.0067,-0.03474 z m 22.659818,0.0521 c -0.246753,0.183839 -0.492518,0.367836 -0.740867,0.549979 0.01792,-0.07316 0.02949,-0.152287 0.04672,-0.23736 0.231218,-0.105476 0.462124,-0.208518 0.694144,-0.312619 z m 24.935812,0.376302 c 0.02846,0.150856 0.05167,0.300033 0.07342,0.45156 0.02257,0.157271 0.04081,0.316553 0.0534,0.474718 -0.0096,-0.08011 -0.01871,-0.153318 -0.0267,-0.254726 -0.0065,-0.08217 -0.01587,-0.155298 -0.0267,-0.219992 -0.0325,-0.194088 -0.08282,-0.305807 -0.146838,-0.318409 -0.103545,-0.02039 -0.100003,-0.0363 0.0067,-0.07526 0.03656,-0.01336 0.05466,-0.03478 0.06675,-0.05789 z M 53.696693,12.08489 c 0.0037,0.0069 0.01335,0.01328 0.01335,0.02316 0,0.03086 -0.05426,0.0647 -0.12014,0.08684 0.03625,-0.03593 0.07027,-0.07427 0.106792,-0.109994 z m -0.280328,0.283672 c 0.0023,0.01502 -0.0012,0.02394 -0.0267,0.02895 0.0093,-0.0094 0.01743,-0.01957 0.0267,-0.02895 z m -0.09344,0.121575 c -6.44e-4,0.04782 -0.01027,0.07036 -0.04672,0.06947 0.01542,-0.02326 0.03111,-0.04631 0.04672,-0.06947 z m -0.19356,0.29525 c -1.29e-4,0.0057 -0.0092,0.01082 -0.01335,0.01736 0.0038,-0.0061 0.0095,-0.01126 0.01335,-0.01736 z m -0.06007,0.09842 c -0.0079,0.02042 -0.01297,0.03922 -0.01335,0.05789 -5.15e-4,0.04095 -0.02653,0.06769 -0.05339,0.05789 0.02284,-0.03839 0.04338,-0.07763 0.06674,-0.115785 z m -0.12014,0.196834 c 0.04126,0 0.04378,0.01514 0,0.04631 -0.01737,0.01238 -0.0368,0.02159 -0.04672,0.03474 0.01546,-0.02709 0.03099,-0.05407 0.04672,-0.08105 z m 25.229488,0.08105 c -0.05816,0.06137 -0.117741,0.121201 -0.18021,0.179466 -0.0046,7.82e-4 -0.01482,0.0041 -0.02002,0.0058 0.0048,-0.006 0.01335,-0.01193 0.01335,-0.01736 0,-0.01143 -0.0045,-0.01706 -0.01335,-0.02316 0.0606,-0.04567 0.119532,-0.08835 0.200235,-0.144732 z m -25.27621,0.0058 c -0.0069,0.01062 -0.0086,0.02259 -0.0067,0.02895 0.0057,0.01874 0.0065,0.03823 0.0067,0.05789 -0.02207,0.01166 -0.04503,0.02042 -0.06674,0.03474 0.02245,-0.04059 0.04372,-0.08122 0.06674,-0.121573 z m -3.06358,0.364721 c 0.04847,0.02306 0.05177,0.02969 -0.03337,0.02895 -0.01327,-1.12e-4 -0.03734,0.0052 -0.0534,0.0058 0.0208,-0.0081 0.05703,-0.02315 0.08677,-0.03473 z m 27.552203,0.02895 c -0.04481,0.04915 -0.09138,0.09857 -0.140165,0.14473 0.0245,-0.05395 0.06923,-0.102989 0.140165,-0.14473 z m -27.54553,0.196835 c 9.02e-4,-8.1e-5 0.0053,-1.12e-4 0.0067,0 -9.02e-4,0.0038 9.02e-4,0.0078 0,0.01158 -0.004,-0.0052 -0.01098,-0.01122 -0.0067,-0.01158 z m -0.0267,0.144729 c -0.02136,0.08962 -0.04098,0.177889 -0.06674,0.266307 -0.107263,0.02476 -0.199496,0.04301 -0.273652,0.05789 -0.03816,0.0061 -0.06842,0.01188 -0.09345,0.01736 0.03684,-0.02739 0.06596,-0.05734 0.06675,-0.07526 0.0029,-0.06633 0.13831,-0.156309 0.24028,-0.156309 0.0566,0 0.08317,-0.01523 0.06675,-0.04053 -0.01297,-0.01998 0.01589,-0.04753 0.06007,-0.06947 z m 3.610888,0.208413 c 0.03177,0 0.06007,0.01701 0.06007,0.03474 0,0.01773 -0.01345,0.02895 -0.0267,0.02895 -0.01324,0 -0.03485,-0.01122 -0.0534,-0.02895 -0.01854,-0.01773 -0.01176,-0.03474 0.02001,-0.03474 z m -13.162051,0.02895 c 0.150991,0.112138 0.302369,0.224205 0.453864,0.335775 0.0034,0.0043 0.01015,0.0092 0.01335,0.01158 0.0012,8.94e-4 0.0054,-8.94e-4 0.0067,0 0.0049,0.0019 0.0085,0.0086 0.01335,0.0058 0.0276,0.02027 0.05238,0.04353 0.08009,0.06368 0.603652,0.469361 1.212956,0.94162 1.788757,1.441522 -0.625155,-0.326189 -1.255642,-0.64111 -1.888875,-0.955225 -0.08759,-0.07692 -0.169961,-0.15667 -0.253629,-0.237358 -0.179583,-0.177303 -0.360252,-0.355556 -0.540633,-0.532612 0.110513,-0.04183 0.21836,-0.08748 0.32705,-0.133152 z m 13.041911,0.07526 c 0.04121,0.0064 0.09347,0.0062 0.133489,0 0.05669,-0.0088 0.100117,-0.0019 0.100117,0.01736 0,0.01925 -0.03508,0.02758 -0.0801,0.01736 -0.05313,-0.01204 -0.08677,0.0046 -0.08677,0.04053 0,0.03304 0.02955,0.04468 0.07342,0.03474 0.03691,-0.0084 0.09876,0.0118 0.140163,0.04052 -0.217525,0.09184 -0.435882,0.181398 -0.654098,0.272095 0.01251,-0.02555 0.02719,-0.04983 0.04005,-0.07526 0.126906,-0.103924 0.2429,-0.216398 0.333723,-0.347354 z m 0.507259,0.08684 c 0.02391,0.0033 0.06827,0.008 0.106791,0.01158 -0.03041,0.01745 -0.06312,0.03421 -0.09344,0.0521 -0.01559,-0.0189 -0.03157,-0.03877 -0.04672,-0.05789 0.01156,-0.002 0.02125,-0.0075 0.03337,-0.0058 z m -0.13349,0.150522 c -0.01659,0.01023 -0.03013,0.02437 -0.04672,0.03473 0.01405,-0.01098 0.0261,-0.02445 0.04672,-0.03473 z m 0.420493,0.09842 c -0.04088,0.02 -0.07922,0.04373 -0.120141,0.06368 -0.0019,-0.0041 -0.0048,-0.0075 -0.0067,-0.01158 0.04936,-0.02153 0.107302,-0.0486 0.126816,-0.0521 z m -5.052574,0.02895 c -0.0047,0.03213 -0.0065,0.05793 -0.01335,0.09842 -0.01576,0.18034 -0.0024,0.36349 0,0.544189 0.0083,0.211021 0.01542,0.423084 0.06007,0.631027 -0.0019,0.01345 -0.0047,0.02709 -0.0067,0.04052 -0.01508,-0.0086 -0.01856,-0.0049 -0.02001,0.02316 -0.0019,0.03826 -0.01625,0.03865 -0.06007,-0.0058 -0.03046,-0.0309 -0.05283,-0.07612 -0.04672,-0.09842 0.0061,-0.0223 -0.0082,-0.06981 -0.03337,-0.104207 -0.02982,-0.04079 -0.02196,-0.06698 0.02001,-0.07526 0.08528,-0.01678 0.07973,-0.0928 -0.0067,-0.109995 -0.0541,-0.01075 -0.04919,-0.02368 0.0067,-0.06368 0.0566,-0.04068 0.05595,-0.05266 0,-0.06368 -0.09614,-0.01894 -0.102452,-0.609103 -0.0067,-0.677342 0.02855,-0.02034 0.06938,-0.07868 0.106791,-0.138941 z m 7.949293,0.683132 c 0.01473,0.01955 0.03238,0.03815 0.04672,0.05789 -0.02711,-0.01319 -0.04779,-0.02146 -0.07342,-0.03474 0.009,-0.0054 0.01738,-0.01734 0.0267,-0.02316 z m 20.931131,0.01736 c 0.0012,-8.94e-4 0.0055,8.94e-4 0.0067,0 0.0019,-5.59e-4 0.0047,5.59e-4 0.0067,0 -0.0027,0.0039 -0.0037,0.0079 -0.0067,0.01158 -0.04194,0.0521 -0.06704,0.08248 -0.113465,0.133152 -0.06603,0.06894 -0.136316,0.131443 -0.206909,0.196834 -0.01779,0.0015 -0.03442,0.0058 -0.0534,0.0058 -0.03925,0 -0.08111,0.0071 -0.12014,0.01158 0.05998,-0.05983 0.120457,-0.119455 0.180212,-0.179466 0.03747,-0.02758 0.07561,-0.05386 0.113465,-0.08105 0.03113,-0.01628 0.06165,-0.03443 0.09344,-0.0521 l 0.08009,-0.02895 c 0.007,-0.0055 0.01298,-0.01191 0.02001,-0.01736 z m -21.638625,0.01736 c 0.01534,0.0027 0.03141,0.0029 0.04672,0.0058 l -0.220257,0.138942 c 0.112237,-0.0029 0.207016,-0.002 0.287001,-0.0058 -0.03062,0.0089 -0.06316,0.03455 -0.100115,0.06368 -0.04276,-0.01072 -0.0917,-0.01877 -0.13349,-0.02895 -0.03975,-0.01028 -0.08045,-0.01852 -0.120142,-0.02894 -0.0012,-0.0056 0.0012,-0.01176 0,-0.01736 0.06645,-0.03673 0.160938,-0.08397 0.240282,-0.127364 z m 20.010055,0.422616 c -0.08076,0.08045 -0.165811,0.157227 -0.246956,0.237358 -5.15e-4,-8.1e-5 -0.0049,0.0053 -0.0067,0.0058 -0.05736,0.05663 -0.109305,0.117208 -0.166862,0.173677 -0.0066,-0.0017 -0.01265,-0.0075 -0.0267,-0.0058 -0.02485,0.003 -0.04257,0.0085 -0.06674,0.01158 0.0045,-0.0096 0.0089,-0.01935 0.01335,-0.02895 0.01097,-0.0078 0.02246,-0.01547 0.03337,-0.02316 0.04833,-0.03402 0.182158,-0.107101 0.213582,-0.127362 -0.0026,7.82e-4 -0.0077,-0.0023 -0.01335,0 -0.06962,0.02782 -0.137148,0.0592 -0.20691,0.08684 0.0037,-0.01157 0.0046,-0.02284 0.0067,-0.03474 0.005,-0.02817 -0.01093,-0.08112 -0.03337,-0.127363 l 0.500587,-0.167869 z m 1.054565,0.0058 c 0.07044,0.0065 0.04319,0.04689 -0.08677,0.121575 -0.007,0.004 -0.01289,0.0077 -0.02001,0.01158 0.02497,-0.0326 0.04881,-0.06561 0.07342,-0.09842 0.01142,-0.01134 0.02196,-0.02339 0.03337,-0.03474 z m -2.68981,0.09263 c 0.01418,0.01296 0.03289,0.02475 0.05339,0.03473 -0.180914,0.132361 -0.364909,0.262827 -0.547306,0.39367 0.0099,-0.05242 0.06539,-0.119679 0.13349,-0.162099 0.07502,-0.04673 0.226952,-0.16214 0.340398,-0.254728 0.0055,-0.0045 0.0142,-0.0072 0.02001,-0.01158 z m -7.39531,0.02316 c 0.02251,0 0.04672,0.0099 0.04672,0.02316 0,0.0133 -0.02421,0.02895 -0.04672,0.02895 -0.02252,0 -0.04005,-0.01565 -0.04005,-0.02895 0,-0.0133 0.01754,-0.02316 0.04005,-0.02316 z m -18.227972,0.173677 c 0.0057,5.59e-4 0.0179,0.0041 0.0267,0.0058 -0.0024,0.0134 -0.0042,0.02715 -0.0067,0.04053 -0.02941,-0.02943 -0.04485,-0.04861 -0.02001,-0.04631 z m 2.589693,0.04631 c -0.01713,0.155699 -0.03447,0.312838 -0.04672,0.468929 -0.03866,-0.131705 -0.07448,-0.262027 -0.113465,-0.393668 0.05369,-0.02461 0.107053,-0.04987 0.160187,-0.07526 z m 5.693322,0.04053 c 0.0836,0.01954 0.164091,0.04182 0.246955,0.06368 0.0017,0.0025 0.0049,0.0034 0.0067,0.0058 -0.03105,-0.0081 -0.06298,-0.01354 -0.09344,-0.02316 -0.05419,-0.01414 -0.105683,-0.03283 -0.160187,-0.04631 z m 0.380443,0.22578 c 0.01134,0.01152 0.0224,0.02496 0.03337,0.03474 -0.001,5.59e-4 0.001,0.0053 0,0.0058 -0.0098,-1.11e-4 -0.0279,-0.0049 -0.04005,-0.0058 -0.0052,-0.0026 -0.0084,-0.0069 -0.01335,-0.01158 -0.0019,-0.0019 -0.01435,0.0017 -0.02001,0 0.01261,-0.0074 0.0259,-0.01495 0.04005,-0.02316 z m 0.654098,0.0058 c 0.04901,-8.94e-4 0.180151,0.01593 0.140164,0.04053 -0.0091,0.0056 -0.01758,0.01184 -0.0267,0.01736 -0.0056,-0.0019 -0.0088,-0.0034 -0.01335,-0.0058 -0.0019,-5.59e-4 -0.0047,5.59e-4 -0.0067,0 -0.0099,-0.0062 -0.02001,-0.01608 -0.02001,-0.02316 0,-0.01682 -0.02309,-0.02233 -0.07342,-0.02316 -0.0017,-0.0035 -0.0057,-0.0057 0,-0.0058 z m -2.202575,0.01158 c 0.344464,0.05918 0.692147,0.119379 1.041218,0.15052 0.11629,0.0087 0.159987,0.01275 0.20691,0 0.0077,1.12e-4 0.02273,-0.0058 0.03337,-0.01158 0.0019,-8.94e-4 0.0047,-0.0049 0.0067,-0.0058 0.0066,0.0027 0.0114,0.0058 0.02001,0.0058 0.01135,0 0.02598,-3.1e-5 0.03337,0.0058 0.001,7.82e-4 -0.001,0.0051 0,0.0058 0.0046,0.0052 0.0067,0.01053 0.0067,0.01736 0,0.0045 0.0046,0.0077 0.0067,0.01158 -0.215883,0.129119 -0.496344,0.302103 -0.894379,0.544188 -0.05977,0.03635 -0.02683,0.132157 0,0.191045 0.116584,0.255933 0.797833,0.148864 0.974473,0.202624 0.410104,0.01121 0.817743,0.02183 1.228102,0.02895 0.0068,0.0155 0.01922,0.02316 0.04005,0.02316 0.0225,0 0.04005,0.01102 0.04005,0.02316 0,0.01375 0.04158,0.02324 0.113466,0.02895 0.06345,0.005 0.121475,0.01952 0.126814,0.02895 0.0053,0.0094 0.043,0.01736 0.08677,0.01736 0.02731,0 0.047,0.0015 0.06007,0.0058 0.0026,8.94e-4 0.0044,0.0049 0.0067,0.0058 0.0057,0.0038 0.01335,0.0057 0.01335,0.01158 0,0.01413 0.02339,0.0301 0.0534,0.03474 0.03001,0.0046 0.0534,0.01532 0.0534,0.02316 0,0.0071 0.01973,0.01047 0.04005,0.01158 -0.001,0.01528 0.001,0.03102 0,0.04631 l 0.06007,-0.02895 c 0.03113,0.01586 0.05089,0.02589 0.06007,0.04053 l -0.08009,0.03474 c -0.0051,0.01125 -0.0089,0.02334 -0.01335,0.03474 -0.03451,0.02286 -0.06864,0.05603 -0.08009,0.08684 -0.0015,0.0043 -0.0043,0.0076 -0.0067,0.01158 -0.01167,0.01116 -0.02222,0.01968 -0.03337,0.02895 -0.0046,0.0017 -0.0089,0.0058 -0.01335,0.0058 -0.0213,0 -0.04005,0.0099 -0.04005,0.02316 0,0.0133 -0.02046,0.02802 -0.04672,0.02895 -0.04248,0.0017 -0.0404,-5.59e-4 0,0.0058 0.01726,0.0027 0.0297,0.006 0.04005,0.01158 0.0012,8.94e-4 0.0048,-7.82e-4 0.0067,0 0.02577,0.01638 0.01907,0.04052 -0.0267,0.04052 -0.02954,0 -0.0534,0.0085 -0.0534,0.01736 0,0.0089 -0.038,0.01645 -0.08677,0.01736 -0.04876,8.94e-4 -0.07298,0.0075 -0.04672,0.01158 0.03375,0.0052 0.0534,0.02463 0.0534,0.06368 0,0.03836 0.01164,0.0521 0.04005,0.0521 0.0074,0 0.01481,0.0034 0.02001,0.0058 0.0022,0.004 0.0048,0.0072 0.0067,0.01158 0.0065,0.01031 0.01335,0.02303 0.01335,0.04631 1.29e-4,0.0019 -1.29e-4,0.004 0,0.0058 -0.001,0.03472 -0.0074,0.0592 -0.0267,0.06368 -0.001,0 -0.0116,1.12e-4 -0.01335,0 -0.02251,0 -0.04005,-0.01565 -0.04005,-0.02895 0,-0.01612 -0.03221,-0.02316 -0.08677,-0.02316 -0.05457,0 -0.08009,-0.007 -0.08009,-0.02316 0,-0.0133 -0.01754,-0.02316 -0.04005,-0.02316 -0.02251,0 -0.04005,0.0099 -0.04005,0.02316 0,0.0133 -0.01754,0.02316 -0.04005,0.02316 -0.02274,0 -0.04005,0.01682 -0.04005,0.03474 0,0.01075 -0.0043,0.01778 -0.01335,0.02316 -0.001,8.94e-4 -0.0057,-8.94e-4 -0.0067,0 -0.0089,0.004 -0.0244,0.0058 -0.04005,0.0058 -0.03001,0 -0.0534,0.0092 -0.0534,0.01736 0,0.0081 0.08268,0.01699 0.180209,0.02316 0.04876,0.0031 0.09467,0.007 0.126816,0.01158 0.0045,8.94e-4 0.0089,0.0047 0.01335,0.0058 0.01719,0.0033 0.03337,0.0088 0.03337,0.01158 0,0.0068 0.01476,0.01025 0.03337,0.01158 0.01371,0.006 0.03129,0.01493 0.04672,0.02316 0.0021,0.0039 0.0067,0.0071 0.0067,0.01158 0,0.01789 0.01732,0.02895 0.04005,0.02895 0.01125,0 0.01929,0.0072 0.0267,0.01158 -0.167476,0.01793 -0.333314,0.03902 -0.500585,0.05789 -0.08443,0.0031 -0.169403,0.0092 -0.253629,0.01158 -0.109191,0.0032 -0.232966,-0.03659 -0.32705,0.01158 -0.03593,0.0184 -0.07115,0.03908 -0.106791,0.05789 -0.105372,0.01977 -0.193224,0.05203 -0.280328,0.09263 -0.0121,-0.05193 -0.02375,-0.105175 -0.04005,-0.15631 -0.0659,-0.202344 -0.164375,-0.3959 -0.266978,-0.584713 -0.0329,-0.0794 -0.07909,-0.156828 -0.126816,-0.237359 -0.02331,-0.03933 -0.02645,-0.132995 -0.07342,-0.115785 -0.018,-0.0308 -0.03548,-0.06181 -0.0534,-0.09263 -0.12493,0.06511 -0.237182,0.119329 -0.347071,0.173678 -0.0067,-0.0092 -0.01335,-0.02082 -0.01335,-0.04052 0,-0.05373 -0.0025,-0.05789 -0.09344,-0.05789 -0.0683,0 -0.09344,0.0052 -0.09344,0.02316 0,0.01387 -0.01837,0.02285 -0.03337,0.01736 -0.01499,-0.0055 -0.0267,-0.03046 -0.0267,-0.0521 0,-0.02164 0.01167,-0.03473 0.0267,-0.03473 0.01502,0 0.03337,-0.01565 0.03337,-0.02895 0,-0.01612 -0.03221,-0.02316 -0.08677,-0.02316 -0.06367,0 -0.08009,-0.0039 -0.08009,-0.02895 0,-0.02507 -0.01644,-0.03474 -0.08009,-0.03474 -0.05457,0 -0.08009,-0.007 -0.08009,-0.02316 0,-0.01343 -0.02976,-0.02316 -0.06007,-0.02316 -0.03001,0 -0.0534,-0.0085 -0.0534,-0.01736 0,-0.0089 -0.02923,-0.01736 -0.06674,-0.01736 -0.05377,0 -0.06674,0.01011 -0.06674,0.04052 0,0.02122 0.01755,0.04122 0.04005,0.04631 0.02249,0.0051 0.04005,0.02116 0.04005,0.03474 0,0.0136 0.01754,0.02316 0.04005,0.02316 0.0225,0 0.04005,0.0099 0.04005,0.02316 0,0.01477 0.0269,0.02895 0.06675,0.02895 0.0359,0 0.07146,0.0099 0.08009,0.02316 0.0096,0.01473 0.0044,0.02316 -0.02001,0.02316 -0.02204,0 -0.04005,0.0099 -0.04005,0.02316 0,0.0027 0.0052,0.0036 0.0067,0.0058 -0.107334,0.0015 -0.215192,0.02857 -0.320375,0.08105 -0.02773,0.01384 -0.02008,0.0099 -0.04672,0.02316 -0.007,-0.197798 -0.395631,-0.02678 -0.83431,0.196834 -0.0041,-0.01034 -0.0048,-0.01784 0,-0.02895 0.172209,-0.08558 0.246074,-0.12032 0.467213,-0.23157 -0.133723,0.0569 -0.264502,0.110063 -0.400467,0.162099 0.01023,-0.03119 0.0015,-0.06947 -0.03337,-0.06947 -0.02177,0 -0.04807,-0.01115 -0.06007,-0.02316 -0.012,-0.012 -0.03931,-0.02504 -0.06007,-0.02895 -0.0304,-0.0057 -0.03077,-0.01262 0.0067,-0.03473 0.04384,-0.02582 0.04609,-0.02895 -0.02001,-0.02895 -0.04417,0 -0.07342,-0.0079 -0.07342,-0.02316 0,-0.0133 0.01171,-0.02316 0.0267,-0.02316 0.01502,0 0.0267,-0.0099 0.0267,-0.02316 0,-0.0133 -0.01657,-0.02316 -0.04005,-0.02316 -0.02942,0 -0.03724,-0.01349 -0.03337,-0.04631 0.01724,-0.01212 0.03541,-0.02212 0.0534,-0.03474 0.19361,-0.04105 0.352632,-0.07258 0.487237,-0.09842 0,0.02771 0.03942,0.0168 0.06007,-0.01158 0.04033,-0.0078 0.09156,-0.01586 0.126815,-0.02316 0.141958,0.01395 0.379764,0.02081 0.420491,0.01158 0.02958,-0.0067 0.04672,-0.0286 0.04672,-0.05789 0,-0.04108 -0.008,-0.04631 -0.08009,-0.04631 -0.06367,0 -0.08677,0.0039 -0.08677,0.02895 0,0.02746 -0.01557,0.03473 -0.120142,0.03473 -0.028,0 -0.03647,-0.0047 -0.0534,-0.0058 0.335126,-0.08465 0.384017,-0.178571 0.400468,-0.61366 -0.0037,-0.134314 -0.01383,-0.270773 -0.02001,-0.405246 z m 1.52178,0.04631 c 0.0024,-0.0013 0.0087,0.0068 0.01335,0.01736 0.0023,0.0052 0.0078,0.0074 0.01335,0.01158 -0.01291,0.0074 -0.03331,0.0096 -0.04672,0.01736 0.0079,-0.0065 0.0124,-0.01282 0.01335,-0.02316 0.0012,-0.01365 0.0042,-0.0219 0.0067,-0.02316 z m -0.04672,0.05789 c -0.01156,0.0067 -0.02141,0.01612 -0.03337,0.02316 0.0063,-0.01321 0.01591,-0.02316 0.03337,-0.02316 z m 18.928791,0.05211 c 0.0021,0.0067 0.0067,0.0093 0.0067,0.01736 0,0.05233 0.06539,0.112636 0.140164,0.127364 0.08222,0.01619 -0.004,0.09592 -0.220258,0.214201 0.01833,-0.06405 0.02528,-0.126302 0,-0.185255 -0.0098,-0.02291 -0.01988,-0.04648 -0.03337,-0.06368 0.03705,-0.03558 0.06983,-0.07435 0.106792,-0.109996 z m -14.223291,0.0521 c 0.05802,3.4e-5 0.116077,0.0025 0.173536,0.0058 -5.15e-4,0.0038 -0.0066,0.0072 -0.0067,0.01158 -0.144697,-0.0029 -0.289142,-0.0087 -0.43384,-0.01158 0.08853,-0.0019 0.177671,-0.0058 0.266979,-0.0058 z m -8.403155,0.642607 c 0.0063,0.14063 0.0028,0.282353 -0.01335,0.422614 l 0.266981,-0.115786 c 0.03498,0.110072 0.0652,0.200743 0.08009,0.196836 0.02536,-0.0067 0.04207,-0.01102 0.06674,-0.01736 -0.0032,0.01045 -0.0099,0.01876 -0.01335,0.02895 -0.01072,0.01317 -0.02165,0.03039 -0.04005,0.04052 -0.04565,0.02512 -0.05866,0.04333 -0.04672,0.08684 0.01254,0.04564 0.0097,0.05703 -0.03337,0.06368 -0.03335,0.0052 -0.0534,0.0029 -0.0534,-0.01158 0,-0.01247 -0.02338,-0.02316 -0.0534,-0.02316 -0.03,0 -0.0534,0.0028 -0.0534,0.01158 0,0.02 -0.09163,0.08105 -0.12014,0.08105 -0.01166,0 -0.01832,-0.0076 -0.02001,-0.02316 -0.003,-0.02687 -0.0081,-0.02687 -0.02001,0 -0.0069,0.01552 -0.01948,0.02316 -0.03337,0.02316 -0.01391,0 -0.03166,-0.0076 -0.03337,-0.02316 -0.003,-0.02687 -0.0015,-0.02687 -0.01335,0 -0.0069,0.01552 -0.02614,0.02316 -0.04005,0.02316 -0.01393,0 -0.02001,0.01565 -0.02001,0.02895 0,0.0133 0.01754,0.02316 0.04005,0.02316 0.02251,0 0.04005,-0.0085 0.04005,-0.01736 0,-0.02468 0.04938,-0.02096 0.06674,0.0058 0.0085,0.01304 -0.0048,0.0334 -0.0267,0.04631 -0.02186,0.01291 -0.04005,0.03817 -0.04005,0.0521 0,0.01927 0.02672,0.02316 0.12014,0.02316 0.09094,0 0.126815,-0.0052 0.126815,-0.02316 0,-0.0133 -0.01754,-0.02316 -0.04005,-0.02316 -0.02248,0 -0.04672,-0.0098 -0.04672,-0.02316 0,-0.0133 0.02422,-0.02316 0.04672,-0.02316 0.02249,0 0.04005,0.0027 0.04005,0.01158 0,0.0089 0.01756,0.01736 0.04005,0.01736 0.02249,0 0.04005,-0.01084 0.04005,-0.02316 0,-0.01113 0.01728,-0.01678 0.04005,-0.01736 -0.06794,0.12374 -0.03205,0.0923 0.380445,-0.202623 0.0075,4.47e-4 0.01057,0 0.02001,0 0.05303,0 0.08009,0.01295 0.08009,0.02895 0,0.0133 0.01753,0.02316 0.04005,0.02316 0.0225,0 0.04005,0.0099 0.04005,0.02316 0,0.03713 0.06945,0.02755 0.08677,-0.01158 0.0087,-0.01905 0.0085,-0.05577 0,-0.08105 -0.012,-0.03546 -9.02e-4,-0.04631 0.03337,-0.04631 0.02439,0 0.04005,-0.0085 0.04005,-0.01736 0,-0.0089 -0.01167,-0.01158 -0.0267,-0.01158 -0.01499,0 -0.02499,-0.01343 -0.0267,-0.02895 -0.003,-0.02686 -0.0081,-0.02686 -0.02001,0 -0.0069,0.01553 -0.02531,0.02895 -0.04672,0.02895 -0.02141,0 -0.04005,0.0027 -0.04005,0.01158 0,0.0089 -0.01754,0.01736 -0.04005,0.01736 -0.01576,0 -0.02654,-0.0064 -0.03337,-0.01158 0.0058,-0.0041 0.01405,-0.01313 0.02001,-0.01736 0.0039,-5.59e-4 0.009,0 0.01335,0 0.02249,0 0.04005,-0.0108 0.04005,-0.02316 0,-0.0024 -0.0054,-0.0034 -0.0067,-0.0058 0.02832,-0.02009 0.06919,-0.04763 0.100118,-0.06947 0.0065,0.02098 0.01035,0.03474 0.0267,0.03474 0.04401,0 0.07342,0.06926 0.07342,0.179467 0,0.04322 0.01167,0.08105 0.0267,0.08105 0.01502,0 0.03166,-0.01343 0.03337,-0.02895 0.003,-0.02687 0.0015,-0.02687 0.01335,0 0.0069,0.01552 0.02065,0.02895 0.03337,0.02895 0.0036,0 0.0091,0.01076 0.01335,0.01736 -0.322497,0.119826 -0.650121,0.229271 -0.981147,0.329986 -0.0074,-0.0044 -0.01335,-0.01072 -0.01335,-0.01736 0,-0.01827 -0.03043,-0.02895 -0.133489,-0.02895 -0.03979,0 -0.0652,0.0023 -0.08677,0 0.04018,-0.02359 0.08068,-0.04498 0.120139,-0.06947 0.0057,-0.0036 -0.0132,-0.0041 -0.02001,-0.0058 -0.0147,-0.0034 -0.02524,-0.0086 -0.04005,-0.01158 -0.03886,-0.0079 -0.109193,-0.01921 -0.14684,-0.02316 -0.0093,-8.94e-4 -0.01736,7.82e-4 -0.0267,0 -0.03464,-0.0097 -0.0665,-0.01782 -0.100115,-0.02895 -0.110159,-0.03576 -0.140848,-0.04141 -0.20691,0 -0.0066,-0.004 -0.01809,-0.0096 -0.0267,-0.01158 -0.02251,-0.0051 -0.04005,-0.0024 -0.04005,0.0058 0,0.0042 -0.01063,0.01002 -0.0267,0.01158 -0.0287,-0.0021 -0.06049,-0.0052 -0.100117,-0.0058 -0.0068,-0.184674 -0.01465,-0.371059 -0.01335,-0.555767 0.154123,-0.07397 0.307441,-0.150111 0.460536,-0.225782 0.0066,-0.0019 0.01352,-0.0038 0.02001,-0.0058 0.08222,-0.02561 0.156693,-0.06167 0.233607,-0.09842 z m 10.392147,0.162098 c 0.0046,0.0015 0.0087,0.0043 0.01335,0.0058 0.0474,0.01836 0.09308,0.03909 0.140164,0.05789 0.0582,0.05311 0.115577,0.109516 0.166864,0.167888 -0.006,0.0019 -0.01271,0.0041 -0.02002,0.0058 -0.04778,-0.0039 -0.09804,-0.002 -0.153512,0.01736 -0.13437,0.0057 -0.160188,0.0045 -0.160188,-0.01736 0,-0.01506 -0.02308,-0.02895 -0.05339,-0.02895 -0.02893,0 -0.06987,-0.0092 -0.09344,-0.02316 -0.02358,-0.01393 -0.04672,-0.02108 -0.04672,-0.01158 0,0.0095 -0.03508,0.01736 -0.08009,0.01736 -0.03116,0 -0.05293,-7.83e-4 -0.06674,-0.0058 0.02358,-0.01204 0.04804,-0.02741 0.07342,-0.04053 0.146149,-0.0303 0.259872,-0.05515 0.233605,-0.121574 0.01167,-0.0062 0.03467,-0.01678 0.04672,-0.02316 z m -17.540503,0.133153 c 0.0077,-7.82e-4 0.01271,5.59e-4 0.02001,0 0.0045,0.04432 0.0087,0.08884 0.01335,0.133153 -0.106666,0.05097 -0.202301,0.104957 -0.30035,0.162097 -0.01636,-0.07922 -0.04197,-0.155369 -0.07342,-0.231568 0.119279,-0.02783 0.241724,-0.05399 0.340398,-0.06368 z m 12.301045,0 c 0.126441,0.0021 0.254003,0.0036 0.380444,0.0058 -1.29e-4,0.02491 -0.006,0.05034 -0.0067,0.07526 -0.01655,-0.0069 -0.05401,-0.01158 -0.113465,-0.01158 -0.0243,0 -0.0309,7.82e-4 -0.04672,0 -0.0113,-2.2e-5 -0.02476,-0.0017 -0.04005,-0.0058 -0.0015,-1.12e-4 -0.0054,1.11e-4 -0.0067,0 -0.0017,-5.59e-4 -0.0049,5.58e-4 -0.0067,0 -0.01762,-0.0046 -0.02001,-0.0094 -0.02001,-0.02316 0,-0.02509 -0.01645,-0.03474 -0.08009,-0.03474 -0.02251,0 -0.04524,-0.0029 -0.06007,-0.0058 z m 4.925756,0.07526 c 0.03001,0 0.0534,0.0085 0.0534,0.01736 0,0.0089 -0.02339,0.01736 -0.0534,0.01736 -0.03001,0 -0.05339,-0.0085 -0.05339,-0.01736 0,-0.0089 0.02339,-0.01736 0.05339,-0.01736 z m -0.166862,0.04053 c 0.110883,0.0073 0.19356,0.01887 0.19356,0.03474 0,0.01675 0.0541,0.02316 0.220257,0.02316 0.0474,0 0.06365,0.0049 0.09345,0.0058 -0.03083,0.01621 -0.06533,0.03122 -0.100118,0.05211 -0.329719,0.06882 -0.540704,0.09839 -0.667447,0.133151 -0.05317,-0.01199 -0.06667,-0.03023 0,-0.04052 0.02626,-0.0041 0.0087,-0.01065 -0.04005,-0.01158 -0.0462,-8.94e-4 -0.06998,-0.0073 -0.08009,-0.01736 0.124636,-0.05447 0.247214,-0.113175 0.380443,-0.179465 z m -7.335239,0.0058 c 0.02249,0 0.04005,0.0099 0.04005,0.02316 0,0.0133 -0.01754,0.02316 -0.04005,0.02316 -0.02251,0 -0.04005,-0.0098 -0.04005,-0.02316 0,-0.0133 0.01753,-0.02316 0.04005,-0.02316 z m 3.237118,0.0058 c 0.009,0.02121 0.01766,0.04246 0.0267,0.06368 l -0.04005,0.01736 c -0.0061,-0.0183 -0.01775,-0.03685 -0.04005,-0.0521 l 0.0534,-0.02895 z m 3.05023,0.04052 c 0.01499,0 0.0267,0.0099 0.0267,0.02316 0,0.0133 -0.01168,0.02316 -0.0267,0.02316 -0.01499,0 -0.0267,-0.0099 -0.0267,-0.02316 0,-0.0133 0.01171,-0.02316 0.0267,-0.02316 z m 0.120142,0 -0.04672,0.03474 c -0.02774,-0.01345 -0.01276,-0.03144 0.04672,-0.03474 z m -0.180212,0.01736 c 0.0086,0.0073 0.01441,0.01384 0.02001,0.02895 0.0068,0.01838 0.02482,0.03235 0.04005,0.04053 l -0.08009,0.05789 c 0.0135,-0.05082 0.02177,-0.09355 0.02001,-0.127363 z m -6.047066,0.04631 c 0.01499,0 0.0267,0.0085 0.0267,0.01736 0,0.0089 -0.01167,0.01736 -0.0267,0.01736 -0.01499,0 -0.0267,-0.0085 -0.0267,-0.01736 0,-0.0089 0.01167,-0.01736 0.0267,-0.01736 z m 0,0.04631 c 0.0068,-8.5e-5 0.01388,0.0072 0.02001,0.01736 0.0056,0.0093 0.02305,0.01506 0.04672,0.01736 -0.01113,0.0054 -0.0224,0.0063 -0.03337,0.01158 -0.01598,-0.01116 -0.03053,-0.02405 -0.04672,-0.03474 0.0049,-0.0051 0.0081,-0.01153 0.01335,-0.01158 z m -5.192737,0.02895 c -0.0126,0.23547 -0.02657,0.470993 -0.03337,0.706288 -0.0098,-0.03464 -0.01717,-0.06951 -0.0267,-0.104206 1.29e-4,-0.0078 -0.0026,-0.01199 -0.0067,-0.01736 -0.03427,-0.125878 -0.06849,-0.254447 -0.09344,-0.382089 -0.0031,-0.01536 -0.0036,-0.03095 -0.0067,-0.04631 0.18211,-0.04763 0.170139,-0.05175 0.09344,-0.121575 l 0.07342,-0.03473 z m 2.783252,0.01736 c -0.0062,0.01408 -0.007,0.02731 -0.01335,0.04052 -0.0031,-0.0039 -0.01335,-0.0065 -0.01335,-0.01158 0,-0.0133 0.01167,-0.02895 0.0267,-0.02895 z m 8.937114,0.08105 c 0.0066,0.01193 0.02649,0.02316 0.07342,0.02316 0.05456,0 0.08009,0.0071 0.08009,0.02316 0,0.01017 0.01156,0.0196 0.0267,0.02316 -0.05279,0.06646 -0.08282,0.167318 -0.140164,0.347354 -0.0037,0.01532 -0.0032,0.03097 -0.0067,0.04631 -0.109733,0.06507 -0.231143,0.131196 -0.360422,0.202623 0.02808,0.171067 0.0602,0.345047 0.09344,0.515242 -0.04049,0 -0.126814,0.06484 -0.126814,0.09263 0,0.01499 0.0354,0.02316 0.12014,0.02316 0.01615,0 0.0208,4.47e-4 0.03337,0 0.003,0.0154 0.0037,0.03092 0.0067,0.04631 -0.05279,-0.0019 -0.08009,-0.0086 -0.08009,-0.02316 0,-0.01689 -0.03344,-0.02316 -0.100116,-0.02316 -0.06387,0 -0.09344,0.0022 -0.09344,0.01736 0,0.01478 -0.01794,0.02285 -0.05339,0.01736 -0.0029,-4.47e-4 -0.004,4.48e-4 -0.0067,0 0.0047,-0.0031 0.0067,-0.007 0.0067,-0.01158 0,-0.01504 0.0243,-0.02316 0.06674,-0.02316 0.04243,0 0.06674,-0.01391 0.06674,-0.02895 0,-0.01512 -0.02354,-0.02316 -0.06674,-0.02316 -0.03798,0 -0.07814,-0.0098 -0.08677,-0.02316 -0.0086,-0.0133 -0.03249,-0.02316 -0.0534,-0.02316 -0.02089,0 -0.03337,0.0098 -0.03337,0.02316 0,0.01784 -0.03118,0.02316 -0.120142,0.02316 -0.06413,0 -0.106881,-0.0064 -0.140163,-0.01158 0.04993,-0.317206 0.112029,-0.631897 0.193559,-0.943647 0.139969,-0.05818 0.280169,-0.116342 0.420492,-0.173677 0.117784,-0.04894 0.192754,-0.07911 0.280328,-0.115785 z m 5.272829,0.02895 c 0.02572,0.007 0.02531,0.03997 -0.0067,0.04631 -0.01488,0.003 -0.03022,0.06444 -0.04005,0.133154 -0.01179,0.0824 -0.03048,0.116509 -0.05339,0.121574 0.0065,-0.05405 0.01268,-0.108148 0.02001,-0.1621 0.02604,-0.04635 0.05643,-0.0908 0.08009,-0.138942 z m 5.453041,0.01158 c -0.08438,0.08641 -0.169075,0.174206 -0.253631,0.260516 -0.02617,0.02354 -0.05387,0.04597 -0.08009,0.06947 -0.07384,0.0353 -0.146778,0.06825 -0.220256,0.104206 0.136636,-0.130381 0.272871,-0.260645 0.413816,-0.387879 0.04661,-0.01528 0.09357,-0.03099 0.140165,-0.04631 z m -27.278551,0.02315 c 0.03117,-0.01584 -0.05794,0.04629 -0.09344,0.0521 0.03195,-0.01625 0.0615,-0.03586 0.09344,-0.0521 z m 7.341915,0.0058 c 0.01969,-0.0046 0.04434,4.47e-4 0.0534,0.0058 0.009,0.0054 -0.01129,0.0065 -0.04005,0.0058 -0.03178,-7.83e-4 -0.03511,-0.0064 -0.01335,-0.01158 z m 1.074589,0.01158 c 0.0022,0.0074 0.0047,0.01489 0.0067,0.02316 -0.236709,0.121219 -0.478969,0.251005 -0.694144,0.353145 -0.0012,-0.01193 -0.0022,-0.02455 -0.01335,-0.02895 0.148176,-0.07329 0.447714,-0.221658 0.700819,-0.347356 z m 2.663113,0.08685 c -0.01818,-0.0024 -0.110096,0.01843 -0.240281,0.06368 0.161443,-0.01432 0.271871,-0.05947 0.240281,-0.06368 z m -4.511941,0.06368 c 0.0041,4.47e-4 0.0094,-4.47e-4 0.01335,0 0.01294,0.0015 0.02706,0.0037 0.04005,0.0058 0.0057,0.0019 0.01771,0.0037 0.02001,0.0058 0.007,0.0013 0.01329,0.0043 0.02001,0.0058 -0.02832,0.01147 -0.05963,0.02882 -0.09344,0.04631 -0.001,-0.02115 9.02e-4,-0.04253 0,-0.06368 z m 6.120487,0.0521 c 0.0089,-0.001 0.01905,-5.59e-4 0.0267,0.0058 0.0065,0.0089 0.0067,0.01922 0.0067,0.03474 0,0.03378 -0.0093,0.0521 -0.04005,0.0521 -0.01514,0 -0.02787,-0.0046 -0.03337,-0.01158 -0.0044,-0.0057 6.45e-4,-0.0098 0.0067,-0.02316 0.0091,-0.01995 0.01335,-0.04545 0.01335,-0.0521 0.0057,-0.0042 0.01377,-0.005 0.02001,-0.0058 z m 9.037229,0.08105 c 0.0225,0 0.04005,0.0063 0.04005,0.01736 1.29e-4,0.01108 0.01098,0.03794 0.02001,0.05789 0.01326,0.02925 0.0065,0.03474 -0.04005,0.03474 -0.01758,0 -0.02464,0.0076 -0.03337,0.01158 0.0041,-0.04055 0.0087,-0.08107 0.01335,-0.121574 z m -14.623757,0.0058 c 0.02129,0.0024 0.04486,0.0058 0.08677,0.0058 0.05153,0 0.08557,0.002 0.106792,0.0058 0.01036,0.0031 0.0167,0.01336 0.0267,0.01736 -0.04624,0.01386 -0.09382,0.02691 -0.140165,0.04052 -0.02573,-0.02405 -0.05435,-0.04542 -0.08009,-0.06947 z m 5.639924,0.0058 c 0.0015,0.01158 0.0047,0.02318 0.0067,0.03474 0.0091,0.06457 0.01828,0.132108 0.03337,0.196834 0,-0.0133 -0.01837,-0.02316 -0.03337,-0.02316 -0.01499,0 -0.0267,-0.0099 -0.0267,-0.02316 0,-0.0133 -0.01578,-0.02316 -0.04005,-0.02316 -0.01096,-0.01259 -0.02125,-0.024 -0.0267,-0.03473 9.02e-4,-0.0023 -0.001,-0.0032 0,-0.0058 0.0091,-0.01995 0.01335,-0.04103 0.01335,-0.0521 1.29e-4,-0.0111 0.01756,-0.02316 0.04005,-0.02316 0.02274,0 0.02896,-0.0181 0.03337,-0.04631 z m -0.220257,0.109996 c 0.02546,0 0.04005,0.01545 0.04005,0.04052 0,0.02507 -0.01459,0.04053 -0.04005,0.04053 -0.01273,0 -0.02633,-0.0046 -0.03337,-0.01158 -0.007,-0.0069 -0.0067,-0.01641 -0.0067,-0.02895 0,-0.01254 -5.15e-4,-0.022 0.0067,-0.02895 0.007,-0.007 0.02063,-0.01158 0.03337,-0.01158 z m -4.945781,0.01158 c 0.0051,0.0048 0.0092,0.01384 0.02001,0.01736 -0.05197,0.02239 -0.108982,0.04834 -0.153511,0.06368 -0.01863,0.0064 -0.03084,0.0181 -0.04672,0.02895 -0.0022,5.59e-4 -0.01813,0.0053 -0.02001,0.0058 0.01756,-0.01266 0.09466,-0.06299 0.200235,-0.115786 z m 5.025875,0.08685 c 0.02251,0 0.04005,0.0099 0.04005,0.02316 0,0.0133 -0.01754,0.02316 -0.04005,0.02316 -0.02251,0 -0.04005,-0.0098 -0.04005,-0.02316 0,-0.0133 0.01754,-0.02316 0.04005,-0.02316 z m 9.130672,0.04053 c 0.03413,-0.0013 0.03337,0.0103 0.03337,0.0521 0,0.02377 -0.0041,0.03737 -0.01335,0.04631 -0.0082,-0.0082 -0.02212,-0.01534 -0.03337,-0.01736 -0.0064,-0.02433 -0.01382,-0.05106 -0.02001,-0.07526 0.01236,-0.0015 0.02518,-0.0055 0.03337,-0.0058 z m -5.359598,0.06368 c 0.01833,-0.0015 0.03054,0.0082 0.04672,0.01736 -0.02707,0.01271 -0.05297,0.02791 -0.08009,0.04052 -0.02035,0.0095 0.01036,-0.05604 0.03337,-0.05789 z m 5.446366,0.04631 c 0.01499,0 0.0267,0.0098 0.0267,0.02316 0,0.0133 -0.01167,0.02316 -0.0267,0.02316 -0.01499,0 -0.0267,-0.0099 -0.0267,-0.02316 0,-0.0133 0.01167,-0.02316 0.0267,-0.02316 z m -13.469076,0.138942 c 0.07365,0.04859 0.143147,0.09921 0.213583,0.15052 -0.142076,0.0265 -0.247228,0.04794 -0.293677,0.07526 -0.0096,-0.01421 -0.01852,-0.01297 -0.02001,0.0058 -0.0012,0.01553 -0.01753,0.02895 -0.04005,0.02895 -0.01756,0 -0.02621,0.0025 -0.03337,0.0058 -0.01228,-0.0267 -0.01961,-0.05333 -0.03337,-0.08105 0.06759,-0.06392 0.136736,-0.123782 0.206909,-0.185256 z M 54.577722,18.783 c 0.0017,0.0032 0.0048,0.0074 0.0067,0.01158 -0.05973,0.02895 -0.09733,0.05086 -0.160187,0.08105 -0.02682,0.01231 0.04029,-0.03274 0.09344,-0.06368 l 0.06007,-0.02895 z m 13.388983,0.127363 c 0.01062,0.03373 0.01969,0.06554 0.03337,0.09842 0.0049,0.0099 0.0094,0.0096 0.01335,0.01736 -0.07607,0.03788 -0.150828,0.07796 -0.226933,0.115786 0.04115,-0.0668 0.07835,-0.136051 0.120141,-0.202624 0.02042,-0.0094 0.03971,-0.01949 0.06007,-0.02895 z m -12.281021,0.06947 c 0.0017,0.01367 0.0043,0.02809 0,0.03474 -0.01063,0.01647 -0.04499,-5.59e-4 -0.06674,0 0.02428,-0.01276 0.04297,-0.0223 0.06674,-0.03474 z m -0.327049,0.03474 c 0.192814,0.129068 0.345276,0.188771 0.480562,0.196834 0.009,0.02373 0.01788,0.04585 0.0267,0.06947 -0.01271,0.01135 -0.02424,0.02576 -0.02001,0.04052 0.0081,0.02845 -0.03488,0.04631 -0.12014,0.04631 -0.003,0 -0.0038,4e-5 -0.0067,0 0.0026,-0.04154 0.01192,-0.08759 0,-0.127364 -0.0044,-0.0145 -0.0038,-0.04578 -0.02001,-0.04052 -0.124959,0.04064 -0.155461,0.04628 -0.213583,0.06368 -0.03448,-0.0033 -0.07005,-0.0053 -0.106791,-0.01158 -0.0037,-0.05637 -0.01292,-0.111358 -0.01335,-0.167887 -0.0015,-0.02304 -0.0051,-0.04643 -0.0067,-0.06947 z m -0.500584,0.0521 c 0.0073,0.0036 0.01619,0.0031 0.0267,0.0058 -0.0025,0.01156 -0.006,0.02056 -0.0067,0.03474 -0.0056,-0.01323 -0.01402,-0.02704 -0.02001,-0.04053 z m 7.508776,0.127363 c 0.03031,0 0.0534,0.0097 0.0534,0.02316 0,0.01827 0.0371,0.02316 0.140163,0.02316 0.04191,0 0.06547,-0.0034 0.08677,-0.0058 -0.0058,0.0077 -0.0067,0.0239 -0.0067,0.04631 0,0.03206 0.01167,0.05789 0.0267,0.05789 0.01499,0 0.0267,-0.01565 0.0267,-0.02895 0,-0.01934 0.04322,-0.02316 0.206909,-0.02316 l 0.133489,0 c 6.44e-4,0.0038 -6.44e-4,0.0078 0,0.01158 -0.02901,0.01104 -0.05767,0.02392 -0.08677,0.03473 -0.116097,0.307172 -0.251038,0.611583 -0.427167,0.897333 l 0.493911,-0.196835 c 0.0012,0.01917 0.0067,0.02827 0.0067,0.05789 0,0.118213 -0.0067,0.150519 -0.04005,0.150519 -0.02857,0 -0.04005,0.0127 -0.04005,0.0521 0,0.03795 -0.01402,0.05789 -0.04005,0.05789 -0.02127,0 -0.05636,0.0062 -0.08009,0.01158 -0.02947,0.0067 -0.04523,-0.0027 -0.04672,-0.02316 -0.0017,-0.02288 -0.0081,-0.02426 -0.02001,-0.0058 -0.0086,0.0133 -0.03021,0.03387 -0.04672,0.04053 -0.03675,0.0148 0.0291,0.04015 0.100117,0.04052 0.02626,1.12e-4 0.04672,0.0098 0.04672,0.02316 0,0.0133 0.02421,0.02895 0.04672,0.02895 0.0273,0 0.04005,0.01408 0.04005,0.04631 0,0.03224 -0.01276,0.04631 -0.04005,0.04631 -0.02701,0 -0.04672,0.01525 -0.04672,0.04631 0,0.07066 -0.02519,0.09842 -0.09344,0.09842 -0.0525,0 -0.0654,0.01199 -0.08009,0.07526 -0.0093,0.04081 -0.0088,0.08422 0,0.09263 0.0088,0.0084 0.01036,0.05727 0,0.109994 -0.013,0.06619 -0.03366,0.09263 -0.06007,0.09263 -0.02431,0 -0.03337,0.02137 -0.03337,0.0521 0,0.04299 -0.01402,0.04631 -0.08677,0.04631 -0.05456,0 -0.08009,0.007 -0.08009,0.02316 0,0.0133 0.01753,0.02316 0.04005,0.02316 0.03142,0 0.04005,0.02457 0.04005,0.09263 0,0.06806 -0.0086,0.08684 -0.04005,0.08684 -0.02545,0 -0.04005,0.01545 -0.04005,0.04052 0,0.03402 -0.01098,0.04052 -0.08009,0.04052 -0.07858,0 -0.08009,0.001 -0.08009,0.06947 0,0.03569 -0.0057,0.0616 -0.01335,0.08105 -0.117486,0.06712 -0.232718,0.131754 -0.347072,0.202625 -0.05456,0 -0.08009,0.007 -0.08009,0.02316 0,0.0067 0.0059,0.01299 0.01335,0.01736 -0.05766,0.03642 -0.117082,0.07233 -0.173536,0.109997 -0.08611,-0.0293 -0.170272,-0.05696 -0.260304,-0.08105 l 0.19356,-0.08105 c 0.01623,-0.129264 0.0357,-0.258503 0.05339,-0.38788 0.393659,-0.09374 0.536009,-0.184838 0.560656,-0.358933 0.04321,-0.08804 0.02821,-0.226921 0.02001,-0.515243 -0.01373,-0.42822 0.01391,-0.8598 0.07342,-1.285211 0.0071,-0.0088 0.01335,-0.01836 0.01335,-0.03474 0,-0.03761 0.01095,-0.04631 0.0534,-0.04631 z m -9.517792,0.02316 c 0.0491,0.03804 0.0977,0.07504 0.153514,0.104207 -0.03962,0.04263 -0.07809,0.08172 -0.106792,0.127363 -0.120989,-0.03921 -0.239137,-0.08308 -0.360421,-0.121573 0.04389,-0.01989 0.0852,-0.03405 0.126813,-0.0521 0.06301,-0.01872 0.124031,-0.0388 0.186886,-0.05789 z m 14.530317,0.06947 c 0.02129,-0.0019 0.04169,0.008 0.06007,0.02895 -0.06655,0.03305 -0.133706,0.06534 -0.200234,0.09842 0.01954,-0.0291 0.04059,-0.0577 0.06007,-0.08684 0.02954,-0.02 0.05988,-0.03876 0.08009,-0.04053 z m 1.394963,0.15052 c -9.02e-4,0.03549 0.01478,0.07111 0,0.104207 -0.07055,0.157957 -0.292266,0.427062 -0.413817,0.573136 -0.0097,0.0032 -0.03958,0.01536 -0.04672,0.01736 -0.120892,0.04603 -1.391524,0.525671 -1.495083,0.567347 -0.122348,0.04924 -0.245586,0.09974 -0.367096,0.150521 -0.02946,0.01232 -0.05736,0.02812 -0.08677,0.04052 0,-0.022 0.01675,-0.03474 0.0534,-0.03474 0.01514,0 0.02352,-0.0015 0.03337,-0.0058 0.0098,-0.0044 0.02002,-0.01065 0.02002,-0.01736 0,-0.0133 0.01753,-0.02316 0.04005,-0.02316 0.02249,0 0.04005,-0.0098 0.04005,-0.02316 0,-0.0133 0.01753,-0.02894 0.04005,-0.02894 0.02729,0 0.04005,-0.01408 0.04005,-0.04631 0,-0.03224 0.01944,-0.04631 0.04672,-0.04631 0.02251,0 0.04005,-0.0099 0.04005,-0.02316 0,-0.01612 0.02554,-0.02895 0.08009,-0.02895 0.05457,0 0.08009,-0.007 0.08009,-0.02316 0,-0.0133 0.02046,-0.02301 0.04672,-0.02316 0.04093,-1.11e-4 0.04178,-0.0035 0.0067,-0.01736 -0.03572,-0.0141 -0.03496,-0.01443 0.0067,-0.02895 0.02626,-0.0092 0.0534,-0.02767 0.0534,-0.04053 0,-0.01286 0.01754,-0.02316 0.04005,-0.02316 0.0225,0 0.04005,-0.01565 0.04005,-0.02895 0,-0.0133 0.01754,-0.02316 0.04005,-0.02316 0.02251,0 0.04005,-0.0098 0.04005,-0.02316 0,-0.0133 0.01753,-0.02316 0.04005,-0.02316 0.02251,0 0.04005,-0.0098 0.04005,-0.02316 0,-0.0084 0.01117,-0.01922 0.0267,-0.02316 0.0017,-7.82e-4 0.005,8.95e-4 0.0067,0 0.01551,-0.0032 0.03641,-0.0058 0.06675,-0.0058 0.06668,0 0.09344,-0.0063 0.09344,-0.02316 0,-0.01343 -0.02309,-0.02316 -0.0534,-0.02316 0.153808,-0.08035 0.304021,-0.163176 0.453866,-0.248937 0.04802,-0.03154 0.250618,-0.149083 0.266978,-0.208413 0.01485,-0.05378 -0.02262,-0.06639 -0.06675,-0.05789 -0.02888,0.0056 -0.05234,0.02005 -0.08009,0.02895 -5.16e-4,-0.0019 0,-0.0038 0,-0.0058 0,-0.01504 0.02431,-0.02316 0.06674,-0.02316 0.0059,0 0.0081,4.47e-4 0.01335,0 0.03233,-0.0021 0.0534,-0.01023 0.0534,-0.02316 0,-0.0133 -0.01167,-0.02316 -0.0267,-0.02316 -0.012,0 -0.0164,-0.01356 -0.02001,-0.02316 0.03504,-0.01458 0.04565,-0.01751 0.07342,-0.02895 0.05456,0 0.08009,-0.007 0.08009,-0.02316 0,-0.002 9.02e-4,-0.0039 0,-0.0058 0.226831,-0.09117 0.165362,-0.0578 0.487237,-0.144731 0.03474,-0.0094 0.06647,-0.02273 0.100116,-0.03473 z m -13.055259,0.01736 c 0.0038,0.0028 0.0025,0.0027 0.0067,0.0058 0.04964,0.03666 0.06117,0.07773 0.03337,0.09842 -0.02576,0.01919 -0.02837,0.06315 -0.0067,0.09842 0.01499,0.02437 -0.01045,0.07486 -0.04672,0.133153 0.0034,-0.02782 0.0102,-0.05525 0.0067,-0.09842 -0.0065,-0.05837 -0.01692,-0.120892 -0.02001,-0.179465 -5.15e-4,-0.0062 1.29e-4,-0.01113 0,-0.01736 0.0079,-0.0034 0.01176,-0.0082 0.02001,-0.01158 1.29e-4,-5.7e-5 0.0063,-0.01738 0.0067,-0.02895 z m 0.220258,0.0521 c 0.01136,0.05083 0.0179,0.104765 0.0267,0.156311 -0.04561,0.01806 -0.08587,0.04094 -0.120139,0.07526 -0.0019,-0.01712 -1.29e-4,-0.03483 -0.0067,-0.05789 -0.03223,-0.115309 -0.02169,-0.137812 0.07342,-0.167887 0.0087,-0.0027 0.01788,-0.0033 0.0267,-0.0058 z m 2.336064,0.0521 c 0.104507,-0.0028 0.20927,1.11e-4 0.313698,0 -0.107277,0.0052 -0.210944,0.01006 -0.313698,0 z m -2.476229,0.22579 c -0.0015,0.0015 0.0015,0.0042 0,0.0058 -0.03997,0.07221 -0.06696,0.147989 -0.08677,0.225781 -5.15e-4,-0.02575 -0.0063,-0.0427 -0.01335,-0.05211 0.0043,-0.08251 0.04787,-0.173199 0.100115,-0.179465 z m 11.947299,0.01736 c -0.0035,0.02324 -0.01021,0.04052 -0.03337,0.04052 -0.02274,0 -0.04005,0.01104 -0.04005,0.02895 0,0.009 -0.006,0.01734 -0.01335,0.02316 -0.0189,0.0079 -0.0412,0.0094 -0.06007,0.01736 -0.0029,0.0017 -0.0048,0.0037 -0.0067,0.0058 -0.111237,0.04692 -0.222928,0.09702 -0.333723,0.144732 0.0221,-0.01745 0.0452,-0.0341 0.06674,-0.0521 0.05862,-0.02982 0.115051,-0.06262 0.173536,-0.09263 0.09511,-0.04491 0.159112,-0.0755 0.246956,-0.115783 z m 5.873531,0.05789 c 0.133032,0.0058 0.1302,0.03091 -0.0067,0.208413 -0.07314,0.09485 -0.183438,0.147818 -0.273652,0.127363 -0.01561,-0.0035 -0.02793,-0.0043 -0.04005,-0.0058 0.04364,-0.04849 0.06718,-0.06847 0.133489,-0.138942 0.06348,-0.06349 0.124445,-0.126723 0.186885,-0.191044 z m -13.268843,0.04631 c 0.0036,0.0098 0.0098,0.01913 0.01335,0.02895 0.0035,0.01135 0.0034,0.02332 0.0067,0.03474 -0.09917,0.04695 -0.200851,0.09263 -0.300351,0.138943 -0.0068,-0.0089 -0.01956,-0.01736 -0.03337,-0.01736 -0.02125,0 -0.04464,-0.0063 -0.0534,-0.01736 -0.01272,-0.01612 -0.02061,-0.01612 -0.03337,0 -0.0088,0.01108 -0.04676,0.02301 -0.08677,0.02316 -0.114705,4.47e-4 -0.200235,0.01625 -0.200235,0.04053 0,0.01402 -0.0286,0.02316 -0.08009,0.02316 -0.07275,0 -0.08009,0.0033 -0.08009,0.04631 0,0.03224 0.01277,0.04631 0.04005,0.04631 0.02249,0 0.04005,-0.0099 0.04005,-0.02316 0,-0.01612 0.02552,-0.02316 0.08009,-0.02316 0.07224,0 0.08616,0.0059 0.08677,0.0521 -0.01046,0.01704 -0.01728,0.03478 -0.0267,0.0521 -0.0057,0.0031 -0.01165,0.0058 -0.02001,0.0058 -0.0641,0 -0.04911,0.01908 0,0.02895 -0.0056,0.01121 -0.0081,0.02343 -0.01335,0.03474 -0.02729,0.01195 -0.03569,0.02206 -0.01335,0.02895 -0.02848,0.0663 -0.05558,0.133577 -0.07342,0.202624 -0.0072,4.47e-4 -0.01147,0 -0.02001,0 -0.06209,0 -0.07952,0.0077 -0.09344,0.04052 -0.02129,0.05012 0.0022,0.103836 0.04672,0.104207 0.02036,1.12e-4 0.01758,0.0025 -0.0067,0.01158 -0.0226,0.0084 -0.03933,0.05125 -0.04672,0.104207 -0.01315,0.09374 -0.06674,0.125173 -0.06674,0.04052 0,-0.03843 -0.0077,-0.04631 -0.0534,-0.04631 -0.04912,0 -0.05607,0.0085 -0.04005,0.04631 0.01031,0.02438 0.03876,0.0508 0.06007,0.05789 0.05322,0.01769 0.04688,0.104206 -0.0067,0.104206 -0.02729,0 -0.04005,0.01987 -0.04005,0.0521 0,0.0266 -0.01167,0.04631 -0.0267,0.04631 -0.01502,0 -0.0267,0.01971 -0.0267,0.04631 0,0.0021 1.28e-4,0.0037 0,0.0058 -0.0482,-0.0098 -0.09728,-0.02314 -0.146839,-0.02895 -0.21583,0.128305 -0.439866,0.248001 -0.660773,0.370512 -0.187824,-0.08968 -0.357225,-0.171374 -1.067914,-0.497875 -0.212625,-0.08343 -0.427286,-0.161062 -0.640749,-0.243148 0.01999,-0.0029 0.03572,-0.0058 0.08677,-0.0058 0.09703,0 0.140165,-0.0075 0.140165,-0.02316 0,-0.0241 0.16329,-0.04052 0.380443,-0.04052 0.09011,0 0.135926,-0.01216 0.146839,-0.02895 0.0099,-0.01517 0.05299,-0.02316 0.113466,-0.02316 0.05298,0 0.09344,-0.0033 0.09344,-0.01158 0,-0.0068 0.02119,-0.01266 0.04672,-0.01736 0.04391,0.006 0.08598,0.0096 0.13349,0.01158 0.127472,0.0052 0.259594,0.0044 0.387119,0 0.01638,0.02868 0.05541,0.02227 0.06007,-0.0058 0.1639,-0.0046 0.918821,-0.02783 0.767564,-0.219992 0.01335,-0.0053 0.0267,-0.01628 0.0267,-0.02895 0,-0.02149 0.01702,-0.03473 0.0534,-0.03473 0.03001,0 0.0534,-0.0029 0.0534,-0.01158 0,-0.0087 0.02923,-0.02339 0.06674,-0.02895 0.05308,-0.0079 0.06674,-0.02162 0.06674,-0.05789 0,-0.02564 -0.01167,-0.04631 -0.0267,-0.04631 -0.01499,0 -0.0267,0.01701 -0.0267,0.03474 0,0.02609 -0.01615,0.02895 -0.09344,0.02895 -0.06669,0 -0.09344,0.01207 -0.09344,0.02895 0,0.0133 -0.02421,0.02316 -0.04672,0.02316 -0.02251,0 -0.04004,0.0085 -0.04004,0.01736 0,0.0089 -0.01754,0.01158 -0.04005,0.01158 -0.0103,0 -0.01376,0.0069 -0.02001,0.01158 -0.01341,-4.47e-4 -0.02663,4.47e-4 -0.04005,0 0.23464,-0.115087 0.469067,-0.233645 0.70082,-0.353143 0.03417,-0.0091 0.09125,-0.02063 0.12014,-0.02895 0.120775,-0.0077 0.241857,-0.01937 0.360421,-0.04052 0.119775,-0.03566 0.146993,-0.0468 0.20691,-0.08105 z m -4.81229,0.04052 c 0.0044,0.01288 0.0074,0.02416 0.01335,0.03474 -0.007,0.006 -0.013,0.01181 -0.02001,0.01736 6.44e-4,-0.0053 -5.15e-4,-0.02027 0,-0.02316 0.0012,-0.0098 0.0054,-0.01915 0.0067,-0.02895 z m -0.620726,0.06947 c -0.005,0.01879 -0.008,0.03938 -0.01335,0.05789 -0.0067,0.02357 -0.01351,0.03336 -0.02001,0.0521 -0.01764,-0.0063 -0.03576,-0.01108 -0.0534,-0.01736 0.03242,-0.02824 0.06206,-0.05714 0.08677,-0.09263 z m 16.045421,0.0058 c 0.02189,0.0096 0.04903,0.01254 0.07342,0.01736 l -0.04672,0.01739 c -0.04126,0.03385 -0.08431,0.0658 -0.126816,0.09842 -0.03311,0.0089 -0.06704,0.01419 -0.100116,0.02316 0.02378,-0.01986 0.04971,-0.03797 0.07342,-0.05789 0.02631,-0.02143 0.07815,-0.06088 0.126816,-0.09842 z m -11.079617,0.08684 c 0.03032,0 0.0534,0.0097 0.0534,0.02316 0,0.01343 -0.02307,0.02895 -0.0534,0.02895 -0.03031,0 -0.0534,-0.01553 -0.0534,-0.02895 0,-0.01343 0.02309,-0.02316 0.0534,-0.02316 z m 7.475405,0.01158 c -0.0087,0.0055 -0.01335,0.01682 -0.01335,0.02316 0,0.01343 -0.03211,0.01562 -0.08009,0.01736 0.0312,-0.013 0.06214,-0.02769 0.09344,-0.04052 z m -16.465913,0.02896 c 0.136161,0.03998 0.271561,0.08009 0.407143,0.121575 -0.01147,0.0053 -0.02191,0.01203 -0.03337,0.01736 -0.08238,0.02463 -0.166082,0.04904 -0.246955,0.07526 -0.0085,-0.0038 -0.01335,-0.0072 -0.01335,-0.01158 0,-0.01773 -0.02685,-0.03474 -0.06007,-0.03474 -0.0058,0 -0.0088,0.0045 -0.01335,0.0058 -0.01323,-0.05807 -0.0267,-0.115628 -0.04005,-0.173677 z m 5.186061,0.02316 c 0.01488,0.04171 0.03303,0.08135 0.0534,0.121575 -0.02454,0.001 -0.04888,0.0046 -0.07342,0.0058 0.0017,-0.01788 0.0051,-0.03422 0.0067,-0.0521 0.0053,-0.024 0.0089,-0.05062 0.01335,-0.07526 z m 3.370607,0.03474 c -0.01499,0 -0.03337,0.01972 -0.03337,0.04631 0,0.0266 0.01837,0.0521 0.03337,0.0521 0.01499,0 0.0267,-0.02551 0.0267,-0.0521 0,-0.0266 -0.01167,-0.04631 -0.0267,-0.04631 z m 7.628918,0.02895 c -0.005,0.0115 -0.0067,0.0224 -0.0067,0.04631 0,0.02428 -0.0082,0.0406 -0.01335,0.0521 -0.0025,0.0013 -0.0041,0.0045 -0.0067,0.0058 -0.01664,0.0075 -0.0839,0.03983 -0.20691,0.09263 0.0079,-0.0088 0.02108,-0.01963 0.02001,-0.02316 -0.003,-0.0099 -0.006,-0.02533 -0.01335,-0.03473 0.01839,-0.02072 0.03515,-0.04285 0.05339,-0.06368 0.05787,-0.02508 0.115519,-0.05045 0.173537,-0.07526 z m 6.167208,0.01158 c 0.0031,0.0059 0.0023,0.01058 0.0067,0.01736 0.04253,0.06548 -0.01715,0.152477 -0.160188,0.225782 -0.0072,0.0037 -0.01294,0.0077 -0.02001,0.01158 0.02954,-0.05383 0.05707,-0.108343 0.08677,-0.162099 0.01914,-0.02039 0.06245,-0.06555 0.08677,-0.09263 z m -16.873055,0.254727 c 0.09528,0.04413 0.195614,0.0683 0.30035,0.08105 -0.05407,0.03188 -0.07554,0.04345 -0.18021,0.104207 -0.01077,0.0062 -0.01393,0.01749 -0.01335,0.02895 -0.112966,-0.04302 -0.227193,-0.08477 -0.340398,-0.127363 -0.0031,-0.01134 -0.0086,-0.01654 -0.01335,-0.0058 -0.0265,-0.01 -0.05358,-0.019 -0.08009,-0.02895 0.001,-0.01584 -6.44e-4,-0.02608 0,-0.04052 0.02897,-0.0013 0.05779,-0.0046 0.08677,-0.0058 0.08019,-0.0023 0.160096,-0.0035 0.240281,-0.0058 z m 6.694491,0.0521 c -1.29e-4,0.02862 1.29e-4,0.05823 0,0.08684 -0.0015,0.02703 -0.0054,0.05401 -0.0067,0.08105 -6.44e-4,0.01247 -0.0099,0.03075 -0.01335,0.04631 -0.0087,-0.0023 -0.01632,-0.0044 -0.0267,-0.0058 -0.07969,-0.01034 -0.08009,-0.01126 -0.08009,-0.104206 0,-0.0953 -0.0017,-0.09842 0.08009,-0.09842 0.02557,0 0.03451,-0.0031 0.04672,-0.0058 z m -5.406319,0.104207 c 0.0133,-7.82e-4 0.02673,7.83e-4 0.04005,0 0.01536,0.004 0.03132,0.0089 0.04672,0.01158 -0.0087,-0.0026 -0.05911,-0.0052 -0.166861,-0.0058 0.02656,-0.0021 0.05347,-0.0042 0.08009,-0.0058 z m 8.890392,0.03473 0,0.01736 -0.0267,0 c 0.0074,-0.0052 0.01867,-0.01161 0.0267,-0.01736 z m -9.531141,0.01158 c 0.0062,0.002 0.01147,0.0045 0.02001,0.0058 0.02626,0.0041 0.0075,0.01065 -0.04005,0.01158 -0.04751,0.001 -0.0881,0.0079 -0.09344,0.01736 -0.0053,0.0094 -0.06336,0.02391 -0.126814,0.02895 0.06209,-0.01615 0.124668,-0.0364 0.186886,-0.0521 0.01858,-0.0045 0.0348,-0.007 0.05339,-0.01158 z m 5.780088,0.06368 c 0.01499,0 0.0267,0.01565 0.0267,0.02895 0,0.01343 0.02976,0.02316 0.06007,0.02316 0.04243,0 0.05339,0.0087 0.05339,0.04631 0,0.03225 0.01277,0.04631 0.04005,0.04631 0.01559,0 0.02647,0.0097 0.03337,0.01736 -0.0015,0.0071 0.001,0.01084 0,0.01736 -0.0074,0.01112 -0.03031,0.01736 -0.07342,0.01736 -0.08161,0 -0.112611,-0.02986 -0.113466,-0.109994 -1.29e-4,-0.01995 -0.01168,-0.03474 -0.0267,-0.03474 -0.01499,0 -0.0267,-0.0099 -0.0267,-0.02316 0,-0.0133 0.01171,-0.02895 0.0267,-0.02895 z m 0.233607,0.05789 c -0.0028,0.0095 -0.0038,0.01938 -0.0067,0.02895 -0.0029,-0.0034 -0.0067,-0.0075 -0.0067,-0.01158 0,-0.0067 0.0059,-0.01299 0.01335,-0.01736 z m 3.170373,0.07526 c -6.44e-4,0.0047 0.001,0.0058 0,0.01158 -0.0083,0.04227 -0.02811,0.05789 -0.06674,0.05789 -0.02836,0 -0.04672,0.0099 -0.04672,0.02316 0,0.0133 -0.01167,0.02316 -0.0267,0.02316 -0.0029,0 -0.0041,0.0048 -0.0067,0.0058 -0.08467,0.03676 -0.169356,0.07255 -0.253632,0.109996 0.06762,-0.03323 0.131954,-0.07213 0.200236,-0.104206 0.0233,-0.01877 0.04811,-0.03631 0.06674,-0.05789 0.04442,-0.02234 0.08907,-0.04713 0.133489,-0.06947 z m -3.343908,0.08105 c 0.0173,-0.0029 0.04049,0 0.06674,0 0.03939,0 0.06555,1.1e-5 0.08009,0.0058 6.45e-4,0.0036 -0.001,0.0086 0,0.01158 -0.01455,0.0058 -0.0407,0.01158 -0.08009,0.01158 -0.05251,0 -0.100118,-0.0085 -0.100118,-0.01736 0,-0.0044 0.01606,-0.0087 0.03337,-0.01158 z m -3.33056,0.03474 c 0.0055,-8.94e-4 0.0089,0.001 0.01335,0 -0.0087,0.08875 -0.01828,0.177998 -0.0267,0.266305 -0.03367,-0.01089 -0.06592,-0.01959 -0.100115,-0.02895 0.0096,-0.03472 0.01674,-0.06359 0.0267,-0.06947 0.0157,-0.0093 0.03337,-0.04789 0.03337,-0.08684 0,-0.05727 0.0093,-0.07423 0.0534,-0.08105 z m 3.410652,0.01158 c 0.04501,0 0.08009,0.0085 0.08009,0.01736 0,0.0089 -0.03509,0.01736 -0.08009,0.01736 -0.04502,0 -0.08009,-0.0085 -0.08009,-0.01736 0,-0.0089 0.03508,-0.01736 0.08009,-0.01736 z m 6.027045,0 c 0.0084,0.0054 0.01668,0.01337 0.0267,0.01736 -0.01771,0.01569 -0.03593,0.03042 -0.0534,0.04631 -0.05182,0.04717 -0.157582,0.105616 -0.12014,0.162098 0.0031,0.0047 0.0097,0.0073 0.01335,0.01158 -0.114954,0.02288 -0.20053,0.04177 -0.307026,0.06368 0.126184,-0.08538 0.276117,-0.186528 0.43384,-0.295252 0.0026,-8.94e-4 0.004,-0.0049 0.0067,-0.0058 z m -5.986997,0.04631 c 0.0225,0 0.04005,0.0098 0.04005,0.02316 0,0.01856 0.01246,0.02892 0.0267,0.02895 -0.0024,0.04243 -0.0012,0.08463 0,0.115785 -0.03734,0.0029 -0.07556,0.0073 -0.113467,0.0058 -0.07105,0.03774 -0.142392,0.07759 -0.213583,0.115785 -0.0313,-0.05692 -0.06058,-0.194782 -0.04005,-0.243148 0.01948,-0.04587 0.06674,-0.06354 0.06674,-0.02316 0,0.0133 0.01754,0.02895 0.04005,0.02895 0.02251,0 0.04005,0.0099 0.04005,0.02316 0,0.01343 0.02976,0.02316 0.06007,0.02316 0.04243,0 0.05339,-0.0087 0.05339,-0.04631 0,-0.03224 0.01277,-0.0521 0.04005,-0.0521 z m 2.142504,0.121573 c 0.03078,0.006 0.05825,0.007 0.08677,0 0.01124,0.0034 0.02212,0.0083 0.03337,0.01158 -0.01911,0.0066 -0.04389,0.01254 -0.06007,0.01736 -0.03625,0.01425 -0.07059,0.03193 -0.106791,0.04631 0.01642,-0.02477 0.03115,-0.05025 0.04672,-0.07526 z m -2.516275,0.07526 c 0.01339,0 0.03142,0.0098 0.04005,0.02316 0.0096,0.01473 0.0044,0.02316 -0.02001,0.02316 -0.02204,0 -0.04005,-0.0099 -0.04005,-0.02316 0,-0.0133 0.0066,-0.02316 0.02001,-0.02316 z m -18.381484,0.05788 c 0.0099,-0.0026 0.02504,4.47e-4 0.04005,0.0058 0.03001,0.01098 0.0534,0.02692 0.0534,0.03473 0,0.0078 -0.02339,0.01158 -0.0534,0.01158 -0.03001,0 -0.0534,-0.01595 -0.0534,-0.03474 0,-0.0094 0.0035,-0.01478 0.01335,-0.01736 z m 0.09344,0.104206 c 0.03094,-0.0113 0.03865,1.11e-4 0.02001,0.02895 -0.03627,0.05586 -0.07342,0.06374 -0.07342,0.01736 0,-0.01669 0.02373,-0.03548 0.0534,-0.04631 z m 18.207948,0 c 0.0053,-0.0026 0.0058,0 0.01335,0 0.01557,0 0.03313,0.004 0.04005,0.01158 -0.02456,0.01336 -0.0489,0.02708 -0.07342,0.04052 0.0021,-0.02585 0.0075,-0.0459 0.02001,-0.0521 z m -9.818141,0.654184 c 0.1115,0.117097 0.223122,0.235427 0.333723,0.353144 -0.01497,0.01034 -0.03176,0.01861 -0.04672,0.02895 -0.101966,-0.121173 -0.210791,-0.237169 -0.320374,-0.353142 0.01055,-0.0096 0.0234,-0.01891 0.03337,-0.02895 z m 9.624581,0.144731 c 0.0029,5.59e-4 0.0041,0.0058 0.0067,0.0058 -0.05089,0.02564 -0.102604,0.04966 -0.153514,0.07526 -6.44e-4,-0.0017 9.02e-4,-0.004 0,-0.0058 0.05357,-0.02719 0.09689,-0.04975 0.146838,-0.07526 z m 2.64309,0.02316 c -0.447149,0.19494 -0.883459,0.405697 -1.308195,0.636817 -0.0019,0.001 -0.01091,0.0044 -0.01335,0.0058 -0.08231,0.008 -0.164634,0.01519 -0.246956,0.02316 0.517374,-0.230183 1.043277,-0.449194 1.5685,-0.665764 z m -15.458067,0.208413 c 0.0045,1.12e-4 0.0089,-1.11e-4 0.01335,0 0.0022,0.01158 0.0045,0.02316 0.0067,0.03474 -0.0094,1.12e-4 -0.01739,-5.58e-4 -0.0267,0 0.0019,-0.01162 0.0049,-0.02312 0.0067,-0.03474 z m 3.116976,0.23157 c 0.0086,4.47e-4 0.01828,0.0047 0.0267,0.0058 -0.04374,0.0298 -0.08955,0.05729 -0.133489,0.08684 0.0105,-0.02532 0.06888,-0.09443 0.106792,-0.09263 z m 9.324232,0.02895 c 0.0068,0.0074 0.01027,0.01634 0.02001,0.02316 -6.45e-4,0.002 9.02e-4,0.0037 0,0.0058 -0.0019,0.0042 -0.0043,0.0082 -0.0067,0.01158 -0.01186,0.0069 -0.02153,0.01617 -0.03337,0.02316 -0.0121,0.0027 -0.02407,-8.94e-4 -0.04004,-0.0058 -0.0015,-0.001 -0.0051,0.001 -0.0067,0 -0.0048,-0.0017 -0.0083,-0.0092 -0.01335,-0.01158 -0.06561,0.03248 0.227473,-0.119518 0.08009,-0.04631 z m 15.004205,0 c 0.09024,0.0019 0.199267,0.02481 0.153511,0.05789 -0.03761,0.02719 -0.07359,0.05058 -0.113465,0.07526 -0.09449,-0.06329 -0.158089,-0.119435 -0.113467,-0.127364 0.01946,-0.0035 0.04334,-0.0064 0.07342,-0.0058 z m -31.650329,0.08105 c 0.02377,0.04647 0.04942,0.09257 0.07342,0.138942 -0.03902,0.01999 -0.06881,0.03476 -0.113467,0.05789 -0.01356,-0.03583 -0.0267,-0.06852 -0.0267,-0.09842 0,-0.01471 -0.0035,-0.02468 -0.0067,-0.03474 0.02246,-0.02611 0.04724,-0.05039 0.07342,-0.06368 z m 16.419192,0.03474 c -0.0012,0.02624 -0.0012,0.05135 -0.0067,0.06947 -0.0031,0.003 -0.0098,0.0032 -0.01335,0.0058 -0.0051,0.0031 -0.0083,0.0085 -0.01335,0.01158 -0.03861,0.02116 -0.101433,0.02319 -0.180211,0.01736 0.310918,-0.154986 0.105831,-0.05012 0.213584,-0.104206 z m -16.559356,0.09842 c 0.01557,0.02158 0.03145,0.04445 0.04005,0.07526 0.001,0.0036 0.0055,0.0079 0.0067,0.01158 -0.08213,0.04268 -0.215424,0.113206 -0.320375,0.167888 -0.02112,-0.03801 -0.03134,-0.07906 -0.02001,-0.09842 0.01297,-0.02216 0.05755,-0.04053 0.09344,-0.04053 0.0548,0 0.120968,-0.03746 0.200234,-0.115785 z m 16.232307,0.06368 c 0,0.0061 -0.0089,0.01175 -0.01335,0.01736 -0.0065,0.0017 -0.01251,0.0058 -0.02001,0.0058 -0.0062,0 -0.0078,-0.0046 -0.01335,-0.0058 0.06366,-0.03167 -0.01984,0.01577 0.04672,-0.01736 z m -20.056775,0.02316 c 0.04324,0 0.08009,0.01701 0.08009,0.03474 0,0.01773 -0.05168,0.02895 -0.113467,0.02895 -0.06179,0 -0.09863,-0.01122 -0.08009,-0.02895 0.01854,-0.01773 0.07022,-0.03474 0.113467,-0.03474 z m 19.209118,0.06368 c -0.0084,0.06794 0.009,0.131317 0.106792,0.179468 0.06035,0.02973 0.197764,-0.02186 0.313698,-0.06947 0.0074,0.05557 0.02949,0.06794 0.06007,0.02316 0.03028,-0.04433 0.09242,-0.08105 0.140163,-0.08105 0.01461,0 0.0348,0.0063 0.0534,0.01736 0.0051,0.0039 0.0074,0.0068 0.01335,0.01158 0.0078,0.0063 0.01335,0.01832 0.02001,0.02895 -0.176035,0.115384 -0.35059,0.231153 -0.520609,0.353144 -0.07127,-0.153383 -0.159589,-0.297846 -0.25363,-0.439983 0.02212,-0.0074 0.04512,-0.01602 0.06674,-0.02316 z m 9.691327,0.08684 c 0.233671,0.02947 0.467388,0.05603 0.700819,0.08684 -0.313687,0.03538 -0.758149,0.220217 -0.907727,0.254726 -0.1248,0.03988 -0.170047,0.0542 -0.25363,0.08105 -0.199896,0.03229 -0.394438,0.06473 -0.594027,0.09842 -0.224151,0.03783 -0.450486,0.08177 -0.674122,0.121573 0.332988,-0.09017 0.666131,-0.181836 0.994495,-0.283672 0.24282,-0.12285 0.488641,-0.239895 0.734192,-0.358933 z m 0.967798,0.121573 c 0.246885,0.03314 0.49425,0.06962 0.740866,0.104206 -0.116164,0.03107 -0.232178,0.05869 -0.347073,0.09263 -0.03779,0.0057 -0.05692,0.01365 -0.06007,0.02316 -0.07611,0.02307 -0.152116,0.04411 -0.226932,0.06947 -0.0105,-0.0015 -0.01863,-8.94e-4 -0.0267,0 0.01377,-0.04324 0.02038,-0.08758 0.01335,-0.138942 -0.02726,-0.04703 -0.03723,-0.107463 -0.08009,-0.14473 -0.0038,-0.0033 -0.0091,-0.0028 -0.01335,-0.0058 z M 60.718234,23.78489 c -0.04486,0.03377 -0.0872,0.07193 -0.13349,0.104207 -0.01976,0.01378 -0.03429,0.02202 -0.0534,0.03474 -0.01649,-0.0077 -0.03015,-0.01543 -0.04672,-0.02316 l 0.233608,-0.115785 z m 20.957828,0.138942 c 0.178098,0.02005 0.355978,0.03758 0.533958,0.05789 0.02874,0.0041 0.05803,0.0074 0.08677,0.01158 -0.03716,0.02085 -0.06693,0.02988 -0.106792,0.0521 0.0088,-0.0097 0.01752,-0.02336 0.02001,-0.02895 -0.0012,4.47e-4 -0.0047,-8.94e-4 -0.0067,0 -0.01946,0.01 -0.03448,0.01913 -0.05339,0.02895 0.009,0.0046 0.021,0.0068 0.0267,0.01158 -0.01154,0.01093 -0.02167,0.01752 -0.03337,0.02316 -0.0072,-0.0015 -0.01286,-0.0043 -0.02001,-0.0058 -0.0068,-0.0013 -0.0132,-0.0045 -0.02001,-0.0058 0.01578,-0.0083 0.03056,-0.01476 0.04672,-0.02316 -0.06595,-0.03344 -0.226889,-0.06721 -0.473886,-0.121575 z m -19.983357,0.03474 c 0.0065,-7.82e-4 0.01349,7.82e-4 0.02001,0 0.0012,0.0039 0.0053,0.0076 0.0067,0.01158 -0.0065,0.0023 -0.01359,0.0035 -0.02001,0.0058 5.15e-4,-0.0062 -0.0046,-0.01185 -0.0067,-0.01736 z m -0.233605,0.02316 c -0.0082,0.03562 -0.01207,0.06495 -0.0067,0.08105 -0.132442,0.04336 -0.25549,0.08549 -0.360421,0.115786 -0.05274,-0.02455 -0.123278,-0.05463 -0.18021,-0.08105 0.06109,-0.02612 0.121626,-0.05437 0.18021,-0.08105 0.12226,-0.01386 0.244756,-0.02153 0.367097,-0.03473 z m -15.344603,0.31262 c 0.02575,0.04678 0.05431,0.09217 0.08009,0.138942 -0.03355,0.08363 -0.0674,0.165062 -0.100116,0.248936 -0.176571,0.09519 -0.284688,0.194841 -0.50726,0.393668 -0.01193,0.0095 -0.02129,0.01915 -0.03337,0.02895 -0.007,0.0062 -0.0061,0.01093 -0.01335,0.01736 -0.01692,0.01386 -0.04272,0.02595 -0.06007,0.04053 -0.01487,0.01212 -0.0252,0.0284 -0.04005,0.04052 -0.13605,-0.07599 -0.27317,-0.1112 -0.407143,-0.109995 -0.04991,-0.219706 -0.09825,-0.439421 -0.146838,-0.659974 0.206554,-0.01836 0.414175,-0.03731 0.587353,-0.05789 0.214659,-0.02551 0.426689,-0.05149 0.640749,-0.08105 z m -4.545312,0.138942 c 0.01219,0.0037 0.02901,0.0036 0.04672,0.0058 0.0042,0.04047 0.0098,0.08106 0.01335,0.121575 -0.07783,-0.0081 -0.155807,-0.01484 -0.233607,-0.02316 l 0.173537,-0.104206 z m 29.227494,0.654183 c 0.03517,0.01959 0.05636,0.04332 0.04005,0.07526 -0.02288,0.04481 -0.08954,0.06182 -0.133489,0.09263 -0.04645,0.03228 -0.09411,0.06568 -0.140163,0.09842 -0.03629,0.01462 -0.08155,0.03354 -0.146838,0.06368 -0.0034,-0.0096 -0.01551,-0.0176 -0.0267,-0.02895 -0.0056,-0.0057 -0.0082,-0.0075 -0.01335,-0.01158 0.123741,-0.07381 0.248704,-0.147166 0.393795,-0.237359 0.02012,-0.01253 0.02735,-0.03013 0.0267,-0.0521 z m 21.051272,0.02895 c 0.114822,0.01395 0.207541,0.03252 0.220258,0.0521 0.01591,0.0245 0.07244,0.03968 0.126815,0.03474 0.05437,-0.005 0.118122,0.0093 0.140164,0.02895 0.02798,0.02493 0.03919,0.02233 0.04005,-0.0058 5.15e-4,-0.02216 0.04927,-0.04052 0.106792,-0.04052 0.05752,0 0.115655,-0.01836 0.133489,-0.04053 0.01783,-0.02216 0.02589,-0.0052 0.01335,0.03474 -0.01251,0.0399 -0.0034,0.06947 0.02001,0.06947 0.02345,0 0.04005,0.03672 0.04005,0.08105 0,0.04433 -0.02808,0.08105 -0.06007,0.08105 -0.032,0 -0.01152,0.02028 0.04672,0.04631 0.06532,0.02919 0.08409,0.05155 0.04005,0.0521 -0.03925,5.59e-4 -0.05948,0.01614 -0.04005,0.03473 0.02417,0.02311 0.06084,0.02002 0.113467,-0.0058 0.04235,-0.02075 0.07924,-0.02705 0.08009,-0.01158 0.001,0.01547 0.05236,0.06661 0.113465,0.109997 0.09264,0.06577 0.11487,0.06784 0.160188,0.02895 0.04058,-0.03482 0.04581,-0.02521 0.02001,0.02895 -0.0086,0.01805 -0.0073,0.03005 -0.0067,0.04053 -0.276518,-0.07129 -0.552154,-0.146412 -0.827634,-0.219991 -0.257041,-0.09044 -0.51127,-0.18581 -0.767563,-0.277884 0.09621,-0.03957 0.191407,-0.08065 0.287002,-0.121574 z m -32.084167,0.08684 c 0.14018,0.06444 0.278943,0.128911 0.42049,0.191045 0.05652,0.02481 0.124305,0.05409 0.186887,0.08105 -0.0582,0.117391 -0.114282,0.233808 -0.166862,0.353145 -0.06488,0.05235 -0.126779,0.10626 -0.206909,0.167887 -0.05126,-0.15997 -0.100535,-0.31949 -0.146839,-0.480506 0.03969,-0.01834 0.08035,-0.03394 0.120141,-0.0521 -0.02308,-0.0092 -0.04498,-0.02229 -0.06674,-0.03474 0.02089,-0.01467 0.03913,-0.03169 0.06007,-0.04631 -0.06302,-0.04603 -0.123263,-0.09357 -0.186884,-0.138941 -0.0038,-0.01373 -0.0096,-0.02679 -0.01335,-0.04053 z m 0.206908,0.260516 c 0.01752,0.007 0.03428,0.01499 0.0534,0.01736 0.02129,0.0026 0.0391,-0.06074 0.02001,-0.0521 -0.02483,0.01125 -0.04864,0.02342 -0.07342,0.03474 z m 10.058424,0.109996 c -0.01747,0.01756 -0.03595,0.03336 -0.06007,0.04052 0.02018,-0.01113 0.03934,-0.02892 0.06007,-0.04052 z m -0.04005,0.115785 c 0.0054,0.0026 0.0077,0.007 0.01335,0.01158 -0.07226,0.03793 -0.182114,0.09226 -0.287002,0.14473 -0.01277,0.0015 -0.02739,-0.0024 -0.04005,0 0.103667,-0.05422 0.208182,-0.104567 0.313699,-0.156311 z m -18.14788,0.596291 c 0.0019,0.0041 0.0043,0.0074 0.0067,0.01158 0.01189,0.02147 0.02387,0.03627 0.04005,0.04631 -0.0022,0.001 -0.01129,0.0048 -0.01335,0.0058 -0.01931,-0.01586 -0.04076,-0.03043 -0.06007,-0.04631 0.0061,-0.0032 0.02053,-0.01421 0.0267,-0.01736 z m 0.507262,0.335777 c 0.0132,0.0503 0.02653,0.100281 0.04005,0.15052 -0.02479,-0.02059 -0.08842,-0.07343 -0.140164,-0.115784 0.03281,-0.01216 0.067,-0.02264 0.100118,-0.03474 z m 4.305031,0.804704 c 0.06292,0.05967 0.12833,0.115767 0.193559,0.173677 -0.02929,0.02237 -0.02883,0.04312 0.01335,0.07526 -0.183839,0.02078 -0.364281,0.04275 -0.547306,0.06947 -0.0092,-0.03307 -0.0238,-0.06542 -0.03337,-0.09842 0.09196,-0.05255 0.183793,-0.104455 0.280329,-0.162099 0.03157,-0.01885 0.06178,-0.03906 0.09344,-0.05789 z m -14.410176,0.02895 0.0267,0 c 0.01548,0.06557 0.03095,0.131312 0.04672,0.196834 -0.01063,-4.48e-4 -0.02724,-0.0022 -0.03337,0 -0.02697,0.0098 -0.04948,-0.03448 -0.04672,-0.09263 l 0.0067,-0.104206 z m 4.385125,0.01158 c 0.01694,0.01026 0.02976,0.01866 0.04672,0.02895 -0.09077,0.06581 -0.18357,0.130261 -0.273654,0.196834 -0.0182,-0.03677 -0.0355,-0.07313 -0.0534,-0.109996 0.09512,-0.03515 0.186835,-0.07704 0.280327,-0.115783 z m 14.103151,0.04631 c 0.01014,0.01478 0.01649,0.03162 0.0267,0.04631 -0.02432,0.0027 -0.0491,0.0031 -0.07342,0.0058 0.0067,-0.01163 0.01359,-0.02831 0.02001,-0.04052 0.0091,-0.0033 0.01756,-0.0083 0.0267,-0.01158 z m -2.389459,0.03474 c -0.05333,0.02695 -0.08091,0.03934 -0.140165,0.06947 -0.01155,-0.0065 -0.02338,-0.0098 -0.03337,-0.01736 0.04368,-0.0054 0.102954,-0.02704 0.173537,-0.0521 z m -16.005375,0.162099 c 0.0224,0.09252 0.04377,0.185477 0.06674,0.277883 -0.0096,-0.0054 -0.01173,-0.01189 -0.0267,-0.01736 -0.03574,-0.01304 -0.07498,-0.0093 -0.08677,0.01158 -0.01177,0.02087 -0.04591,0.04052 -0.07342,0.04052 -0.06591,0 -0.06087,-0.138179 0.0067,-0.243148 0.03121,-0.0485 0.05945,-0.06747 0.113466,-0.06947 z m 0.08009,0.324197 c 0.01542,0.06173 0.03104,0.123579 0.04672,0.185256 -0.136561,0.0302 -0.2305,0.04259 -0.287001,0.0521 0.0082,-0.06215 0.02595,-0.124971 0.06007,-0.133153 0.05132,-0.0123 0.04824,-0.02058 -0.01335,-0.04631 -0.06596,-0.02756 -0.05418,-0.03436 0.06674,-0.03474 0.06332,-1.11e-4 0.103786,-0.01181 0.126814,-0.02316 z m 19.62961,0.312619 c 0.306314,-0.157132 -0.07844,0.04534 -0.56733,0.295253 -0.0021,-0.0021 -0.0046,-0.0037 -0.0067,-0.0058 0.190695,-0.09685 0.383804,-0.191895 0.574005,-0.289463 z m -20.82434,0.561558 0.126816,0 -0.153514,0.04052 c -0.01145,0.0015 -0.02797,0.0042 -0.04005,0.0058 l 0.06674,-0.04631 z m 15.624929,0.115785 c -0.163262,0.145805 -0.329797,0.289116 -0.493911,0.434193 -0.113855,0.03575 -0.226721,0.07381 -0.340398,0.109995 0.1048,-0.07977 0.212876,-0.172711 0.360423,-0.295252 0.0093,-0.02316 0.02258,-0.04664 0.03337,-0.06947 0.146342,-0.06076 0.293937,-0.119181 0.440515,-0.179465 z m -4.518615,0.104206 c 0.02698,0.02138 0.05302,0.04242 0.08009,0.06368 -0.481472,0.11445 -0.965407,0.224877 -1.44836,0.335777 0.389255,-0.117067 0.783354,-0.231994 1.168033,-0.358934 0.07024,-0.01432 0.125365,-0.02516 0.200233,-0.04052 z m -1.815455,0.434193 c 0.01989,0.01941 0.04022,0.03845 0.06007,0.05789 -0.0089,0.002 -0.01783,0.0038 -0.0267,0.0058 -0.01232,-0.02103 -0.02106,-0.04258 -0.03337,-0.06368 z m 11.86053,0.0058 c 0.0035,0.001 0.0094,-8.94e-4 0.01335,0 l -0.0067,0.0058 c -0.0019,-0.0021 -0.0047,-0.0037 -0.0067,-0.0058 z m -11.613575,0.08684 c 0.02154,0.03225 0.04284,0.06777 0.04672,0.104206 0.0037,0.03507 -0.131888,-0.04754 -0.100118,-0.06947 0.01732,-0.01197 0.03596,-0.0229 0.0534,-0.03474 z m -8.65011,0.29525 c 0.01578,0.01206 0.03252,0.02134 0.04672,0.03474 -0.01809,-0.001 -0.03528,-0.0048 -0.0534,-0.0058 0.0027,-0.0089 0.0012,-0.01946 0.0067,-0.02895 z m 10.705847,0.196836 c -0.03327,0.04569 -0.06594,0.09057 -0.09344,0.138942 -0.862884,0.173763 -1.283642,0.2605 -1.334894,0.439982 -0.127447,-0.03947 -0.26276,-0.08117 -0.400468,-0.133153 0.610155,-0.146632 1.219306,-0.297106 1.828805,-0.445771 z m 5.52646,0.636816 c -0.126427,0.2188 -0.303818,0.408239 -0.513935,0.578925 -0.08458,0.06742 -0.173769,0.131356 -0.260305,0.196834 -0.123644,0.061 -0.245647,0.116051 -0.360421,0.173677 0.09562,-0.114937 0.200777,-0.225164 0.293678,-0.341565 0.171718,-0.215706 0.192649,-0.24516 0.327048,-0.422615 0.114496,-0.06692 0.172389,-0.09924 0.260304,-0.15052 0.08476,-0.01259 0.167896,-0.0257 0.253631,-0.03474 z m 2.663111,0.781557 c 0.120714,0.04416 0.238443,0.08419 0.353748,0.127363 -0.214382,0.07131 -0.394588,0.126664 -0.547306,0.167888 -0.03505,-0.01478 -0.08632,-0.02062 -0.146838,-0.02895 0.0071,-0.0053 0.01291,-0.01204 0.02001,-0.01736 0.04051,-0.03447 0.08669,-0.06445 0.120139,-0.104207 0.06685,-0.04794 0.133942,-0.09624 0.200234,-0.144732 z m -1.214752,0.04052 c -0.102221,0.0754 -0.203517,0.151777 -0.307025,0.22578 -0.0086,-0.0042 -0.02048,-0.0091 -0.03337,-0.01158 0.0065,-0.0053 0.02563,-0.02228 0.0267,-0.02316 0.07479,-0.03683 0.107192,-0.08571 0.113466,-0.133153 0.03069,-0.0098 0.06288,-0.01888 0.09344,-0.02895 0.0362,-0.0087 0.07056,-0.02036 0.106792,-0.02895 z m 0.654098,0.05789 -0.233608,0.167888 c -0.006,8.94e-4 -0.0296,-8.94e-4 -0.03337,0 0.0027,0.0015 0.0058,0.0099 0.01335,0.01158 l -0.02001,0.01158 c -0.08961,0.04818 -0.181388,0.09097 -0.273654,0.133153 0.09428,-0.05186 0.188241,-0.101648 0.280328,-0.15631 0.09036,-0.05364 0.179239,-0.110927 0.266979,-0.167888 z m -1.007846,0.196834 c -0.02309,0.01647 -0.04362,0.03566 -0.06674,0.0521 -0.02183,0.0083 -0.04491,0.01486 -0.06675,0.02316 0.02033,-0.01647 0.04856,-0.03786 0.08677,-0.06947 0.01685,-5.59e-4 0.03381,-0.0043 0.04672,-0.0058 z m -25.116023,0.133153 c -0.0069,0.0037 -0.01315,0.0079 -0.02001,0.01158 -0.0065,-0.0023 -0.01388,-0.0037 -0.02001,-0.0058 0.01324,-0.0022 0.02681,-0.0036 0.04005,-0.0058 z m 16.152213,0.01158 c 0.03632,0.0049 0.07406,0.0069 0.126815,0 0.009,-0.001 0.01813,8.94e-4 0.0267,0 -0.09815,0.05742 -0.18476,0.104143 -0.246956,0.138941 -0.04077,-0.0184 -0.07497,-0.03122 -0.133488,-0.05789 0.07535,-0.02805 0.151036,-0.05431 0.226931,-0.08105 z m 9.584537,0.0058 c -0.06894,0.04981 -0.138397,0.100373 -0.20691,0.150519 -0.20045,0.143568 -0.403712,0.287062 -0.600702,0.434194 -0.04154,0.03103 -0.173978,0.101614 -0.12014,0.09263 0.01713,-0.0029 0.02417,-0.0031 0.04005,-0.0058 -0.01125,0.0076 -0.02206,0.01564 -0.03337,0.02316 -0.02214,0.01209 -0.09059,0.04409 -0.06674,0.03473 0.06487,-0.02546 0.128608,-0.0499 0.193559,-0.07526 -0.02586,0.01375 -0.04373,0.03367 -0.07342,0.04631 -0.144173,0.0614 -0.21027,0.165387 -0.213582,0.289462 -0.09305,-0.05304 -0.186186,-0.104724 -0.28033,-0.156309 0.0537,-0.03267 0.108853,-0.07156 0.19356,-0.127364 0.344347,-0.238865 0.707629,-0.461739 1.081264,-0.665763 -5.15e-4,4.47e-4 0.03315,-0.01423 0.04005,-0.01736 0.0151,-0.0082 0.03159,-0.01502 0.04672,-0.02316 z m -8.897066,0.0058 c 0.04052,0.0044 0.07985,0.0095 0.12014,0.01158 -0.01036,1.03e-4 -0.01837,0.0024 -0.03337,0.0058 -0.04624,0.01048 -0.08009,0.0037 -0.08009,-0.01158 0,-0.0021 -0.0046,-0.0035 -0.0067,-0.0058 z m 0.347071,0.0058 c 0.01391,0.01896 0.03072,0.04237 0.04672,0.06368 -0.02184,0.0029 -0.04474,0.01094 -0.06674,0.01158 -0.131334,0.0037 -0.17814,-0.0091 -0.166863,-0.04052 0.005,-0.01408 -0.0017,-0.02465 -0.01335,-0.02895 0.06732,0.0025 0.134514,4.47e-4 0.200234,-0.0058 z m -17.520478,0.02897 c -0.05484,0.05131 -0.123928,0.128114 -0.233605,0.243149 -0.135072,0.03238 -0.268729,0.06233 -0.49391,0.121574 0.131805,-0.09526 0.267641,-0.189439 0.400467,-0.283673 0.03976,-0.01207 0.08021,-0.03069 0.126815,-0.04631 0.06298,-0.01257 0.130497,-0.02184 0.200233,-0.03474 z m 25.182769,0 c -0.06962,0.04535 -0.137997,0.09264 -0.206909,0.138942 -0.06284,0.02458 -0.110031,0.04154 -0.18021,0.06947 0.001,-0.0049 0.0031,-0.01195 0.0067,-0.01736 0.08517,-0.04219 0.241969,-0.122329 0.380444,-0.191044 z m -8.21627,0.04052 c 0.01837,0.01614 0.01704,0.02795 -0.01335,0.02895 -0.05547,0.0019 -0.05609,0.0056 -0.0067,0.01736 0.03751,0.0089 0.06674,0.03407 0.06674,0.05789 0,0.01191 0.0094,0.02454 0.0267,0.03474 -0.107454,-0.0015 -0.212936,-0.009 -0.320374,-0.01158 0.08266,-0.04207 0.164634,-0.08476 0.246954,-0.127363 z m 0.173537,0.04053 c 0.0143,-0.0084 0.0423,0.0017 0.06007,0.02895 0.0369,0.0568 5.15e-4,0.06881 -0.0534,0.01736 -0.0198,-0.01891 -0.021,-0.03787 -0.0067,-0.04631 z m -8.897066,0.01736 c 0.03397,0.04097 0.07223,0.08095 0.10679,0.121575 l -0.146838,0.06368 c 0.0059,-0.02137 0.01019,-0.04073 0.0067,-0.05789 -0.01182,-0.05765 -0.0035,-0.100363 0.03337,-0.127363 z m 15.818488,0.225781 c -0.05983,0.06135 -0.115226,0.127994 -0.106791,0.202622 -0.02063,-0.01501 -0.03938,-0.03137 -0.06007,-0.04631 0.05353,-0.06684 0.112242,-0.118627 0.166862,-0.156309 z m -2.976812,0.01158 c -0.0057,0.0081 -0.01441,0.01497 -0.02001,0.02316 -0.02305,0.0337 -0.03983,0.06918 -0.06007,0.104207 -0.01952,-0.02737 -0.04049,-0.0537 -0.06007,-0.08105 0.04335,-0.01512 0.100296,-0.0324 0.140164,-0.04631 z m 2.789927,0.01736 c -0.01117,0.01558 -0.02085,0.03199 -0.03337,0.04631 -0.008,0.0091 -0.01241,0.0148 -0.02001,0.02316 -0.0208,-0.01489 -0.04588,-0.02568 -0.06674,-0.04053 0.0397,-0.01106 0.08031,-0.01828 0.12014,-0.02895 z m -20.89776,0.301041 c -1.097861,0.273505 -2.2078,0.515237 -3.323884,0.729444 0.05694,-0.04013 0.139104,-0.106439 0.213582,-0.167888 0.07793,-0.04648 0.156372,-0.09158 0.233607,-0.138942 0.345099,-0.05737 0.694807,-0.116492 1.041217,-0.167888 0.612612,-0.08598 1.222173,-0.169975 1.835478,-0.254726 z m -5.159363,0.243148 c -0.21865,0.113784 -0.431303,0.233531 -0.640748,0.358933 -0.06653,0.0086 -0.133719,0.01445 -0.200235,0.02316 0.06829,-0.03235 0.138453,-0.06048 0.206908,-0.09263 0.07698,-0.02339 0.148949,-0.04709 0.220258,-0.08105 0.139355,-0.06636 0.276102,-0.139556 0.413817,-0.208413 z m -4.218263,0.01158 c -0.190565,0.105151 -0.393971,0.215327 -0.667447,0.364723 -0.05183,0.02831 -0.06289,0.08135 -0.06007,0.133152 -0.203067,0.05802 -0.40557,0.118301 -0.607377,0.179467 0.05267,-0.03134 0.102224,-0.06545 0.153514,-0.09842 0.04203,-0.02702 0.08084,-0.05687 0.12014,-0.08684 0.01304,-0.0072 0.0284,-0.01947 0.04005,-0.02895 0.05182,-0.04058 0.107523,-0.08191 0.160188,-0.121575 0.0078,-0.03155 0.02082,-0.06117 0.03337,-0.09263 0.04763,0.05492 0.101236,0.04281 0.273654,-0.0521 0.125964,-0.06934 0.288613,-0.127364 0.360421,-0.127364 0.03906,0 0.09522,-0.02672 0.160187,-0.06368 0.01089,-0.0026 0.02248,-0.0031 0.03337,-0.0058 z m 14.316733,0.185256 c -0.0031,0.0066 -0.0081,0.01189 -0.01335,0.01736 -0.01063,0.011 -0.0609,0.01899 -0.04672,0.01158 0.01959,-0.01023 0.04047,-0.01873 0.06007,-0.02895 z m -10.699172,0.69471 c 0.0043,0.01038 0.01292,0.01853 0.02001,0.02895 -0.148897,0.02518 -0.298261,0.05047 -0.44719,0.07526 -0.469333,0.07528 -0.937993,0.148793 -1.408312,0.219991 0.0527,-0.0289 0.13944,-0.07659 0.200233,-0.109997 0.543898,-0.07493 1.089509,-0.149441 1.635246,-0.214201 z m 20.090148,0.301041 c 0.162664,0.0036 0.324148,0.004 0.487236,0.0058 0.03787,-9.9e-5 0.0756,1.12e-4 0.113465,0 -0.02583,0.07171 -0.03969,0.146303 -0.04005,0.214203 -0.06184,-0.0042 -0.12503,-0.0066 -0.186885,-0.01736 -0.18968,-0.02543 -0.378167,-0.05354 -0.567328,-0.08105 l 0.193558,-0.121574 z m -27.725739,0.06946 c -0.09684,0.04705 -0.190375,0.09736 -0.287002,0.14473 -0.08921,8.94e-4 -0.177787,-7.82e-4 -0.266979,0 0.185058,-0.04617 0.369578,-0.09439 0.553981,-0.14473 z m 44.832401,0.0637 c 0.552513,0.202415 1.104131,0.408311 1.655268,0.613659 0.169879,0.08789 0.355871,0.170915 0.493911,0.23736 0.02704,0.01185 0.05305,0.02287 0.08009,0.03474 -0.92775,-0.03702 -1.857821,-0.08189 -2.783253,-0.150521 -0.268487,-0.01991 -0.534798,-0.04174 -0.800936,-0.06947 0.456974,-0.21391 0.90394,-0.442181 1.354917,-0.665761 z m -46.080527,0.254726 -0.08677,0.05789 c -0.02456,-0.0051 -0.04912,-0.0097 -0.07342,-0.01736 0.05336,-0.01373 0.106824,-0.02683 0.160187,-0.04053 z m -0.307025,0.08105 c 0.0411,0.07004 -0.01136,0.122052 -0.173537,0.162098 -0.202415,0.04998 -0.182091,0.0527 0.06007,0.03474 l -0.0534,0.03473 c -0.0214,-0.01354 -0.04021,-0.02741 -0.06007,-0.01736 -0.0717,0.03626 -0.142756,0.0725 -0.213582,0.109994 -0.01564,-0.0035 -0.03107,-0.0081 -0.04672,-0.01158 0.01008,-0.02397 0.01388,-0.0576 0.01335,-0.104207 -5.16e-4,-0.04581 -0.0036,-0.06744 -0.01335,-0.08105 0.162586,-0.04241 0.324527,-0.08539 0.487237,-0.127363 z m 43.704415,0.08685 c 0.06947,-0.0044 0.197567,0.0052 0.186885,0.01158 -0.02803,0.01669 -0.05842,0.03005 -0.08677,0.04631 -0.164013,-0.04041 -0.161283,-0.05403 -0.100118,-0.05789 z m -8.97716,0.02316 c 0.0094,0.0091 0.03941,0.03922 0.04672,0.04631 0.07994,0.07385 0.159624,0.146702 0.240281,0.21999 -0.125034,-0.07286 -0.248563,-0.147367 -0.373771,-0.21999 l 0.08677,-0.04631 z m -35.301259,0.04631 c -0.04373,0.04085 -0.06752,0.09451 -0.06007,0.127362 -0.0089,-0.0019 -0.01779,-0.0039 -0.0267,-0.0058 -0.02507,-0.005 -0.124882,-0.02807 -0.220257,-0.04631 0.101833,-0.02687 0.205117,-0.04861 0.307025,-0.07526 z m -0.487237,0.243147 c -0.01747,0.01001 -0.03587,0.01901 -0.0534,0.02895 -0.0021,-0.0023 -0.0047,-0.0034 -0.0067,-0.0058 0.01957,-0.0073 0.04524,-0.01476 0.06007,-0.02316 z m 6.360768,0.752602 c 0.0041,0.01091 0.0037,0.02174 -0.0067,0.03473 -0.04673,0.01023 -0.09238,0.0312 -0.140163,0.04631 0.04188,-0.02129 0.09875,-0.05613 0.146838,-0.08105 z m 33.345642,0.0058 c 0.907908,0.561212 1.801753,1.142241 2.669787,1.74835 -0.208064,0.07134 -0.304064,0.109341 -0.287002,0.167889 -0.117789,-0.112295 -0.231663,-0.232815 -0.360422,-0.341566 -0.376469,-0.329697 -0.787606,-0.61903 -1.188055,-0.926279 -0.288897,-0.207528 -0.573517,-0.420793 -0.854331,-0.636815 0.0066,-0.0042 0.01345,-0.0074 0.02001,-0.01158 z M 18.588991,36.0407 c 0.02663,-7.82e-4 0.05347,5.59e-4 0.08009,0 -0.04182,0.0075 -0.08499,0.0099 -0.126815,0.01736 0.01493,-0.0065 0.0318,-0.01063 0.04672,-0.01736 z m -0.49391,0.01158 c 0.02885,-0.001 0.05792,8.94e-4 0.08677,0 0.07387,0.01439 0.115251,0.027 0.180212,0.04053 -0.279817,0.04968 -0.560752,0.09684 -0.840984,0.144731 -0.05541,-0.001 -0.111445,-7.7e-5 -0.166862,0 -0.01394,2.8e-5 -0.03703,-0.005 -0.06007,-0.0058 -0.09902,0.04986 0.455301,-0.227531 0.3137,-0.15631 0.0017,-8.94e-4 0.005,8.94e-4 0.0067,0 0.159981,-0.007 0.320552,-0.01727 0.480562,-0.02316 z m -0.50726,0.02316 c -0.121883,0.05872 -0.234209,0.109053 -0.333723,0.156309 -0.08315,-8.94e-4 -0.171858,0.0098 -0.140164,0.06368 -0.01309,0.0062 -0.02741,0.01141 -0.04005,0.01736 -0.284708,0.04766 -0.569223,0.09886 -0.854331,0.144731 -0.234356,0.0377 -0.464396,0.08345 -0.700819,0.115785 0.118769,-0.04325 0.194042,-0.07189 0.360421,-0.133153 0.301377,-0.110572 0.609963,-0.214986 0.914402,-0.318408 0.03778,-0.0035 0.07566,-0.0081 0.113467,-0.01158 0.0061,-0.0031 0.0072,-0.0027 0.01335,-0.0058 0.0017,-8.94e-4 0.005,8.94e-4 0.0067,0 0.121331,-0.0038 0.239921,-0.0084 0.360421,-0.01736 0.09992,-0.0046 0.200421,-0.0072 0.300352,-0.01158 z m 4.818967,0.69471 c 0.04184,7.82e-4 0.08495,0.004 0.126813,0.0058 0.01931,8.94e-4 0.04472,0.0048 0.06675,0.0058 -0.03244,0.0413 -0.06544,0.07938 -0.09344,0.121574 -0.02652,-0.04667 -0.06099,-0.09169 -0.100115,-0.133151 z m 60.57747,0.02895 c 0.573415,0.0034 1.148629,0.0054 1.722013,0.01158 -0.263323,0.144432 -0.487536,0.30808 -0.654099,0.497875 -0.41005,-0.06991 -0.818533,-0.136294 -1.228102,-0.208413 0.0012,-0.0019 -0.0019,-0.004 0,-0.0058 0.01952,-0.01867 -0.0667,-0.03969 -0.206908,-0.0521 -0.04817,-0.0043 -0.08947,-0.01291 -0.12014,-0.01736 0.163355,-0.07453 0.325376,-0.149 0.487236,-0.225782 z m -61.104753,0.01158 c -0.01478,0.03635 -0.03633,0.07185 -0.06007,0.127363 -0.07435,0.04798 -0.122653,0.0044 -0.153511,-0.07526 -0.051,0.02508 -0.10275,0.04981 -0.153514,0.07526 0.05666,-0.03852 0.103623,-0.06801 0.146839,-0.09842 -0.0012,-0.0037 -0.0055,-0.0078 -0.0067,-0.01158 0.01119,-8.95e-4 0.02218,-0.0049 0.03337,-0.0058 -0.0073,0.0052 -0.01892,0.01189 -0.0267,0.01736 0.0027,0.0085 0.0036,0.01536 0.0067,0.02316 0.03296,-0.01621 0.06705,-0.03029 0.100118,-0.04631 0.03763,-0.0027 0.07582,-0.0033 0.113465,-0.0058 z m 54.637193,0.231569 c 0.0087,-5.59e-4 0.01858,0.001 0.0267,0 0.01362,0.0052 0.02642,0.01213 0.04005,0.01736 0.05742,0.02201 0.116088,0.04173 0.173536,0.06368 -0.08984,-0.01222 -0.159186,-0.02293 -0.146838,-0.03474 0.0079,-0.0076 -0.0022,-0.02009 -0.0267,-0.02895 -0.01551,-0.0056 -0.04212,-0.01266 -0.06674,-0.01736 z m -58.88883,0.532611 c -0.101513,0.08796 -0.209456,0.169813 -0.320374,0.248937 -0.01329,-0.01139 -0.03273,-0.02316 -0.04672,-0.02316 -0.04693,0 -0.08009,-0.05643 -0.08009,-0.127363 0.05744,-0.01395 0.116192,-0.02631 0.173536,-0.04053 0.0056,0.002 0.0073,0.0037 0.01335,0.0058 0.0086,0.003 0.02498,0.0013 0.04005,0 0.01662,0.01842 0.0551,0.02223 0.100118,0.0058 0.02129,-0.0078 0.03656,-0.02794 0.0534,-0.04631 0.02016,-0.0069 0.04509,-0.0151 0.06674,-0.02316 z m -0.77424,0.173677 c -5.15e-4,0.0035 -3.7e-5,0.0081 0,0.01158 0.0012,0.102553 0.02734,0.113718 0.09344,0.0521 0.05333,-0.04971 0.0943,-0.03147 0.133488,0.0521 -0.17752,0.03274 -0.336228,0.07835 -0.347071,0.08105 -0.01151,0.0029 -0.02188,0.0087 -0.03337,0.01158 0.0015,-0.01968 0.0023,-0.04022 0.0067,-0.06368 0.0091,-0.04876 0.01186,-0.08754 0.01335,-0.115785 0.0442,-0.01002 0.08936,-0.01872 0.13349,-0.02895 z m 6.614399,0.0521 c 0.03578,-0.01549 0.02014,0.07154 0.0067,0.104206 -0.0049,0.0118 -0.03243,-0.0039 -0.04672,-0.0058 -0.01578,-0.01981 -0.02585,-0.04299 -0.04005,-0.06368 0.02653,-0.01191 0.05335,-0.02316 0.08009,-0.03474 z m -4.76557,0.202624 c 0.0086,0.02861 0.01786,0.05825 0.0267,0.08684 0.103077,0.132093 0.241326,0.166268 0.387119,0.162099 -0.01,0.02618 -0.02168,0.05249 -0.0267,0.08105 -0.0043,0.02459 -0.0096,0.03801 -0.01335,0.05789 -0.01189,0.01011 -0.01513,0.01328 -0.0267,0.02316 -0.590639,0.236995 -1.189268,0.514353 -1.561827,0.769969 -0.0034,-0.0023 -0.0097,-0.0035 -0.01335,-0.0058 0.271232,-0.220035 0.532157,-0.445452 0.767565,-0.694709 0.148053,-0.163464 0.297325,-0.329179 0.460537,-0.480507 z m 42.482989,0.486297 c 0.07391,0.07231 0.149134,0.140008 0.226932,0.208413 -0.08612,-0.05631 -0.174533,-0.111177 -0.260305,-0.167889 0.0106,-0.0113 0.02233,-0.02876 0.03337,-0.04052 z m 0.720842,0.52682 c 0.243146,0.10504 0.495345,0.194453 0.740866,0.295251 0.05866,0.02408 0.115206,0.05074 0.173536,0.07526 -0.07041,0.01941 -0.12657,0.07878 -0.133489,0.133151 -0.261496,-0.166354 -0.520489,-0.336072 -0.780913,-0.503664 z M 18.67576,39.3811 c -0.0044,0.0058 -0.0068,0.01351 -0.01335,0.01736 -0.009,0.0054 -0.01924,0.0074 -0.0267,0.0058 0.01412,-0.0061 0.02612,-0.01706 0.04005,-0.02316 z m -5.072597,0.06947 c -0.0324,0.03394 -0.06014,0.05898 -0.220258,0.225782 -0.03703,0.03746 -0.07592,0.07293 -0.113465,0.109994 -0.157739,0.06175 -0.315794,0.124189 -0.473887,0.185256 -0.614223,0.23726 -1.222601,0.484048 -1.868852,0.642607 0.202925,-0.0872 0.391833,-0.24421 0.527283,-0.324198 0.01023,-0.006 0.0225,-0.01175 0.03337,-0.01736 0.366016,-0.06723 0.676304,-0.287314 1.01452,-0.428404 0.347414,-0.124994 0.691099,-0.257116 1.041216,-0.376301 0.01544,-0.0053 0.04374,-0.01185 0.06007,-0.01736 z m 49.277596,0.09263 c 0.02286,9.2e-5 0.05219,0.0051 0.08009,0.01158 l -0.0067,0.0058 0.153514,0.109994 c 0.09452,0.06547 0.191812,0.131927 0.287001,0.196835 0.156784,0.125797 0.321667,0.242105 0.487237,0.358934 0.104281,0.09264 0.230106,0.182408 0.320373,0.219991 0.01423,0.0059 0.02653,0.01081 0.04005,0.01736 0.0025,0.0017 0.0042,0.0041 0.0067,0.0058 0.05899,0.04543 0.114974,0.09308 0.173535,0.138943 0.0012,0.0042 0.0067,0.0078 0.0067,0.01158 0,0.0096 0.0072,0.02033 0.01335,0.02895 -0.550864,-0.363364 -1.110346,-0.715938 -1.668618,-1.07101 0.01089,-0.0053 0.02003,-0.0095 0.03337,-0.01736 0.01886,-0.01116 0.04467,-0.01749 0.07342,-0.01736 z m -45.793523,0.06947 c -0.09335,0.03639 -0.187246,0.07308 -0.280329,0.109997 0.02027,-0.01734 0.03969,-0.03487 0.06007,-0.05211 0.07488,-0.01943 0.154325,-0.03697 0.220257,-0.05789 z m -2.129156,0.335776 c -0.0079,0.0051 -0.005,0.0083 -0.02001,0.01736 -0.08314,0.04986 -0.172124,0.09566 -0.260306,0.138942 -0.0021,-0.0037 -0.0045,-0.0077 -0.0067,-0.01158 0.126309,-0.06607 0.236073,-0.120839 0.287002,-0.144732 z m 0.0534,0.15052 c 0.02945,-0.0032 0.05852,-7.82e-4 0.08677,0.0058 0.01747,0.0041 -0.01081,0.02702 -0.02001,0.04052 -0.04032,0.05914 -0.08032,0.118049 -0.126815,0.173679 -0.07345,0.08788 -0.147637,0.176346 -0.226931,0.260514 -0.0262,0.0237 -0.04735,0.05145 -0.07342,0.07526 -0.09121,0.02478 -0.184859,0.05288 -0.260304,0.07526 -0.138954,0.05349 -0.27537,0.107646 -0.413817,0.162099 0.02372,-0.03687 0.04977,-0.07313 0.07342,-0.109995 0.111055,-0.156782 0.213541,-0.31534 0.320375,-0.474718 0.06203,-0.02828 0.132139,-0.06523 0.173536,-0.08105 0.139067,0.01286 0.189032,0.013 0.166861,-0.0521 0.07101,-0.02158 0.142867,-0.04147 0.213584,-0.06368 0.02921,-0.0013 0.05731,-0.0084 0.08677,-0.01158 z m 49.484506,0.590504 c 0.01351,0.005 0.03053,0.0088 0.04672,0.01158 0.0531,0.04105 0.10706,0.08055 0.160186,0.121573 -0.06794,-0.04539 -0.138711,-0.08805 -0.206908,-0.133152 z m -52.621507,0.341564 c -0.12477,0.103043 -0.24827,0.204649 -0.373769,0.306831 0.0147,0.0042 0.021,0.0068 0.0267,0.01158 -0.0185,0.0087 -0.0348,0.02043 -0.0534,0.02895 -0.35806,0.163897 -0.716628,0.327994 -1.074589,0.492086 0.150212,-0.08686 0.301087,-0.175902 0.447189,-0.260515 0.343631,-0.192972 0.684697,-0.385288 1.027867,-0.578926 z m 3.030209,0.706289 c 0.04587,-5.59e-4 0.100679,0.0038 0.173537,0.0058 0.114085,0.003 0.134884,0.0153 0.0534,0.03474 -0.06528,0.01556 -0.103682,0.03621 -0.120141,0.05789 -0.09532,0.0211 -0.19239,0.04027 -0.287002,0.06368 0.02044,-0.01919 0.0368,-0.04005 0.03337,-0.05789 0.04942,-0.03431 0.09758,-0.06971 0.146837,-0.104206 z m 51.967408,0.208413 c 0.03646,0.0471 0.07704,0.09182 0.113465,0.138941 -0.08394,-0.02288 -0.170681,-0.05542 -0.246954,-0.08684 0.04579,-0.01684 0.08913,-0.03285 0.133489,-0.0521 z m -55.051013,0.254726 c -0.01832,0.02839 -0.06905,0.101096 -0.09344,0.138942 -0.691102,0.359569 -1.334083,0.799592 -1.9689669,1.209952 1.37e-5,-0.02898 -0.00573,-0.05779 -0.00667,-0.08684 0.4564399,-0.313863 0.9466519,-0.655509 1.4683839,-1.018907 0.200543,-0.08204 0.39952,-0.162335 0.600701,-0.243148 z m 55.471505,0.289462 c 0.06015,0.07776 0.126594,0.15389 0.186885,0.23157 -0.01429,7.82e-4 -0.02901,0.0019 -0.04672,0.0058 -0.05503,0.01249 -0.08684,0.0081 -0.113466,-0.0058 -0.0056,-0.0047 -0.01444,-0.0069 -0.02001,-0.01158 -0.0198,-0.0219 -0.03337,-0.0559 -0.03337,-0.109995 0,-0.05061 0.01009,-0.08722 0.0267,-0.109997 z M 9.7319722,42.53045 c -0.1080976,0.08694 -0.2133146,0.178406 -0.3137008,0.272094 -0.011343,0.0054 -0.022035,0.01196 -0.033372,0.01736 -0.066334,-0.01881 -0.1386253,-0.03127 -0.2202575,-0.02895 0.1890403,-0.08738 0.378439,-0.1729 0.5673304,-0.260516 z m 4.1047968,0.272094 c -0.01546,0.0069 -0.03231,0.01508 -0.04672,0.02316 -0.252161,0.141301 -0.480995,0.334581 -0.714168,0.497875 -0.06055,0.0395 -0.120144,0.08145 -0.180211,0.121574 0.03919,-0.09553 -0.05455,0.08319 0.126815,-0.254726 0.05593,-0.08476 0.120694,-0.165671 0.180212,-0.248938 0.209455,-0.05199 0.420601,-0.100997 0.634073,-0.138941 z m 53.716119,0.02316 c 0.01234,0.01588 0.02769,0.03044 0.04005,0.04631 -0.01764,0.02427 0.02078,0.05984 0.08677,0.115785 0.01134,0.03852 0.02207,0.07725 0.03337,0.115785 -0.07165,-0.07482 -0.136511,-0.154893 -0.213583,-0.225779 0.02536,-0.01695 0.04084,-0.03423 0.0534,-0.05211 z m 0.3137,0.77576 c 5.15e-4,0.0019 -5.16e-4,0.004 0,0.0058 -0.02211,0.0098 -0.04463,0.01917 -0.06674,0.02895 0.02258,-0.01121 0.04411,-0.0236 0.06674,-0.03473 z m -0.04005,0.810494 c -0.197894,0.101241 -0.395657,0.200503 -0.594029,0.301039 0.191413,-0.105283 0.744536,-0.378038 0.594029,-0.301039 z M 7.929865,44.74773 c -0.00152,0.0096 -0.00504,0.01934 -0.00667,0.02895 -0.0235,0.0161 -0.050339,0.03624 -0.073419,0.0521 -0.1588406,0.10915 -0.3156599,0.220061 -0.473887,0.329988 0.183903,-0.13613 0.3688446,-0.276142 0.5539807,-0.411036 z m 59.589651,0.185255 c -0.0015,0.0036 0.0015,0.008 0,0.01158 -0.05018,0.127247 -0.126615,0.29003 -0.146839,0.439983 -0.273597,0.141753 -0.542886,0.283577 -0.814285,0.428405 -0.04528,0.02416 -0.134851,0.07511 -0.220257,0.127363 0.403376,-0.325598 0.799333,-0.661993 1.181381,-1.007329 z m -3.424003,0.329987 c -0.126565,0.120328 -0.252168,0.239864 -0.380444,0.358934 -0.532034,0.317017 -1.077757,0.61663 -1.615221,0.926277 -0.125453,0.06886 -0.329987,0.141932 -0.226931,0.254727 -0.141018,0.05729 -0.279816,0.115731 -0.420493,0.173677 0.139982,-0.105972 0.275621,-0.236567 0.260305,-0.353143 0.0092,-0.0054 0.01745,-0.012 0.0267,-0.01736 0.02956,-0.105749 0.08852,-0.211006 0.100116,-0.31841 0.05563,-0.0322 0.111026,-0.0665 0.166863,-0.09842 0.146134,-0.08353 0.291454,-0.163531 0.440515,-0.243148 0.291205,-0.08082 0.5403,-0.244861 0.814284,-0.364722 0.313653,-0.121727 0.561858,-0.221251 0.834308,-0.318408 z m 8.72353,0.60787 c 0.02235,0.02783 0.08264,0.05245 0.180211,0.06947 -0.05469,-0.03242 -0.118324,-0.05206 -0.180211,-0.06947 z M 5.0598442,48.244483 c -0.1319923,0.07738 -0.079052,0.08071 0.1201399,0.08105 -0.00282,0.002 -0.00384,0.0038 -0.00667,0.0058 -0.015591,0.01099 -0.00106,0.0037 0.026698,-0.0058 0.0411,1.12e-4 0.095864,0.0043 0.1468378,0.0058 -0.1370156,0.07919 -0.2210623,0.115668 -0.3070253,0.162099 -0.091819,-0.0072 -0.1842385,-0.01045 -0.2402796,-0.02316 -0.1433087,-0.0325 -0.1255446,-0.06301 0.100116,-0.167887 0.052703,-0.0245 0.1077727,-0.04237 0.1601875,-0.05789 z m 54.4369608,0.214202 c -0.160301,0.08521 -0.320014,0.169878 -0.480561,0.254727 -0.0176,0.0061 -0.03579,0.01125 -0.0534,0.01736 0.09779,-0.05938 0.166913,-0.111609 0.240281,-0.162099 -0.148096,0.07715 -0.294093,0.157407 -0.440514,0.237359 -0.431115,0.1501 -0.863886,0.301093 -1.294848,0.451561 0.185772,-0.09547 0.372976,-0.191327 0.560655,-0.283672 0.10289,-0.05365 0.204542,-0.107878 0.307025,-0.1621 0.131055,-0.03714 0.26285,-0.07428 0.393795,-0.109996 0.172474,-0.05338 0.342232,-0.108305 0.513934,-0.162097 -0.01192,0.0084 -0.02749,0.0203 -0.04005,0.02895 0.02492,-0.01299 0.04845,-0.02762 0.07342,-0.04053 0.07356,-0.02308 0.146857,-0.04616 0.220258,-0.06947 z M 9.0378264,48.562892 c 0.039559,0.01795 0.066745,0.03228 0.066745,0.04053 0,0.01649 -0.011678,0.02727 -0.026698,0.02316 -0.005,-0.0013 -0.052755,-0.0079 -0.07342,-0.01158 0.010555,-0.01775 0.022788,-0.03436 0.033372,-0.0521 z m 49.8916496,0.659973 c -0.07139,0.04817 -0.142329,0.09639 -0.213584,0.144732 -0.04433,0.01347 -0.08909,0.0272 -0.133489,0.04052 -0.858785,0.257784 -1.105407,0.325676 -1.168031,0.341566 0.204945,-0.07097 0.409125,-0.143261 0.61405,-0.214203 0.299752,-0.106379 0.600103,-0.208725 0.901054,-0.312619 z m -3.470723,0.301042 c -0.886104,0.446097 -1.771201,0.895708 -2.656439,1.343104 -0.09202,0.04898 -0.181712,0.101393 -0.273654,0.15052 -0.0145,0.0053 -0.02617,0.0065 -0.04005,0.01158 0.146184,-0.08485 0.294309,-0.164113 0.440514,-0.248939 0.193214,-0.103154 0.7437,-0.3536 0.714169,-0.364721 0.417216,-0.208159 0.833362,-0.423646 1.254799,-0.625239 0.186759,-0.08933 0.373359,-0.177825 0.560657,-0.266305 z m 4.43852,0.746811 c -0.355695,0.154494 -0.707991,0.310643 -1.067915,0.457351 0.02924,-0.05745 0.0781,-0.114653 0.140164,-0.15052 0.03339,-0.01163 0.06669,-0.02319 0.100118,-0.03473 0.05265,-0.0099 0.131359,-0.0368 0.213583,-0.06947 0.205224,-0.06921 0.406435,-0.139332 0.61405,-0.202625 z m -3.21042,0.248939 c -0.5054,0.234312 -1.009296,0.467738 -1.508428,0.712076 -0.0071,0.0029 -0.01297,0.0087 -0.02001,0.01158 -0.006,0.003 -0.01403,0.0029 -0.02001,0.0058 -0.188781,0.0766 -0.3688,0.160699 -0.553982,0.243147 0.304135,-0.209739 0.612815,-0.420072 0.921079,-0.625237 0.151649,-0.04617 0.301796,-0.09376 0.453863,-0.138942 0.241112,-0.07163 0.485234,-0.139796 0.727516,-0.208412 z M 56.48662,50.94806 c -0.04649,0.03506 -0.09387,0.06895 -0.140163,0.104207 -0.07176,0.02997 -0.141868,0.06258 -0.213585,0.09263 -0.0057,-0.0084 -0.01455,-0.01447 -0.02001,-0.02316 0.07399,-0.03425 0.146045,-0.07032 0.220258,-0.104207 0.05075,-0.02318 0.102677,-0.04644 0.153511,-0.06947 z m -51.2065183,0.02316 c 0.00412,-0.0017 0.00908,0.0013 0.013348,0 -0.00901,0.111039 -0.027686,0.220439 -0.066744,0.324198 -0.1377036,-0.05398 -0.08941,-0.267924 0.053396,-0.324198 z M 5.1199142,51.48646 c -0.00668,0.0095 -0.013682,0.01931 -0.020013,0.02895 -0.00888,0.01145 -0.017684,0.02338 -0.026696,0.03474 -6.056e-4,-0.0044 -0.00667,-0.0069 -0.00667,-0.01158 0,-0.02293 0.020847,-0.04066 0.053396,-0.0521 z m 48.1696348,0.06947 c -0.613868,0.279726 -1.219503,0.57034 -1.822129,0.868386 0.0031,-0.01402 -0.0057,-0.02351 -0.03337,-0.01736 -0.864816,0.192253 -1.190485,0.298603 -1.521781,0.468929 0.368818,-0.230797 0.744577,-0.456216 1.121312,-0.677342 0.33106,-0.0664 0.673157,-0.168246 0.734192,-0.179467 0.510048,-0.149226 1.01558,-0.304708 1.521777,-0.463139 z M 4.9597266,51.683294 c -0.047311,0.05478 -0.096889,0.109117 -0.1468378,0.162099 0.00855,-0.03607 0.02425,-0.07478 0.026698,-0.09842 0.00273,-0.0264 0.051706,-0.04896 0.1201399,-0.06368 z m 51.2799384,0.329988 c 0.0029,0.01682 0.006,0.03122 0.01335,0.04631 -0.0379,0.01023 -0.07473,0.02039 -0.113465,0.02895 0.03327,-0.02539 0.06843,-0.04987 0.100116,-0.07526 z m -2.643089,0.665762 c 0.01762,-0.0015 -0.03275,0.008 -0.04672,0.01736 -0.0461,0.03102 -0.09082,0.06383 -0.13349,0.09842 -0.296636,0.170989 -0.589527,0.355135 -0.881029,0.53261 -0.02048,-0.0369 -0.07976,-0.06852 -0.106792,-0.104206 -0.398564,0.207242 -0.798122,0.409447 -1.19473,0.619449 -0.0046,-0.0032 -0.0069,-0.0042 -0.01335,-0.0058 -0.0098,-0.0024 -0.01837,0.0031 -0.0267,0.0058 0.677239,-0.365563 1.361939,-0.721946 2.06241,-1.053643 0.08226,-0.03895 0.165565,-0.07003 0.253629,-0.09842 0.02992,-0.0045 0.05629,-0.0091 0.08677,-0.01158 z m -2.58302,0.266305 c -0.03102,0.01938 -0.06244,0.03849 -0.09344,0.05789 0.0075,-0.0072 0.01258,-0.01595 0.02001,-0.02316 0.06061,-0.03109 0.02401,-0.0094 0.07342,-0.03474 z m 0.153514,0.908911 c -0.01557,0.01384 -0.03254,0.02722 -0.04672,0.04631 -0.04701,0.02518 -0.09337,0.04977 -0.140163,0.07526 -0.137549,0.07492 -0.262216,0.172131 -0.393793,0.254727 -0.186371,0.116989 -0.371515,0.23376 -0.560655,0.347354 -0.51199,0.307498 -1.032238,0.603696 -1.555151,0.897334 0.01344,-0.01316 0.02584,-0.02825 0.04005,-0.04053 0.05314,-0.04594 0.107655,-0.08666 0.160186,-0.133151 0.115361,-0.08657 0.229819,-0.170074 0.347073,-0.254727 0.714216,-0.399892 1.42739,-0.802578 2.149179,-1.192585 z M 4.3056299,54.589494 c 0.00172,-8.94e-4 0.00504,8.94e-4 0.00667,0 0.00107,0.0015 -0.00106,0.0042 0,0.0058 -0.00289,0.0017 -0.00374,0.0041 -0.00667,0.0058 0.00152,-0.0033 -0.00152,-0.0083 0,-0.01158 z m -1.7954331,0.949437 c 0.050652,0.04809 -0.072513,0.09548 -0.3203735,0.133152 0.112342,-0.04256 0.2165019,-0.08889 0.3203735,-0.133152 z m 45.5332222,0.480506 c -0.03758,0.02535 -0.07594,0.04986 -0.113467,0.07526 -0.179813,0.105548 -0.365389,0.215913 -0.580679,0.347354 0.01506,-0.01623 0.03044,-0.03168 0.04672,-0.04631 0.04243,-0.03812 0.0849,-0.07724 0.126815,-0.115785 0.170988,-0.08524 0.301536,-0.151068 0.520609,-0.260517 z m -1.228103,0.752602 c -0.02061,0.013 -0.0395,0.02749 -0.06007,0.04053 0.03347,0.01051 0.06662,0.01836 0.100115,0.02895 -0.21018,0.153855 -0.41765,0.307308 -0.620725,0.468929 -0.07006,0.05576 -0.143788,0.111415 -0.213583,0.167888 0.02142,-0.04746 0.02777,-0.09164 0.02001,-0.133153 0.126235,-0.106638 0.254029,-0.211928 0.380444,-0.318408 0.110462,-0.07145 0.222489,-0.14371 0.333723,-0.214202 -0.0135,-0.0042 -0.02658,-0.0074 -0.04005,-0.01158 0.03565,-0.0084 0.07191,-0.02172 0.100118,-0.02895 z m -1.061241,1.024697 c 0.001,-8.95e-4 0.0056,8.94e-4 0.0067,0 -9.02e-4,0.0015 6.44e-4,0.0043 0,0.0058 -0.0017,7.82e-4 -0.005,-7.82e-4 -0.0067,0 -5.15e-4,-0.0021 5.15e-4,-0.0037 0,-0.0058 z m -2.843323,1.140481 c -0.05836,0.117268 -0.160713,0.282238 -0.186885,0.439982 -0.07939,0.05854 -0.161269,0.114775 -0.24028,0.173678 0.122193,-0.18982 0.241613,-0.37916 0.367096,-0.567346 0.01965,-0.01577 0.04047,-0.0305 0.06007,-0.04631 z m -1.608546,0.717866 c -0.03615,0.02403 -0.07556,0.04754 -0.113465,0.06947 -0.04053,0.02345 -0.175524,0.07348 -0.133491,0.0521 0.08136,-0.04138 0.165249,-0.08072 0.246956,-0.121573 z"
997
+ id="path4735" />
998
+ </g>
999
+ </svg>