Site Reviews - Version 5.0.0

Version Description

(2020-09-13) =

  • Added "Delete data on uninstall" option to selectively delete plugin data when removing the plugin
  • Added "Send Emails From" option to send notifications from a custom email address
  • Added a loading="lazy" attribute to avatar images
  • Added a new Review Details metabox which allows you to modify review values
  • Added a tool to import 3rd-party reviews
  • Added a tool to test IP address detection
  • Added assigned_posts shortcode option, this replaces the "assign_to" and "assigned_to" options and allows you to assign reviews to multiple Post IDs
  • Added assigned_terms shortcode option, this replaces the "category" option and allows you to assign reviews to multiple Categories
  • Added assigned_users shortcode option, this allows you to assign reviews to multiple User IDs
  • Added suggested privacy policy content
  • Added the submitted review to the "site-reviews/after/submission" javascript event
  • Added WordPress Personal Data Eraser integration
  • Added WordPress Personal Data Exporter integration
  • Added WordPress Revision integration
  • Changed the assigned_to hide option to assigned_links (i.e. [site_reviews hide="assigned_links"])
  • Changed the minimum PHP version to 5.6.20
  • Changed the minimum WordPress version to 5.5
  • Changed the review limit validation to perform strict checking for assigned posts, categories and users (AND instead of OR)
  • Changed the settings to use the WordPress "Disallowed Comment Keys" option by default
  • Changed the "site-reviews/rating/average" filter hook argument order (see the Upgrade Guide on the Site Reviews welcome page)
  • Fixed compatibility with the Divi theme and Divi Builder plugin
  • Fixed compatibility with the Elementor Pro plugin popups
  • Fixed compatibility with the GeneratePress Premium plugin
  • Fixed compatibility with the Hummingbird Performance plugin
  • Fixed compatibility with the Members plugin
  • Fixed compatibility with the WP-Optimize plugin
  • Fixed compatibility with the WP Super Cache plugin
  • Fixed the review summary bars in IE11
  • Fixed Welcome page permissions
  • Improved console logging
  • Improved documentation
  • Improved plugin performance with thousands of reviews
  • Improved the blocks to visually match the WordPress 5.5 editor style
  • Improved the Terms checkbox in the review form to align correctly with the text
  • Improved translation settings
  • Refreshed the stars SVG images
  • Removed the "site-reviews/config/forms/submission-form" filter hook (see the Upgrade Guide on the Welcome page)
  • Removed the "site-reviews/reviews/reviews-wrapper" filter hook (see the Upgrade Guide on the Welcome page)
  • Removed the "site-reviews/submission-form/order" filter hook (see the Upgrade Guide on the Welcome page)
  • Removed the glsr_calculate_ratings() helper function
  • Removed the Trustalyze integration, it is now an add-on
  • Removed tool to calculate rating counts (no longer needed)
  • Renamed the glsr_get_rating() helper function to glsr_get_ratings()
  • Replaced the assign_to and assigned_to shortcode options with the assigned_posts option
  • Replaced the category shortcode option with "assigned_terms" option
  • Site Reviews now uses custom database tables, however you may still use the WordPress Export/Import tools as before
  • The Translations Settings search results are now restricted to public text that is actually shown on your website, if you would like to change plugin text shown in the WordPress admin, you should use the Loco Translate plugin instead
Download this release

Release Info

Developer geminilabs
Plugin Icon 128x128 Site Reviews
Version 5.0.0
Comparing to
See all releases

Code changes from version 4.7.0 to 5.0.0

Files changed (50) hide show
  1. activate.php +11 -11
  2. assets/images/addon-filters.svg +1 -0
  3. assets/images/addon-images.svg +1 -357
  4. assets/images/addon-tripadvisor.svg +0 -1
  5. assets/images/addon-trustalyze.svg +1 -0
  6. assets/images/badge.png +0 -0
  7. assets/images/banner.png +0 -0
  8. assets/images/blocks.png +0 -0
  9. assets/images/icon.png +0 -0
  10. assets/images/star-empty.svg +3 -1
  11. assets/images/star-error.svg +2 -4
  12. assets/images/star-full.svg +3 -1
  13. assets/images/star-half.svg +3 -1
  14. assets/images/stars-grad/star-empty.svg +9 -0
  15. assets/images/stars-grad/star-error.svg +9 -0
  16. assets/images/stars-grad/star-full.svg +9 -0
  17. assets/images/stars-grad/star-half.svg +9 -0
  18. assets/images/stars-rounded/star-empty.svg +3 -0
  19. assets/images/stars-rounded/star-error.svg +3 -0
  20. assets/images/stars-rounded/star-full.svg +3 -0
  21. assets/images/stars-rounded/star-half.svg +3 -0
  22. assets/images/stars-wp/star-empty.svg +1 -0
  23. assets/images/stars-wp/star-error.svg +5 -0
  24. assets/images/stars-wp/star-full.svg +1 -0
  25. assets/images/stars-wp/star-half.svg +1 -0
  26. assets/images/trustalyze-badge.png +0 -0
  27. assets/scripts/mce-plugin.js +1 -1
  28. assets/scripts/site-reviews-admin.js +2 -1
  29. assets/scripts/site-reviews-blocks.js +1 -1
  30. assets/scripts/site-reviews.js +2 -1
  31. assets/styles/admin/admin.css +1 -0
  32. assets/styles/blocks/bootstrap_4-blocks.css +1 -0
  33. assets/styles/blocks/bootstrap_4_custom-blocks.css +1 -0
  34. assets/styles/blocks/contact_form_7-blocks.css +1 -0
  35. assets/styles/blocks/default-blocks.css +1 -0
  36. assets/styles/blocks/divi-blocks.css +1 -0
  37. assets/styles/blocks/minimal-blocks.css +1 -0
  38. assets/styles/blocks/ninja_forms-blocks.css +1 -0
  39. assets/styles/blocks/twentyfifteen-blocks.css +1 -0
  40. assets/styles/blocks/twentynineteen-blocks.css +1 -0
  41. assets/styles/blocks/twentyseventeen-blocks.css +1 -0
  42. assets/styles/blocks/twentysixteen-blocks.css +1 -0
  43. assets/styles/blocks/twentytwenty-blocks.css +1 -0
  44. assets/styles/blocks/wpforms-blocks.css +1 -0
  45. assets/styles/bootstrap_4.css +1 -0
  46. assets/styles/bootstrap_4_custom.css +1 -0
  47. assets/styles/contact_form_7.css +1 -0
  48. assets/styles/custom/bootstrap_4.css +0 -623
  49. assets/styles/custom/bootstrap_4_custom.css +0 -1
  50. assets/styles/custom/contact_form_7.css +0 -1
activate.php CHANGED
@@ -4,12 +4,12 @@ defined('WPINC') || die;
4
 
5
  /**
6
  * Check for minimum system requirments on plugin activation.
7
- * @version 4.0.0
8
  */
9
- class GL_Plugin_Check_v4
10
  {
11
- const MIN_PHP_VERSION = '5.6.0';
12
- const MIN_WORDPRESS_VERSION = '4.7.0';
13
 
14
  /**
15
  * @var array
@@ -99,13 +99,13 @@ class GL_Plugin_Check_v4
99
  protected function getMessages()
100
  {
101
  return [
102
- 'notice' => __('The %s plugin was deactivated.', 'site-reviews'),
103
- 'php_version' => __('PHP version', 'site-reviews'),
104
- 'rollback' => __('You can use the %s plugin to restore %s to the previous version.', 'site-reviews'),
105
- 'update_php' => __('Please contact your hosting provider or server administrator to upgrade the version of PHP on your server (your server is running PHP version %s), or try to find an alternative plugin.', 'site-reviews'),
106
- 'update_wp' => __('Update WordPress', 'site-reviews'),
107
- 'wp_version' => __('WordPress version', 'site-reviews'),
108
- 'wrong_version' => __('This plugin requires %s or greater in order to work properly.', 'site-reviews'),
109
  ];
110
  }
111
 
4
 
5
  /**
6
  * Check for minimum system requirments on plugin activation.
7
+ * @version 5.5.0
8
  */
9
+ class GL_Plugin_Check_v5
10
  {
11
+ const MIN_PHP_VERSION = '5.6.20';
12
+ const MIN_WORDPRESS_VERSION = '5.5.0';
13
 
14
  /**
15
  * @var array
99
  protected function getMessages()
100
  {
101
  return [
102
+ 'notice' => _x('The %s plugin was deactivated.', 'admin-text', 'site-reviews'),
103
+ 'php_version' => _x('PHP version', 'admin-text', 'site-reviews'),
104
+ 'rollback' => _x('You can use the %s plugin to restore %s to the previous version.', 'admin-text', 'site-reviews'),
105
+ 'update_php' => _x('Please contact your hosting provider or server administrator to upgrade the version of PHP on your server (your server is running PHP version %s), or try to find an alternative plugin.', 'admin-text', 'site-reviews'),
106
+ 'update_wp' => _x('Update WordPress', 'admin-text', 'site-reviews'),
107
+ 'wp_version' => _x('WordPress version', 'admin-text', 'site-reviews'),
108
+ 'wrong_version' => _x('This plugin requires %s or greater in order to work properly.', 'admin-text', 'site-reviews'),
109
  ];
110
  }
111
 
assets/images/addon-filters.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="750" height="500"><defs><path id="a" d="M149 110.94c0 13.22 47.01 23.94 105 23.94s105-10.72 105-23.94l7.25-5.98L508 0H0l142.34 105.45 6.66 5.49z"/><path id="c" d="M149 110.94c0 13.22 47.01 23.94 105 23.94s105-10.72 105-23.94l7.25-5.98L508 0H0l142.34 105.45 6.66 5.49z"/><path id="e" d="M149 110.94c0 13.22 47.01 23.94 105 23.94s105-10.72 105-23.94l7.25-5.98L508 0H0l142.34 105.45 6.66 5.49z"/><path id="g" d="M149 110.94c0 13.22 47.01 23.94 105 23.94s105-10.72 105-23.94l7.25-5.98L508 0H0l142.34 105.45 6.66 5.49z"/><path id="i" d="M149 110.94c0 13.22 47.01 23.94 105 23.94s105-10.72 105-23.94l7.25-5.98L508 0H0l142.34 105.45 6.66 5.49z"/><path id="k" d="M149 110.94c0 13.22 47.01 23.94 105 23.94s105-10.72 105-23.94l7.25-5.98L508 0H0l142.34 105.45 6.66 5.49z"/><path id="m" d="M149 110.94c0 13.22 47.01 23.94 105 23.94s105-10.72 105-23.94l7.25-5.98L508 0H0l142.34 105.45 6.66 5.49z"/><path id="o" d="M149 110.94c0 13.22 47.01 23.94 105 23.94s105-10.72 105-23.94l7.25-5.98L508 0H0l142.34 105.45 6.66 5.49z"/><path id="q" d="M149 110.94c0 13.22 47.01 23.94 105 23.94s105-10.72 105-23.94l7.25-5.98L508 0H0l142.34 105.45 6.66 5.49z"/></defs><g fill="none" fill-rule="evenodd"><path fill="#319796" fill-rule="nonzero" d="M0 0h750v500H0z"/><path fill="#FFF" fill-rule="nonzero" d="M299.08 114V97.55h16.64V87.7h-16.64v-8.64h16.96V69.2h-27.2V114h10.24zm27.52-34.82a5.82 5.82 0 005.76-5.76 5.82 5.82 0 00-5.76-5.76 5.82 5.82 0 00-5.76 5.76 5.82 5.82 0 005.76 5.76zm4.8 34.82V82h-9.6v32h9.6zm16.64 0V67.28h-9.6V114h9.6zm25.8 0v-8.7c-4.23.25-6.6 0-6.6-2.76V91.22h6.6V82h-6.6v-8.96l-9.6 2.88V82h-5.12v9.22h5.12v11.32c0 8.96 3.65 12.74 16.2 11.46zm20.92.9c6.08 0 10.82-2.24 13.95-6.6l-7.68-4.41c-1.28 1.4-3.52 2.43-6.14 2.43-3.52 0-6.47-1.15-7.68-4.48h22.72c.25-1.22.38-2.5.38-3.84 0-9.66-6.91-16.9-16.25-16.9-10.12 0-17.03 7.36-17.03 16.9s6.79 16.9 17.73 16.9zm6.02-20.23h-13.76c.9-3.26 3.32-5.05 6.97-5.05 2.88 0 5.76 1.34 6.79 5.05zM425.35 114V99.54c0-6.34 5.63-7.94 9.6-7.3V81.36c-4.03 0-8.32 2.05-9.6 6.34V82h-9.6v32h9.6zm24.64.9c6.91 0 13.31-3.14 13.31-10.5 0-11.84-15.74-9.4-15.74-13.06 0-1.15 1.02-1.79 2.69-1.79 2.11 0 3.39 1.15 4.29 2.82l8.19-4.42c-2.69-4.54-7.3-6.85-12.48-6.85-6.66 0-12.55 3.52-12.55 10.5 0 11.07 15.75 9.22 15.75 12.74 0 1.28-1.15 1.98-3.46 1.98-2.81 0-4.6-1.34-5.44-3.78l-8.32 4.74c2.5 5.18 7.36 7.62 13.76 7.62z"/><g transform="translate(121 177)"><g fill-rule="nonzero" transform="translate(139 83.08)"><path fill="#742A2A" d="M87 140.75c4 22.48 9 52.78 12 73.3 10 6.85 25 1.96 27-1.95 4-18.57 10-63.53 13-67.44 3-3.91-41.31-27.15-52-3.91z"/><path fill="#9C2B2B" d="M15 47.9c12.67 26.06 24.67 45.6 36 58.64 17 19.55 25 28.34 37 38.12 12 9.77 38 9.77 51 0 8-8.8 28-25.41 42-43 14-17.6 29-42.04 34-53.77 2.37-5.55-28.69-17-97-14.66-18.55.64-52.89 5.53-103 14.66z"/><ellipse cx="115" cy="27.856" fill="#9C2B2B" rx="105" ry="23.947"/><path fill="#F66565" stroke="#000" d="M115 55.71c38 0 105-7.79 105-21.01 0-13.23-47.01-23.95-105-23.95S10 21.47 10 34.7C10 47.92 77 55.7 115 55.7z"/><path fill="#C53030" stroke="#000" d="M115.5.5c31.57 0 60.16 3.11 80.85 8.14 10.5 2.56 18.95 5.6 24.73 9 5.36 3.14 8.42 6.57 8.42 10.22 0 3.64-3.06 7.07-8.42 10.22-5.78 3.39-14.24 6.43-24.73 8.99-20.7 5.03-49.28 8.14-80.85 8.14-31.57 0-60.16-3.1-80.85-8.14-10.5-2.56-18.95-5.6-24.73-9C4.56 34.94 1.5 31.5 1.5 27.87c0-3.65 3.06-7.08 8.42-10.22 5.78-3.4 14.24-6.44 24.73-9C55.35 3.61 83.93.5 115.5.5zm-.5 2.91c-29.04 0-55.33 2.69-74.36 7.03-9.73 2.22-17.58 4.87-22.93 7.82a22.2 22.2 0 00-6.09 4.6c-1.4 1.61-2.12 3.29-2.12 5 0 1.7.72 3.38 2.13 5a22.26 22.26 0 006.08 4.6c5.35 2.94 13.2 5.6 22.93 7.82C59.67 49.62 85.96 52.3 115 52.3s55.33-2.68 74.36-7.02c9.73-2.22 17.58-4.88 22.93-7.83 2.66-1.46 4.7-3 6.09-4.59 1.4-1.62 2.12-3.3 2.12-5 0-1.71-.72-3.39-2.13-5a22.22 22.22 0 00-6.08-4.6c-5.35-2.95-13.2-5.6-22.93-7.82C170.33 6.1 144.04 3.4 115 3.4z"/><path fill="#742A2A" d="M115.5 55.71c62.57 0 113.41-12.2 114.48-27.37h.02v9.78C216 53.1 177.67 60.6 115 60.6c-62.04 0-99.9-7.34-113.6-22.03l-.4-.45v-9.77h.02C2.09 43.5 52.93 55.7 115.5 55.7z"/><path fill="#000" d="M2 28.34l-.5 9.6.28.3c13.42 14.4 50.56 21.72 111.35 21.87H115c61.9 0 100-7.32 114.2-21.88l.3-.3-.5-9.58h1l.5 9.96-.13.14C216.24 53.58 177.81 61.09 115 61.09c-62.18 0-100.15-7.37-113.97-22.2l-.4-.45-.13-.14.5-9.95h1z"/><path fill="#000" d="M16.04 47.97c19.01 40.62 42.81 72.49 71.4 95.6l1.03.83 11 69.39.06.05c3.17 2.33 8.47 3.25 15.84 2.7l.53-.03c4.86-.95 8.74-2.85 9.65-4.63l.03-.06c.2-.53.72-3.24 1.59-8.22l4.38-25.51.72-4.14 1.1-6.13c2.43-13.42 4.14-21.34 5.18-23.38l.1-.19c.57-.95 1.9-2.31 4.7-4.84l5.57-5c2.1-1.9 4.18-3.8 6.24-5.72a265.76 265.76 0 0032.41-36.03 243.07 243.07 0 0026.3-44.47c1.02-.62 1.5-.9 1.49-.85a244.07 244.07 0 01-26.98 45.9 266.77 266.77 0 01-32.53 36.15 387.87 387.87 0 01-4.78 4.4l-6.47 5.81c-3.25 2.94-4.71 4.41-5.15 5.28l-.08.16c-1.12 2.46-3.12 12.14-5.94 28.1l-.71 4.05-4.55 26.51c-.98 5.58-1.49 8.16-1.72 8.62-1.1 2.13-5.21 4.14-10.4 5.15-7.94.65-13.65-.29-17.13-2.86l-.23-.17-.15-.12-11-69.4-.74-.6c-28.7-23.2-52.6-55.2-71.67-95.95l-.59-1.25c.87.29 1.37.57 1.5.85z"/><path fill="#C53030" d="M40 55.71C56.67 98.07 78.33 130 105 151.5c5.31.65 10.69.65 16 0-19-31.28-23-65.49-23-90.9-21.33 0-40.67-1.63-58-4.89z" opacity=".5"/><path fill="#9C2B2B" d="M95 148.57c7.33 2.6 14.33 3.58 21 2.93-2 18.25-3 39.75-3 64.51-3.33.65-6.33.65-9 0-4.67-29.97-7.67-52.45-9-67.44z" opacity=".5"/></g><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path fill="#FAF088" fill-rule="nonzero" stroke="#000" d="M185.62 8.4a7.03 7.03 0 00-1.1-2.16c-.5-.62-1.05-.89-1.58-.89s-1.08.26-1.58.88c-.4.49-.77 1.2-1.09 2.16l-2.13 6.4-6.82.02a7.1 7.1 0 00-2.4.36c-.76.28-1.18.72-1.34 1.21-.16.5-.08 1.1.37 1.78.34.52.92 1.1 1.73 1.7l5.55 4.08-2.06 6.4c-.3.97-.42 1.76-.38 2.39.04.8.33 1.33.76 1.64.42.31 1.03.42 1.8.21.6-.16 1.33-.51 2.16-1.1l5.53-3.93 5.58 3.99c.83.59 1.56.95 2.17 1.11.77.21 1.37.11 1.8-.2.43-.3.71-.84.75-1.64.03-.62-.1-1.42-.4-2.38l-2.08-6.45 5.46-4a6.93 6.93 0 001.72-1.69c.44-.67.52-1.27.36-1.77-.17-.5-.6-.94-1.35-1.22a7.13 7.13 0 00-2.4-.38l-6.77-.1-2.26-6.42h0z" mask="url(#b)" transform="rotate(-12 182.99 20.059)"/><mask id="d" fill="#fff"><use xlink:href="#c"/></mask><path fill="#FAF088" fill-rule="nonzero" stroke="#000" d="M234.88 96.07a13.22 13.22 0 00-2.1-4.1c-.9-1.08-1.85-1.57-2.78-1.57-.93 0-1.89.5-2.78 1.57-.76.92-1.48 2.29-2.1 4.1l-4.45 12.98-14.02.13c-1.95.02-3.5.26-4.63.69-1.33.5-2.1 1.23-2.39 2.1-.29.87-.1 1.92.67 3.09.66 1 1.76 2.08 3.34 3.22l11.35 8.22-4.3 12.97a13.09 13.09 0 00-.77 4.54c.08 1.39.56 2.34 1.31 2.88.76.53 1.83.68 3.19.33 1.17-.31 2.57-1 4.16-2.11l11.42-8.03 11.4 8.03c1.6 1.1 3 1.8 4.18 2.1 1.36.36 2.43.21 3.18-.32.76-.54 1.24-1.5 1.31-2.88.06-1.19-.17-2.7-.76-4.53l-4.2-13.04 11.25-8.16a13.5 13.5 0 003.34-3.22c.78-1.17.96-2.22.67-3.09-.3-.87-1.07-1.6-2.39-2.1a13.91 13.91 0 00-4.64-.7l-13.9-.11-4.56-13h0z" mask="url(#d)"/><mask id="f" fill="#fff"><use xlink:href="#e"/></mask><path fill="#FAF088" fill-rule="nonzero" stroke="#000" d="M316.75 19.68a8.16 8.16 0 00-1.32-2.56c-.59-.71-1.23-1.02-1.85-1.02-.62 0-1.26.32-1.86 1.03a8.38 8.38 0 00-1.35 2.58l-2.73 7.83-8.5.11c-1.23.02-2.21.18-2.92.45-.89.33-1.4.84-1.6 1.41-.19.58-.09 1.28.43 2.06.42.62 1.1 1.3 2.1 2.01l6.85 4.9-2.65 7.81a8.17 8.17 0 00-.5 2.85c.05.93.38 1.55.9 1.91.5.35 1.2.46 2.1.22.75-.2 1.64-.63 2.64-1.33l6.95-4.86 6.9 4.8c1 .68 1.88 1.1 2.62 1.3.9.23 1.61.11 2.12-.24.5-.36.84-.99.9-1.9.03-.75-.1-1.7-.47-2.85L323 38.37l6.85-4.95c1-.72 1.69-1.4 2.11-2.03.53-.78.63-1.48.44-2.06-.19-.57-.7-1.07-1.58-1.4a8.77 8.77 0 00-2.92-.42l-8.42-.03-2.73-7.8z" mask="url(#f)" transform="rotate(13 313.512 33.75)"/><mask id="h" fill="#fff"><use xlink:href="#g"/></mask><path fill="#FAF088" fill-rule="nonzero" stroke="#000" d="M121.04 12.24a9.08 9.08 0 00-1.46-2.84c-.64-.77-1.33-1.12-2.01-1.11-.68 0-1.37.35-2.02 1.13a9.23 9.23 0 00-1.48 2.85l-3.03 8.75-9.46.12c-1.36.01-2.44.2-3.23.49-.96.36-1.51.9-1.72 1.53-.22.64-.1 1.4.46 2.24a9.25 9.25 0 002.32 2.23l7.63 5.5-2.94 8.74a9.07 9.07 0 00-.54 3.15c.05 1 .4 1.69.96 2.08.54.38 1.31.5 2.3.24.82-.22 1.8-.7 2.9-1.47l7.73-5.44 7.68 5.37a9.48 9.48 0 002.9 1.45c.98.26 1.75.14 2.3-.25.55-.4.9-1.08.96-2.08a8.99 8.99 0 00-.51-3.15l-2.8-8.75 7.61-5.52a9.46 9.46 0 002.33-2.25c.57-.85.7-1.61.48-2.24-.2-.63-.76-1.17-1.72-1.53a9.68 9.68 0 00-3.22-.47l-9.37-.04-3.05-8.73h0z" mask="url(#h)" transform="rotate(10 117.512 27.88)"/><mask id="j" fill="#fff"><use xlink:href="#i"/></mask><path fill="#FAF088" fill-rule="nonzero" stroke="#000" d="M164 50.33c.93 0 1.89.5 2.77 1.56.77.93 1.49 2.3 2.1 4.1l4.58 13 13.9.12c1.95.01 3.5.26 4.63.69 1.32.49 2.1 1.23 2.39 2.1.29.87.1 1.92-.67 3.08a13.5 13.5 0 01-3.34 3.23l-11.25 8.16 4.2 13.03c.59 1.83.82 3.35.76 4.54-.07 1.38-.55 2.33-1.31 2.87-.75.54-1.82.69-3.18.33-1.17-.3-2.58-1-4.17-2.1L164 97l-11.42 8.02c-1.59 1.11-3 1.8-4.16 2.11-1.36.36-2.43.2-3.19-.33-.75-.54-1.23-1.49-1.3-2.87-.07-1.19.17-2.7.76-4.54l4.3-12.98-11.35-8.21a13.52 13.52 0 01-3.34-3.23c-.78-1.16-.96-2.2-.67-3.08.3-.87 1.06-1.61 2.39-2.1a13.9 13.9 0 014.63-.7l14.02-.12L159.1 56a13.26 13.26 0 012.11-4.1c.9-1.08 1.85-1.57 2.78-1.57h0zm.5 5.66v36.57l8.56 6.02c2.37 1.59 4.1 2.74 5.27 3.38.46.25.82.42 1.39.32 0-.28-.06-.66-.18-1.13-.3-1.27-.97-3.17-1.9-5.8l-3.34-10.38 8.95-6.5c2.24-1.62 3.88-2.82 4.88-3.7.59-.5 1.06-.85.9-1.17a3.6 3.6 0 00-.97-.22c-1.13-.13-2.9-.15-5.35-.15h-1.2l-11.05-.1-3.63-10.33c-.9-2.89-1.56-4.98-2.1-6.29a8.2 8.2 0 00-.23-.52h0z" mask="url(#j)" transform="rotate(-48 164 78.831)"/><mask id="l" fill="#fff"><use xlink:href="#k"/></mask><path fill="#FAF088" fill-rule="nonzero" stroke="#000" d="M302 66.94c.93 0 1.89.5 2.77 1.57.77.92 1.49 2.29 2.1 4.1l4.58 12.99 13.9.12c1.95.02 3.5.27 4.63.7 1.32.48 2.1 1.22 2.39 2.1.29.87.1 1.91-.67 3.08a13.5 13.5 0 01-3.34 3.22L317.11 103l4.2 13.03c.59 1.83.82 3.35.76 4.53-.07 1.39-.55 2.34-1.31 2.88-.75.53-1.82.68-3.18.33-1.17-.31-2.58-1-4.17-2.11L302 113.62l-11.42 8.03c-1.59 1.11-3 1.8-4.16 2.1-1.36.36-2.43.21-3.19-.32-.75-.54-1.23-1.5-1.3-2.88-.07-1.18.17-2.7.76-4.54l4.3-12.97-11.35-8.22a13.52 13.52 0 01-3.34-3.22c-.78-1.17-.96-2.21-.67-3.09.3-.87 1.07-1.6 2.39-2.1a13.9 13.9 0 014.63-.69l14.02-.13 4.44-12.98a13.26 13.26 0 012.11-4.1c.9-1.07 1.85-1.57 2.78-1.57h0zm.5 5.67v36.57l8.56 6.02a80.7 80.7 0 005.27 3.38c.46.24.82.41 1.39.32 0-.28-.06-.66-.17-1.14-.31-1.26-.98-3.17-1.9-5.8l-3.35-10.38 8.96-6.5c2.25-1.63 3.9-2.83 4.9-3.7.56-.5 1.04-.85.86-1.18-.24-.1-.58-.16-1.03-.2a58.77 58.77 0 00-5.57-.16h-.92l-11.04-.1-3.63-10.32c-.9-2.9-1.55-4.99-2.1-6.3a8.2 8.2 0 00-.23-.51h0z" mask="url(#l)" transform="rotate(7 302 95.447)"/><mask id="n" fill="#fff"><use xlink:href="#m"/></mask><path fill="#FAF088" fill-rule="nonzero" stroke="#000" d="M398.5 3.41c.62 0 1.26.31 1.86 1.03.48.57.94 1.43 1.33 2.56l2.77 7.8 8.44.08c1.23.01 2.2.17 2.92.43.89.33 1.4.83 1.59 1.4.2.59.09 1.29-.43 2.06a8.47 8.47 0 01-2.11 2.02l-6.83 4.9 2.55 7.83c.37 1.14.52 2.1.48 2.84-.05.92-.38 1.55-.9 1.9-.5.36-1.2.47-2.11.23a8.7 8.7 0 01-2.63-1.31l-6.93-4.83-6.93 4.83a8.7 8.7 0 01-2.63 1.31c-.91.24-1.62.13-2.12-.23-.5-.35-.84-.98-.9-1.9-.03-.74.12-1.7.49-2.84l2.6-7.8-6.88-4.93c-1-.7-1.69-1.4-2.1-2.02-.53-.78-.63-1.47-.44-2.05.2-.58.7-1.08 1.59-1.4.71-.27 1.69-.43 2.92-.44l8.5-.08 2.7-7.8c.4-1.13.86-1.99 1.34-2.57.6-.7 1.24-1.02 1.86-1.02h0zm0 4.25v21.17l5.26 3.6c1.47.95 2.54 1.65 3.27 2.04.16.08.3.12.49-.27-.19-.76-.6-1.92-1.18-3.5l-2.13-6.45 5.7-4.03c1.75-1.24 3.28-2.05 3.14-2.73-.65-.08-1.69-.1-3.12-.1h-1l-7.02-.06-2.32-6.4c-.44-1.4-.8-2.48-1.08-3.27h0z" mask="url(#n)" transform="rotate(24 398.5 21.015)"/><mask id="p" fill="#fff"><use xlink:href="#o"/></mask><path fill="#FAF088" fill-rule="nonzero" stroke="#000" d="M238.5 22.96c.84 0 1.7.44 2.5 1.41.67.83 1.31 2.05 1.87 3.67l4.02 11.52 12.23.11c1.74.02 3.11.24 4.12.62 1.19.45 1.88 1.12 2.14 1.9.26.8.1 1.74-.6 2.8-.58.88-1.56 1.86-2.96 2.88l-9.9 7.24 3.7 11.57c.51 1.63.72 2.99.67 4.05-.07 1.25-.5 2.11-1.18 2.6-.68.48-1.64.63-2.86.3a12.14 12.14 0 01-3.7-1.88l-10.05-7.12-10.05 7.12c-1.41.99-2.66 1.6-3.7 1.88-1.22.33-2.18.19-2.86-.3-.68-.49-1.11-1.35-1.18-2.6-.06-1.06.15-2.42.68-4.06l3.79-11.51-10-7.29c-1.4-1.02-2.38-2-2.97-2.88-.7-1.06-.85-2-.6-2.8.27-.78.96-1.45 2.15-1.9 1-.38 2.38-.6 4.12-.62l12.34-.1 3.91-11.52c.55-1.63 1.2-2.85 1.87-3.68.8-.97 1.66-1.41 2.5-1.41h0zm-.09 5.05c-.15.22-.32.55-.5.99a78.62 78.62 0 00-1.84 5.6l-3.11 9.23-9.8.1h-1.27c-1.87 0-3.27.01-4.23.1-.44.05-.78.1-1.07.36.14.21.38.46.7.75.88.79 2.34 1.87 4.36 3.36l7.95 5.84-3.02 9.24c-.8 2.35-1.39 4.04-1.66 5.17-.1.42-.15.75.02 1.1.25-.07.56-.22.95-.43 1.04-.58 2.55-1.6 4.63-3.02l7.98-5.7 7.99 5.7c2.07 1.42 3.58 2.44 4.61 3.02.4.21.71.36 1.13.33 0-.25-.05-.58-.15-1-.27-1.13-.86-2.83-1.67-5.16l-2.94-9.29 7.88-5.8c3.2-2.37 5.2-3.6 5.1-4.25a2.82 2.82 0 00-.77-.18c-.94-.12-2.41-.14-4.45-.15h-1.38l-9.73-.09-3.2-9.23c-.79-2.58-1.36-4.44-1.83-5.6-.18-.44-.35-.77-.68-1v.01z" mask="url(#p)"/><mask id="r" fill="#fff"><use xlink:href="#q"/></mask><path fill="#FAF088" fill-rule="nonzero" stroke="#000" d="M366.5 41.53c.84 0 1.7.44 2.5 1.41.67.83 1.32 2.05 1.87 3.67l4.02 11.52 12.23.11c1.74.02 3.11.24 4.12.62 1.19.45 1.88 1.12 2.14 1.9.26.8.1 1.74-.6 2.8a12 12 0 01-2.96 2.88l-9.9 7.24 3.7 11.57c.51 1.63.72 2.99.67 4.05-.07 1.25-.5 2.11-1.18 2.6-.68.49-1.64.63-2.86.3a12.14 12.14 0 01-3.7-1.88L366.5 83.2l-10.05 7.12c-1.41.99-2.66 1.6-3.7 1.88-1.22.33-2.18.19-2.86-.3-.68-.49-1.11-1.35-1.18-2.6-.06-1.06.15-2.42.68-4.06l3.79-11.51-10-7.29c-1.4-1.02-2.38-2-2.97-2.88-.7-1.06-.85-2-.6-2.8.27-.78.96-1.45 2.15-1.9 1-.38 2.38-.6 4.12-.62l12.34-.1 3.91-11.52c.55-1.63 1.2-2.85 1.87-3.68.8-.97 1.66-1.41 2.5-1.41h0zm-.09 5.05c-.15.22-.32.55-.5.99a78.62 78.62 0 00-1.84 5.6l-3.11 9.23-9.8.1h-1.27c-1.87 0-3.27.01-4.23.1-.44.05-.78.1-1.07.36.14.21.38.46.7.75.88.79 2.34 1.87 4.36 3.36l7.95 5.84-3.02 9.25c-.8 2.34-1.39 4.03-1.66 5.16-.1.42-.15.75.02 1.1.25-.07.56-.22.95-.43 1.04-.57 2.55-1.6 4.63-3.02l7.98-5.7 7.99 5.7c2.07 1.42 3.58 2.45 4.62 3.02.39.21.7.36 1.12.33 0-.25-.05-.58-.15-1-.27-1.13-.86-2.82-1.67-5.16l-2.94-9.29 7.88-5.8c3.2-2.37 5.2-3.6 5.1-4.25a2.82 2.82 0 00-.77-.18c-.94-.12-2.41-.14-4.45-.15h-1.38l-9.73-.08-3.2-9.24c-.79-2.57-1.36-4.44-1.83-5.6-.18-.44-.35-.77-.68-.99h0z" mask="url(#r)" transform="rotate(40 366.5 66.953)"/></g><path fill="#FFF" fill-rule="nonzero" d="M263.4 156l-1.64-4.27h-8.42L251.7 156h-1.34l6.53-16.8h1.34l6.5 16.8h-1.34zm-9.58-5.47h7.48l-3.74-9.77-3.74 9.77zm24.9 5.73c-3.14 0-5.37-1.58-6.14-3.96l1.1-.64c.58 2.01 2.29 3.38 5.05 3.38 2.8 0 4.22-1.44 4.22-3.36 0-2.02-1.77-2.78-4.34-3.6-2.81-.91-5.33-1.7-5.33-4.63 0-2.76 2.23-4.51 5.09-4.51a5.64 5.64 0 015.4 3.52l-1.08.6a4.42 4.42 0 00-4.32-2.9c-2.33 0-3.8 1.37-3.8 3.24 0 2.02 1.71 2.64 4.11 3.43 2.98.99 5.57 1.92 5.57 4.83 0 2.78-2.19 4.6-5.52 4.6zm9-15.16a.96.96 0 01-.95-.96c0-.5.43-.94.96-.94s.96.43.96.94c0 .52-.43.96-.96.96zm-.6 14.9v-12h1.2v12h-1.2zm11.05-10.82h-3.58v7.8c0 2.1 1.13 2.16 3.58 1.94V156c-3.15.48-4.8-.29-4.8-3.02v-7.8h-2.64V144h2.64v-3l1.22-.36V144h3.58v1.18zm7.56-1.44c3.65 0 5.93 3.02 5.93 6.3 0 .2-.03.4-.03.58h-10.87a4.88 4.88 0 005.09 4.5c1.97 0 3.45-.92 4.15-2.2l1.06.63a5.91 5.91 0 01-5.24 2.71 6.06 6.06 0 01-6.3-6.26 6.05 6.05 0 016.2-6.26zm0 1.15a4.84 4.84 0 00-4.97 4.56h9.65c-.27-2.93-2.33-4.56-4.68-4.56zM331.72 156l-4.03-6.89h-5.3V156h-1.28v-16.8h6.63a4.96 4.96 0 011.27 9.74l4.17 7.06h-1.46zm-9.34-15.6v7.51h5.36c2.04 0 3.7-1.68 3.7-3.74a3.73 3.73 0 00-3.7-3.77h-5.36zm18 3.34c3.65 0 5.93 3.02 5.93 6.3 0 .2-.02.4-.02.58h-10.87a4.88 4.88 0 005.08 4.5c1.97 0 3.46-.92 4.16-2.2l1.05.63a5.91 5.91 0 01-5.23 2.71 6.06 6.06 0 01-6.31-6.26 6.05 6.05 0 016.21-6.26zm0 1.15a4.84 4.84 0 00-4.96 4.56h9.64c-.26-2.93-2.32-4.56-4.68-4.56zm17.07-.89h1.27l-5.06 12h-1.47l-5.09-12h1.3l4.51 10.75 4.54-10.75zm4.05-2.9a.96.96 0 01-.96-.96.96.96 0 011.92 0c0 .52-.43.96-.96.96zm-.6 14.9v-12h1.2v12h-1.2zm10.3-12.26c3.65 0 5.93 3.02 5.93 6.3 0 .2-.03.4-.03.58h-10.87a4.88 4.88 0 005.09 4.5c1.97 0 3.46-.92 4.15-2.2l1.06.63a5.91 5.91 0 01-5.23 2.71 6.06 6.06 0 01-6.32-6.26 6.05 6.05 0 016.22-6.26zm0 1.15a4.84 4.84 0 00-4.97 4.56h9.65c-.26-2.93-2.33-4.56-4.68-4.56zm22.82-.89h1.28l-3.8 12h-1.32l-3.33-10.22L383.5 156h-1.32l-3.79-12h1.27l3.2 10.44 3.35-10.44h1.25l3.36 10.44 3.2-10.44zm4.01 3.14c0 3.22 7.27 1.32 7.27 5.72 0 1.96-1.72 3.4-4.3 3.4-2.4 0-3.98-1.12-4.55-2.66l1.03-.6c.43 1.3 1.73 2.11 3.53 2.11 1.68 0 3.1-.74 3.1-2.25 0-3.27-7.28-1.4-7.28-5.72 0-1.9 1.63-3.4 4.08-3.4 1.95 0 3.43.93 4.08 2.4l-1 .57c-.51-1.25-1.76-1.82-3.08-1.82-1.56 0-2.88.81-2.88 2.25zm27.15-3.14h1.22v12h-1.22v-2.71a5.77 5.77 0 01-5.16 2.97 6.2 6.2 0 01-6.22-6.26 6.2 6.2 0 016.22-6.26c2.3 0 4.15 1.17 5.16 2.97V144zm-5.07 11.11a5.03 5.03 0 005.07-5.11c0-2.86-2.21-5.11-5.07-5.11a5.05 5.05 0 00-5.09 5.11 5.05 5.05 0 005.1 5.11zm20.57-15.91h1.2V156h-1.2v-2.78a5.69 5.69 0 01-5.16 3.04 6.18 6.18 0 01-6.22-6.26 6.18 6.18 0 016.22-6.26c2.33 0 4.18 1.2 5.16 3.04v-7.58zm-5.09 15.91a5.05 5.05 0 005.09-5.11 5.05 5.05 0 00-5.09-5.11 5.05 5.05 0 00-5.09 5.11 5.05 5.05 0 005.1 5.11zm20.57-15.91h1.2V156h-1.2v-2.78a5.69 5.69 0 01-5.16 3.04 6.18 6.18 0 01-6.22-6.26 6.18 6.18 0 016.22-6.26c2.33 0 4.18 1.2 5.16 3.04v-7.58zm-5.09 15.91a5.05 5.05 0 005.09-5.11 5.05 5.05 0 00-5.09-5.11 5.05 5.05 0 00-5.09 5.11 5.05 5.05 0 005.1 5.11zm10.23-5.95v-1.15h8.64v1.15h-8.64zm18.04 7.1a6.22 6.22 0 01-6.3-6.26c0-3.55 2.8-6.26 6.3-6.26a6.21 6.21 0 016.3 6.26c0 3.55-2.82 6.26-6.3 6.26zm0-1.15a5.03 5.03 0 005.07-5.11c0-2.86-2.21-5.11-5.07-5.11a5.05 5.05 0 00-5.08 5.11 5.05 5.05 0 005.08 5.11zm14.67-11.37c2.85 0 4.65 1.9 4.65 4.8V156h-1.22v-7.46c0-2.21-1.27-3.65-3.53-3.65-2.35 0-4.2 1.53-4.2 4.77V156h-1.2v-12h1.2v2.28a4.52 4.52 0 014.3-2.54z" opacity=".75"/></g></svg>
assets/images/addon-images.svg CHANGED
@@ -1,357 +1 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="1100px" height="550px" viewBox="0 0 1100 550" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <defs>
4
- <radialGradient cx="50%" cy="57.8962777%" fx="50%" fy="57.8962777%" r="100%" gradientTransform="translate(0.500000,0.578963),scale(0.500000,1.000000),translate(-0.500000,-0.578963)" id="radialGradient-1">
5
- <stop stop-color="#805AD5" offset="0%"></stop>
6
- <stop stop-color="#553C9A" offset="100%"></stop>
7
- </radialGradient>
8
- <rect id="path-2" x="0" y="0" width="966" height="360"></rect>
9
- </defs>
10
- <g id="banner" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
11
- <rect id="Rectangle" fill="url(#radialGradient-1)" x="0" y="0" width="1100" height="550"></rect>
12
- <path d="M412.04,120.2 L425.48,120.2 L425.48,179 L412.04,179 L412.04,120.2 Z M482.18,135.824 C491.84,135.824 498.14,142.712 498.14,153.212 L498.14,179 L485.54,179 L485.54,154.304 C485.54,150.104 483.524,147.416 479.492,147.416 C475.292,147.416 472.94,150.356 472.94,155.312 L472.94,179 L460.34,179 L460.34,154.304 C460.34,150.104 458.324,147.416 454.292,147.416 C450.092,147.416 447.74,150.356 447.74,155.312 L447.74,179 L435.14,179 L435.14,137 L447.74,137 L447.74,140.864 C449.672,138.008 453.368,135.824 458.996,135.824 C463.952,135.824 467.648,137.84 470,141.368 C472.352,138.008 476.216,135.824 482.18,135.824 Z M537.284,137 L549.884,137 L549.884,179 L537.284,179 L537.284,175.052 C534.512,178.244 530.396,180.176 524.768,180.176 C513.764,180.176 504.692,170.516 504.692,158 C504.692,145.484 513.764,135.824 524.768,135.824 C530.396,135.824 534.512,137.756 537.284,140.948 L537.284,137 Z M527.288,168.248 C533.084,168.248 537.284,164.3 537.284,158 C537.284,151.7 533.084,147.752 527.288,147.752 C521.492,147.752 517.292,151.7 517.292,158 C517.292,164.3 521.492,168.248 527.288,168.248 Z M589.952,137 L602.216,137 L602.216,176.9 C602.216,191.012 591.212,196.976 580.04,196.976 C571.304,196.976 563.996,193.7 560.132,186.812 L570.884,180.596 C572.48,183.536 574.916,185.888 580.46,185.888 C586.34,185.888 589.952,182.864 589.952,176.9 L589.952,173.036 C587.18,176.48 583.148,178.496 577.688,178.496 C565.76,178.496 557.024,168.752 557.024,157.16 C557.024,145.568 565.76,135.824 577.688,135.824 C583.148,135.824 587.18,137.84 589.952,141.284 L589.952,137 Z M579.788,166.904 C585.752,166.904 589.952,162.956 589.952,157.16 C589.952,151.364 585.752,147.416 579.788,147.416 C573.824,147.416 569.624,151.364 569.624,157.16 C569.624,162.956 573.824,166.904 579.788,166.904 Z M622.712,163.04 C624.308,167.408 628.172,168.92 632.792,168.92 C636.236,168.92 639.176,167.576 640.856,165.728 L650.936,171.524 C646.82,177.236 640.604,180.176 632.624,180.176 C618.26,180.176 609.356,170.516 609.356,158 C609.356,145.484 618.428,135.824 631.7,135.824 C643.964,135.824 653.036,145.316 653.036,158 C653.036,159.764 652.868,161.444 652.532,163.04 L622.712,163.04 Z M622.46,153.632 L640.52,153.632 C639.176,148.76 635.396,146.996 631.616,146.996 C626.828,146.996 623.636,149.348 622.46,153.632 Z M670.424,149.264 C670.424,154.052 691.088,150.86 691.088,166.4 C691.088,176.06 682.688,180.176 673.616,180.176 C665.216,180.176 658.832,176.984 655.556,170.18 L666.476,163.964 C667.568,167.156 669.92,168.92 673.616,168.92 C676.64,168.92 678.152,167.996 678.152,166.316 C678.152,161.696 657.488,164.132 657.488,149.6 C657.488,140.444 665.216,135.824 673.952,135.824 C680.756,135.824 686.804,138.848 690.332,144.812 L679.58,150.608 C678.404,148.424 676.724,146.912 673.952,146.912 C671.768,146.912 670.424,147.752 670.424,149.264 Z" id="Images" fill="#FFFFFF"></path>
13
- <path d="M400.856,95 L398.68,89.304 L387.448,89.304 L385.272,95 L383.48,95 L392.184,72.6 L393.976,72.6 L402.648,95 L400.856,95 Z M388.088,87.704 L398.072,87.704 L393.08,74.68 L388.088,87.704 Z M421.304,95.352 C417.112,95.352 414.136,93.24 413.112,90.072 L414.584,89.208 C415.352,91.896 417.624,93.72 421.304,93.72 C425.048,93.72 426.936,91.8 426.936,89.24 C426.936,86.552 424.568,85.528 421.144,84.44 C417.4,83.224 414.04,82.168 414.04,78.264 C414.04,74.584 417.016,72.248 420.824,72.248 C424.504,72.248 426.936,74.36 428.024,76.952 L426.584,77.752 C425.752,75.736 424.024,73.88 420.824,73.88 C417.72,73.88 415.768,75.704 415.768,78.2 C415.768,80.888 418.04,81.72 421.24,82.776 C425.208,84.088 428.664,85.336 428.664,89.208 C428.664,92.92 425.752,95.352 421.304,95.352 Z M433.304,75.128 C432.6,75.128 432.024,74.552 432.024,73.848 C432.024,73.176 432.6,72.6 433.304,72.6 C434.008,72.6 434.584,73.176 434.584,73.848 C434.584,74.552 434.008,75.128 433.304,75.128 Z M432.504,95 L432.504,79 L434.104,79 L434.104,95 L432.504,95 Z M447.224,80.568 L442.456,80.568 L442.456,90.968 C442.456,93.784 443.96,93.848 447.224,93.56 L447.224,95 C443.032,95.64 440.824,94.616 440.824,90.968 L440.824,80.568 L437.304,80.568 L437.304,79 L440.824,79 L440.824,75 L442.456,74.52 L442.456,79 L447.224,79 L447.224,80.568 Z M457.304,78.648 C462.168,78.648 465.208,82.68 465.208,87.064 C465.208,87.32 465.176,87.576 465.176,87.832 L450.68,87.832 C451.064,91.448 453.816,93.816 457.464,93.816 C460.088,93.816 462.072,92.6 463,90.904 L464.408,91.736 C463.096,93.912 460.6,95.352 457.432,95.352 C452.504,95.352 449.016,91.832 449.016,87 C449.016,82.296 452.408,78.648 457.304,78.648 Z M457.304,80.184 C453.656,80.184 451,82.712 450.68,86.264 L463.544,86.264 C463.192,82.36 460.44,80.184 457.304,80.184 Z M491.96,95 L486.584,85.816 L479.512,85.816 L479.512,95 L477.816,95 L477.816,72.6 L486.648,72.6 C490.296,72.6 493.272,75.576 493.272,79.224 C493.272,82.264 491.192,84.824 488.344,85.592 L493.912,95 L491.96,95 Z M479.512,74.2 L479.512,84.216 L486.648,84.216 C489.368,84.216 491.576,81.976 491.576,79.224 C491.576,76.44 489.368,74.2 486.648,74.2 L479.512,74.2 Z M503.512,78.648 C508.376,78.648 511.416,82.68 511.416,87.064 C511.416,87.32 511.384,87.576 511.384,87.832 L496.888,87.832 C497.272,91.448 500.024,93.816 503.672,93.816 C506.296,93.816 508.28,92.6 509.208,90.904 L510.616,91.736 C509.304,93.912 506.808,95.352 503.64,95.352 C498.712,95.352 495.224,91.832 495.224,87 C495.224,82.296 498.616,78.648 503.512,78.648 Z M503.512,80.184 C499.864,80.184 497.208,82.712 496.888,86.264 L509.752,86.264 C509.4,82.36 506.648,80.184 503.512,80.184 Z M526.264,79 L527.96,79 L521.208,95 L519.256,95 L512.472,79 L514.2,79 L520.216,93.336 L526.264,79 Z M531.672,75.128 C530.968,75.128 530.392,74.552 530.392,73.848 C530.392,73.176 530.968,72.6 531.672,72.6 C532.376,72.6 532.952,73.176 532.952,73.848 C532.952,74.552 532.376,75.128 531.672,75.128 Z M530.872,95 L530.872,79 L532.472,79 L532.472,95 L530.872,95 Z M544.6,78.648 C549.464,78.648 552.504,82.68 552.504,87.064 C552.504,87.32 552.472,87.576 552.472,87.832 L537.976,87.832 C538.36,91.448 541.112,93.816 544.76,93.816 C547.384,93.816 549.368,92.6 550.296,90.904 L551.704,91.736 C550.392,93.912 547.896,95.352 544.728,95.352 C539.8,95.352 536.312,91.832 536.312,87 C536.312,82.296 539.704,78.648 544.6,78.648 Z M544.6,80.184 C540.952,80.184 538.296,82.712 537.976,86.264 L550.84,86.264 C550.488,82.36 547.736,80.184 544.6,80.184 Z M575.032,79 L576.728,79 L571.672,95 L569.912,95 L565.464,81.368 L561.016,95 L559.256,95 L554.2,79 L555.896,79 L560.152,92.92 L564.632,79 L566.296,79 L570.776,92.92 L575.032,79 Z M580.376,83.192 C580.376,87.48 590.072,84.952 590.072,90.808 C590.072,93.432 587.768,95.352 584.344,95.352 C581.144,95.352 579.032,93.848 578.264,91.8 L579.64,91 C580.216,92.728 581.944,93.816 584.344,93.816 C586.584,93.816 588.472,92.824 588.472,90.808 C588.472,86.456 578.776,88.952 578.776,83.192 C578.776,80.664 580.952,78.648 584.216,78.648 C586.808,78.648 588.792,79.896 589.656,81.848 L588.312,82.616 C587.64,80.952 585.976,80.184 584.216,80.184 C582.136,80.184 580.376,81.272 580.376,83.192 Z M616.568,79 L618.2,79 L618.2,95 L616.568,95 L616.568,91.384 C615.224,93.784 612.76,95.352 609.688,95.352 C605.144,95.352 601.4,91.736 601.4,87 C601.4,82.264 605.144,78.648 609.688,78.648 C612.76,78.648 615.224,80.216 616.568,82.616 L616.568,79 Z M609.816,93.816 C613.624,93.816 616.568,90.808 616.568,87 C616.568,83.192 613.624,80.184 609.816,80.184 C606.008,80.184 603.032,83.192 603.032,87 C603.032,90.808 606.008,93.816 609.816,93.816 Z M637.24,72.6 L638.84,72.6 L638.84,95 L637.24,95 L637.24,91.288 C635.928,93.752 633.464,95.352 630.36,95.352 C625.784,95.352 622.072,91.736 622.072,87 C622.072,82.264 625.784,78.648 630.36,78.648 C633.464,78.648 635.928,80.248 637.24,82.712 L637.24,72.6 Z M630.456,93.816 C634.264,93.816 637.24,90.808 637.24,87 C637.24,83.192 634.264,80.184 630.456,80.184 C626.648,80.184 623.672,83.192 623.672,87 C623.672,90.808 626.648,93.816 630.456,93.816 Z M657.88,72.6 L659.48,72.6 L659.48,95 L657.88,95 L657.88,91.288 C656.568,93.752 654.104,95.352 651,95.352 C646.424,95.352 642.712,91.736 642.712,87 C642.712,82.264 646.424,78.648 651,78.648 C654.104,78.648 656.568,80.248 657.88,82.712 L657.88,72.6 Z M651.096,93.816 C654.904,93.816 657.88,90.808 657.88,87 C657.88,83.192 654.904,80.184 651.096,80.184 C647.288,80.184 644.312,83.192 644.312,87 C644.312,90.808 647.288,93.816 651.096,93.816 Z M664.728,85.88 L664.728,84.344 L676.248,84.344 L676.248,85.88 L664.728,85.88 Z M688.792,95.352 C684.12,95.352 680.376,91.736 680.376,87 C680.376,82.264 684.12,78.648 688.792,78.648 C693.432,78.648 697.176,82.264 697.176,87 C697.176,91.736 693.432,95.352 688.792,95.352 Z M688.792,93.816 C692.6,93.816 695.544,90.808 695.544,87 C695.544,83.192 692.6,80.184 688.792,80.184 C684.984,80.184 682.008,83.192 682.008,87 C682.008,90.808 684.984,93.816 688.792,93.816 Z M708.344,78.648 C712.152,78.648 714.552,81.176 714.552,85.048 L714.552,95 L712.92,95 L712.92,85.048 C712.92,82.104 711.224,80.184 708.216,80.184 C705.08,80.184 702.616,82.232 702.616,86.552 L702.616,95 L701.016,95 L701.016,79 L702.616,79 L702.616,82.04 C703.832,79.672 705.88,78.648 708.344,78.648 Z" id="A-Site-Reviews-add-o" fill="#FFFFFF" opacity="0.75"></path>
14
- <g id="photos" transform="translate(67.000000, 190.000000)">
15
- <g id="Group">
16
- <mask id="mask-3" fill="white">
17
- <use xlink:href="#path-2"></use>
18
- </mask>
19
- <g id="Rectangle"></g>
20
- <g id="Group-332" mask="url(#mask-3)">
21
- <g transform="translate(-0.977366, 0.989011)">
22
- <path d="M422.461903,246.438916 C422.496341,244.775112 423.135353,243.059036 424.222058,241.730548 C424.662096,241.196985 425.090656,240.812494 425.553653,240.555005 C426.135269,240.22511 426.843158,240.059 427.639054,240.063259 C430.233369,240.077586 432.705239,241.980293 433.539399,244.587707 C433.753679,245.277699 433.856992,246.01222 433.841686,246.769973 C433.799596,248.863183 432.835337,250.877405 431.335379,252.024682 C430.761415,252.461832 430.175973,252.734035 429.598183,252.833546 C429.020393,252.933831 428.442603,252.861037 427.906904,252.76656 C427.091875,252.623682 426.035782,252.384779 425.121267,251.798556 C423.598351,250.830166 422.584348,248.981667 422.469556,246.973254 C422.461903,246.795528 422.461903,246.617029 422.461903,246.438916 Z M423.384071,251.766419 C424.08048,252.356901 424.929946,252.845162 425.989865,253.258693 C427.149272,253.714816 428.197712,253.936682 429.188755,253.936682 C429.326507,253.936682 429.456605,253.932036 429.594356,253.92313 C432.184845,253.7516 434.572533,251.789651 435.406694,249.152036 C436.20259,246.622062 435.513833,243.570529 433.692456,241.557856 C432.184845,239.892891 429.90047,238.899332 427.570178,238.899332 C427.206668,238.899332 426.846984,238.923726 426.4873,238.971352 C425.852114,239.056149 425.270498,239.209093 424.769236,239.424764 C423.345807,240.033832 422.13283,241.317017 421.444074,242.945586 C420.169875,245.956463 421.004036,249.748713 423.384071,251.766419 Z" id="Fill-1" fill="#FFFFFF"></path>
23
- <path d="M667.165511,247.891695 C666.740778,248.222365 666.304566,248.435326 665.87218,248.523995 C665.688512,248.560779 665.497191,248.578978 665.286738,248.578978 C665.030367,248.578978 664.78165,248.552648 664.571196,248.526705 C663.932184,248.448491 663.105676,248.307937 662.378656,247.912991 C661.184812,247.262493 660.354478,245.96111 660.201421,244.515687 C660.067496,243.185651 660.499882,241.782046 661.395265,240.66497 C661.712858,240.267314 662.030451,239.978075 662.374829,239.779828 C662.811042,239.525437 663.342914,239.385657 663.955142,239.363974 C665.971667,239.29389 667.919317,240.583271 668.638684,242.450355 C669.365705,244.333703 668.734345,246.672786 667.165511,247.891695 Z M666.446144,255.794861 C666.1936,255.990785 665.933403,256.117013 665.673206,256.170059 C665.566066,256.19213 665.447447,256.203358 665.317349,256.203358 C665.187251,256.203358 665.045673,256.190581 664.911748,256.174318 C664.552064,256.129403 664.089067,256.049252 663.66816,255.821965 C662.967925,255.442895 662.481969,254.685917 662.397788,253.846851 C662.317433,253.081354 662.56615,252.274814 663.082718,251.634383 C663.270212,251.40245 663.453881,251.232468 663.656681,251.113597 C663.920704,250.961814 664.234471,250.878179 664.594155,250.865401 L664.685989,250.863465 C665.81861,250.863465 666.893835,251.596825 667.29561,252.646915 C667.724169,253.75431 667.364485,255.077764 666.446144,255.794861 Z M665.688512,236.020103 C665.325002,235.881098 664.915574,235.801722 664.487015,235.783911 C664.425792,235.781587 664.360743,235.780426 664.295694,235.780426 C663.488318,235.780426 662.67329,235.994548 661.99984,236.384073 C659.087931,238.070334 659.570061,242.759729 659.95653,246.527972 C660.071322,247.626075 660.178462,248.663388 660.178462,249.488901 C660.178462,249.819958 660.166983,250.183153 660.163156,250.568805 C660.094281,253.697779 660.002447,257.983323 663.515103,259.048126 C663.943663,259.178226 664.399007,259.24405 664.87731,259.24405 C666.384921,259.24405 667.827483,258.576902 668.474148,257.583344 C668.952451,256.839143 669.059591,255.935028 669.120814,254.997226 C669.461366,250.262142 669.277697,245.476721 668.569809,240.772999 C668.298133,238.959736 667.724169,236.780567 665.688512,236.020103 Z" id="Fill-2" fill="#FFFFFF"></path>
24
- <path d="M431.752459,263.229513 C431.400428,264.3493 430.386426,265.182557 429.28059,265.256125 C429.21554,265.259997 429.158144,265.261933 429.100748,265.261933 C428.687494,265.261933 428.255108,265.171328 427.776805,264.983922 C427.348246,264.81549 426.996215,264.613758 426.705407,264.367498 C425.702884,263.517978 425.354679,261.925032 425.886552,260.662369 C426.181187,259.97044 426.70158,259.423325 427.309981,259.160802 C427.524261,259.068648 427.772979,259.003211 428.044655,258.966427 C429.146665,258.820839 430.313724,259.243276 431.036918,260.04517 C431.802203,260.887333 432.089184,262.167033 431.752459,263.229513 Z M430.673408,257.930664 C430.126229,257.515584 429.69767,257.276681 429.26911,257.155486 C429.062483,257.095857 428.848204,257.066043 428.626271,257.066043 C428.025523,257.066043 427.424774,257.296041 426.934992,257.713444 C425.825329,258.648535 425.595744,259.969666 425.580438,261.666382 C425.565132,263.563668 425.611049,265.488833 425.714363,267.387668 C425.798544,268.87878 425.982212,270.381896 426.751324,271.277492 C427.309981,271.930314 428.094398,272.146372 428.786981,272.272213 C428.993608,272.308997 429.253805,272.350814 429.510175,272.350814 C429.774198,272.350814 430.003784,272.307835 430.202758,272.219553 C430.719325,271.996138 431.174669,271.416498 431.461651,270.629705 C431.74098,269.870403 431.84812,269.003459 431.924648,268.251127 C432.131275,266.213287 432.207804,264.1375 432.146581,262.080687 C432.085358,260.153586 431.962912,258.912606 430.673408,257.930664 Z" id="Fill-3" fill="#E6E6E6"></path>
25
- <path d="M425.748801,250.64702 C426.4873,251.116695 427.355899,251.315329 428.109704,251.44659 C428.614792,251.534872 429.020393,251.579401 429.406862,251.512802 C429.79333,251.44659 430.198931,251.251441 430.619838,250.933549 C431.806029,250.026723 432.567487,248.420999 432.601925,246.744031 C432.613404,246.144256 432.536876,245.565003 432.36086,245.024082 C431.698889,242.935519 429.712975,241.411881 427.631401,241.400653 C427.038305,241.397168 426.525565,241.511779 426.12379,241.740228 C425.798544,241.920664 425.484777,242.205644 425.151879,242.61298 C424.164661,243.822597 423.621309,245.399281 423.709317,246.888844 C423.793498,248.437262 424.597047,249.912112 425.748801,250.64702 Z" id="Fill-4" fill="#F7AE55"></path>
26
- <path d="M421.092043,242.793803 C421.819064,241.07308 423.108568,239.715165 424.620006,239.068152 C425.155705,238.838929 425.767933,238.677079 426.437557,238.586861 C426.80872,238.537299 427.191362,238.512131 427.570178,238.512131 C430.003784,238.512131 432.399125,239.552928 433.975611,241.296108 C435.888823,243.407904 436.608191,246.611995 435.770204,249.269745 C434.890126,252.055658 432.36086,254.127572 429.624968,254.309557 C429.479564,254.31885 429.334159,254.323883 429.188755,254.323883 C428.147968,254.323883 427.057437,254.093111 425.848288,253.619564 C424.757757,253.190158 423.8662,252.681375 423.13918,252.063015 C420.636699,249.93999 419.752795,245.954914 421.092043,242.793803 Z M432.303464,268.290234 C432.223109,269.06696 432.115969,269.962944 431.825161,270.764451 C431.492262,271.662758 430.971869,272.305512 430.355815,272.575004 C430.103271,272.684582 429.827768,272.738016 429.510175,272.738016 C429.223193,272.738016 428.936211,272.692713 428.721932,272.653606 C428.006391,272.523893 427.103355,272.279182 426.464342,271.531496 C425.568959,270.498831 425.415902,268.862131 425.33172,267.408964 C425.228407,265.501998 425.18249,263.569089 425.197796,261.663284 C425.205449,260.102476 425.392943,258.507593 426.686274,257.416073 C427.459212,256.765962 428.473214,256.525123 429.380077,256.782999 C429.850727,256.917745 430.31755,257.176395 430.90682,257.621677 C432.322596,258.704679 432.464174,260.086213 432.529223,262.069458 C432.590446,264.142921 432.510091,266.236131 432.303464,268.290234 Z M439.814733,285.594261 C439.933353,285.587291 440.051972,285.577611 440.162938,285.566382 C444.509755,285.114131 445.447229,281.487991 445.592633,275.376793 C445.829871,265.299879 445.634724,255.037495 445.451055,245.113139 C445.340089,239.238133 445.225296,233.163332 445.206164,227.187267 C445.190858,224.385091 444.613068,220.760887 443.350349,218.981697 C441.058321,215.773347 437.606887,215.851175 434.262593,215.926679 C433.772811,215.937521 433.279202,215.949137 432.793246,215.949911 C428.048481,215.958429 423.242493,216.04129 418.501555,216.196171 C412.803245,216.38164 407.057487,216.261995 401.501138,216.145448 C400.46609,216.124539 399.429512,216.102855 398.391021,216.082721 L357.179674,215.295928 C354.951931,215.253336 352.723804,215.199128 350.495678,215.144532 C348.618434,215.098455 346.71211,215.053153 344.798133,215.014045 C343.368581,215.143371 342.035838,215.101166 340.922349,214.991588 C340.785363,214.978423 340.65029,214.955965 340.513687,214.940477 C339.385275,214.926151 338.25801,214.916471 337.136103,214.913373 C336.829989,214.912211 336.508187,214.909501 336.173757,214.906403 C333.50674,214.881623 329.906076,214.856842 327.056538,215.887184 C327.283062,215.932487 327.510352,215.973917 327.735346,216.021543 C329.176759,216.326658 330.858472,216.73864 332.397077,217.476646 C333.948309,218.220847 335.318934,219.267839 336.64479,220.279983 L345.61584,227.127251 C347.065289,228.233872 348.86983,229.611147 349.676823,231.588972 C350.442873,233.465736 350.202956,235.712278 349.051203,237.451974 C347.94728,239.118875 346.068123,240.241372 344.02443,240.454333 C341.634446,240.701367 339.403259,239.777118 337.18929,238.485801 L337.173984,238.488899 L337.137633,238.486963 L337.140312,238.457148 C336.501299,238.082725 335.863434,237.680035 335.223656,237.264568 L331.844924,235.070299 C330.887171,234.447679 329.89651,233.804537 328.841947,233.352674 C326.367017,232.291742 323.59439,232.215851 320.884517,232.201524 C321.29624,233.066532 320.994335,234.127851 321.000075,235.073783 C321.005815,236.119227 321.069716,237.153442 321.173795,238.191915 C321.368177,238.157455 321.560263,238.119122 321.756942,238.087758 C323.696556,237.774125 325.796497,238.339826 327.518005,239.638112 C329.469098,241.109864 330.406189,243.443527 331.312286,245.700523 L331.449272,246.040486 C333.287486,250.60133 335.468165,254.858996 337.358418,258.422409 C337.845522,259.340076 338.316554,260.258905 338.786057,261.174249 L343.655946,269.645826 L343.914995,270.010957 C345.232815,271.869523 346.595787,273.791591 347.6316,275.885575 C348.505555,277.6516 348.5266,279.518298 347.687466,280.877374 C346.960828,282.054854 345.594412,282.885013 343.840762,283.214134 C343.218203,283.330682 342.584165,283.387988 341.949361,283.387988 C339.858986,283.387988 337.757514,282.768466 335.981671,281.645195 C336.400282,282.582996 336.594664,283.680712 336.477193,284.709506 C341.92028,284.643681 395.578217,286.089104 395.797088,286.091814 L396.299115,286.098397 C401.623583,286.167319 407.015779,286.237402 412.432464,286.252116 L412.4405,286.166931 C412.540752,286.202167 412.643683,286.228496 412.746614,286.25289 C421.76932,286.274186 430.860902,286.140989 439.814733,285.594261 Z" id="Fill-5" fill="#CCD5E0"></path>
27
- <path d="M441.942225,105.045778 C442.829955,104.626826 443.782735,104.375919 444.69725,104.133531 C445.27504,103.9802 445.879615,103.821834 446.442099,103.624749 C447.299218,103.326217 448.160163,102.915009 448.994323,102.517353 C449.866748,102.099176 450.762131,101.67519 451.676646,101.363106 C451.971281,101.23804 452.269742,101.119944 452.579682,101.015399 C452.621773,101.035921 452.66769,101.052183 452.705954,101.070769 C453.387058,100.917825 454.075814,100.845031 454.791355,100.902724 C455.878059,100.98907 456.892061,101.366978 457.883105,101.732109 L457.986419,101.771603 C460.324363,102.636998 462.719704,103.447411 465.107393,104.180383 C466.852242,104.717044 468.555,105.15884 470.135313,104.669031 C471.015391,104.397603 471.826592,103.677021 472.209235,102.832535 C472.404382,102.397321 472.576571,101.734045 472.270457,101.045601 C471.864857,100.119415 470.843201,99.6117945 469.852158,99.1204361 C469.649357,99.0170533 469.438904,98.9140578 469.236104,98.8083518 C467.690229,97.9890339 466.339501,96.8165883 465.042343,95.6828629 C463.439072,94.2842918 461.919982,92.9635482 460.045034,92.2348353 C458.024683,91.4492039 455.747961,91.4588839 453.781179,91.5289673 C448.401228,91.7217936 443.025103,92.4818697 437.802035,93.7890613 C436.684719,94.0670719 435.609494,94.3640553 434.664367,94.9340156 C433.592969,95.581029 432.73585,96.5807827 432.108316,97.3791918 C431.679757,97.9255329 431.25885,98.4962676 430.872382,99.0762951 C429.682364,100.857808 428.687494,102.813175 427.727062,104.704653 C426.854637,106.426537 425.947775,108.206889 425.056218,110.010086 C423.066478,114.028848 421.14944,118.149057 419.339541,122.269653 L427.049785,116.121284 C428.572701,114.905084 430.149188,113.647842 431.828988,112.577617 C433.439912,111.554632 435.150323,110.69427 436.807165,109.862562 L438.949962,108.786142 C439.095366,107.006178 440.576192,105.689306 441.942225,105.045778 Z" id="Fill-6" fill="#FED7D8"></path>
28
- <path d="M560.76798,97.5499476 C560.473345,97.5309747 560.174884,97.5116147 559.899382,97.550722 C559.134097,97.658364 558.426209,98.2449739 558.043566,99.0813288 C557.756585,99.7027868 557.645618,100.474479 557.691535,101.364655 C560.584312,101.27405 563.492393,101.207838 566.392822,101.164085 C565.761463,100.220475 565.413258,99.0685511 565.386473,97.846931 L560.76798,97.5499476 Z" id="Fill-7" fill="#EDDACE"></path>
29
- <path d="M667.383618,242.934744 C666.893835,241.671694 665.546934,240.754801 664.180901,240.754801 L664.069935,240.756737 C663.664334,240.771063 663.323782,240.858958 663.04828,241.016549 C662.837826,241.141228 662.623547,241.332118 662.413093,241.601223 C661.762601,242.40815 661.452661,243.414099 661.548322,244.362355 C661.647809,245.346621 662.229425,246.26545 663.036801,246.7026 C663.549541,246.980998 664.142637,247.083219 664.659204,247.145946 C664.812261,247.165693 664.999756,247.18544 665.183424,247.18544 C665.313522,247.18544 665.432142,247.174598 665.539281,247.152528 C665.807131,247.098707 666.074981,246.962799 666.350483,246.747903 C667.448667,245.894898 667.888705,244.255488 667.383618,242.934744 Z" id="Fill-8" fill="#F7AE55"></path>
30
- <path d="M671.049331,255.497103 C670.957497,256.635088 670.819746,257.737837 670.115684,258.714359 C669.162905,260.026197 667.169338,260.873781 665.041846,260.873781 C664.376049,260.873781 663.737036,260.791694 663.140114,260.629457 C658.234639,259.297871 658.360911,254.056714 658.445092,250.588552 C658.452745,250.175021 658.460398,249.785884 658.460398,249.430433 C658.460398,248.575106 658.334126,247.465774 658.204028,246.291392 C657.725725,242.172345 657.079059,236.530822 661.127415,234.43374 C662.141417,233.90792 663.385005,233.635331 664.594155,233.682569 C665.19873,233.705027 665.77652,233.806861 666.308393,233.984586 C669.239433,234.965754 670.031503,237.774125 670.372054,239.800737 C671.240652,244.992719 671.470238,250.273371 671.049331,255.497103 Z M679.639652,251.966215 L679.62052,251.948016 C679.45981,251.807849 679.444504,251.563138 679.586082,251.401675 L679.593735,251.393157 C679.341191,248.12479 679.058036,244.862232 678.736616,241.613226 C678.078471,234.927808 676.647389,231.444546 670.639904,230.958608 C669.997065,230.906723 669.346573,230.881168 668.642511,230.881168 C666.515019,230.881168 664.360743,231.123556 662.275342,231.357812 C660.400395,231.56845 658.460398,231.786057 656.531881,231.830585 C653.799814,231.893699 651.006525,231.979271 648.312723,232.061744 C642.917466,232.227467 637.33854,232.39861 631.855275,232.39861 L590.858974,233.342994 C588.643475,233.394104 586.424149,233.43476 584.20865,233.475416 C579.850354,233.555567 575.342827,233.638041 570.915655,233.801827 C570.609541,233.813443 570.291948,233.82351 569.959049,233.833965 C566.102014,233.955933 560.274371,234.139467 557.756585,237.011726 C556.486212,238.454825 555.801282,240.148444 555.468383,241.954351 C555.5143,241.983003 555.560218,242.020175 555.590829,242.069737 C555.705622,242.248236 555.659705,242.488301 555.483689,242.606398 C555.437772,242.634663 555.391855,242.66138 555.349764,242.689646 C555.005386,245.26376 555.284715,248.024505 555.552565,250.595522 C555.609961,251.167418 555.663531,251.730796 555.713274,252.281784 C555.877811,254.102791 556.015562,255.938513 556.138007,257.774621 C556.153313,257.82457 556.153313,257.875294 556.149487,257.926017 C556.348461,260.925666 556.516823,263.925314 556.66988,266.863398 C556.799979,269.243524 556.926251,271.704963 557.083134,274.11955 C557.167315,275.573878 557.144357,277.256655 557.121398,279.037394 C557.060176,283.611016 556.995126,288.794867 558.816504,292.069428 C559.715713,293.675539 561.605967,294.423612 564.778072,294.423612 C565.746157,294.423612 566.691283,294.356239 567.525444,294.296997 L567.770335,294.279573 C572.98575,293.913281 578.346569,293.860234 583.527547,293.807962 C584.480326,293.798282 585.433106,293.788989 586.382059,293.77776 L589.944459,293.735555 C601.638009,293.598099 613.733334,293.455996 625.625858,293.099771 C632.521073,292.89378 639.527255,292.58518 646.303851,292.286261 C649.51422,292.145319 652.724589,292.003991 655.934959,291.872343 L657.809906,291.794902 C660.056017,291.701587 662.344218,291.609433 664.640072,291.530057 C665.918097,290.676278 667.322395,290.007581 668.799394,289.565397 C672.488067,288.461099 676.501985,288.779766 680.045253,289.0601 L680.46616,289.093399 C680.887066,288.289569 681.093693,287.269293 681.082214,286.002371 C680.998032,274.695706 680.512077,263.288755 679.639652,251.966215 Z" id="Fill-9" fill="#4B5668"></path>
31
- <path d="M330.906303,211.61132 C330.984362,211.58925 331.06816,211.592735 331.143924,211.621388 C333.630334,212.560738 336.518135,213.549263 339.527618,214.028231 C341.585851,214.048753 343.64638,214.084375 345.69696,214.128903 C347.342322,213.886902 349.076457,213.386638 350.716462,212.455032 C351.200122,212.180506 351.733908,211.832412 352.028926,211.329051 C352.579548,210.390087 352.166677,209.172727 351.549857,208.438593 C350.818628,207.568552 349.711261,207.023759 348.734375,206.543243 L339.715878,202.103592 C338.409919,201.460451 337.059957,200.795626 335.652216,200.383257 C332.363405,199.417964 328.99003,199.819492 325.418064,200.243865 C323.624619,200.457212 321.770717,200.67753 319.947809,200.703085 C319.457644,200.70928 318.967861,200.702311 318.477697,200.694954 C317.466373,200.68024 316.422525,200.663978 315.415793,200.782849 C313.749002,200.977998 312.396362,201.551056 311.502892,202.440845 C310.7598,203.180786 310.27461,204.187123 309.805108,205.160159 L309.729345,205.316976 C308.118038,208.650392 306.265283,211.89359 304.213555,214.978423 C305.86504,214.13626 307.703253,213.289064 309.684575,213.255377 C310.483915,213.240276 311.274837,213.362632 312.039356,213.480728 L320.036964,214.71319 C322.485875,213.90239 324.793209,213.278996 327.232171,212.621141 C328.424484,212.299764 329.657741,211.967546 330.906303,211.61132 Z" id="Fill-10" fill="#8A6D62"></path>
32
- <path d="M669.886099,255.052983 C669.80957,256.096878 669.694777,257.108635 669.113161,258.007717 C668.321091,259.228949 666.66425,260.018453 664.87731,260.018453 C664.326305,260.018453 663.794432,259.941787 663.293171,259.790004 C659.225683,258.555994 659.328996,253.739209 659.397872,250.551768 C659.401698,250.172698 659.413177,249.815311 659.413177,249.488901 C659.413177,248.703656 659.306038,247.685704 659.195071,246.608123 C658.808603,242.827102 658.27673,237.648285 661.621024,235.711891 C662.47049,235.220533 663.511277,234.968852 664.517626,235.010282 C665.026541,235.031578 665.50867,235.12683 665.956362,235.293326 C668.393793,236.204411 669.048112,238.790529 669.327441,240.656452 C670.042982,245.417092 670.230477,250.26098 669.886099,255.052983 Z M666.067328,234.719494 C665.604331,234.565001 665.099243,234.475945 664.56737,234.456197 C664.487015,234.4531 664.410487,234.451938 664.330132,234.451938 C663.323782,234.451938 662.317433,234.690067 661.47562,235.123345 C657.90174,236.975716 658.491009,242.091033 658.957833,246.202336 C659.095584,247.399175 659.225683,248.529803 659.225683,249.430433 C659.225683,249.791305 659.21803,250.187412 659.210377,250.607525 C659.126196,254.026126 659.019056,258.707777 663.339088,259.881771 C663.870961,260.026197 664.441098,260.099378 665.041846,260.099378 C666.909141,260.099378 668.696081,259.359049 669.495803,258.256687 C670.081246,257.443177 670.207518,256.457363 670.287873,255.43399 C670.704953,250.274919 670.479194,245.058931 669.614422,239.930837 C669.281524,237.946043 668.581288,235.560108 666.067328,234.719494 Z" id="Fill-11" fill="#FFFFFF"></path>
33
- <path d="M277.614172,247.860332 C277.915312,246.416846 278.747176,245.152633 279.481084,244.037494 C280.263971,242.84685 281.066372,241.630263 281.946066,240.46711 C281.902828,240.413289 281.869155,240.348627 281.863033,240.262668 C281.289069,232.253022 281.255014,223.654055 283.188889,215.789997 L283.154068,215.819037 C281.815585,216.812983 279.425984,215.26379 278.378309,214.506037 C276.463567,213.121018 274.849964,211.358091 272.933308,209.982752 C270.732732,208.403358 268.247853,207.432644 265.844094,206.230771 C260.650489,203.633812 255.86746,200.327113 251.120781,196.987114 C250.14313,196.299058 249.252721,195.671404 248.620979,194.816077 C248.478636,196.419864 248.304916,198.024039 248.129666,199.623955 C249.408839,202.873349 250.834947,205.993029 252.624566,209.056179 C253.024427,209.740364 253.425054,210.421838 253.825297,211.102925 C256.645754,215.90306 259.562254,220.866206 261.816783,226.159248 C262.776833,228.413534 263.693644,230.72861 264.579843,232.967408 C266.049955,236.67912 267.569811,240.517446 269.324991,244.171852 C272.091878,249.933795 275.450712,255.428956 279.307747,260.504391 C279.568327,260.847451 279.831202,261.188188 280.092929,261.5297 L280.091016,261.516535 C279.953265,260.654625 279.800591,259.691268 279.910409,259.010955 C278.74335,256.492211 277.966968,253.817811 277.606519,251.058615 C277.481013,250.096807 277.383822,248.965017 277.614172,247.860332 Z" id="Fill-12" fill="#38B2AD"></path>
34
- <path d="M426.372508,260.871457 C425.92099,261.926968 426.215624,263.254294 427.042132,263.959775 C427.287023,264.167315 427.58931,264.340007 427.968126,264.487918 C428.438776,264.672613 428.848204,264.75044 429.242325,264.724498 C430.141535,264.665256 430.964216,263.983781 431.251198,263.067276 C431.534353,262.180972 431.293288,261.111135 430.650449,260.405267 C430.118576,259.819431 429.315027,259.469789 428.492346,259.469789 C428.369901,259.469789 428.235976,259.478307 428.11353,259.494957 C427.891598,259.524771 427.688797,259.577043 427.520435,259.651773 C427.030653,259.860862 426.609746,260.305369 426.372508,260.871457 Z" id="Fill-13" fill="#FFFFFF"></path>
35
- <path d="M320.079437,234.605657 C320.109666,233.74878 320.008266,232.896938 320.507232,232.199588 C320.454044,232.199588 320.40124,232.199201 320.348435,232.199201 C319.892325,232.197265 319.438129,232.195329 318.987759,232.189134 C318.536241,232.183326 318.054494,232.131828 317.544815,232.07762 C316.482599,231.96417 315.384416,231.847235 314.602295,232.159706 C313.236644,232.706047 311.748166,234.436063 310.661844,235.699501 C310.522562,235.860964 310.390168,236.01507 310.264279,236.159109 C309.529988,237.00011 308.833196,237.906161 308.159363,238.78201 C307.479408,239.666765 306.775728,240.581335 306.026515,241.440147 C305.312504,242.257916 304.543775,243.033481 303.736783,243.762581 C306.505583,242.650926 309.316856,241.568698 312.117033,240.656452 C314.714026,239.810417 317.388696,238.942312 320.276881,238.359186 L320.273437,238.342924 C320.119615,237.106203 320.035434,235.852832 320.079437,234.605657 Z" id="Fill-14" fill="#8A6D62"></path>
36
- <path d="M571.497271,185.307961 C568.761379,185.261884 566.014007,184.906821 563.362295,184.563373 C562.753894,184.485159 562.111055,184.436371 561.487348,184.389133 C559.03461,184.204438 556.501518,184.013547 554.944163,182.073669 C551.741447,178.08356 547.027293,175.352629 542.003199,174.582098 C540.88971,174.410568 539.443322,174.280468 538.153817,174.791574 C536.914056,175.284094 536.041631,176.407365 536.022499,177.522892 C536.01102,178.363893 536.443406,179.166949 536.826048,179.772919 C538.410187,182.302505 540.855272,184.299302 543.013375,186.060681 C545.385757,187.995138 547.761966,189.925724 550.134349,191.852438 C551.974859,193.34355 553.872765,194.885386 555.992603,196.032663 C558.326722,197.291067 560.91721,198.063921 563.167147,198.689638 C565.084186,199.224363 567.066273,199.735856 568.987138,200.230312 C578.308305,202.632509 587.94324,205.116019 595.316758,211.414235 C595.695574,211.736774 596.070563,212.06938 596.4379,212.401598 C597.314151,213.182196 598.217187,213.988736 599.185272,214.642719 C600.639313,215.617305 602.307633,216.291423 603.92621,216.943857 C605.544788,217.598227 607.224587,218.275055 608.720719,219.263967 C611.00892,220.773665 612.834124,223.014012 613.867259,225.572638 C614.728204,227.703407 615.459051,229.840758 616.117196,231.986627 L631.847623,231.624207 C637.327061,231.624207 642.898334,231.453451 648.289764,231.287729 C650.359859,231.224228 652.479698,231.159178 654.591884,231.103808 L653.088099,220.237778 C652.732242,217.720583 652.372558,215.117428 651.549877,212.686191 C650.97974,211.004963 650.172365,209.373684 649.399427,207.795839 C649.185147,207.362948 648.974694,206.930057 648.760414,206.495617 C646.342115,201.45503 644.459514,196.132174 643.181489,190.675733 C642.335849,187.096057 641.352459,183.435843 640.399679,179.896049 C637.208442,168.018649 633.902412,155.737398 635.146,143.490221 C635.329668,141.65295 634.786316,140.143253 633.439415,138.738099 C632.337405,137.587724 631.514724,136.127975 630.711175,134.716239 C630.385929,134.140858 630.079815,133.597615 629.750743,133.072957 C627.183212,128.936485 624.504716,124.794206 621.791782,120.761117 C619.660464,117.593036 617.456444,114.412564 615.3213,111.336637 C614.513924,110.168838 613.679764,108.966578 612.765249,107.873122 C611.667065,106.566317 610.369908,105.297458 608.552356,103.757559 C607.266678,102.668749 606.206759,101.607817 604.886643,100.095796 C604.067788,99.1552842 603.268066,98.1737289 602.495128,97.2246985 C600.88803,95.2546183 599.231189,93.2167778 597.337109,91.4697255 C596.453205,90.6496332 595.615219,89.9797749 594.788711,89.4218178 C593.878022,88.806555 593.571908,88.8224302 592.60765,89.5348806 C591.069428,90.674414 590.166392,92.6065486 590.304143,94.4581452 C590.522249,97.3803534 592.91759,99.6644539 595.033602,101.679837 C597.624091,104.149794 600.574263,107.14557 602.789763,110.63619 C603.551221,111.838837 604.236151,113.109245 604.898122,114.338222 L612.554795,128.582583 C613.094321,129.576916 613.637673,130.597966 614.138935,131.640312 C614.242248,131.604689 614.345562,131.61011 614.441222,131.659285 C614.586626,131.734015 614.674634,131.893542 614.647849,132.056941 L614.559841,132.696597 C614.548362,132.78062 614.513924,132.855737 614.456528,132.91343 C614.471834,133.070246 614.502445,133.229773 614.556015,133.359873 C615.841693,136.561641 617.330172,139.71617 618.987013,142.735565 C619.0865,142.922196 619.025278,143.158002 618.841609,143.261772 C618.650288,143.365155 618.420703,143.298169 618.317389,143.110763 C616.645242,140.064651 615.141458,136.881469 613.848127,133.651048 C613.740987,133.387751 613.649153,132.922335 613.691243,132.490993 C613.144065,131.287572 612.501225,130.102348 611.885171,128.953135 L604.224671,114.708386 C603.574179,113.4918 602.893076,112.233395 602.146924,111.054367 C599.977341,107.634606 597.06926,104.681421 594.509382,102.243602 C594.444333,102.177778 594.367805,102.110405 594.302755,102.043806 C594.241533,102.04458 594.18031,102.036449 594.12674,102.008571 C586.3591,98.135396 577.860614,95.2883048 568.164457,93.3054469 C567.066273,94.1468353 566.346905,95.4997167 566.178543,97.0438755 C566.174716,97.1201541 566.174716,97.194884 566.17089,97.2707755 C566.212981,97.3400845 566.243592,97.4225584 566.239765,97.5135507 C566.232113,97.5975734 566.197675,97.6684312 566.147931,97.7280602 C566.147931,99.0313798 566.568838,100.244094 567.337949,101.151307 C569.339169,101.124977 571.336562,101.105617 573.318649,101.101745 C573.865828,101.100584 574.420659,101.087806 574.979317,101.075028 C579.031499,100.983649 583.217607,100.888397 586.125688,104.961755 C587.135864,106.383171 587.759571,108.564276 588.103949,110.75661 C589.056729,111.621617 589.929153,112.572971 590.770966,113.508837 C591.390847,114.194183 592.006901,114.864428 592.622955,115.527317 C597.080739,120.373528 601.293631,124.950635 602.812721,132.320237 C602.850985,132.529713 602.720887,132.734543 602.510434,132.778297 L602.430079,132.786041 C602.250237,132.78333 602.101006,132.658651 602.058916,132.477828 C600.589569,125.320412 596.449379,120.819972 592.056645,116.055459 C591.444417,115.390248 590.828363,114.718066 590.208482,114.030784 C589.580949,113.33537 588.941936,112.629502 588.268486,111.961967 C588.379452,113.015542 588.436848,114.040464 588.440675,114.948838 C588.459807,118.838662 588.50955,122.76256 588.570773,126.664001 C589.910021,127.262614 590.648521,129.211785 591.226311,130.449668 C592.175264,132.486734 592.932896,134.586914 593.434157,136.785443 C593.54895,137.308552 592.76836,137.530805 592.634435,137.007309 C592.163785,135.113895 591.620433,133.236743 590.82071,131.453681 C590.29649,130.284333 589.657477,128.276694 588.582252,127.335795 C588.624343,130.040783 588.674086,132.735317 588.72383,135.389969 C588.93811,146.727998 589.152389,158.448969 588.88454,169.974015 C588.769747,174.994468 588.245527,180.346364 583.99437,182.082187 C579.873312,184.146745 575.419355,185.367978 571.527883,185.308349 L571.497271,185.307961 Z" id="Fill-15" fill="#FED7D8"></path>
37
- <path d="M318.8634,283.31016 C319.253313,286.343108 322.74722,285.720488 324.987974,285.802575 C323.003208,284.282035 321.581691,281.891842 320.315528,279.757201 L320.000613,279.226735 C319.808909,278.902648 319.62792,278.596759 319.397569,278.341593 C319.210839,278.135602 318.988524,277.961361 318.750138,277.793703 C318.822457,279.623617 318.631136,281.503092 318.8634,283.31016 Z" id="Fill-17" fill="#FFFFFF"></path>
38
- <path d="M567.90426,136.028464 C567.900433,135.93631 567.900433,135.844544 567.900433,135.75239 C567.915739,134.893965 568.244811,134.009984 568.807296,133.327735 C569.029228,133.050112 569.254987,132.847993 569.499878,132.710149 C569.813645,132.533973 570.188635,132.446078 570.605715,132.448014 C571.941136,132.455371 573.222988,133.438862 573.651548,134.787097 C573.76634,135.145645 573.823737,135.526651 573.812258,135.919661 C573.789299,137.002276 573.291864,138.044622 572.511274,138.639363 C572.208986,138.870135 571.899046,139.013786 571.592932,139.06722 C571.282992,139.121041 570.984531,139.083483 570.709028,139.034695 C570.291948,138.962289 569.760075,138.84032 569.285599,138.537916 C568.489703,138.034167 567.961656,137.072359 567.90426,136.028464 Z M574.692335,140.865383 C575.273951,139.989146 575.430835,138.895303 575.55328,137.757318 C575.809651,135.36364 575.966534,132.928531 576.016278,130.51859 C576.054542,128.595748 576.02393,126.660129 575.92827,124.727994 C575.786692,126.449878 574.964011,128.06838 573.716597,129.018185 C573.211509,129.405773 572.694942,129.646612 572.186028,129.73412 C571.650328,129.827435 571.129935,129.751931 570.682243,129.674104 C569.955223,129.545553 569.00627,129.331818 568.187415,128.810258 C566.840514,127.949896 565.941304,126.305065 565.837991,124.518131 C565.826512,124.359766 565.822685,124.201401 565.826512,124.043035 C565.857123,122.558118 566.431087,121.026737 567.395345,119.840352 C567.785641,119.366031 568.168283,119.024906 568.573884,118.797619 C569.098104,118.505669 569.717984,118.359307 570.429699,118.362792 C572.733206,118.375183 574.941053,120.069963 575.679552,122.393558 C575.744601,122.582512 575.790519,122.776113 575.832609,122.972036 C575.76756,122.09851 575.698684,121.22692 575.60685,120.358815 C575.381091,118.140926 574.837739,115.46459 572.557191,114.44354 C572.15159,114.258071 571.688593,114.142298 571.202637,114.098931 C570.226899,114.012973 569.189938,114.233677 568.348125,114.705289 C566.419607,115.787516 565.478307,118.205201 565.394126,122.313407 C565.367341,123.881185 565.459175,125.516723 565.53953,126.96021 C565.616058,128.314253 565.681108,129.585047 565.650496,130.592158 C565.631364,130.997558 565.604579,131.440903 565.577794,131.912127 C565.531877,132.637743 565.48596,133.460545 565.466828,134.289156 C565.409432,137.432456 565.749983,141.194504 568.983311,142.396377 C571.022795,143.154517 573.640069,142.452908 574.692335,140.865383 Z" id="Fill-18" fill="#4B5668"></path>
39
- <path d="M563.262808,121.360892 C563.320204,118.285739 563.817639,113.991289 567.402998,112.203194 C568.612148,111.602645 570.039404,111.335476 571.436049,111.451636 C572.128631,111.510103 572.790603,111.663048 573.395177,111.908146 C576.724166,113.259479 577.50093,116.745065 577.799391,119.249483 C578.541717,125.621655 578.54937,132.125088 577.818523,138.473253 C577.657813,139.865629 577.443533,141.211928 576.578762,142.37934 C575.02906,144.474874 571.390132,145.377053 568.455265,144.390464 C563.783202,142.818039 563.33551,137.943175 563.408212,134.412673 C563.427344,133.511269 563.480914,132.626901 563.526831,131.846303 C563.561269,131.342167 563.59188,130.867458 563.607186,130.433405 L563.614839,130.196051 C563.637798,129.190877 563.54979,127.927826 563.457956,126.590433 C563.350816,124.972706 563.220717,123.139307 563.262808,121.361279 L563.262808,121.360892 Z M469.611093,137.822755 C470.177404,141.867073 467.801195,145.606663 465.325499,149.090313 L465.283408,149.124774 C465.379069,149.267264 465.467076,149.413239 465.547431,149.565022 C466.810151,151.900233 466.450467,154.659042 465.930074,157.517362 L465.183921,161.625568 C464.916071,163.111647 464.586999,164.521447 463.5156,165.434855 C462.830671,166.021464 461.908503,166.286697 460.917459,166.177507 C459.693003,166.044697 458.468548,165.351606 457.722395,164.368502 C456.398453,162.619127 456.260702,160.315666 456.306619,158.637148 L448.439492,155.623173 C448.079808,155.483007 447.68186,155.328901 447.333656,155.339355 L447.260954,155.344776 C447.184425,157.401976 446.782651,169.268922 446.782651,169.269696 C446.771171,169.541124 446.763518,169.826492 446.752039,170.121539 C446.68699,172.417256 446.598982,175.27635 447.459928,177.272373 C449.047893,180.948462 453.999285,180.768413 457.274704,180.648768 L457.565512,180.638314 C463.561518,180.426902 469.706754,180.636378 475.653016,180.838884 L475.748676,180.841982 C475.966783,180.848951 515.853421,181.769716 530.860654,182.26727 C530.933356,182.219644 531.021364,182.185183 531.113198,182.186345 L531.683335,182.193701 C533.696034,182.219644 535.716385,182.244812 537.748216,182.268431 C537.174253,181.615223 536.64238,180.926779 536.183209,180.187224 C535.74317,179.490649 535.241909,178.557494 535.257215,177.512438 C535.280173,175.843987 536.58881,174.581711 537.874488,174.070992 C539.332356,173.492126 540.908842,173.630745 542.121818,173.816214 C547.329581,174.615397 552.215923,177.447388 555.537259,181.585795 C555.778324,181.8882 556.057653,182.140268 556.35994,182.35439 C564.70537,182.309862 573.073758,182.11781 581.346485,181.612125 C581.484237,181.603607 581.610509,181.592765 581.740607,181.579987 C586.703478,181.063461 587.767224,176.924666 587.927934,169.950783 C588.19961,158.450517 587.981504,146.739227 587.767224,135.413201 C587.640952,128.708811 587.510854,121.776359 587.484069,114.956195 C587.472589,111.757912 586.810618,107.622215 585.36423,105.592119 C582.754609,101.930743 578.809567,102.020187 574.998449,102.10692 C574.432138,102.119697 573.877307,102.132475 573.318649,102.133637 C567.908086,102.144091 562.417168,102.239343 557.010432,102.416681 C550.505512,102.629641 543.947022,102.493734 537.606639,102.361698 C536.4281,102.337692 535.241909,102.312911 534.059544,102.290453 L487.025146,101.398729 C484.484401,101.350328 481.943656,101.288763 479.399084,101.226811 C477.321336,101.176088 475.212977,101.126913 473.096965,101.083159 C473.28446,101.738691 473.215584,102.460435 472.90947,103.153912 C472.431167,104.206712 471.455429,105.071333 470.364899,105.40936 C468.570306,105.963058 466.6724,105.471699 464.881634,104.921099 C462.482466,104.184255 460.071819,103.369196 457.722395,102.498767 L457.615255,102.459273 C456.677782,102.111953 455.709697,101.752631 454.733959,101.674803 C454.485241,101.654669 454.232697,101.653507 453.987806,101.666285 C451.975107,102.174293 450.165209,103.034267 448.952233,104.500211 C448.470103,105.080239 448.060676,105.664138 447.704819,106.256943 C448.814481,106.496621 449.874401,106.910926 450.811875,107.277993 L458.388193,110.252861 C461.407241,111.438084 463.863805,112.883119 466.580566,115.083971 C467.154529,115.547451 467.747625,116.026419 468.268018,116.58941 C471.707973,120.313512 470.954168,125.307635 466.048693,131.434708 C467.862418,133.253005 469.255236,135.312142 469.611093,137.822755 Z" id="Fill-19" fill="#BEE3F8"></path>
40
- <path d="M564.559966,130.474449 C564.548486,130.915858 564.514049,131.399086 564.483437,131.912514 C564.433694,132.681883 564.380124,133.554248 564.364818,134.432421 C564.292116,137.90097 564.728328,142.055253 568.742246,143.405811 C568.857039,143.442595 568.964179,143.472409 569.075145,143.503385 C568.945047,143.464278 568.807296,143.422073 568.669544,143.372511 C564.804857,141.937931 564.448999,137.490149 564.510222,134.269409 C564.529354,133.419115 564.579098,132.584696 564.621188,131.848239 C564.647973,131.385146 564.674758,130.949545 564.69389,130.551115 L564.697717,130.304855 C564.716849,129.387575 564.6518,128.240685 564.582924,127.026034 C564.502569,125.563187 564.410735,123.90403 564.43752,122.293272 C564.498743,119.445407 564.919649,115.465365 567.908086,113.789945 C568.918262,113.223469 570.115932,112.967529 571.282992,113.070525 C571.872261,113.12241 572.423266,113.264125 572.928354,113.490638 C575.698684,114.732005 576.322391,117.939968 576.55963,120.24459 C577.145072,126.085135 577.133593,132.049584 576.50606,137.873091 C576.368308,139.151243 576.18464,140.387577 575.469099,141.465158 C574.340304,143.16652 571.891393,144.033851 569.668241,143.63968 C572.021491,144.065602 574.688509,143.290038 575.836436,141.736973 C576.540498,140.779424 576.720339,139.635632 576.86957,138.348575 C577.164205,135.801564 577.336394,133.208864 577.389964,130.643656 C577.466492,126.900968 577.282824,123.111816 576.846611,119.381906 C576.55963,116.952218 575.870873,114.016457 573.058452,112.873439 C572.538059,112.663189 571.967921,112.530766 571.355694,112.480043 C570.146544,112.378983 568.853213,112.619435 567.804773,113.139834 C565.443869,114.315377 564.307422,116.934019 564.219414,121.380639 L564.219414,121.381026 C564.177323,123.10988 564.307422,124.917336 564.410735,126.512218 C564.510222,127.988616 564.602056,129.37712 564.559966,130.474449 Z" id="Fill-20" fill="#FFFFFF"></path>
41
- <path d="M668.657817,224.824565 C666.266302,223.256787 662.04193,220.944421 659.941224,220.874337 C659.531797,220.863108 659.21803,220.89602 658.95018,220.985077 C658.26525,221.215074 657.725725,221.898485 657.565015,222.725934 C657.392826,223.65754 657.695113,224.558945 657.985922,225.150976 C658.544579,226.304835 659.466747,227.259674 660.358304,228.182762 L662.635026,230.538494 C664.601808,230.318564 666.625986,230.106765 668.642511,230.106765 C669.361879,230.106765 670.035329,230.133095 670.701127,230.186529 C672.090118,230.299204 673.249525,230.57644 674.225263,230.990358 C672.560769,229.225495 670.831225,227.3073 668.833832,225.027846 C668.776436,224.961247 668.715213,224.893099 668.657817,224.824565 Z" id="Fill-21" fill="#DBBBAB"></path>
42
- <path d="M571.439875,138.048881 C571.604411,138.021002 571.7766,137.935818 571.964095,137.7972 C572.495968,137.387928 572.840346,136.660764 572.855652,135.899913 C572.867131,135.628873 572.828867,135.367512 572.748512,135.123962 C572.446224,134.17648 571.543188,133.484939 570.598062,133.479905 C570.337865,133.478357 570.115932,133.526757 569.943743,133.624331 C569.809819,133.702159 569.668241,133.827225 569.522837,134.008435 C569.067492,134.56252 568.814949,135.286587 568.857039,135.963415 C568.89913,136.659602 569.254987,137.320942 569.771554,137.649289 C570.104453,137.862637 570.510054,137.954404 570.865911,138.015969 C571.09167,138.056238 571.279165,138.077146 571.439875,138.048881 Z" id="Fill-22" fill="#FFFFFF"></path>
43
- <path d="M435.980657,194.66623 C437.939786,193.212676 439.963964,191.709561 441.75473,190.046531 C443.354175,188.476042 447.295391,183.325878 448.684383,180.248402 C447.811958,179.657533 447.081112,178.840925 446.595156,177.711072 C445.791607,175.852118 445.718905,173.449534 445.764822,171.304052 C445.772475,170.88781 445.78778,170.480862 445.795433,170.089401 C445.806913,169.797452 445.814565,169.515569 445.826045,169.246077 C445.829871,168.987039 446.116853,157.659852 446.36557,155.613106 C446.193381,155.695967 446.025019,155.788508 445.85283,155.880662 L445.783954,155.921706 C442.477924,157.733808 438.758641,158.8292 435.001093,159.100628 C435.184761,160.562701 433.941173,161.746762 432.827684,162.80266 C432.556008,163.063247 432.299638,163.309894 432.062399,163.556154 C429.888991,165.827089 429.732108,169.049766 429.567571,172.461397 C429.460431,174.579001 429.353292,176.767849 428.737237,178.765034 C428.683667,178.932305 428.530611,179.038785 428.369901,179.036075 C428.331637,179.035688 428.293372,179.030267 428.255108,179.018651 C428.056134,178.954762 427.945168,178.737543 428.006391,178.5331 C428.59566,176.63078 428.7028,174.49188 428.806113,172.423451 C428.966823,169.01879 429.142838,165.498356 431.511394,163.017557 C431.756286,162.758132 432.035614,162.493673 432.303464,162.238508 C433.42078,161.179125 434.572533,160.083345 434.166932,158.867146 C434.124842,158.752534 434.143974,158.62592 434.212849,158.525634 C434.277899,158.425349 434.385038,158.362623 434.507484,158.35604 C438.303296,158.1485 442.07615,157.071694 445.416617,155.240619 L445.493146,155.20035 C446.028845,154.903366 446.644899,154.567663 447.329829,154.564952 C447.834917,154.55566 448.301741,154.741129 448.711168,154.89872 L456.830839,158.011044 C456.983896,158.070286 457.079556,158.222069 457.079556,158.388178 C456.983896,160.89066 457.378017,162.641197 458.330797,163.896891 C458.954504,164.717758 459.976159,165.296236 461.00164,165.40775 C461.548819,165.465831 462.348541,165.418205 463.021992,164.843598 C463.894416,164.095138 464.189051,162.828215 464.433942,161.485401 L465.176268,157.377195 C465.669877,154.661365 466.021908,152.048531 464.877807,149.936348 C463.794929,147.932968 461.53734,146.781045 459.723615,145.854859 C457.094862,144.51553 454.381928,143.129736 451.508284,142.339458 C447.241821,141.165851 442.738121,141.312601 438.383651,141.455091 L429.781851,141.735812 C426.919686,141.829514 423.682532,141.935607 420.896896,143.159938 C416.592169,145.054901 413.813038,149.427565 412.096504,152.551506 C411.993956,152.738137 411.76131,152.805897 411.576493,152.701352 C411.39206,152.597583 411.325097,152.361777 411.428028,152.175146 C413.198514,148.952469 416.075602,144.438477 420.590782,142.449424 C423.514169,141.165851 426.827852,141.057822 429.758892,140.961796 L438.356866,140.681075 C439.715246,140.636934 441.085106,140.592793 442.458792,140.586985 C442.512362,140.512643 442.58889,140.455337 442.688377,140.434815 C444.984232,139.950039 447.035195,138.419432 448.175469,136.340161 C448.198427,136.286728 448.240518,136.246071 448.290261,136.213159 C448.290261,136.126039 448.324699,136.038919 448.382096,135.968835 C448.523673,135.810083 448.764738,135.797692 448.921621,135.940957 C451.867967,138.629295 455.537508,140.365893 459.084602,142.045573 C459.256791,142.129208 459.340972,142.334038 459.27975,142.521056 C459.249138,142.618631 459.2147,142.716205 459.184089,142.81378 C459.015726,143.344633 458.843537,143.8902 458.445589,144.343225 C458.992768,144.615428 459.532294,144.889953 460.067993,145.163705 C461.640653,145.965986 463.530906,146.931666 464.816584,148.484343 C467.162182,145.17261 469.370028,141.633978 468.849635,137.931559 C468.302456,134.019277 464.927551,131.194256 461.52586,128.63563 C458.579514,126.42471 455.537508,124.139061 452.338617,122.223576 C450.811875,121.307071 449.162686,120.453292 447.456101,120.472265 C445.688293,120.484268 444.023799,121.399612 442.416701,122.284367 L442.382264,122.304889 C435.904129,125.872949 429.146665,129.088655 422.297367,131.86334 L422.010385,131.9795 C420.510427,132.585858 418.960725,133.212349 417.609998,134.108333 C416.496509,134.844403 415.042085,136.102033 414.411873,137.912199 C414.34185,138.114318 414.124126,138.220024 413.923622,138.148779 C413.724265,138.077534 413.619803,137.856829 413.689827,137.65471 C414.39121,135.640489 415.979941,134.262052 417.189091,133.460545 C418.604868,132.521969 420.192834,131.880764 421.72723,131.260467 L422.014211,131.144307 C428.836724,128.381239 435.563577,125.178309 442.014927,121.624576 L442.057018,121.604054 C443.740644,120.673609 445.485493,119.711414 447.444622,119.697475 C449.346354,119.685472 451.102683,120.583779 452.725086,121.557203 C455.958414,123.493209 459.019553,125.791249 461.977378,128.013785 C463.198007,128.926805 464.403331,129.876223 465.497688,130.897273 C470.089396,125.140751 470.835549,120.505177 467.705534,117.118327 C467.223405,116.59638 466.653268,116.134836 466.102263,115.68878 C463.442898,113.539813 461.05521,112.130013 458.112691,110.974604 L450.532546,108.000124 C448.898663,107.357757 446.859179,106.558186 444.949794,106.92293 C444.031452,107.098719 443.162854,107.536256 442.317214,107.959855 L437.147716,110.556039 C435.510007,111.379617 433.811075,112.231072 432.242241,113.233149 C430.593053,114.281303 429.031872,115.525768 427.524261,116.729577 L419.209443,123.364658 C418.89185,123.613629 418.574257,123.861051 418.256663,124.109634 C416.389369,125.562413 414.460851,127.065141 413.360755,129.162998 C412.554145,130.701736 411.936177,132.475505 411.358387,134.912937 C409.565325,142.470332 408.319442,150.273213 407.114884,157.819766 C406.393985,162.338406 405.647833,167.010764 404.792244,171.585547 C404.240857,174.531762 403.507331,176.394587 402.658248,178.551686 C401.789267,180.757572 400.805111,183.258505 399.684734,187.630008 C398.761801,191.230205 396.915169,195.187403 395.129377,199.014113 C394.210653,200.983419 393.34282,202.843534 392.624218,204.599492 C391.263542,207.927487 390.468411,211.526523 389.705039,215.012497 L398.407857,215.178606 C399.447496,215.19874 400.484457,215.220424 401.519122,215.24172 C407.065523,215.35788 412.800566,215.477525 418.478596,215.292056 C419.882893,215.246366 421.294844,215.208808 422.706794,215.175896 C423.135353,213.238727 423.579219,211.278327 424.049869,209.276109 C425.679925,202.308422 430.914472,198.423244 435.980657,194.66623 Z" id="Fill-23" fill="#FED7D8"></path>
44
- <path d="M523.973092,242.37911 C523.177196,243.206947 522.576447,244.244259 522.002484,245.247498 L517.590617,252.930733 C517.824029,252.717385 518.061267,252.504812 518.290853,252.290689 C523.372343,247.566446 527.994663,242.394986 532.123374,236.837872 L526.532969,240.441555 C525.637586,241.017711 524.711591,241.614001 523.973092,242.37911 Z" id="Fill-24" fill="#DBBBAB"></path>
45
- <path d="M539.898666,245.211875 C541.907539,243.704888 544.019724,242.329549 546.074514,240.991381 L551.511861,237.456233 C550.643263,236.71784 549.90859,235.84625 549.338453,234.852304 C549.227487,234.667996 549.292536,234.430642 549.472378,234.323 C549.65222,234.215358 549.885632,234.278085 549.992771,234.462005 C550.555256,235.434268 551.27845,236.284949 552.143221,236.991204 L552.173833,237.025278 L556.754062,234.0477 C559.382815,232.337432 562.359772,230.398715 564.162018,227.575243 C565.195152,225.950933 565.948957,223.42793 564.663279,221.664228 C563.794681,220.473584 562.08427,219.965963 560.599617,220.45616 C559.964431,220.666023 559.367509,221.040059 558.789719,221.402093 L547.314275,228.598229 C547.279837,228.622235 547.237746,228.634626 547.191829,228.643919 C547.080863,229.338945 546.901021,230.07424 546.629345,230.861033 C544.961024,235.79785 542.757005,240.506605 539.898666,245.211875 Z" id="Fill-25" fill="#DBBBAB"></path>
46
- <path d="M296.819757,76.9779423 C296.6116,76.5314992 296.313139,75.9816734 295.849759,75.6932084 C295.134983,75.2490885 294.180673,75.4976718 293.550461,75.9414045 C292.809665,76.463739 292.292715,77.2695049 291.792984,78.0489411 L283.43378,91.0809754 C287.175639,89.0473942 291.076295,87.3715869 295.076821,86.1066003 C295.669917,85.9188076 296.291711,85.7480519 296.915035,85.6450563 C298.111175,82.9075431 298.082094,79.6887387 296.819757,76.9779423 Z" id="Fill-26" fill="#FFDAC7"></path>
47
- <path d="M664.685989,251.637868 L664.62094,251.63903 C664.387528,251.647548 664.19238,251.696335 664.039323,251.785004 C663.916878,251.855088 663.802085,251.965053 663.675813,252.12187 C663.289344,252.604322 663.10185,253.204097 663.159246,253.767088 C663.220469,254.345567 663.561021,254.884164 664.027844,255.140104 C664.333958,255.305051 664.693642,255.367004 665.003582,255.405337 C665.187251,255.427407 665.378572,255.440959 665.523976,255.410757 C665.665553,255.38133 665.81861,255.30389 665.97932,255.18076 C666.625986,254.677398 666.886183,253.709395 666.583895,252.929184 C666.296913,252.180724 665.497191,251.637868 664.685989,251.637868 Z" id="Fill-27" fill="#FFFFFF"></path>
48
- <path d="M458.449416,142.601594 C455.089816,141.009422 451.646035,139.340971 448.772391,136.834617 C448.504541,137.310101 448.186948,137.757705 447.84257,138.17356 L447.873181,138.208795 C448.144857,138.573151 447.9918,139.109812 447.968842,139.539606 C447.945883,139.981015 447.942057,140.422425 447.93823,140.864221 C449.20095,141.018715 450.467496,141.2491 451.71491,141.592547 C453.807964,142.169864 455.809184,143.049973 457.74918,143.998229 L457.806577,143.904139 C458.135649,143.568823 458.288706,143.099922 458.449416,142.601594 Z" id="Fill-28" fill="#E6E6E6"></path>
49
- <path d="M447.237995,138.819024 C446.468884,139.567097 445.577327,140.17965 444.601589,140.616413 C445.43575,140.643904 446.273736,140.693853 447.10407,140.773616 C447.111723,140.294261 447.138508,139.811421 447.188251,139.335938 C447.207384,139.17099 447.218863,138.992103 447.237995,138.819024 Z" id="Fill-29" fill="#FFFFFF"></path>
50
- <path d="M574.14133,122.95074 C573.632416,121.339208 572.094193,120.163665 570.487096,120.155147 C570.027925,120.152824 569.63763,120.241106 569.327689,120.417669 C569.075145,120.556675 568.830254,120.776605 568.573884,121.091012 C567.812426,122.024555 567.395345,123.241141 567.468047,124.390742 C567.52927,125.585258 568.149151,126.723243 569.040707,127.290105 C569.607018,127.652526 570.276642,127.805857 570.862085,127.906917 C571.248554,127.975064 571.562321,128.009525 571.864608,127.958028 C572.159243,127.906917 572.473009,127.756296 572.794429,127.51081 C573.712771,126.81075 574.30204,125.572093 574.324998,124.278066 C574.336478,123.814974 574.271428,123.368143 574.14133,122.95074 Z" id="Fill-30" fill="#F7AE55"></path>
51
- <path d="M248.672636,187.38762 C248.691768,187.255197 248.715874,187.124323 248.743424,186.997708 C248.750695,186.962473 248.765618,186.933432 248.783602,186.907877 L248.782071,186.878837 C248.756817,186.936917 248.735006,186.994998 248.717022,187.053465 C248.701716,187.11232 248.686793,187.175433 248.67187,187.236224 C248.658095,187.312503 248.650825,187.389556 248.648912,187.466996 L248.672636,187.38762 Z" id="Fill-31" fill="#FFFFFF"></path>
52
- <path d="M134.124822,162.04452 C134.043319,161.738631 133.933883,161.39015 133.770113,161.069934 L133.74945,161.05948 L133.750215,161.030052 C133.631979,160.806637 133.486575,160.597936 133.301376,160.431052 C132.595018,159.792944 131.48612,159.876193 130.700556,160.241711 C130.178631,160.484873 129.720609,160.844196 129.29358,161.246498 C129.253402,161.348332 129.171134,161.425772 129.068969,161.463718 C128.827521,161.70417 128.594109,161.955076 128.363759,162.20366 L116.620848,174.893021 C121.141767,173.38642 125.770592,172.310775 130.429262,171.713324 C131.118018,171.624655 131.835855,171.560766 132.540683,171.573157 C134.38961,168.809701 134.985385,165.270294 134.124822,162.04452 Z" id="Fill-32" fill="#FED7D8"></path>
53
- <path d="M737.039831,180.550806 C737.648232,181.107989 738.321683,181.583859 739.048703,181.949377 C739.676237,182.265334 740.139234,182.333481 740.472133,182.160015 C740.552488,182.114712 740.648148,182.109291 740.736156,182.130975 L740.797379,182.051211 C739.481089,181.759649 738.241328,181.287263 737.039831,180.550806 Z" id="Fill-33" fill="#FFFFFF"></path>
54
- <path d="M756.707648,180.839271 C756.592855,181.097147 756.497194,181.327532 756.497194,181.540493 C756.501021,181.708925 756.592855,181.886651 756.742085,182.015202 C756.895142,182.143365 757.082637,182.207253 757.247173,182.180924 C757.369619,182.164274 757.484412,182.211513 757.564766,182.292438 L762.868189,174.023754 C763.606689,172.871056 764.368147,171.685058 765.252051,170.609026 C767.280056,168.141779 769.935594,166.268112 772.503124,164.456397 C773.536258,163.726522 774.580872,162.986968 775.591047,162.205596 C767.383369,165.801147 760.423105,172.62828 756.707648,180.839271 Z" id="Fill-34" fill="#B3B3B3"></path>
55
- <path d="M811.509685,289.340046 C811.463768,289.348177 811.414024,289.352049 811.371934,289.350888 C811.37576,289.388833 811.379586,289.426779 811.387239,289.465112 C811.421677,289.417486 811.463768,289.374894 811.509685,289.340046 Z" id="Fill-35" fill="#FFFFFF"></path>
56
- <path d="M799.429666,293.135393 C795.737167,293.43741 792.033189,293.5799 788.348343,293.487359 C788.355996,293.519497 788.371302,293.551247 788.371302,293.590355 C788.60854,296.850977 788.623846,300.13638 788.700374,303.404359 C788.750118,305.595144 789.243726,308.255991 788.290947,310.323259 C790.016664,310.287249 791.734728,310.225297 793.429834,310.154827 C799.973018,309.882237 806.6463,309.370744 813.078518,308.069747 C815.332282,307.614012 814.551691,304.775826 814.36037,303.191785 C814.165223,301.569412 813.927984,299.950136 813.602738,298.349059 C813.128262,296.023915 812.527513,293.73904 811.811972,291.482431 C810.01738,292.168164 807.843971,292.211531 805.949891,292.445013 C803.780309,292.711795 801.606901,292.957668 799.429666,293.135393 Z" id="Fill-36" fill="#FC8181"></path>
57
- <path d="M778.315461,86.0504561 C778.59479,86.4794751 779.21467,86.9123662 779.995261,86.9123662 L780.045004,86.9115918 C780.8409,86.8926189 781.506698,86.4295262 781.801333,85.9788238 C782.122752,85.4986942 782.187802,84.9477068 782.233719,84.3293463 C782.348511,82.822746 782.405908,81.2983345 782.402081,79.7979294 C782.398255,78.5573365 782.046224,76.7107734 781.74011,75.2405701 L781.701846,75.0179293 C781.575574,74.394148 781.548789,74.2640484 780.867685,73.8268981 C780.492696,73.5876077 779.945517,73.4447304 779.402165,73.4447304 C778.816722,73.4447304 778.323114,73.6030958 778.047611,73.8795575 C777.733845,74.1885442 777.710886,74.5885231 777.714712,75.0787199 C777.733845,78.1662631 777.8142,81.3010449 777.948124,84.3959449 C777.971083,84.9647436 777.997868,85.5532896 778.315461,86.0504561 Z" id="Fill-37" fill="#FFFFFF"></path>
58
- <path d="M759.271351,81.1113163 C759.317268,80.4584949 759.470325,79.8219359 759.638688,79.1733737 C760.009851,77.7415033 760.541724,76.9667135 761.678172,76.2124454 C762.604166,75.5956337 763.530161,75.2355365 764.421717,75.1418338 C764.628344,75.1205377 764.84645,75.1093089 765.076036,75.1093089 C766.32345,75.1093089 768.167786,75.4488844 769.243011,76.406046 C770.413896,77.4445199 771.179181,78.9464738 771.293974,80.4255827 C771.324585,80.80504 771.313106,81.1930157 771.263362,81.5778938 C771.003166,83.6780737 770.008296,85.2907671 768.46242,86.1193779 C767.624434,86.5693058 766.518597,86.8171147 765.343885,86.8171147 C763.90515,86.8171147 762.497026,86.454307 761.483024,85.8227817 C760.02133,84.909761 759.129774,83.0163467 759.271351,81.1113163 Z M758.265002,85.9091276 C758.29944,86.7342536 758.965237,87.3804926 759.780266,87.3804926 L759.780266,87.5740932 L759.810877,87.3801054 C763.564598,87.2999547 767.268576,87.1923127 771.140917,87.0509843 C771.975077,87.0207825 772.640875,86.3067833 772.629396,85.4595869 C772.617916,84.7552677 772.61409,84.057531 772.602611,83.3597942 C772.575826,81.0408456 772.549041,78.6421335 772.376852,76.0761505 C772.323282,75.263415 771.642178,74.6260816 770.830977,74.6260816 L770.762101,74.6276304 C767.865498,74.7588917 765.309448,74.7778645 762.604166,74.7976118 C761.597817,74.8045814 760.564682,74.8123255 759.489457,74.8258775 C759.060898,74.8316855 758.659124,75.0082493 758.364489,75.3234312 C758.073681,75.6374514 757.916797,76.0478848 757.935929,76.4800015 C757.993326,78.0051874 758.046896,79.5632854 758.096639,81.1221579 C758.150209,82.7298177 758.203779,84.3378647 758.265002,85.9091276 Z" id="Fill-38" fill="#4B5668"></path>
59
- <path d="M761.685824,85.4932734 C762.638604,86.0884018 763.970199,86.4299134 765.343885,86.4299134 C766.457375,86.4299134 767.501988,86.1979798 768.286405,85.7774792 C769.717487,85.009659 770.639655,83.5011227 770.888373,81.5294937 C770.930464,81.1705581 770.941943,80.8092992 770.911332,80.4557844 C770.804192,79.0750246 770.084824,77.6702583 768.990467,76.6972214 C768.05682,75.8678362 766.350235,75.4965102 765.076036,75.4965102 C764.865582,75.4965102 764.655129,75.5069646 764.463808,75.5267119 C763.629648,75.6142193 762.764876,75.9537949 761.884799,76.5361457 C760.828706,77.2385288 760.354229,77.9289087 760.009851,79.2709485 C759.845315,79.9016994 759.699911,80.5192855 759.653994,81.1399692 C759.523895,82.9044455 760.338923,84.6542082 761.685824,85.4932734 Z" id="Fill-39" fill="#F7AE55"></path>
60
- <path d="M756.221692,73.4973898 C756.703821,72.9843481 757.35814,72.6970447 758.054549,72.6881391 C759.386144,72.6711022 760.664169,72.6618094 761.91541,72.6529038 C765.248225,72.6285101 768.401198,72.6056652 771.963598,72.4442023 C773.348763,72.3791525 774.504343,73.4466665 774.600004,74.8165847 C774.814283,78.0078978 774.848721,80.9823782 774.879333,83.8592839 C774.890812,84.7177092 774.906118,85.5765217 774.91377,86.4438526 C774.936729,87.8292589 773.846198,88.9966708 772.480165,89.0466198 C767.693309,89.2216348 763.11308,89.3544448 758.471629,89.4531811 L758.418059,89.4535683 C757.078811,89.4535683 755.984453,88.391088 755.930884,87.0347218 C755.854355,85.0967793 755.789306,83.1139214 755.728083,81.1306763 C755.659207,79.2012522 755.594158,77.2714409 755.521456,75.3834474 C755.494671,74.678741 755.743389,74.0088827 756.221692,73.4973898 Z M777.645837,73.4644777 C778.036132,73.0772764 778.659839,72.8639285 779.402165,72.8639285 C780.06031,72.8639285 780.706976,73.0362331 781.177626,73.3363141 C782.019439,73.8791703 782.1151,74.1629889 782.260504,74.9040922 L782.302594,75.1216993 C782.612535,76.6186195 782.972218,78.5027411 782.976045,79.7963806 C782.979871,81.3118865 782.922475,82.8517861 782.807682,84.3742616 C782.754112,85.0762576 782.673757,85.7058469 782.279636,86.3029113 C781.808986,87.0045201 780.940387,87.4714849 780.06031,87.4923937 L779.995261,87.4931681 C779.11901,87.4931681 778.269544,87.050597 777.833332,86.3660251 C777.431557,85.7364358 777.400946,85.0379247 777.374161,84.4215002 C777.240236,81.3188562 777.159881,78.1771048 777.140749,75.082592 C777.136923,74.6396337 777.133096,73.970937 777.645837,73.4644777 Z M734.254194,176.074372 C734.395772,176.418207 734.53735,176.765913 734.68658,177.111297 C735.084528,177.802839 735.574311,178.413455 736.175059,178.904039 C737.824248,180.24453 739.492568,180.962014 741.359863,181.319788 C743.035836,179.03259 744.363605,176.402331 745.308732,173.475477 C745.519185,172.825753 745.718159,172.146215 745.90948,171.489134 C746.686244,168.831384 747.482141,166.083804 749.422137,164.075391 C750.646593,162.81234 752.180989,161.988376 753.669467,161.191903 C760.790441,157.370613 768.156307,153.419224 776.249192,151.749224 C777.469821,151.497544 778.881772,151.263287 780.224846,151.675656 C781.342162,152.017942 782.455651,152.963488 782.715848,154.204468 C783.408431,153.540805 784.219632,153.081971 785.225982,153.079648 L785.229808,153.079648 C786.492528,153.079648 787.728463,153.912131 788.371302,155.20306 C788.884043,156.219851 789.048579,157.479804 788.861084,158.948071 C788.313906,163.251426 785.401997,166.567806 782.58575,169.774994 C781.051354,171.520497 779.463388,173.32563 778.27337,175.272478 C777.538697,176.480159 776.899684,177.846205 776.287457,179.167336 C775.985169,179.820545 775.675229,180.480336 775.353809,181.131995 C777.286153,180.978276 791.17607,181.20053 791.398003,181.20053 L791.401829,181.20053 C791.631415,181.201304 791.876306,181.203628 792.12885,181.206725 C794.080326,181.228021 796.510105,181.254351 798.193731,180.466784 C801.289308,179.01594 801.048243,174.711036 800.887533,171.862396 L800.87988,171.609554 C800.592899,166.394339 800.657948,161.038958 800.726823,155.860528 L800.726823,155.776892 C800.726823,155.647567 800.795699,155.537215 800.895186,155.462098 C801.323745,138.981649 801.247217,122.278172 800.661774,105.8105 C800.657948,105.708279 800.696212,105.614964 800.757435,105.543331 L800.757435,105.51855 C800.646468,91.3156194 800.535502,76.629074 799.387575,62.2979793 C799.376096,62.1814317 799.364617,62.0668201 799.353137,61.9545318 C798.825091,57.6445941 795.289476,56.7908152 789.354693,56.7730039 C779.574354,56.7420278 769.625653,57.1416196 759.998372,57.5257233 C754.300827,57.7530104 748.411961,57.9884288 742.61493,58.1328549 C739.898169,58.2006151 736.393165,58.8491773 734.690407,60.1447529 C731.625442,62.4815127 731.770846,65.9121163 731.912423,69.2296571 C731.931555,69.7202411 731.95834,70.2077275 731.965993,70.6901804 C732.069307,75.4012586 732.249149,80.1766123 732.49404,84.8822698 C732.788674,90.5400552 732.788674,96.2501128 732.788674,101.771603 C732.792501,102.800397 732.792501,103.830353 732.792501,104.862631 L732.869029,145.816913 C732.869029,148.03093 732.865203,150.245335 732.853723,152.459739 L732.853723,153.415352 C737.495175,151.386804 741.268029,151.15216 747.22577,150.939587 C747.876262,150.916354 748.568845,151.269482 749.020363,151.861513 C749.448922,152.421019 749.468054,153.160573 749.448922,153.667807 C749.32265,156.787875 747.466835,159.720925 744.719463,161.140405 C744.107235,161.456361 743.460569,161.696813 742.836862,161.928747 C742.232287,162.152549 741.616233,162.384483 741.04227,162.678756 C740.747635,162.828603 740.472133,162.966833 740.192804,163.101579 C739.186454,163.591389 738.321683,164.0146 737.487522,164.791713 C736.381686,165.821281 735.26437,167.027801 734.181492,168.195213 C733.787371,168.621521 733.389423,169.051315 732.983822,169.478398 C733.064177,171.258362 733.259324,173.164941 733.760586,174.871725 L734.254194,176.074372 Z" id="Fill-40" fill="#E9D8FD"></path>
61
- <path d="M758.088986,75.0570367 C758.456323,74.665189 758.949932,74.4452586 759.485631,74.4386762 C760.560856,74.4251241 761.59399,74.4173801 762.604166,74.4104105 C765.305621,74.3906632 767.857846,74.3720776 770.750622,74.2412035 C771.799062,74.1866081 772.682966,75.0055389 772.759494,76.0498208 C772.931683,78.6266455 772.958468,81.0307784 772.985253,83.3551478 C772.996732,84.0521102 773.000559,84.7494597 773.012038,85.4530045 C773.027344,86.510064 772.19701,87.3998526 771.152396,87.4381856 C767.280056,87.5791268 763.576078,87.687156 759.81853,87.7673067 L759.780266,87.7676939 C758.758611,87.7676939 757.928277,86.9580559 757.88236,85.9250029 C757.821137,84.3525784 757.767567,82.743757 757.713997,81.1349355 C757.664253,79.5768375 757.610683,78.0195138 757.553287,76.4951023 C757.530329,75.9580541 757.72165,75.4469484 758.088986,75.0570367 Z M756.696168,87.0037457 C756.734432,87.9434833 757.488238,88.6791657 758.418059,88.6791657 L758.456323,88.6787785 C763.093948,88.5800422 767.670351,88.4476194 772.45338,88.2729916 C773.402333,88.2385306 774.167618,87.4234719 774.148486,86.4566303 C774.140833,85.5885249 774.125527,84.7277764 774.114048,83.8678023 C774.083437,81.0021255 774.048999,78.0388739 773.834719,74.8696312 C773.773496,73.9426713 773.000559,73.2158945 772.078391,73.2158945 L771.998036,73.2178305 C768.42033,73.3796806 765.26353,73.4029127 761.919236,73.4273064 C760.671822,73.436212 759.397623,73.4455048 758.062201,73.4625417 C757.572419,73.4687369 757.117075,73.6700816 756.78035,74.030566 C756.443624,74.3895016 756.267609,74.8587896 756.286741,75.3528585 C756.359443,77.2424008 756.424492,79.1733737 756.493368,81.105121 C756.554591,83.0864301 756.61964,85.0677392 756.696168,87.0037457 Z" id="Fill-41" fill="#FFFFFF"></path>
62
- <path d="M897.577428,197.153224 C896.957548,196.656057 896.13104,196.026468 895.224178,195.568022 C894.191044,195.051495 893.081381,194.751801 891.93728,194.465659 C889.274089,193.79735 886.538197,193.289729 883.748734,192.786367 L883.354612,192.713186 C882.153115,192.487448 880.668463,192.20634 879.685072,192.874262 C878.583062,193.624658 877.898132,195.686892 877.867521,197.247314 C877.833083,198.90531 878.51036,200.505225 879.669766,201.527437 C880.844478,202.562813 882.455403,202.992607 884.016583,203.408461 L884.559936,203.556372 C885.489756,203.809989 886.465494,204.127881 887.345572,204.604526 C887.460365,204.614206 887.556025,204.671511 887.617248,204.757083 C888.252434,205.136153 888.826398,205.610087 889.285569,206.216057 C892.025288,205.760709 894.39767,205.613959 896.639955,205.764193 C899.804407,205.975605 902.693357,206.84526 905.188185,208.28681 C904.472643,204.340841 901.977815,200.691469 897.577428,197.153224 Z" id="Fill-42" fill="#B69892"></path>
63
- <path d="M856.179353,157.439535 C855.452332,156.881965 854.602866,156.754963 853.64626,156.655839 C851.752181,156.460303 849.82749,156.360792 847.925757,156.360792 C845.147774,156.360792 842.343005,156.571817 839.580327,156.987284 C837.785735,157.258325 835.623806,157.863907 834.812604,160.16427 C834.671026,160.587481 834.579192,161.05251 834.552407,161.54503 C834.491184,162.529683 834.690158,163.573965 835.091933,164.41032 C836.006448,166.301024 837.96175,167.18152 841.263954,167.18152 C842.541979,167.18152 843.881227,167.052194 845.059766,166.938357 C846.154123,166.832264 847.187257,166.735077 847.998459,166.750177 C848.327532,166.757147 848.683389,166.773409 849.066031,166.790833 C849.636168,166.816389 850.282834,166.845816 850.937152,166.845816 C853.512335,166.845816 856.581127,166.42609 857.526254,163.15269 C857.549212,163.063247 857.568344,162.971867 857.587476,162.880488 C857.560691,162.992002 857.537733,163.103128 857.499469,163.212319 C856.493119,166.36375 853.206222,166.728494 850.814707,166.728494 C850.183347,166.728494 849.563466,166.701777 849.020114,166.678932 C848.67191,166.664219 848.35049,166.650279 848.055855,166.644084 L847.872187,166.642148 C847.191084,166.642148 846.341618,166.71378 845.438582,166.789672 C844.355704,166.881051 843.127422,166.984821 841.937404,166.984821 C839.825219,166.984821 836.867393,166.707972 835.574062,164.315068 C835.141676,163.506205 834.935049,162.540138 834.988619,161.594592 C835.019231,161.118334 835.114891,160.668019 835.275601,160.25565 C836.151852,157.995169 838.520408,157.432952 840.226993,157.206827 C844.547025,156.633382 848.970371,156.549746 853.301882,156.959792 C854.250835,157.049623 855.169177,157.176625 855.984205,157.738067 C857.258404,158.624758 857.939507,160.592128 857.679311,162.401907 C857.962466,160.486422 857.346412,158.343263 856.179353,157.439535 Z" id="Fill-43" fill="#FFFFFF"></path>
64
- <path d="M893.708914,223.619982 C894.849188,224.299133 896.08895,224.788555 897.378454,225.074697 C897.585081,225.119999 897.71518,225.326765 897.673089,225.535854 C897.630998,225.716289 897.474115,225.840194 897.298099,225.840194 L897.217744,225.830901 C895.997115,225.561022 894.833883,225.111481 893.731873,224.511319 C893.881103,225.927701 894.007375,227.345633 894.106862,228.757368 C895.331318,229.213104 896.555773,229.690524 897.753444,230.205889 C898.403936,230.48661 899.054428,230.779334 899.69344,231.083287 C899.86563,228.938579 899.708746,226.792322 899.211311,224.694852 C899.01999,223.878632 898.736835,222.973355 898.097822,222.450634 C897.734312,222.156748 897.278967,221.990251 896.793011,221.814462 L896.54812,221.722308 C895.35045,221.275865 894.210176,220.652858 893.173215,219.895105 C893.341577,221.12292 893.502287,222.356931 893.636212,223.595201 L893.708914,223.619982 Z" id="Fill-44" fill="#B69892"></path>
65
- <path d="M887.52924,226.407057 L890.544462,227.474183 C891.458977,227.798271 892.384972,228.130102 893.314793,228.469291 C893.089034,225.382909 892.752308,222.272521 892.308443,219.215567 C892.20513,219.127672 892.105643,219.035905 892.006156,218.9453 C891.424539,219.068043 890.831444,219.202789 890.200084,219.348764 C889.350618,219.545462 888.478193,219.746033 887.598116,219.921435 L887.578984,221.632477 C887.563678,223.21342 887.544546,224.804818 887.52924,226.407057 Z" id="Fill-45" fill="#B69892"></path>
66
- <path d="M858.257101,163.369136 C857.162743,167.179971 853.554426,167.620219 850.937152,167.620219 C850.267528,167.620219 849.609383,167.590404 849.031593,167.564462 C848.656604,167.547425 848.304573,167.53155 847.983153,167.52458 L847.807138,167.522644 C847.060985,167.522644 846.127338,167.613249 845.132468,167.708888 C843.938624,167.824661 842.580243,167.955922 841.263954,167.955922 C838.979579,167.955922 835.784515,167.623316 834.403176,164.749121 C833.940179,163.783054 833.722073,162.629581 833.787122,161.500502 C833.817734,160.934414 833.921047,160.39814 834.097063,159.906007 C835.046016,157.186305 837.621199,156.500572 839.469361,156.2214 C844.183515,155.51166 849.008635,155.397822 853.722789,155.885696 C854.763576,155.992564 855.762272,156.144734 856.638523,156.824272 C858.218836,158.043569 858.945857,160.979716 858.257101,163.369136 Z M885.661946,152.320346 C885.654293,152.21193 885.642813,152.10545 885.627508,152.000905 C885.172163,147.991823 882.08424,147.197673 876.910915,147.181411 C868.377991,147.152371 859.695836,147.524084 851.304489,147.881083 C846.333965,148.092883 841.191252,148.311651 836.136546,148.44601 C833.764164,148.509124 830.706851,149.112384 829.226026,150.317354 C826.551355,152.490715 826.677627,155.681641 826.803899,158.768022 C826.823032,159.223758 826.838337,159.677558 826.84599,160.125937 C826.937824,164.508282 827.098534,168.949868 827.308987,173.327179 C827.569184,178.589632 827.569184,183.900485 827.569184,189.03671 C827.569184,189.993484 827.569184,190.95142 827.573011,191.91168 L827.634233,230.005318 C827.634233,232.064455 827.630407,234.123979 827.622754,236.184277 C827.611275,240.233241 827.595969,244.419661 827.668671,248.532513 C827.672498,248.815558 827.676324,249.112541 827.68015,249.421528 C827.714588,252.995396 827.775811,258.396079 830.519357,260.78124 C833.04097,262.965829 835.604673,263.392138 839.090545,263.305018 C839.109677,262.458983 839.411965,261.663671 840.00506,260.967096 C840.403009,260.492775 840.931055,260.173721 841.401705,259.911585 C846.586509,257.006414 853.190916,255.910634 860.495558,256.741181 C865.680362,257.332825 870.608796,258.762759 875.158413,260.220185 C875.456874,260.315436 875.797426,260.434307 876.149457,260.560922 C877.213202,260.939992 878.487402,261.386048 879.593238,261.485946 C881.227121,261.501434 883.144159,261.473555 884.510192,260.794017 C887.207821,259.444621 887.001194,255.440185 886.859616,252.790566 L886.848137,252.555535 C886.599419,247.704677 886.656816,242.723332 886.718038,237.906548 L886.718038,237.864343 C883.557413,235.820695 880.591934,234.106167 875.510444,231.83678 C874.687763,231.471262 874.094667,230.794435 873.742636,229.826044 C873.130409,228.129328 873.41739,225.747266 874.04875,224.424586 L874.106147,224.34521 C874.561491,223.242848 875.518097,223.038792 876.382869,222.938507 C877.400697,222.820024 878.376435,223.165407 879.233554,223.469747 L886.763956,226.137177 C886.779261,224.623607 886.80222,223.118169 886.813699,221.623572 L886.829005,220.065474 C883.917096,220.582 880.940139,220.703969 878.468269,219.255449 C876.528273,218.124046 874.798729,215.839946 875.307644,213.287515 C875.694112,211.329438 877.236161,209.758949 879.887873,208.619029 C882.122504,207.659931 884.548456,207.131014 886.928492,206.654756 C886.932318,206.191277 886.932318,205.727409 886.932318,205.262768 C886.128769,204.833749 885.221907,204.539476 884.360962,204.304445 L883.813783,204.157308 C882.176074,203.718996 880.480968,203.265583 879.168505,202.111336 C877.83691,200.940827 877.063972,199.116722 877.102236,197.232213 C877.132848,195.794534 877.725943,193.276564 879.256513,192.232282 C880.496274,191.387022 882.156942,191.700655 883.492363,191.951949 L883.878832,192.023968 C884.885182,192.204404 885.872399,192.388324 886.85579,192.577279 L886.85579,192.521909 C886.760129,179.310988 886.660642,165.650526 885.661946,152.320346 Z" id="Fill-46" fill="#9BE6B5"></path>
67
- <path d="M888.41697,206.369002 C888.198864,206.135132 887.9578,205.933013 887.697603,205.744446 L887.697603,206.502199 C887.942494,206.453799 888.175906,206.412756 888.41697,206.369002 Z" id="Fill-47" fill="#FFFFFF"></path>
68
- <path d="M732.153488,170.343018 C732.099918,170.401873 732.038695,170.46034 731.981299,170.518808 L732.207058,171.078314 C732.187926,170.832053 732.168794,170.586955 732.153488,170.343018 Z" id="Fill-48" fill="#FFFFFF"></path>
69
- <path d="M840.468058,163.060923 C840.571371,163.258783 840.739734,163.453158 840.980798,163.655665 C841.681034,164.256988 842.595549,164.574106 843.441189,164.501699 C844.328919,164.427744 845.159253,163.90812 845.572507,163.178633 C845.828877,162.711668 845.928364,162.166101 845.99724,161.69449 C846.043157,161.380082 846.062289,161.122206 846.020198,160.882916 C845.974281,160.642464 845.863315,160.390783 845.67582,160.134069 C845.140121,159.401871 844.214126,158.946909 843.249868,158.946909 C842.909316,158.946909 842.576417,159.004602 842.270303,159.119214 C841.084112,159.560236 840.234646,160.8229 840.253778,162.121186 C840.257604,162.493673 840.330306,162.810017 840.468058,163.060923 Z" id="Fill-49" fill="#F7AE55"></path>
70
- <path d="M854.250835,161.633699 C854.201092,161.970952 854.120737,162.40694 853.902631,162.79569 C853.542947,163.445414 852.842711,163.889534 852.069774,163.954197 C851.997072,163.960005 851.928196,163.962715 851.85932,163.962715 C851.224134,163.962715 850.562163,163.710647 850.053249,163.270399 C849.838969,163.091899 849.689738,162.909915 849.582598,162.714378 C849.444847,162.464246 849.372145,162.16494 849.368319,161.824202 C849.353013,160.741588 850.064728,159.688013 851.055772,159.31901 C851.319795,159.221048 851.60295,159.171099 851.893758,159.171099 C852.697307,159.171099 853.477898,159.557913 853.929416,160.180533 C854.105431,160.421759 854.216397,160.669568 854.266141,160.917764 C854.304405,161.165573 854.285273,161.408348 854.250835,161.633699 Z M855.547993,158.377336 C854.886021,157.920439 854.078646,157.810474 853.233006,157.73071 C851.449893,157.562278 849.639995,157.476706 847.856881,157.476706 C846.429626,157.476706 844.994717,157.53711 843.563634,157.645139 C844.84166,157.73071 846.054636,158.367269 846.77783,159.361215 C847.072465,159.766615 847.256133,160.179758 847.328835,160.588643 C847.40919,161.020372 847.359446,161.443971 847.309703,161.807166 C847.225522,162.40152 847.083944,163.169727 846.712781,163.841134 C846.089074,164.948917 844.887577,165.706283 843.563634,165.817022 C843.448842,165.827089 843.326396,165.831349 843.207777,165.831349 C842.109593,165.831349 840.965493,165.393424 840.066283,164.629863 C839.710426,164.323587 839.454055,164.017311 839.27804,163.693997 C839.056107,163.278918 838.933662,162.77633 838.926009,162.200949 C838.899224,160.334252 840.12368,158.517503 841.837917,157.881331 C841.971842,157.829447 842.121073,157.788403 842.258824,157.752393 C841.612158,157.815894 840.973146,157.889463 840.32648,157.974647 C838.688771,158.192254 836.706683,158.680902 835.991142,160.539081 C835.853391,160.876334 835.776863,161.24766 835.750078,161.642992 C835.707987,162.432883 835.884002,163.271948 836.243686,163.944517 C837.077847,165.490224 838.883918,166.210419 841.937404,166.210419 C843.096811,166.210419 844.309787,166.10781 845.381185,166.01798 C846.379882,165.93357 847.321182,165.857291 848.067335,165.869682 C848.369622,165.876264 848.698695,165.890203 849.046899,165.904917 C849.590251,165.927762 850.198653,165.954091 850.814707,165.954091 C853.144999,165.954091 855.926809,165.615678 856.772448,162.974577 C857.300495,161.309612 856.73801,159.204398 855.547993,158.377336 Z" id="Fill-50" fill="#4B5668"></path>
71
- <path d="M853.317188,160.639754 C853.003421,160.211509 852.460069,159.945502 851.893758,159.945502 C851.694784,159.945502 851.503463,159.979575 851.319795,160.045787 C850.623386,160.305212 850.122124,161.048638 850.133603,161.812974 C850.13743,162.025934 850.175694,162.204047 850.252223,162.342665 C850.309619,162.45263 850.40528,162.562595 850.546857,162.678756 C850.960111,163.03653 851.503463,163.226645 852.000898,163.182117 C852.517465,163.139138 853.003421,162.838283 853.236833,162.415459 C853.38989,162.140546 853.451113,161.81065 853.49703,161.524509 C853.519988,161.338652 853.531468,161.187643 853.512335,161.055608 C853.48555,160.925121 853.424328,160.784954 853.317188,160.639754 Z" id="Fill-51" fill="#FFFFFF"></path>
72
- <path d="M152.503517,107.43752 C152.637824,107.681457 152.850191,107.922296 153.153243,108.175139 C154.053601,108.925535 155.2264,109.335581 156.333384,109.268982 C157.484755,109.201996 158.58026,108.590218 159.125908,107.712046 C159.474495,107.14983 159.62143,106.488102 159.718238,105.915045 C159.783287,105.533651 159.816195,105.220018 159.766451,104.927294 C159.716708,104.633408 159.571303,104.323647 159.33483,104.006142 C158.659084,103.100865 157.464857,102.522774 156.218209,102.497993 C155.772048,102.489475 155.341575,102.551427 154.9398,102.682688 C153.38742,103.189535 152.25633,104.705428 152.249825,106.287532 C152.247912,106.741332 152.333623,107.128533 152.503517,107.43752 Z" id="Fill-52" fill="#F7AE55"></path>
73
- <path d="M153.436781,112.476945 L153.437164,112.476945 C155.102806,112.509857 156.844211,112.386727 158.38052,112.278311 C159.803185,112.177638 161.140902,112.085485 162.198143,112.124979 C162.623641,112.141629 163.089317,112.170669 163.583691,112.201645 C164.325252,112.247722 165.165535,112.299994 166.011939,112.317031 C169.353938,112.382855 173.355994,111.950738 174.653152,107.987733 C174.688737,107.879317 174.717436,107.768577 174.746899,107.657838 C174.7094,107.792971 174.66884,107.92733 174.621392,108.059365 C173.243115,111.872524 168.957903,112.231847 165.854673,112.170669 C165.035436,112.154406 164.231122,112.106006 163.521703,112.064188 C163.075542,112.037084 162.655783,112.011916 162.271993,111.996815 L162.034755,111.989846 C161.150851,111.972422 160.04578,112.037472 158.87566,112.107168 C157.466005,112.190803 155.867708,112.28528 154.315711,112.254691 C151.571783,112.200483 147.736558,111.78734 146.119512,108.839576 C145.572716,107.843307 145.325146,106.661181 145.423103,105.510806 C145.472463,104.93194 145.608301,104.385599 145.826025,103.887659 C147.019486,101.156728 150.109706,100.532559 152.329797,100.301013 C157.956553,99.7136285 163.703458,99.7252445 169.314908,100.335474 C170.546251,100.469445 171.7378,100.647945 172.776674,101.352652 C174.417444,102.465468 175.255431,104.878894 174.877763,107.077036 C175.286042,104.75073 174.53568,102.125118 173.038401,100.994103 C172.114702,100.296366 171.013075,100.119803 169.772548,99.9746022 C167.31828,99.687686 164.820009,99.5173174 162.348522,99.4681429 C158.7425,99.3968978 155.091709,99.5815928 151.498315,100.017194 C149.157692,100.300626 146.329965,100.982874 145.231399,103.764141 C145.029364,104.276021 144.902326,104.839787 144.853731,105.439174 C144.75807,106.637175 144.990717,107.914165 145.493126,108.943346 C146.628043,111.269651 149.152335,112.392148 153.436781,112.476945 Z" id="Fill-53" fill="#FFFFFF"></path>
74
- <path d="M133.569225,171.37491 C133.518716,171.460868 133.470121,171.547989 133.418464,171.632786 C133.46706,171.638981 133.515655,171.646338 133.564251,171.653695 L133.569225,171.37491 Z" id="Fill-54" fill="#FFFFFF"></path>
75
- <path d="M143.862687,105.365219 C143.918553,104.676775 144.065488,104.026277 144.300813,103.431148 C145.599501,100.142648 148.956805,99.3736657 151.369747,99.0813288 C157.508861,98.3379022 163.77463,98.3228014 169.89155,99.0383494 C171.233477,99.1951659 172.530635,99.4061906 173.656751,100.256485 C175.677103,101.782445 176.54991,105.377222 175.602105,108.270003 C174.092198,112.883506 169.395263,113.327626 165.993955,113.260253 C165.124975,113.242829 164.273213,113.189783 163.520938,113.142931 C163.034982,113.11273 162.577724,113.084464 162.159496,113.067814 L161.931059,113.060845 C160.962208,113.041872 159.745406,113.12783 158.457049,113.218823 C156.898547,113.329175 155.13227,113.454241 153.41918,113.420167 L153.418414,113.420167 C150.455615,113.3617 146.317338,112.874601 144.591238,109.338291 C144.011152,108.149583 143.752486,106.739009 143.862687,105.365219 Z M136.110353,172.843564 C137.063515,173.791433 137.498962,175.304229 137.274734,176.889431 C137.02372,178.666297 135.988673,180.365337 134.381575,181.751905 L134.26066,188.649121 C134.216656,191.157412 134.160025,193.666089 134.102629,196.175153 C133.990514,201.106936 133.874574,206.20599 133.865773,211.217149 C133.865008,211.562146 133.862329,211.924179 133.859268,212.300539 C133.82483,216.65423 133.772408,223.234329 137.286978,226.209971 C139.17264,227.806015 141.093122,228.665215 143.268826,229.102752 C144.123267,228.77518 144.993778,228.446833 145.845157,228.167274 C151.514769,226.303287 158.101574,226.316451 164.892328,228.203283 C166.256448,228.582354 168.461233,229.326554 170.554669,230.596187 C171.129781,229.998349 171.805145,229.493825 172.53867,229.1376 C177.382922,226.785739 184.37265,227.747935 189.476334,228.449931 L189.54674,228.459611 C189.968412,228.219546 199.424652,228.286145 199.692119,228.291565 L199.693267,228.291565 C199.95576,228.297373 200.230114,228.305892 200.5148,228.31441 C202.726855,228.382558 205.481498,228.46658 207.404276,227.612414 C210.9441,226.037667 210.765789,221.155058 210.647552,217.92425 L210.636838,217.637334 C210.478807,213.178324 210.551892,208.634517 210.677781,204.154598 C208.252594,203.17614 205.543486,202.236015 201.914888,201.187087 C200.986215,200.918369 200.253073,200.283746 199.735358,199.299868 C198.825051,197.569852 198.783726,194.96786 199.270065,193.451966 C199.315599,193.311025 199.434601,193.218871 199.569673,193.194865 C199.896833,192.350379 200.733671,191.729308 201.545639,191.51867 C202.617037,191.240273 203.715603,191.464462 204.684836,191.662322 L211.094861,192.972224 C211.109401,191.742085 211.130064,190.511947 211.155701,189.281808 C211.169476,188.610789 211.097922,187.825544 211.205827,187.134003 C208.510112,187.890981 205.766949,188.199194 203.254519,187.163817 C201.009939,186.239181 198.819312,184.047234 198.986527,181.234604 C199.113946,179.074795 200.541585,177.156212 203.2285,175.531903 C205.726772,174.021818 208.557942,173.037939 211.296131,172.086586 L211.622907,171.973136 C211.794714,171.91312 211.967286,171.853491 212.139857,171.793474 C210.869102,170.717829 209.05576,170.348052 207.407337,170.135866 L206.79664,170.059587 C204.964931,169.834623 203.070468,169.602302 201.492834,168.558407 C199.894154,167.501348 198.797501,165.658657 198.55988,163.628948 C198.378508,162.080917 198.649036,159.287259 200.137897,157.937863 C201.342073,156.84673 203.174547,156.935012 204.644276,157.005095 L205.07054,157.024455 C207.514477,157.120868 209.914792,157.229672 212.290618,157.42637 C212.066773,156.002631 212.052615,145.321296 212.055676,145.078908 L212.062181,144.513981 C212.247762,128.419959 212.439466,111.778047 211.452249,95.5159791 C211.444213,95.3835563 211.4335,95.2534567 211.420872,95.1256802 C210.918463,90.2310686 206.929799,89.1844634 200.210217,89.0315189 C189.12966,88.7771277 177.845919,89.006738 166.933725,89.2262812 C160.473957,89.3563808 153.794552,89.4907397 147.223817,89.5248134 C144.142399,89.5406886 140.157944,90.1969948 138.203407,91.6269293 C134.678505,94.2053027 134.768426,98.0955142 134.856051,101.857562 C134.868679,102.413583 134.881689,102.966507 134.883219,103.513235 C134.898525,108.853128 134.996099,114.267364 135.172114,119.604159 C135.383715,126.020859 135.259357,132.490219 135.138442,138.74623 C135.116631,139.911319 135.093672,141.078344 135.073392,142.247692 L134.737432,161.416479 C134.785263,161.563229 134.827736,161.70688 134.863704,161.842788 C135.500804,164.230658 135.38869,166.780379 134.603125,169.102812 L134.554529,171.8895 C135.127728,172.08736 135.656539,172.3917 136.110353,172.843564 Z" id="Fill-55" fill="#F687B3"></path>
76
- <path d="M170.439877,106.053663 C170.370236,106.462547 170.25353,106.991464 169.962722,107.459978 C169.477914,108.242124 168.551919,108.764459 167.545953,108.823314 C167.45718,108.829122 167.368789,108.83067 167.280016,108.828734 C166.453126,108.812472 165.600982,108.488384 164.942837,107.938946 C164.67537,107.716305 164.480222,107.490567 164.347445,107.249727 C164.177169,106.941515 164.092223,106.574836 164.093753,106.159756 C164.099493,104.840948 165.045768,103.575961 166.344456,103.151976 C166.689982,103.038913 167.056936,102.985867 167.435369,102.993224 C168.478452,103.013745 169.482888,103.505104 170.057234,104.27486 C170.27955,104.573005 170.418449,104.878119 170.470488,105.181298 C170.522145,105.484864 170.486559,105.779911 170.439877,106.053663 Z M172.199649,102.120085 C171.354775,101.546639 170.300978,101.392146 169.204325,101.272888 C166.897757,101.021982 164.551394,100.87136 162.22952,100.825671 C160.376766,100.788886 158.511767,100.825671 156.650212,100.920535 C158.309349,101.057604 159.869382,101.863757 160.78581,103.093121 C161.160034,103.594934 161.392298,104.102555 161.477245,104.602819 C161.567549,105.130575 161.495612,105.645165 161.420997,106.086188 C161.297786,106.807931 161.092689,107.740312 160.591428,108.548013 C159.76339,109.881922 158.179633,110.773259 156.457743,110.874319 C156.305451,110.883224 156.152777,110.885935 156.000485,110.882837 C154.569403,110.854572 153.093168,110.291581 151.949451,109.338291 C151.492193,108.956124 151.16312,108.576279 150.943484,108.178236 C150.661859,107.666743 150.520281,107.05148 150.52296,106.350646 C150.532526,104.075838 152.162965,101.894733 154.401423,101.163697 C154.58356,101.104456 154.769907,101.057991 154.95855,101.017722 C154.117119,101.078513 153.277219,101.151307 152.440763,101.238814 C150.304088,101.461842 147.725844,102.00586 146.744749,104.250853 C146.566055,104.658576 146.455089,105.108891 146.413764,105.589408 C146.332261,106.550442 146.545775,107.576913 147.000737,108.405523 C148.045733,110.309779 150.375643,111.233254 154.334078,111.311469 C155.84475,111.341284 157.420853,111.247581 158.811376,111.165494 C160.116186,111.088441 161.340259,111.019519 162.31064,111.05398 C162.700935,111.069468 163.128347,111.095024 163.582543,111.122128 C164.281631,111.163945 165.074466,111.211571 165.872658,111.227059 C168.901272,111.287075 172.526043,110.946338 173.680475,107.75154 C174.408643,105.736545 173.730218,103.157784 172.199649,102.120085 Z" id="Fill-56" fill="#4B5668"></path>
77
- <path d="M169.246033,104.81849 C168.851528,104.288799 168.150528,103.950772 167.417385,103.936446 C167.15604,103.931412 166.904261,103.967422 166.669702,104.044088 C165.7571,104.341846 165.091685,105.234345 165.087858,106.165951 C165.08671,106.425376 165.133393,106.64337 165.227905,106.813739 C165.302903,106.949259 165.423818,107.085941 165.59792,107.230755 C166.132854,107.677198 166.830411,107.922683 167.482051,107.88164 C168.153206,107.842533 168.789923,107.488243 169.105986,106.979461 C169.311082,106.648404 169.39909,106.248425 169.458399,105.900718 C169.496663,105.67498 169.516561,105.491446 169.489393,105.329983 C169.462226,105.170844 169.379957,104.998152 169.246033,104.81849 Z" id="Fill-57" fill="#FFFFFF"></path>
78
- <path d="M126.904361,185.240588 C126.656026,185.316093 126.405013,185.392759 126.153999,185.469812 C125.342415,185.928645 124.626108,186.580305 123.82562,187.403882 C121.68091,189.608994 119.786448,192.059978 118.179733,194.691785 C120.243323,194.687526 122.249899,194.735152 124.152397,194.780454 C124.587844,194.790909 125.06079,194.804073 125.543685,194.848989 C126.133337,191.007952 127.597326,187.450346 129.903129,184.256323 C128.907876,184.625326 127.89617,184.939733 126.904361,185.240588 Z" id="Fill-58" fill="#FED7D8"></path>
79
- <path d="M268.636617,244.510654 C266.869575,240.83108 265.344363,236.979588 263.869659,233.255099 C262.98499,231.021335 262.070092,228.710904 261.114252,226.465524 C258.879238,221.218559 256.104698,216.497414 253.167153,211.498645 C252.766909,210.817558 252.365899,210.134922 251.966421,209.45035 C248.642407,203.761588 246.563511,197.912138 244.378623,191.403672 C244.219827,190.930124 244.061413,190.450769 243.902616,189.969478 C242.224347,184.887461 240.488681,179.632752 236.444534,176.350446 C232.10537,172.829238 226.581162,170.823148 220.888975,170.701567 C218.267109,170.643099 215.681595,171.40395 213.160364,172.260826 L213.146589,172.279412 C213.060112,172.357239 212.948763,172.383956 212.842006,172.369243 C212.517525,172.480757 212.19381,172.593432 211.871242,172.705333 L211.544848,172.818783 C208.843776,173.757359 206.050487,174.727686 203.621091,176.196728 C201.164527,177.682032 199.862012,179.392687 199.750281,181.280681 C199.606024,183.710756 201.551378,185.626241 203.543032,186.44672 C207.270733,187.981586 211.714742,186.275577 215.63606,184.770139 C216.175203,184.563373 216.691005,184.368224 217.197624,184.181206 C217.212547,184.145583 217.227853,184.109573 217.254255,184.078597 C217.923496,183.287932 218.352438,182.283145 218.462257,181.248543 C218.484833,181.035969 218.665823,180.880315 218.883929,180.905095 C219.093617,180.92794 219.245908,181.118831 219.22295,181.331791 C219.127672,182.230098 218.821558,183.109432 218.345934,183.87764 C218.442359,183.919458 218.522714,183.997285 218.559065,184.105701 C218.586998,184.188175 218.579345,184.271424 218.554474,184.348477 C219.998566,185.283568 221.621735,185.968914 223.290055,186.34024 L223.569384,186.400644 C224.157506,186.526484 224.765907,186.656196 225.31232,186.988802 C225.907329,187.350836 226.330149,187.894853 226.655777,188.485335 C226.739576,188.43345 226.842507,188.413703 226.946586,188.439258 C229.08173,188.965078 231.438807,188.525217 233.24947,187.262941 C233.424338,187.14136 233.662341,187.187049 233.782109,187.362452 C233.901876,187.538628 233.857489,187.779855 233.683769,187.901049 C232.248095,188.900415 230.500568,189.430494 228.757632,189.430494 C228.174102,189.430494 227.591721,189.366993 227.021201,189.246186 C227.077449,189.378996 227.130637,189.511806 227.180763,189.642293 C228.096043,192.021258 228.607636,194.517544 228.713245,197.064942 C233.48403,198.629622 238.063111,200.740257 242.355593,203.377872 C242.536583,203.488611 242.593979,203.72674 242.484161,203.909499 C242.412607,204.029919 242.286335,204.09613 242.157002,204.09613 C242.089274,204.09613 242.020781,204.077932 241.958793,204.039599 C237.686591,201.414761 233.12779,199.317292 228.377285,197.768099 L228.356623,197.772746 L228.345526,197.772746 C228.249483,197.772746 228.163006,197.734413 228.096043,197.674784 C227.224001,197.394837 226.34775,197.127281 225.463464,196.884893 C222.786115,196.152308 220.014637,195.585833 217.33461,195.037943 L204.53331,192.421624 C203.644814,192.240026 202.637317,192.034035 201.735429,192.269066 C200.955987,192.471186 200.165065,193.170084 200.190319,193.989402 C200.197207,194.198491 200.037262,194.372344 199.832166,194.385896 C199.591867,195.756201 199.7212,197.626384 200.410721,198.935899 C200.827036,199.726951 201.404061,200.233797 202.124959,200.442112 C209.811096,202.66426 213.400664,204.398534 218.835333,207.023372 C220.796375,207.970467 222.546199,208.962476 224.105466,210.000563 C224.160184,209.969587 224.219494,209.947129 224.286456,209.946742 C226.042402,209.93319 227.775389,209.122003 228.923316,207.777253 C229.061067,207.615016 229.303662,207.597592 229.462842,207.737371 C229.622786,207.877151 229.64077,208.121475 229.502254,208.283325 C228.383408,209.595163 226.767892,210.452814 225.070873,210.666936 C228.628299,213.218593 231.047746,216.052907 232.389673,219.240348 C233.129321,220.99708 233.546783,222.88004 233.950854,224.70066 C234.031974,225.066566 234.113094,225.431697 234.19651,225.795666 C235.433593,231.193252 237.258032,236.46461 239.618935,241.464154 C239.710004,241.65698 239.629266,241.888139 239.43871,241.980293 C239.385523,242.006235 239.329275,242.018239 239.274174,242.018239 C239.131066,242.018239 238.99408,241.936926 238.928265,241.798308 C236.543638,236.748042 234.700833,231.423249 233.451123,225.971068 C233.367324,225.604775 233.285821,225.237709 233.203936,224.870642 C232.807901,223.083708 232.397709,221.235596 231.685994,219.543526 C229.718447,214.871555 225.530426,211.114928 218.505495,207.72227 C216.630931,206.816607 214.977533,206.018198 213.298116,205.268963 C214.074114,209.155303 214.684429,213.104756 215.116432,217.061179 C219.186599,218.760605 222.511378,222.054527 224.263115,226.147245 C224.346913,226.343556 224.257758,226.57123 224.064141,226.656414 C224.014397,226.678097 223.962741,226.688165 223.912232,226.688165 C223.764149,226.688165 223.623337,226.601044 223.560583,226.45507 C221.942772,222.674436 218.919897,219.605478 215.206353,217.939351 C215.313876,218.985956 215.412597,220.032174 215.495248,221.078005 C215.711824,223.82636 215.672411,226.893381 213.733945,228.805769 C212.284879,230.233767 210.146673,230.597349 208.44468,230.754166 C203.336405,231.223454 198.20938,230.481189 193.2511,229.76293 C192.259291,229.619279 191.269013,229.475627 190.2795,229.341655 L189.37302,229.217364 C184.364997,228.528533 177.506516,227.584923 172.870038,229.835724 C172.265081,230.12961 171.703744,230.535784 171.216641,231.017075 C173.484179,232.540325 175.493434,234.723366 175.972885,237.785354 C176.102218,238.610093 176.068546,239.333385 175.874929,239.94555 C176.094565,240.060162 176.305784,240.175161 176.508202,240.287836 C177.237135,240.693623 177.866582,241.044427 178.758904,241.163298 C194.51229,243.259606 198.821608,244.955935 207.593301,250.586229 C210.395773,252.385166 213.154625,254.529874 215.822407,256.604499 C220.864103,260.524912 226.077987,264.578523 231.983307,266.657406 C232.543495,266.854492 233.115163,267.042672 233.691805,267.2324 C236.995156,268.321598 240.411005,269.447579 242.324982,272.369013 C243.005702,273.4071 243.429287,274.59968 243.839097,275.753152 C244.40426,277.343775 244.937664,278.846504 246.081764,279.915566 C246.733021,280.524247 247.526622,280.934293 248.366904,281.368346 C248.454529,281.413648 248.543685,281.462048 248.631693,281.508125 C248.678758,281.484119 248.730032,281.468631 248.785898,281.466308 C251.661072,281.342403 253.978354,279.222863 256.295636,276.873326 C256.44525,276.721156 256.68708,276.72193 256.836693,276.872551 C256.986689,277.02356 256.986689,277.268658 256.837458,277.420054 C254.737899,279.549274 252.4673,281.637063 249.737529,282.131132 C249.797221,282.168303 249.859209,282.200054 249.917754,282.238387 C250.898083,282.879979 251.724591,283.6962 252.463091,284.583665 L252.535027,284.5705 C254.298243,284.627806 256.089392,283.972662 257.426727,282.79557 C257.585906,282.656177 257.827354,282.672052 257.966636,282.833903 C258.105152,282.995365 258.088698,283.240077 257.929137,283.380244 C256.584531,284.562756 254.833177,285.253911 253.054273,285.332125 C253.487807,285.907506 253.895704,286.499537 254.286381,287.086534 C265.138118,303.373383 278.438384,340.104847 283.006751,358.70987 C283.769357,355.403171 284.44166,352.178171 285.056949,349.157614 L288.763222,330.978125 C289.675824,326.502466 290.61942,321.873861 290.795819,317.242159 C290.97566,312.510946 290.14877,308.126279 289.228515,304.092029 C288.657996,301.591095 287.997555,299.063832 287.359308,296.619818 C286.476169,293.238389 285.563184,289.742735 284.869071,286.251341 C284.240772,283.089455 283.581097,280.308576 282.943232,277.618688 C281.750536,272.590105 280.720845,268.216279 280.27698,263.033977 C279.750847,262.349018 279.223949,261.664833 278.700877,260.976389 C274.812465,255.859137 271.426463,250.31906 268.636617,244.510654 Z" id="Fill-59" fill="#FED7D8"></path>
80
- <path d="M123.934674,186.211689 C123.706619,186.296099 123.478947,186.380509 123.255101,186.471889 C118.792343,188.292896 113.759448,190.973878 108.699768,194.22482 C108.23371,194.524901 107.795585,194.911715 107.331439,195.3206 C107.272895,195.372485 107.213586,195.42437 107.154276,195.476255 C110.536834,194.917911 113.971432,194.730505 117.277079,194.697593 C118.96568,191.859407 120.983353,189.222179 123.279973,186.861026 C123.491574,186.643419 123.709297,186.425037 123.934674,186.211689 Z" id="Fill-60" fill="#FED7D8"></path>
81
- <path d="M107.040249,194.552005 C105.950101,194.40332 104.898599,193.929773 104.077832,193.192929 C103.9198,193.051213 103.90526,192.806502 104.045307,192.646588 C104.185737,192.485512 104.427184,192.47196 104.585215,192.613676 C105.446161,193.385755 106.599445,193.830262 107.75005,193.832585 C107.795967,193.832585 107.838823,193.844201 107.879383,193.859302 C108.014073,193.758243 108.150294,193.661055 108.289576,193.571612 C111.818304,191.304161 115.331343,189.320141 118.656505,187.698155 C117.979611,187.130131 117.405265,186.432007 116.995837,185.645988 C116.897115,185.457034 116.969052,185.222777 117.156164,185.123266 C117.342894,185.024143 117.574392,185.096162 117.673114,185.285117 C118.085985,186.078105 118.680611,186.779326 119.393474,187.313277 L119.40878,187.330314 C120.626348,186.751835 121.817131,186.223693 122.968884,185.753243 C123.917837,185.366429 124.899315,185.046988 125.868931,184.748068 C125.950816,184.703153 126.031554,184.656689 126.115352,184.615645 C126.199916,184.574602 126.290603,184.572279 126.374401,184.593575 C126.477715,184.562212 126.581793,184.530074 126.684341,184.498711 C128.201901,184.038716 129.771117,183.562458 131.21674,182.879822 C134.194463,181.47312 136.176168,179.192891 136.517102,176.779853 C136.707275,175.437039 136.354479,174.171665 135.573889,173.395326 C134.872888,172.697589 133.912455,172.424225 132.880852,172.360724 C132.763763,172.422676 132.620655,172.421128 132.502801,172.346785 C131.847335,172.336718 131.173502,172.398283 130.525305,172.481531 C119.191439,173.935085 108.022109,178.202043 98.2241689,184.821249 C96.3893988,186.061068 94.4907275,187.456929 93.0370692,189.256253 C91.5550954,191.090813 90.5659649,193.302507 89.6097417,195.441407 C88.4962524,197.931886 87.1409332,200.450243 85.8303832,202.886513 C84.7704639,204.855819 83.683377,206.879333 82.7214141,208.891231 C83.0872202,208.607413 83.4534089,208.327466 83.8188323,208.048681 L89.3682943,203.799534 C91.5665746,202.115596 93.8394702,200.374351 96.3224364,199.019534 C99.2182737,197.438591 102.34714,196.420252 105.550239,195.770141 C105.982625,195.480127 106.394731,195.120417 106.828647,194.737475 C106.898288,194.675523 106.96946,194.613958 107.040249,194.552005 Z" id="Fill-61" fill="#FED7D8"></path>
82
- <path d="M329.906076,62.9775176 C329.62866,62.074177 328.750878,61.3679218 327.818762,61.2978384 C327.765957,61.2939663 327.713535,61.2920303 327.66073,61.2920303 C326.774531,61.2920303 325.890244,61.8499874 325.509898,62.6483965 C325.188478,63.32445 325.183504,64.1604176 325.178912,64.8984233 L325.149831,69.9386226 C325.14103,71.5091111 325.131464,73.1330334 325.702367,74.5931695 C326.060903,75.5100622 326.884349,76.4974255 327.844016,76.4974255 C327.930493,76.4974255 328.017353,76.4892943 328.103448,76.4730318 C328.642208,76.3708107 329.143087,75.929014 329.442696,75.2920679 C329.729295,74.6833874 329.819598,73.9810043 329.894214,73.2546146 C330.204154,70.2309596 330.263464,67.1596789 330.070612,64.1255695 C330.043444,63.7039073 330.012833,63.326386 329.906076,62.9775176 Z" id="Fill-62" fill="#E6E6E6"></path>
83
- <path d="M785.30251,304.280596 C785.19537,305.108819 785.09971,306.371095 784.322946,306.892656 C782.662278,308.007795 780.74524,306.415624 780.615141,304.632174 C780.553919,303.733093 780.607489,301.446282 781.522004,300.784942 C781.904646,299.217164 784.296161,299.254723 784.965785,300.810497 C785.444088,301.917119 785.459394,303.093049 785.30251,304.280596 Z M787.407043,309.941091 C788.474615,307.718943 787.797338,304.233744 787.766727,301.894661 C787.732289,299.129269 787.640455,296.354972 787.732289,293.590355 C787.732289,293.545052 787.743768,293.507106 787.759074,293.471871 C782.57427,293.306149 777.427731,292.658361 772.373025,291.299672 C772.219968,292.714118 772.457207,294.914583 772.457207,295.462086 C772.457207,296.94739 772.45338,298.432307 772.449554,299.917611 C772.445727,301.650337 772.441901,303.383063 772.438074,305.115789 C772.430422,307.030112 772.388331,309.352545 774.768366,309.694057 C778.740194,310.26363 782.865079,310.393343 786.951699,310.344942 C786.98231,310.091713 787.185111,309.958515 787.407043,309.941091 Z" id="Fill-63" fill="#FC8181"></path>
84
- <path d="M783.779594,321.782869 C783.618884,323.724296 783.52705,325.674629 783.584446,327.623026 C783.615058,328.596063 783.641842,329.573359 783.737503,330.542911 C783.760462,331.074151 783.844643,331.593001 783.9977,332.099848 C784.812728,332.238466 785.616277,332.376697 786.427479,332.514927 C787.590712,325.557307 787.640455,318.340262 787.024401,311.316818 C786.423652,311.312558 785.819077,311.309074 785.218329,311.297845 C785.459394,314.748583 784.062749,318.341424 783.779594,321.782869 Z" id="Fill-64" fill="#FED7D8"></path>
85
- <path d="M783.833164,300.889099 C783.462001,300.994805 783.090837,301.100511 782.719674,301.206604 C782.654625,301.286755 782.547485,301.332832 782.428866,301.290627 L782.42504,301.29024 L782.405908,301.296048 C782.386776,301.699124 781.99648,301.832709 781.724804,301.70532 C781.368947,302.452231 781.353641,303.905397 781.384253,304.240714 C781.479913,305.172707 782.218413,306.833027 783.496438,306.310305 C784.410954,305.935881 784.430086,304.111776 784.433912,303.323821 C784.441565,302.864213 784.476003,302.34033 784.345904,301.895048 C784.280855,301.505137 784.10484,301.16982 783.833164,300.889099 Z" id="Fill-65" fill="#E6E6E6"></path>
86
- <path d="M230.559877,171.963456 C229.194992,167.540068 225.693432,163.460128 220.62916,160.428729 C219.886834,159.984609 218.899617,159.428588 217.84582,159.070814 C216.656568,158.666963 215.411832,158.510921 214.134572,158.374239 C211.155701,158.055959 208.133209,157.920439 205.040694,157.798083 L204.608308,157.778723 C203.27633,157.714835 201.618723,157.635071 200.648342,158.514793 C199.522608,159.535068 199.123895,161.864084 199.320191,163.537568 C199.531027,165.342701 200.50026,166.97669 201.911445,167.910232 C203.339849,168.855004 205.144007,169.076483 206.888856,169.290992 L207.503763,169.367658 C209.411235,169.613144 211.532221,170.065395 212.965982,171.51043 C215.535808,170.640389 218.179101,169.872181 220.905428,169.927164 C224.2436,169.998796 227.525906,170.702341 230.559877,171.963456 Z" id="Fill-66" fill="#FED7D8"></path>
87
- <path d="M211.84484,188.80284 C211.869329,190.239357 211.891522,191.6751 211.902619,193.111616 L211.897645,193.136397 L217.48231,194.277867 C218.534959,194.493151 219.602148,194.71463 220.671634,194.944627 C219.971781,191.628636 219.144125,188.299091 218.205504,185.041954 C218.073492,184.957544 217.94569,184.867714 217.816739,184.779432 C217.202598,185.000911 216.572769,185.238652 215.907354,185.494592 C214.584942,186.001826 213.204751,186.529969 211.806193,186.956277 C211.9868,187.485969 211.837952,188.388922 211.84484,188.80284 Z" id="Fill-67" fill="#FED7D8"></path>
88
- <path d="M776.505563,291.17538 C778.353725,291.502953 780.201888,291.773993 782.065356,291.936618 C785.432609,292.230117 788.799861,292.339307 792.174767,292.241345 C795.564978,292.142996 798.955189,291.902157 802.330095,291.527346 C804.201216,291.319806 806.068511,291.091358 807.931979,290.829222 C808.64752,290.728163 809.370714,290.641042 810.082429,290.519848 C810.304361,290.490808 810.522467,290.44628 810.740574,290.39517 C808.096515,271.235287 806.110601,252.651561 806.585078,240.771451 C806.608036,240.184453 806.634821,239.594359 806.661606,239.002715 C807.005984,231.022496 807.354189,222.770075 803.611947,215.910416 C802.640035,214.12929 801.392621,212.470133 800.187298,210.865958 L787.644281,194.167127 C786.151976,192.175364 784.556358,190.499944 783.018135,188.880281 C782.229892,188.047411 781.449302,187.226931 780.699323,186.383219 C780.710802,186.380896 778.422601,183.113692 777.703233,182.070571 C776.088483,182.074056 774.994125,182.076767 774.936729,182.076379 L774.879333,182.05005 C774.343633,183.055611 773.746711,184.022066 773.042649,184.887461 L775.009431,187.31289 C775.23519,187.587803 775.487734,187.899887 775.656097,188.271213 C775.881856,188.770703 775.927773,189.315882 775.966037,189.796786 L776.214754,192.804179 C778.101181,194.831565 780.236326,196.614239 782.562791,198.099931 C783.232415,198.528176 783.932651,198.940545 784.609928,199.339362 C785.845862,200.065752 787.120061,200.81731 788.290947,201.705937 C792.144155,204.635502 794.761429,209.007004 797.064936,212.863917 C797.175902,213.046676 797.118506,213.284804 796.934838,213.395544 C796.873615,213.43349 796.804739,213.451688 796.73969,213.451688 C796.609592,213.451688 796.48332,213.38509 796.410618,213.26467 C794.137722,209.468161 791.562539,205.164419 787.82795,202.325072 C786.695328,201.463549 785.440262,200.723994 784.223459,200.008833 C783.542355,199.606531 782.834467,199.190677 782.153364,198.755075 C779.815419,197.262027 777.668795,195.475093 775.767063,193.446158 C775.617832,193.410536 775.506866,193.295924 775.483908,193.143754 C775.372941,193.018688 775.361462,192.846771 775.437991,192.708927 L775.204579,189.860287 C775.170141,189.42275 775.131877,188.970499 774.959688,188.594139 C774.833416,188.314192 774.622962,188.055155 774.420162,187.804635 L772.246753,185.129074 C772.131961,184.9831 772.135787,184.7713 772.254406,184.628423 C773.666356,182.990949 774.645921,180.879927 775.594874,178.838215 C776.214754,177.49695 776.86142,176.110382 777.622878,174.864755 C778.85116,172.860988 780.458258,171.030688 782.011786,169.260403 C784.877777,165.997458 787.586885,162.915723 788.099626,158.849722 C788.267988,157.538271 788.130237,156.429327 787.690199,155.55309 C787.181284,154.536299 786.197893,153.854051 785.229808,153.854051 L785.225982,153.854051 C783.58062,153.857536 782.516874,155.507013 781.476087,157.101895 C781.349815,157.300142 781.223543,157.496066 781.093444,157.685408 C779.023349,160.799281 775.927773,162.98116 772.939336,165.091407 C770.413896,166.874082 767.800449,168.71716 765.84132,171.104256 C764.984202,172.14544 764.234223,173.311691 763.511028,174.439608 L756.478062,185.412893 C756.363269,185.592554 756.126031,185.643665 755.950016,185.52673 C755.774,185.41057 755.72043,185.170892 755.835223,184.991618 L757.140033,182.958037 C756.826267,182.949905 756.508674,182.828711 756.252303,182.606458 C755.927057,182.331932 755.739562,181.948216 755.73191,181.554432 C755.73191,181.179234 755.862008,180.849338 756.015065,180.51712 C760.185866,171.286628 767.999423,164.037058 777.450689,160.62775 L777.49278,160.621942 C778.606269,159.609798 779.624098,158.507049 780.462085,157.252904 C780.58453,157.065886 780.710802,156.872672 780.8409,156.677135 C781.212064,156.101367 781.606185,155.500818 782.038571,154.957574 C782.019439,154.910723 782.00796,154.859225 782.011786,154.805792 C782.042397,153.662773 781.00161,152.721874 780.002914,152.41676 C778.832028,152.057824 777.527218,152.275818 776.402249,152.507752 C768.42033,154.155681 761.100382,158.08074 754.025325,161.876087 C752.590416,162.645069 751.10959,163.440381 749.969316,164.617085 C748.159417,166.487655 747.390306,169.141145 746.644154,171.707516 C746.452833,172.370017 746.250032,173.055363 746.035752,173.71709 C744.899305,177.23404 743.227158,180.341718 741.065228,182.953778 C740.996353,183.045157 740.88156,183.092396 740.77442,183.092396 C740.686412,183.092396 740.598405,183.062968 740.529529,183.002178 L740.502744,182.97004 C740.364993,183.007211 740.219589,183.027733 740.070358,183.027733 C739.668584,183.027733 739.217066,182.899569 738.708151,182.642855 C737.085748,181.827409 735.685277,180.514022 734.747803,178.945082 C734.59092,178.683334 734.453169,178.413455 734.319244,178.14164 C733.553959,177.051668 733.048871,175.739056 732.719799,174.346293 L731.39203,171.103482 C731.208361,171.283143 731.024693,171.465128 730.837198,171.636658 C730.684141,171.781471 730.443077,171.772178 730.297673,171.614587 C730.156095,171.457384 730.163748,171.212285 730.320631,171.067472 C731.430294,170.037904 732.543783,168.831772 733.622835,167.665521 C734.717192,166.488042 735.84216,165.270681 736.970955,164.221753 C737.889297,163.3672 738.845903,162.89946 739.859905,162.40423 C740.127755,162.271807 740.407083,162.135899 740.694065,161.988763 C741.302467,161.673581 741.952959,161.433903 742.576666,161.20197 C743.177414,160.977393 743.801121,160.745847 744.371258,160.450799 C746.839301,159.176133 748.572671,156.437845 748.683637,153.636444 C748.710422,153.013824 748.626241,152.612296 748.415788,152.334673 C748.121153,151.942438 747.661982,151.702373 747.252555,151.713215 C740.938956,151.938566 737.124012,152.184439 732.092265,154.614127 C726.918941,157.110801 723.46368,162.270258 720.685697,166.416023 C719.189565,168.647077 717.945978,170.681819 717.880928,172.993411 C717.827358,174.912768 718.615602,176.731065 719.491853,178.579952 C721.049207,181.840574 722.763445,185.069445 724.600128,188.176349 C724.707268,188.360269 724.649872,188.597624 724.47003,188.707589 C724.40498,188.74476 724.339931,188.762571 724.271056,188.762571 C724.140957,188.762571 724.018512,188.695198 723.941983,188.574392 C722.093821,185.446579 720.364277,182.197573 718.806923,178.916042 C717.915366,177.055153 717.058247,175.063002 717.115644,172.971728 C717.188346,170.454532 718.5429,168.228899 720.050511,165.981196 C721.309404,164.10172 722.709875,162.018577 724.343758,160.056241 L724.339931,160.055854 C724.144784,159.982286 724.04147,159.760032 724.114172,159.559075 C724.646045,158.087323 724.695789,155.567029 723.846323,154.061978 C723.440722,153.33946 722.859105,152.904246 722.132085,152.768338 C721.274966,152.609973 720.444632,153.245757 719.95485,153.894707 C719.64491,154.306689 719.403845,154.762425 719.143648,155.245265 C718.925542,155.65415 718.699783,156.076973 718.428107,156.47308 C717.678128,157.565762 716.736828,158.520988 715.826139,159.44485 C715.141209,160.137166 714.437147,160.852714 713.836399,161.604659 C712.286697,163.550733 711.796915,165.964933 711.318612,168.299757 C709.914315,175.186519 709.083981,183.232175 710.580112,184.622228 L712.34792,186.259315 C717.48298,191.027699 723.30297,196.432255 728.265842,201.194057 C732.138182,204.90964 736.599792,207.935231 740.835643,210.715337 C741.654498,211.253546 742.469526,211.784399 743.276901,212.31138 C751.756256,217.841777 759.757307,223.065122 766.572167,231.346584 C770.532516,236.157947 773.601307,242.58394 775.216058,249.440501 C776.543827,255.060727 776.092309,260.401395 775.614006,266.054921 C775.548957,266.859526 775.483908,267.670325 775.415032,268.487707 C774.844895,275.845306 774.40103,283.254016 774.071957,290.672793 C774.175271,290.696025 774.278584,290.722355 774.385724,290.7452 C775.089786,290.89737 775.793848,291.048765 776.505563,291.17538 Z" id="Fill-68" fill="#FED7D8"></path>
89
- <path d="M220.324194,189.638421 C221.659616,190.20025 223.068505,190.542923 224.511067,190.65676 C224.721138,190.67341 224.878786,190.859654 224.862715,191.073002 C224.846644,191.275508 224.67943,191.430001 224.481221,191.430001 L224.450992,191.42884 C223.078071,191.320423 221.733849,191.01376 220.448936,190.520078 C220.820482,192.04449 221.170982,193.573548 221.48934,195.099121 L221.489723,195.12003 C222.887133,195.428629 224.285691,195.760848 225.662821,196.137982 C226.424661,196.346296 227.181528,196.570099 227.934186,196.806291 C227.806383,194.445138 227.317366,192.131997 226.4679,189.923014 C226.138062,189.066137 225.696493,188.126013 224.917816,187.652853 C224.481604,187.387232 223.961593,187.276106 223.411353,187.158396 L223.125136,187.096444 C221.74992,186.790168 220.404932,186.277513 219.155222,185.598362 C219.530594,186.930335 219.890278,188.271213 220.228151,189.619448 L220.324194,189.638421 Z" id="Fill-69" fill="#FED7D8"></path>
90
- <path d="M317.424282,40.9159489 C317.905646,40.4029072 318.556138,40.1156038 319.255609,40.1066982 C320.5895,40.0896614 321.865995,40.0803685 323.116852,40.0714629 C326.450815,40.0470692 329.600344,40.0242243 333.164275,39.8627614 C334.551736,39.7973244 335.706934,40.8652256 335.800298,42.2351438 C336.015726,45.4260697 336.049781,48.4009373 336.082688,51.277843 C336.092255,52.1358811 336.102203,52.9950808 336.116744,53.8624117 C336.139702,55.247818 335.046493,56.4152299 333.680842,56.4651789 C328.894752,56.6398067 324.312992,56.7730039 319.674219,56.8717403 L319.620649,56.8721275 C318.279105,56.8721275 317.185513,55.8096471 317.132326,54.4532809 C317.055415,52.5153384 316.989983,50.5324805 316.924551,48.5492354 C316.861033,46.6194241 316.797131,44.69 316.722899,42.8020065 C316.695349,42.0973001 316.944449,41.4274419 317.424282,40.9159489 Z M330.655672,73.3343781 C330.573787,74.130464 330.472386,74.9048666 330.13413,75.6246738 C329.729295,76.4846479 329.022937,77.0863587 328.244643,77.2342696 C328.112248,77.2594377 327.977558,77.2718281 327.844016,77.2718281 L327.843633,77.2718281 C326.519308,77.2718281 325.456328,76.0695681 324.990652,74.8777625 C324.365414,73.2782339 324.375746,71.5017543 324.384547,69.9343634 L324.413627,64.8937769 C324.418602,64.0744589 324.424341,63.145563 324.820376,62.3123058 C325.362198,61.1743211 326.609612,60.4289586 327.875393,60.525759 C329.128929,60.6194617 330.264612,61.5332567 330.636923,62.7479072 C330.768552,63.1780879 330.805668,63.6214334 330.834366,64.0760077 C331.029896,67.1527093 330.969439,70.2677438 330.655672,73.3343781 Z M302.016805,89.6386506 C302.08989,91.7609009 300.956886,93.9811132 298.943039,95.7537207 L298.961406,106.539213 C298.963319,107.739537 298.958728,108.940248 298.955667,110.14096 C299.309611,111.196858 299.312672,112.392535 298.970207,113.397323 L298.948779,113.453467 C298.938448,116.777203 298.934621,120.179153 298.990487,123.532317 C298.994696,123.791742 298.997757,124.064331 299.000818,124.347375 C299.036404,127.625034 299.089591,132.578501 301.642199,134.766188 C304.084605,136.858624 306.569484,137.19394 310.030867,137.068874 C310.18775,137.058807 311.106857,137.15522 311.326111,137.312811 C312.902215,136.661151 314.482145,135.757036 316.093835,134.833561 C318.151303,133.654533 320.278412,132.435623 322.410877,131.801775 C328.425632,130.014066 337.427294,129.409258 343.00201,133.588322 C343.586688,134.026634 344.270469,134.723983 344.858973,135.539042 C345.134476,135.413589 346.100265,135.403909 346.267862,135.403909 L346.269393,135.403909 C346.456123,135.404683 346.652801,135.406619 346.855984,135.409329 C348.437827,135.427528 350.407287,135.449986 351.769494,134.778191 C354.277715,133.540309 354.08295,129.867704 353.953617,127.437629 L353.942137,127.221958 C353.710639,122.772628 353.766887,118.20404 353.821222,113.786073 L353.821605,113.715215 C353.822753,113.641259 353.851451,113.576597 353.890863,113.520065 C353.748903,109.510209 353.956295,72.7710002 353.954765,72.5863052 L353.951704,72.1607709 C353.862165,60.0440805 353.769566,47.5150208 352.839745,35.2891396 C352.832092,35.1896289 352.822526,35.0916669 352.811812,34.9960282 C352.385166,31.3191646 349.520322,30.590839 344.716248,30.5757381 C336.794021,30.5494084 328.73366,30.8901456 320.93847,31.2177179 C316.323803,31.4117057 311.552635,31.612276 306.857231,31.7357932 C304.655124,31.7934862 301.817066,32.3467969 300.439936,33.4522566 C297.956587,35.4455689 298.074441,38.3720364 298.188851,41.2024779 C298.205688,41.6210425 298.222524,42.0368967 298.231325,42.4484917 C298.315889,46.4676412 298.460145,50.5413861 298.659884,54.5558893 C298.899418,59.3823535 298.899801,64.2537331 298.899801,68.9644242 C298.900183,69.8418223 298.900183,70.7203821 298.901714,71.6008778 L298.925821,85.6260835 C299.419812,85.7197862 299.894288,85.8994476 300.331649,86.202239 C301.33685,86.8984269 301.966679,88.1827737 302.016805,89.6386506 Z" id="Fill-70" fill="#F6E05E"></path>
91
- <path d="M296.502164,97.4616657 C295.707798,97.9251457 294.894301,98.3483567 294.094578,98.7576285 C293.900196,98.8571392 293.704283,98.9578115 293.507987,99.0592583 C292.849077,99.5970809 292.304577,100.28901 291.714925,101.160213 C290.170964,103.441215 288.882224,105.898008 287.872431,108.468637 C289.681947,108.138742 291.448989,107.86228 293.125728,107.600145 C293.504161,107.54129 293.915502,107.479338 294.339852,107.441005 C294.267533,103.981748 294.993788,100.631296 296.502164,97.4616657 Z" id="Fill-71" fill="#FFDAC7"></path>
92
- <path d="M282.560207,207.391213 L282.569008,207.410186 L282.617986,207.388116 C282.571687,207.338941 282.524239,207.289767 282.474878,207.241366 L282.468373,207.294413 C282.504341,207.316871 282.537249,207.346298 282.560207,207.391213 Z" id="Fill-72" fill="#FFFFFF"></path>
93
- <path d="M671.500849,306.632456 C671.240652,304.978332 670.980456,303.347053 670.693474,301.723131 C670.425624,301.736296 670.161601,301.749848 669.893751,301.763787 C667.020107,301.913634 664.046976,302.069289 661.280472,301.085798 C659.960356,300.615735 659.191245,299.87773 659.061147,298.951157 C658.957833,298.25342 659.256294,297.589757 659.566234,297.032962 C660.568757,295.218536 661.930964,293.625977 663.530409,292.343567 C661.617197,292.41365 659.715465,292.490703 657.840517,292.568531 L655.96557,292.645971 C652.755201,292.777619 649.548658,292.918948 646.342115,293.059889 C639.557866,293.358808 632.544032,293.667408 625.64499,293.874173 C625.53785,293.877271 625.426884,293.879981 625.315918,293.883079 L629.107903,325.290525 C630.1066,333.544883 631.135908,342.079574 630.271136,350.532566 C630.248178,350.690931 629.727784,356.971336 629.505851,359.317776 L677.110386,359.317776 C676.716264,353.885342 675.901236,338.676075 675.882104,338.517322 C674.604079,327.920397 673.127079,317.192597 671.500849,306.632456 Z" id="Fill-73" fill="#FED7D8"></path>
94
- <path d="M291.455877,100.189499 C291.320804,100.270811 291.183818,100.350187 291.051041,100.434597 C287.375379,102.767485 283.327405,105.955701 279.345246,109.654635 C278.980588,109.993823 278.653046,110.406192 278.30599,110.843343 L278.256629,110.905295 C281.129508,109.891602 284.100725,109.187283 286.985083,108.635134 C288.039646,105.84651 289.417158,103.184888 291.083566,100.722675 C291.203715,100.545337 291.328457,100.366837 291.455877,100.189499 Z" id="Fill-74" fill="#FFDAC7"></path>
95
- <path d="M320.280325,48.5155489 C320.329686,47.8445291 320.485804,47.1994517 320.655697,46.5431455 C321.038339,45.0582285 321.592405,44.2536242 322.772857,43.4691543 C323.726402,42.8353058 324.679181,42.4647542 325.60441,42.3675666 C325.816777,42.3454962 326.043301,42.3342673 326.277478,42.3342673 C327.558565,42.3342673 329.451114,42.6866205 330.569577,43.6790174 C331.776431,44.7500162 332.566971,46.3015319 332.684059,47.829041 C332.71467,48.2220503 332.705104,48.6231909 332.655361,49.0208466 C332.386746,51.1849147 331.356673,52.8498803 329.755315,53.70908 C328.889778,54.1733344 327.749503,54.4288872 326.54418,54.4288872 C325.069859,54.4288872 323.626532,54.0560124 322.584597,53.4062886 C321.062446,52.4560966 320.136451,50.4906628 320.280325,48.5155489 Z M319.467592,53.3276867 C319.500117,54.1528127 320.164767,54.7986645 320.98056,54.7986645 L320.98056,54.9922651 L321.013467,54.7982773 C324.766041,54.7181266 328.471167,54.6108718 332.341977,54.4695434 C333.176137,54.4393417 333.843848,53.7253425 333.830073,52.878146 C333.818594,52.1738268 333.810558,51.4757029 333.802523,50.7783533 C333.77612,48.4590175 333.74857,46.0606927 333.57485,43.4947096 C333.520133,42.6819741 332.842856,42.0446407 332.03395,42.0446407 L331.963926,42.0461895 C329.067706,42.1774508 326.512421,42.1964237 323.807522,42.2157837 C322.798111,42.2231405 321.768038,42.2304974 320.691665,42.2444366 C320.261958,42.2498574 319.862097,42.4264212 319.566697,42.7419903 C319.272062,43.0556233 319.119388,43.4664439 319.136607,43.8985606 C319.196299,45.4237465 319.247573,46.9818446 319.29923,48.5403298 C319.352034,50.1483768 319.405222,51.7564238 319.467592,53.3276867 Z" id="Fill-75" fill="#4B5668"></path>
96
- <path d="M319.288898,42.4752086 C319.656235,42.0837481 320.152905,41.8638177 320.687074,41.8572353 C321.763829,41.8432961 322.794668,41.8359392 323.804461,41.8285824 C326.506298,41.8092223 329.05814,41.7906367 331.946707,41.6597626 C332.997443,41.6051673 333.886321,42.4237108 333.956728,43.4683799 C334.131212,46.0452046 334.158763,48.4493375 334.185165,50.7737069 C334.193201,51.4706693 334.201236,52.1680188 334.212715,52.8715636 C334.229934,53.9282359 333.397304,54.8184117 332.355369,54.8567447 C328.483411,54.9976859 324.775607,55.1053279 321.021886,55.1854786 L320.98056,55.1858658 C319.958905,55.1858658 319.126275,54.3766151 319.08495,53.343562 C319.022962,51.7711375 318.969775,50.1623161 318.916587,48.5534947 C318.865313,46.9953966 318.813657,45.438073 318.753964,43.9136614 C318.732919,43.376226 318.923092,42.8655075 319.288898,42.4752086 Z M317.896846,54.4223048 C317.933962,55.3620424 318.691211,56.0977248 319.621032,56.0977248 L319.657766,56.0973376 C324.293478,55.9986013 328.870645,55.8657913 333.65291,55.6915507 C334.605689,55.6567026 335.36753,54.842031 335.351459,53.8751894 C335.337301,53.007084 335.32697,52.1463355 335.317404,51.2863615 C335.284879,48.4206846 335.250824,45.4570458 335.036544,42.2881904 C334.973791,41.3608432 334.201619,40.6344536 333.278685,40.6344536 L333.198713,40.6363896 C329.619859,40.7982397 326.463825,40.8214718 323.122592,40.8454783 C321.872882,40.8547711 320.597535,40.864064 319.265557,40.8811008 C318.774244,40.887296 318.317369,41.0886407 317.979496,41.4491251 C317.643154,41.8080607 317.468669,42.2773487 317.487418,42.7714176 C317.562033,44.6609599 317.625552,46.5919328 317.689453,48.523293 C317.754885,50.5049892 317.820317,52.4862983 317.896846,54.4223048 Z" id="Fill-76" fill="#FFFFFF"></path>
97
- <path d="M298.214871,85.5486432 L298.212575,84.198085 C298.098548,84.6565314 297.95697,85.1080081 297.785164,85.5494176 C297.92942,85.5432224 298.072528,85.5439968 298.214871,85.5486432 Z" id="Fill-77" fill="#FFFFFF"></path>
98
- <path d="M277.70945,110.35818 C277.744653,110.314039 277.780239,110.26951 277.815825,110.224982 C277.771438,110.226144 277.727052,110.23079 277.683048,110.23079 C276.75514,110.23079 275.823789,109.972914 275.034015,109.485041 C274.85379,109.373139 274.796777,109.135011 274.906978,108.952639 C275.017179,108.76988 275.252121,108.712961 275.433111,108.824088 C276.310892,109.36617 277.395301,109.57371 278.408538,109.392887 C278.446037,109.385917 278.481622,109.391338 278.517591,109.39521 C278.618608,109.287568 278.721539,109.183024 278.828296,109.0839 C281.590974,106.51753 284.384263,104.202453 287.07003,102.234309 C286.396197,101.838976 285.791239,101.318965 285.312936,100.697894 C285.183221,100.529462 285.212684,100.285912 285.379516,100.154651 C285.545966,100.023002 285.786265,100.053204 285.916746,100.222024 C286.404615,100.855485 287.039036,101.379368 287.749985,101.735981 C288.733759,101.032049 289.701461,100.376904 290.644675,99.7782911 C291.426413,99.281899 292.247946,98.8408767 293.061827,98.4199889 C293.126876,98.3673295 293.190777,98.3138958 293.258505,98.264334 C293.330441,98.2109002 293.41424,98.1934762 293.496891,98.1961866 C293.58069,98.1532072 293.665636,98.1094535 293.749052,98.0664741 C295.024016,97.4144271 296.342219,96.7399225 297.516931,95.902406 C299.930639,94.1824579 301.327284,91.8507316 301.252286,89.6657547 C301.210578,88.4549762 300.705107,87.3990782 299.899645,86.8415083 C299.177982,86.3416315 298.293313,86.2533496 297.376502,86.3606043 C297.277015,86.4326238 297.149595,86.4535326 297.029062,86.4101661 C296.449359,86.5065792 295.863916,86.6688166 295.304493,86.8457676 C285.472498,89.9553812 276.227094,95.5361136 268.567359,102.984318 C267.134364,104.377855 265.669991,105.918917 264.662111,107.748056 C263.63663,109.610107 263.105905,111.731195 262.592782,113.782588 C261.994329,116.173556 261.185423,118.628412 260.403302,121.002343 C259.78763,122.870202 259.16048,124.786849 258.63052,126.677166 C258.874646,126.407674 259.119537,126.140117 259.364045,125.873336 L263.625151,121.209109 C265.314517,119.359835 267.061662,117.447061 269.055993,115.842886 C271.381311,113.972704 274.000881,112.56484 276.744044,111.472158 C277.078856,111.14807 277.3865,110.764741 277.70945,110.35818 Z" id="Fill-78" fill="#FFDAC7"></path>
99
- <path d="M740.475959,326.873017 C739.217066,328.225124 737.41482,329.001076 735.581963,329.001076 C735.42508,329.001076 735.26437,328.995268 735.111313,328.983264 C734.897034,328.967776 734.736324,328.782307 734.75163,328.568959 C734.766935,328.355998 734.942951,328.19802 735.164883,328.211185 C736.928865,328.337413 738.704325,327.643161 739.921128,326.34139 C740.066532,326.186509 740.307596,326.179152 740.460653,326.325515 C740.617537,326.472651 740.621363,326.717749 740.475959,326.873017 Z M729.92651,296.806836 L729.838502,296.81729 C729.666313,296.81729 729.509429,296.698032 729.471165,296.520307 C728.70588,293.292597 725.893459,291.089809 722.83232,288.933485 C718.22148,285.686415 713.668036,282.816866 708.739603,283.375984 C708.020235,283.456909 707.57637,283.668321 707.423313,284.004025 C707.327652,284.196851 707.098067,284.278551 706.910572,284.186397 C706.719251,284.094243 706.638896,283.863084 706.726904,283.670257 C707.013886,283.068934 707.641419,282.72084 708.651595,282.606228 C713.851704,282.020005 718.535247,284.963123 723.268533,288.298087 C726.45977,290.54308 729.386984,292.847703 730.209665,296.340258 C730.259408,296.548186 730.136963,296.757274 729.92651,296.806836 Z M705.077715,295.509324 C705.043278,295.698279 704.886394,295.831089 704.698899,295.831089 L704.63385,295.825668 C704.427223,295.789271 704.285646,295.589088 704.320084,295.378838 C704.622371,293.608166 703.941268,291.712428 702.59054,290.548501 C702.42983,290.409883 702.410698,290.165559 702.548449,290.002935 C702.686201,289.839923 702.927265,289.819788 703.087975,289.958407 C704.64533,291.296187 705.422094,293.474969 705.077715,295.509324 Z M715.187126,277.729041 C717.865623,278.221948 720.69335,278.201813 723.364193,277.670186 C725.503164,277.245039 727.374285,276.529491 728.92016,275.543289 C729.096176,275.429452 729.333414,275.48366 729.448207,275.664096 C729.562999,275.844919 729.505603,276.084209 729.329587,276.198047 C727.703357,277.235746 725.744229,277.986917 723.513424,278.430262 C722.059383,278.719501 720.590036,278.863928 719.124516,278.863928 C717.762309,278.863928 716.403929,278.740023 715.049375,278.49144 C714.842748,278.453107 714.704997,278.251375 714.743261,278.041125 C714.785352,277.830487 714.980499,277.691869 715.187126,277.729041 Z M791.329127,357.741867 C790.070234,355.05469 783.664801,341.301299 781.368947,334.22326 C781.154667,333.577021 780.967172,332.911422 780.791157,332.26828 C780.263111,330.390354 779.712106,328.449314 778.571831,326.900896 C778.036132,326.171796 777.393293,325.551499 776.708363,324.895193 C776.191796,324.401124 775.659923,323.889631 775.18162,323.3309 C774.033693,321.983052 773.233971,320.393978 772.518429,318.791352 C772.315629,318.766571 772.135787,318.630663 772.135787,318.371238 C772.135787,318.227199 772.135787,318.082773 772.139613,317.938734 C772.08987,317.822574 772.040126,317.706414 771.990383,317.591028 C771.806715,317.176722 771.626873,316.763578 771.443204,316.353919 C770.379459,313.978439 769.109086,311.650972 767.884631,309.400558 L763.139865,300.670331 C761.268744,297.23934 759.3364,293.692189 757.235694,290.325473 C755.157946,286.990121 752.47945,283.99357 749.896614,281.095756 C746.4337,277.211352 742.852168,273.194913 740.659627,268.317726 C738.819118,264.243981 734.701886,261.565709 731.39203,259.414419 L722.442025,253.595171 C720.907629,252.597353 719.327316,251.567784 717.815879,250.472392 C711.846659,246.131865 706.799606,240.556941 701.920916,235.16555 C699.307469,232.280126 696.60984,229.296353 693.797419,226.538705 C692.863772,225.619102 691.757935,224.640644 690.499042,224.640644 L690.453125,224.641031 C689.787327,224.653809 689.106224,225.005388 688.539913,225.630331 C688.172576,226.031084 687.881768,226.515473 687.686621,227.021158 L687.713406,227.034323 C687.885595,227.150483 687.935338,227.390548 687.820545,227.569822 C687.744017,227.68908 687.617745,227.745224 687.48382,227.739416 C687.43025,228.028268 687.399639,228.315185 687.422597,228.587774 C687.6981,233.092861 690.68271,237.523219 695.205543,240.149218 L695.415996,240.267314 C695.813944,240.498474 696.231024,240.740474 696.598361,241.059916 L696.60984,241.053333 C697.40191,240.528675 698.048575,239.758919 698.438871,238.884619 C698.526878,238.689469 698.752637,238.603123 698.943959,238.689856 C699.13528,238.777364 699.223287,239.006587 699.13528,239.201736 C698.710547,240.167029 698.002658,241.019647 697.137887,241.620583 C697.554967,242.1495 697.857254,242.759729 698.144236,243.35447 L698.281987,243.628609 C699.76664,246.640648 701.886478,249.38668 704.419571,251.570108 C704.790734,251.887226 705.16955,252.193889 705.540713,252.500165 C706.126155,252.971776 706.723077,253.45965 707.281735,253.983146 C707.350611,253.954493 707.427139,253.939005 707.503668,253.955655 C707.959012,254.051681 708.414357,253.693132 708.666901,253.35588 C708.865875,253.093745 709.015105,252.792502 709.175815,252.473061 C709.286781,252.249646 709.401574,252.0181 709.539325,251.794684 C709.650291,251.611925 709.883703,251.556168 710.063545,251.667295 C710.243387,251.779196 710.300783,252.017712 710.193644,252.200084 C710.071198,252.396008 709.967885,252.603161 709.860745,252.82193 C709.692382,253.158407 709.516367,253.506501 709.282955,253.824781 C708.98832,254.211595 708.536802,254.581759 708.008756,254.702566 C708.758735,255.478905 709.447491,256.307903 710.120942,257.117154 C710.641335,257.745194 711.180861,258.394531 711.735692,259.003986 C713.549417,260.998072 715.213911,262.148447 716.962587,262.624705 C717.165387,262.680075 717.287833,262.892648 717.230436,263.099027 C717.180693,263.305792 716.966413,263.428922 716.763613,263.372391 C714.865707,262.856251 713.090246,261.635018 711.173208,259.52903 C710.606897,258.906024 710.059719,258.250105 709.535499,257.615482 C708.666901,256.570038 707.767691,255.488972 706.765168,254.55543 C706.225642,254.048583 705.632547,253.568454 705.06241,253.104199 C704.679767,252.792889 704.297125,252.48158 703.925962,252.159428 C701.312515,249.909401 699.1238,247.07896 697.593231,243.97438 L697.45548,243.696756 C697.09197,242.939778 696.739939,242.22423 696.177454,241.706154 C695.848382,241.406073 695.450434,241.180335 695.033354,240.941045 L694.826727,240.820625 C690.081962,238.066849 686.951947,233.397976 686.657313,228.636174 C686.626701,228.218771 686.676445,227.782783 686.783585,227.350279 L682.360239,224.449367 C680.898545,223.491818 679.394761,222.501744 678.040207,221.319231 C677.642259,220.971912 677.25579,220.604845 676.880801,220.249394 C675.973938,219.388259 675.116819,218.574361 674.091338,217.974974 C672.491893,217.039883 670.402666,216.524518 669.572332,217.604035 C668.730519,218.704074 667.433361,220.829422 668.156555,222.704638 C668.374661,223.270726 668.776436,223.777573 669.166731,224.234857 C669.235607,224.280934 669.308309,224.329722 669.373358,224.371539 C669.472845,224.4393 669.526415,224.547329 669.537894,224.660392 C671.768699,227.208176 673.674258,229.305646 675.518594,231.243588 C676.899933,232.688236 678.273619,234.035309 679.991683,234.640118 C680.179178,234.705942 680.370499,234.763248 680.56182,234.819779 C680.902372,234.921613 681.254403,235.029255 681.591128,235.183361 C681.656177,235.123732 681.740359,235.084625 681.836019,235.084625 L681.839846,235.084625 C682.126827,235.084625 682.436768,234.920452 682.693138,234.633923 C682.949508,234.343134 683.12935,233.961741 683.313019,233.593513 L684.001775,232.147703 C684.093609,231.955264 684.323194,231.875113 684.510689,231.968429 C684.70201,232.061744 684.782365,232.293291 684.690531,232.48573 L683.994122,233.93154 C683.806627,234.329195 683.588521,234.77951 683.263275,235.151611 C683.029863,235.414133 682.750534,235.609283 682.463553,235.727766 C682.788799,235.984481 683.091086,236.269848 683.381894,236.554054 L683.446943,236.617942 C686.902204,239.977301 690.751586,242.914223 694.891776,245.347008 L695.178758,245.513892 C695.542268,245.726466 695.913431,245.943686 696.276941,246.175619 C696.311379,246.088112 696.376428,246.01222 696.468263,245.968079 C696.866211,245.773704 697.153192,245.359786 697.202936,244.91373 C697.229721,244.700769 697.421042,244.547438 697.623842,244.57067 C697.834296,244.593902 697.987353,244.784792 697.964394,244.997366 C697.891692,245.660254 697.482265,246.273968 696.908301,246.601928 C697.09197,246.733576 697.267985,246.87142 697.444001,247.017395 C698.186327,247.642725 698.806207,248.394283 699.399303,249.121059 C699.529401,249.27865 699.6595,249.436241 699.789598,249.592671 C702.395393,252.697251 705.475663,255.300405 708.961535,257.32934 C709.145204,257.436207 709.206426,257.673175 709.099286,257.858257 C709.030411,257.982548 708.904139,258.052245 708.770214,258.052245 C708.708991,258.052245 708.636289,258.035595 708.578893,258.000747 C705.016493,255.926897 701.867346,253.266437 699.207982,250.093322 C699.074057,249.935344 698.943959,249.775817 698.81386,249.61629 C698.239897,248.91623 697.639148,248.192551 696.950392,247.611749 C696.2999,247.061923 695.534615,246.615867 694.796115,246.184912 L694.509134,246.016867 C690.315374,243.553105 686.412422,240.578237 682.918897,237.175899 L682.850021,237.111237 C682.383198,236.656275 681.943159,236.226094 681.411286,235.95273 C681.08604,235.783911 680.730183,235.676269 680.34754,235.562431 C680.140914,235.502028 679.938113,235.441625 679.742965,235.371541 C679.061862,235.132251 678.438155,234.791514 677.848886,234.385727 C678.866714,236.348837 679.234051,238.840478 679.498074,241.536948 C679.517206,241.735195 679.536339,241.934603 679.555471,242.13285 L679.635826,242.037986 C679.800362,241.906338 680.041426,241.93499 680.171525,242.103036 C681.476335,243.780005 683.362762,244.764658 685.352502,245.806616 C686.619048,246.470279 687.916206,247.154077 689.060307,248.034185 C689.649576,247.466548 690.108747,246.763004 690.380423,245.991311 C690.453125,245.789579 690.678884,245.688133 690.874031,245.758991 C691.073005,245.832172 691.172492,246.054425 691.107443,246.254995 C690.797503,247.108387 690.296241,247.886274 689.653402,248.523995 C689.928905,248.765221 690.196754,249.015353 690.441646,249.288718 C691.019435,249.934957 691.501565,250.662895 691.972215,251.366827 C692.171189,251.671554 692.370163,251.976282 692.580616,252.27404 C693.954302,254.228632 695.806291,256.090296 698.412086,258.132008 L698.725852,258.376719 C699.739855,259.165061 700.784468,259.980507 701.5421,261.073189 C702.307385,262.185619 702.877522,263.918732 702.158154,265.446628 C702.089279,265.58602 701.951527,265.667333 701.80995,265.667333 C701.752553,265.667333 701.698983,265.65533 701.645414,265.629387 C701.454092,265.53762 701.373737,265.306461 701.465572,265.113635 C702.043362,263.88582 701.557406,262.450852 700.918393,261.516922 C700.22581,260.521815 699.227114,259.743153 698.259029,258.990433 L697.945262,258.743786 C695.278245,256.654448 693.376512,254.741286 691.956909,252.723193 C691.74263,252.418853 691.539829,252.108318 691.333202,251.797782 C690.881684,251.117469 690.414861,250.414312 689.871508,249.810665 C688.570524,248.360209 686.7568,247.411953 685.000471,246.49506 C683.03369,245.467041 681.005685,244.403399 679.597561,242.615303 C679.884543,245.600238 680.14474,248.594466 680.378152,251.595276 C682.237794,253.247077 684.009428,255.000711 685.681575,256.844951 C686.546346,256.66103 687.215971,255.780922 687.809066,254.835763 C687.920032,254.65494 688.153444,254.600732 688.337113,254.715731 C688.513128,254.830343 688.570524,255.069246 688.451905,255.250069 C687.85881,256.206069 687.17388,257.112507 686.255538,257.485382 C687.981255,259.43223 689.599832,261.473943 691.095964,263.604324 C691.398251,264.031407 691.692886,264.461588 691.987521,264.892156 C692.806375,266.08551 693.655841,267.319908 694.585662,268.443953 C694.987437,268.925632 695.415996,269.401889 695.82925,269.862659 C696.257809,270.342014 696.709327,270.838406 697.122581,271.346801 C700.133976,274.995012 703.076496,280.362397 704.622371,285.02159 L704.626197,285.054502 L704.637677,285.085865 C705.039451,287.731999 702.996141,290.478805 700.179893,291.084001 C698.989876,291.338779 697.792205,291.243915 696.628972,291.152148 L684.418855,290.183758 C684.855067,291.37053 684.992818,292.675785 684.805324,293.924509 C684.774712,294.116174 684.614003,294.253243 684.426508,294.253243 L684.369111,294.248984 C684.158658,294.216846 684.017081,294.019374 684.047692,293.807962 C684.235187,292.568143 684.059171,291.267534 683.565563,290.115997 L679.98403,289.832179 C676.341275,289.543714 672.568421,289.24402 669.0175,290.308049 C665.317349,291.415058 662.114632,294.004273 660.232032,297.411257 C659.975662,297.87706 659.746076,298.372291 659.814952,298.839643 C659.933571,299.668641 660.943747,300.144898 661.533016,300.355149 C664.161769,301.288304 666.928273,301.143491 669.855487,300.990546 C672.423017,300.856187 675.086208,300.716795 677.611648,301.386653 C678.457287,301.610843 679.276142,301.924088 680.072038,302.22688 C680.691918,302.462685 681.334758,302.707009 681.977597,302.902933 C683.358936,303.327306 684.824456,303.554206 686.244059,303.773749 C686.902204,303.875583 687.579481,303.980127 688.245278,304.104032 C695.14432,305.383345 701.549753,308.80543 707.197554,311.824826 C710.132421,313.392604 713.457583,315.169471 716.147559,317.617357 C716.633514,318.060316 717.107991,318.529991 717.563335,318.984952 C718.405148,319.819371 719.26992,320.682443 720.230352,321.375146 C721.584906,322.353216 723.172872,323.026559 724.703441,323.677058 C725.575866,324.046448 726.475076,324.428615 727.332194,324.865378 C731.414988,326.939616 734.705712,330.304395 737.487522,333.406652 C737.495175,333.201823 737.659711,333.038811 737.866338,333.038811 L737.889297,333.038811 C739.745112,333.038811 741.501441,331.678185 741.979744,329.864922 C742.03714,329.658543 742.243767,329.536188 742.450394,329.59117 C742.653194,329.646153 742.77564,329.858726 742.72207,330.065105 C742.151933,332.206715 740.078011,333.813213 737.889297,333.813213 L737.862512,333.813213 L737.847206,333.809729 C737.893123,333.862388 737.93904,333.915435 737.984957,333.968094 C738.94539,335.047998 739.951739,336.20573 740.808858,337.468006 C742.637888,340.155184 743.762857,343.233434 744.853388,346.211012 L747.864783,354.446784 C747.937485,354.648128 749.334129,359.244208 749.135155,359.317776 L792.010231,359.317776 C791.864827,359.317776 791.394176,357.881259 791.329127,357.741867 Z" id="Fill-79" fill="#DBBBAB"></path>
100
- <path d="M259.628834,143.0794 C259.67896,142.871473 259.883674,142.743697 260.091066,142.79442 C264.052179,143.768231 268.301423,143.422073 272.056292,141.820221 C272.250292,141.736973 272.475668,141.829127 272.557936,142.0266 C272.639822,142.223685 272.548753,142.450585 272.353988,142.533833 C269.902398,143.579277 267.247626,144.110517 264.592853,144.110517 C263.017897,144.110517 261.443324,143.923499 259.910076,143.546752 C259.70498,143.496416 259.578708,143.28694 259.628834,143.0794 Z M253.175953,191.755638 C254.776929,192.741065 256.383262,193.717587 257.978497,194.713081 C261.160169,196.698649 264.327299,198.73649 267.288568,201.050018 C268.687126,202.142312 270.00112,203.410397 271.480033,204.386531 C273.000653,205.390931 274.684662,206.052271 276.260001,206.954837 C277.639427,207.745115 278.995894,208.605864 280.204661,209.649759 C280.501591,209.901052 280.793548,210.156992 281.081295,210.41874 C281.138308,210.486113 281.196087,210.54613 281.254249,210.602274 C281.437535,209.135942 281.63383,207.67116 281.847345,206.208701 C282.348606,202.774612 282.678061,199.124853 284.049069,195.90992 C285.299926,192.976483 287.274744,190.372942 289.655162,188.284765 C294.367785,184.150617 298.28719,180.196517 301.636842,176.197115 C306.305078,170.62219 310.781611,164.117983 315.32128,156.312005 C318.832023,150.275536 325.874173,145.171062 334.159145,142.657351 C336.096464,142.069579 338.023068,141.711418 339.885388,141.59216 C340.19839,141.572413 340.519044,141.561958 340.842759,141.551504 C341.983033,141.513945 343.162337,141.475612 344.146876,140.991611 C344.957312,140.59318 345.385489,140.026705 345.456278,139.258885 C345.616988,137.509122 343.86946,135.202951 342.5459,134.210554 C337.198091,130.201472 328.472697,130.807442 322.62707,132.544814 C320.578786,133.153495 318.490706,134.349947 316.47112,135.507291 C311.907727,138.122449 307.188599,140.827437 302.11591,137.53158 C300.787376,136.668508 299.639066,135.55724 298.672511,134.20978 C298.675955,134.358078 298.595983,134.501342 298.45517,134.569103 C293.824433,136.7928 290.493914,141.764464 290.167902,146.940571 C290.154893,147.145788 289.986913,147.303379 289.786408,147.303379 L289.761919,147.302605 C289.5507,147.289053 289.390756,147.105132 289.404148,146.891397 C289.752735,141.357903 293.176619,136.246459 298.126863,133.869817 C298.22635,133.821804 298.335021,133.822966 298.429533,133.860524 C297.364257,132.279194 296.535836,130.391588 295.955368,128.205062 C295.125417,125.076088 294.847618,121.337272 295.146845,117.601554 C294.997997,117.687513 294.851062,117.769987 294.708719,117.845104 C292.676123,118.919588 290.404375,119.549177 288.20686,120.15747 C287.912226,120.23917 287.619504,120.320482 287.328314,120.402569 C287.51466,121.245506 287.64208,122.104705 287.699477,122.96468 C287.713634,123.178027 287.554073,123.362722 287.343619,123.377049 L287.317217,123.377823 C287.11786,123.377823 286.949498,123.221394 286.935723,123.016952 C286.882535,122.210411 286.763916,121.404258 286.590579,120.612819 C283.915526,121.389545 281.429882,122.292885 279.456978,124.139061 C278.635827,124.907268 277.911485,125.845844 277.21125,126.753444 C275.975315,128.354522 274.69729,130.010582 272.81048,130.856229 C272.615333,130.942575 272.391104,130.854293 272.305775,130.658757 C272.220063,130.46322 272.307306,130.234384 272.50054,130.148038 C274.212099,129.380992 275.375715,127.87323 276.608206,126.2768 C277.32719,125.344806 278.070665,124.381449 278.937732,123.570262 C281.098131,121.549072 283.880323,120.584166 286.676674,119.783046 C286.708816,119.763686 286.740575,119.743939 286.778457,119.734259 L286.860725,119.730387 C287.242602,119.621971 287.624479,119.515878 288.004825,119.410559 C290.163311,118.81272 292.394881,118.194747 294.354392,117.158983 C295.759072,116.416331 297.57471,115.117271 298.247013,113.14448 C298.813706,111.480289 298.281068,109.20006 296.583284,108.457796 C295.548619,108.005932 294.270211,108.204953 293.242434,108.365642 C288.040411,109.178764 282.384957,110.063519 277.203597,112.100585 L277.1837,112.120333 C277.105258,112.193126 277.005006,112.225651 276.906284,112.220618 C274.280209,113.279613 271.78079,114.640626 269.532001,116.449243 C267.583968,118.016247 265.857103,119.906564 264.187252,121.734928 L259.924999,126.400317 C256.685549,129.933141 253.337046,133.58716 253.289981,142.123013 C254.166614,149.333476 255.001157,156.584594 254.883304,163.862043 C254.836239,166.744369 254.638795,169.626309 254.228602,172.479982 C253.830272,175.250408 253.359239,178.176875 252.182614,180.727757 C250.881247,183.550455 250.656636,186.966732 250.481769,190.062019 C250.590822,190.137136 250.698727,190.213802 250.814285,190.281949 C251.597554,190.780277 252.385797,191.269313 253.175953,191.755638 Z" id="Fill-80" fill="#FFDAC7"></path>
101
- <path d="M410.573205,306.71222 C410.858274,303.598347 411.13148,300.569271 411.398565,297.61144 C411.722663,294.022084 412.036812,290.549276 412.349431,287.156231 C406.955704,287.140743 401.587615,287.071434 396.286488,287.002512 L395.784844,286.995929 C395.685357,286.994768 384.516026,286.782969 371.823397,286.522382 C370.317699,291.441388 368.740065,296.333289 367.06677,301.192665 C364.979456,307.25585 359.791974,327.272609 359.35844,333.241317 C359.345813,333.418268 356.976874,353.664637 356.1871,359.317776 L402.84383,359.317776 C403.73156,353.393596 405.096063,345.72701 405.940554,340.492049 C407.773411,329.131175 409.504485,318.399117 410.573205,306.71222 Z" id="Fill-81" fill="#FED7D8"></path>
102
- <path d="M81.002202,227.366929 C80.808585,227.280583 80.7209599,227.052521 80.8062891,226.856597 C80.8916184,226.661448 81.1166121,226.571617 81.3106117,226.65835 C85.4523325,228.505688 90.1645731,228.968006 94.5802658,227.958959 C94.7826836,227.911721 94.9912236,228.042982 95.0375234,228.251684 C95.0838231,228.459998 94.9548726,228.667538 94.7482458,228.714776 C93.1644891,229.076035 91.5428508,229.255309 89.9219778,229.255309 C86.8631349,229.255309 83.8065878,228.617976 81.002202,227.366929 Z M112.561395,236.884337 C114.004722,230.929955 118.713901,226.040377 124.559146,224.427684 C124.761564,224.371927 124.973548,224.492733 125.028648,224.699499 C125.084514,224.905877 124.963981,225.118451 124.760033,225.174982 C119.265289,226.691262 114.661719,231.470875 113.305252,237.069032 C113.262013,237.245595 113.105512,237.363692 112.933706,237.363692 L112.842255,237.35285 C112.636776,237.30174 112.511269,237.091877 112.561395,236.884337 Z M91.7184836,300.147609 C98.0198378,286.149895 100.357017,284.768747 106.00367,281.432621 C107.738954,280.407312 109.705353,279.245321 112.2174,277.475811 C121.193424,271.152814 129.807851,263.158656 137.821147,253.715203 C138.049967,253.445711 138.276874,253.174283 138.504164,252.902855 C139.745455,251.421035 141.028838,249.88888 142.562851,248.648287 C144.251069,247.283402 146.202545,246.302234 148.060274,245.445745 C156.236958,241.674017 163.214059,240.283577 169.391819,241.197759 C171.761906,241.547789 173.964395,241.732871 174.9034,240.232079 C174.852126,240.130245 174.840646,240.009438 174.891538,239.897537 C174.942812,239.784862 175.041916,239.714778 175.153265,239.688448 C175.304026,239.19709 175.32622,238.600413 175.217166,237.906935 C174.759909,234.985114 172.753715,232.914749 170.522145,231.482104 C170.458244,231.469326 170.395873,231.445707 170.343068,231.398856 L170.297534,231.338452 C168.24351,230.066496 166.036811,229.323844 164.68991,228.949808 C158.043795,227.103245 151.608516,227.086982 146.081247,228.903731 C145.099005,229.226656 144.07888,229.618891 143.092428,229.998349 C139.224297,231.486363 135.223771,233.024714 131.480381,231.354715 C128.777395,230.148583 126.260756,227.529166 125.06806,224.682462 C122.880877,219.461827 122.684198,212.847267 124.487974,205.984898 C124.284791,206.059241 124.085435,206.128163 123.893731,206.189341 C121.473518,206.959097 118.875759,207.196838 116.363329,207.427223 C116.012446,207.459361 115.664624,207.491886 115.317568,207.524798 C115.361572,208.493188 115.335169,209.467387 115.230708,210.426872 C115.208897,210.625119 115.043213,210.771868 114.850744,210.771868 L114.808271,210.769545 C114.5982,210.745925 114.446674,210.554648 114.470015,210.342075 C114.569119,209.435636 114.594374,208.515646 114.554962,207.600689 C111.465125,207.920905 108.558573,208.413812 106.030455,210.050899 C104.983546,210.729276 104.011252,211.611708 103.070717,212.464712 C101.417319,213.96473 99.7076732,215.515858 97.4960005,216.063361 C97.2932,216.114472 97.0838947,215.986695 97.0333859,215.778768 C96.9832597,215.571228 97.1087664,215.361752 97.314628,215.310642 C99.3399539,214.809216 100.903813,213.39051 102.559889,211.888169 C103.522617,211.014643 104.518635,210.111303 105.617967,209.399239 C108.356156,207.62547 111.571117,207.122496 114.771155,206.800344 C114.809419,206.784082 114.848831,206.770142 114.89207,206.767045 L114.975103,206.779823 C115.415524,206.736456 115.855946,206.696187 116.294071,206.655918 C118.766323,206.429405 121.322757,206.195149 123.664528,205.45056 C125.347389,204.915061 127.589291,203.84987 128.70852,201.818999 C129.65709,200.098277 129.511686,197.479247 127.78329,196.321515 C126.730641,195.616809 125.291141,195.582348 124.134413,195.554857 C118.297204,195.415464 111.950315,195.264456 105.898061,196.467103 L105.866302,196.489173 C105.773702,196.548802 105.666563,196.561193 105.568223,196.536025 C102.491779,197.173745 99.4953067,198.167304 96.685564,199.701008 C94.2546371,201.027947 92.0054654,202.750606 89.8301436,204.416733 L84.2795337,208.666654 C80.0582233,211.888169 75.6930394,215.219262 73.9948727,224.542295 C73.2372408,238.193464 72.3739997,253.660995 65.461183,266.643467 C58.899632,278.96731 50.5255042,291.115751 39.8612619,303.782655 C37.7303267,306.31379 35.5132969,308.780649 33.278283,311.196785 C14.3506485,334.180796 3.90946502,350.221127 1.95473251,359.317776 L33.278283,359.317776 L65.7458689,359.317776 C70.6104011,347.334283 78.379954,329.34917 90.7018029,302.377888 C91.2053602,301.276301 91.5539474,300.512352 91.7184836,300.147609 Z" id="Fill-82" fill="#FED7D8"></path>
103
- <path d="M328.215179,325.599512 C328.72065,322.341988 329.243722,318.973723 330.701972,315.878049 C331.779493,313.590464 332.793112,311.223502 333.774207,308.933594 C334.378399,307.522632 335.003637,306.062883 335.638058,304.635272 C335.801829,304.266656 335.964452,303.896492 336.12784,303.525553 C336.711752,302.199389 337.315179,300.828309 337.962993,299.518407 C338.406093,298.623197 339.05735,297.907262 339.687179,297.214172 C339.966891,296.906734 340.256169,296.588842 340.517896,296.263593 C341.0601,295.590637 341.347847,294.765898 341.652813,293.893533 C341.73929,293.64495 341.82615,293.396367 341.919132,293.150881 C342.171676,292.482572 342.499218,291.258241 342.815281,290.073793 C343.1367,288.871532 343.468834,287.628229 343.735535,286.923523 C343.793697,286.770191 343.981957,286.310196 344.155294,286.136342 C344.167921,286.056966 344.193176,285.981462 344.224935,285.908668 C340.403103,285.810706 337.534816,285.725522 336.269418,285.663182 C336.096464,286.168867 335.828231,286.634671 335.449415,287.026905 C334.52036,287.989101 333.333021,288.250462 332.237898,288.250462 C331.684597,288.250462 331.15502,288.183476 330.695084,288.106423 C328.764271,287.78311 327.052329,287.155456 325.607854,286.2405 L325.520612,286.181258 C325.54357,286.397316 325.421507,286.626152 325.139883,286.622667 C323.005886,286.596338 319.81197,287.08305 318.563026,284.889941 C318.049137,283.986988 318.175792,282.685992 318.186123,281.699403 C318.201046,280.293475 318.194924,278.883675 318.287523,277.480457 L318.272983,277.471164 C316.942536,276.58912 315.656092,275.615309 314.437759,274.577222 C313.569161,275.564198 312.583857,276.340149 311.293969,277.080091 L311.326876,277.161791 C312.31065,280.700423 312.668038,284.354055 312.388709,288.020077 L312.381056,288.122298 C312.340113,288.641922 312.302232,289.133281 312.425825,289.582434 C312.482074,289.788038 312.363072,290.001773 312.159506,290.059079 L312.056575,290.073018 C311.889361,290.073018 311.735156,289.96073 311.688091,289.789587 C311.528529,289.208785 311.574063,288.625272 311.618067,288.061507 L311.62572,287.960061 C311.892422,284.458599 311.563732,280.969141 310.648069,277.58384 C310.598325,277.546669 310.557383,277.499043 310.528302,277.445996 C310.354582,277.131202 310.584168,276.595702 310.883011,276.425721 C312.798519,275.332652 314.00346,274.165627 315.18085,272.263694 C315.29373,272.082484 315.52982,272.027889 315.708514,272.141339 C315.887591,272.254789 315.941543,272.493692 315.829429,272.675289 C315.534029,273.152321 315.236333,273.583276 314.927924,273.982481 C316.123298,275.001207 317.386401,275.957595 318.692359,276.82299 L318.768122,276.873326 C319.181376,277.146303 319.608405,277.428185 319.961584,277.818484 C320.244739,278.132117 320.454427,278.486406 320.657227,278.829079 L320.971377,279.358771 C322.321722,281.635127 323.852674,284.215437 326.013838,285.584193 C327.372218,286.444167 328.989647,287.036198 330.819826,287.342862 C332.731124,287.663077 334.027899,287.390875 334.902237,286.485598 C336.156156,285.186538 335.912795,282.850165 334.95198,281.342016 C334.76372,281.045807 334.545231,280.771668 334.313733,280.481267 C334.201619,280.340713 334.089504,280.199772 333.980834,280.056895 C333.523959,279.45441 333.140169,278.801588 332.769388,278.170063 C332.439933,277.609395 332.128462,277.079704 331.768396,276.577891 C331.081936,275.622278 330.557716,274.519529 330.050332,273.453564 C329.886561,273.108567 329.723938,272.766281 329.557488,272.433288 C328.861845,271.038202 328.256122,269.585423 327.670679,268.180269 C327.299516,267.290093 326.898889,266.383655 326.511655,265.507031 C325.864225,264.041862 325.1946,262.526743 324.630968,261.017432 C324.075372,259.529418 323.118383,257.483833 321.231574,256.906129 C320.278794,256.614179 319.257139,256.741956 318.116865,256.925489 C312.734235,257.788561 303.890222,260.300335 299.513559,261.648183 C299.311524,261.710523 299.097627,261.595137 299.036022,261.390307 C298.974799,261.185865 299.088444,260.969419 299.290861,260.90708 C303.686274,259.553424 312.573143,257.03042 317.996715,256.160766 C319.18635,255.969102 320.346139,255.82545 321.453506,256.165026 C323.663648,256.841853 324.734282,259.102335 325.346892,260.743681 C325.902871,262.231308 326.567521,263.735973 327.21036,265.191075 C327.599125,266.071184 328.001282,266.981107 328.375506,267.879414 C328.956357,269.272564 329.556341,270.712953 330.240505,272.083646 C330.40925,272.421285 330.574169,272.768217 330.740236,273.117473 C331.232314,274.152849 331.741228,275.223461 332.387129,276.122542 C332.76824,276.653008 333.103435,277.223356 333.427151,277.77473 C333.748187,278.320684 334.081086,278.880964 334.454163,279.398653 L334.466025,279.407171 C336.773741,281.877515 340.399659,283.072806 343.701098,282.452509 C344.59342,282.285238 346.213145,281.804721 347.038122,280.467715 C347.734531,279.338636 347.700475,277.75537 346.947053,276.231733 C345.938407,274.193118 344.593802,272.296219 343.293201,270.462434 L343.034152,270.096528 C341.856762,268.433499 340.835489,266.68877 339.885771,264.933586 C339.74955,264.871634 339.656185,264.732242 339.659629,264.571553 L339.691006,264.572327 C339.146123,263.555537 338.622668,262.537197 338.106484,261.530861 C337.638895,260.618615 337.169775,259.703658 336.684202,258.788702 C334.784383,255.207477 332.592608,250.927354 330.740619,246.33321 L330.603633,245.992086 C329.736565,243.833438 328.840417,241.60161 327.060747,240.259183 C325.504158,239.085576 323.614288,238.573309 321.877091,238.852094 C318.469661,239.400758 315.359544,240.414064 312.351975,241.39407 C308.426447,242.672222 304.464569,244.29111 300.633553,245.856565 C298.511419,246.723509 296.316965,247.620267 294.16575,248.443457 C293.970219,248.518574 293.747522,248.418289 293.672524,248.218106 C293.597908,248.017923 293.697778,247.794508 293.895222,247.719004 C296.038401,246.898911 298.228646,246.004089 300.346572,245.138694 C300.907908,244.909471 301.472305,244.679086 302.038233,244.448701 C302.021014,244.318989 302.063105,244.183856 302.171393,244.095574 C303.348783,243.138799 304.453089,242.072834 305.452934,240.927493 C306.186459,240.086879 306.882868,239.181602 307.555553,238.306527 C308.236657,237.420998 308.940336,236.505654 309.690698,235.646454 C309.815439,235.503964 309.946685,235.350632 310.084437,235.190718 C311.222798,233.867264 312.782065,232.055162 314.321435,231.439899 C315.276893,231.057731 316.470738,231.184346 317.624787,231.307476 C318.116865,231.359748 318.581393,231.40931 318.998473,231.414731 C319.446164,231.420926 319.8973,231.422862 320.351496,231.424798 C323.305495,231.436027 326.360512,231.44803 329.140408,232.639449 C330.255428,233.117255 331.273639,233.778982 332.258178,234.418252 L335.63691,236.612521 C338.390022,238.40023 341.098364,239.983883 343.945989,239.683802 C345.765836,239.494073 347.436452,238.498579 348.415251,237.021019 C349.411269,235.516354 349.628993,233.500584 348.970083,231.884793 C348.241914,230.102119 346.601909,228.850297 345.154756,227.745999 L336.183706,220.898344 C334.888844,219.909044 333.549596,218.886833 332.069153,218.176318 C330.602867,217.472774 328.976255,217.075505 327.57808,216.779296 C325.482347,216.335563 323.323479,216.002958 321.236165,215.680806 L320.047678,215.498047 L319.956609,215.483721 L311.925329,214.246225 C311.191421,214.13355 310.440677,214.016615 309.697203,214.02978 C307.664606,214.064628 305.716574,215.07019 303.997362,215.957655 C303.183099,216.377768 302.780942,217.008132 302.272411,217.806541 C302.176367,217.957163 302.078028,218.111269 301.974332,218.267311 C301.000507,219.737901 300.208055,220.827099 299.406037,221.798974 C298.394713,223.024079 297.270127,224.171356 296.182658,225.280301 C294.989196,226.498049 293.754792,227.75684 292.683776,229.10856 C292.111343,229.831078 291.567226,230.603544 291.041092,231.350068 C290.345066,232.338593 289.625316,233.360418 288.819471,234.298219 C288.001381,235.250347 287.086101,236.125809 286.201432,236.972619 C285.434234,237.705978 284.641399,238.464892 283.92471,239.262914 C282.489801,240.859732 281.284095,242.693131 280.118184,244.466125 C279.388485,245.575457 278.633914,246.72196 278.363003,248.020633 C278.155994,249.011094 278.248211,250.06041 278.364917,250.957168 C278.710443,253.599043 279.449325,256.160766 280.556309,258.576902 C280.680668,258.67138 280.741891,258.835166 280.694443,258.994693 C280.544447,259.503475 280.718932,260.595383 280.846735,261.393018 C280.909488,261.787576 280.968798,262.159676 280.990991,262.445044 C281.402332,267.80391 282.461103,272.268341 283.687089,277.438252 C284.326867,280.134335 284.988073,282.922959 285.619433,286.098784 C286.308954,289.567333 287.21926,293.051758 288.099338,296.421571 C288.739116,298.871781 289.400705,301.404851 289.974285,303.918175 C290.906785,308.00431 291.744006,312.450156 291.560338,317.271974 C291.381644,321.967564 290.431543,326.627919 289.512819,331.134555 L285.806162,349.316754 C285.162941,352.472057 284.458496,355.852324 283.652269,359.317776 L322.234097,359.317776 C322.521078,357.346921 322.870431,355.387683 323.216722,353.474908 L325.60441,340.294576 C325.609002,340.217136 325.613594,340.139695 325.618568,340.062255 C325.621247,340.019663 325.619333,339.980943 325.620099,339.938351 C325.647266,339.895759 325.668312,339.853166 325.692035,339.806702 L327.736876,328.519397 C327.912126,327.550619 328.065949,326.558997 328.215179,325.599512 Z" id="Fill-83" fill="#8A6D62"></path>
104
- <path d="M323.970528,353.610429 C323.631124,355.484483 323.290572,357.397258 323.008182,359.317776 L333.141699,359.317776 C333.028437,357.319817 331.365091,352.433337 326.1271,341.700117 L323.970528,353.610429 Z" id="Fill-84" fill="#EDDACE"></path>
105
- <path d="M249.502204,282.888885 C249.034615,282.582996 248.518431,282.315827 248.0187,282.057951 C247.169234,281.619252 246.29107,281.165452 245.562136,280.484365 C244.281432,279.286751 243.690632,277.623722 243.118582,276.015288 C242.72446,274.905181 242.316946,273.757517 241.687499,272.79687 C240.947469,271.667017 239.938059,270.822918 238.784009,270.14338 C237.798705,299.938133 236.188929,329.858339 241.488525,359.317776 L282.367356,359.317776 C277.912251,340.906354 264.540048,303.860869 253.65196,287.519038 C252.507477,285.801026 251.244375,284.028806 249.502204,282.888885 Z" id="Fill-85" fill="#38B2AD"></path>
106
- <path d="M523.181022,294.75312 C524.15676,290.168657 528.013795,286.344657 532.567239,285.454481 C532.773866,285.411889 532.976666,285.550894 533.01493,285.761144 C533.053195,285.971008 532.91927,286.173901 532.708816,286.214557 C528.453834,287.047814 524.845516,290.625942 523.934827,294.915745 C523.896563,295.097729 523.732027,295.221634 523.559838,295.221634 L523.475657,295.213115 C523.272856,295.1682 523.138931,294.962209 523.181022,294.75312 Z M518.922213,336.124418 C517.066397,336.08957 515.237367,335.222239 514.055002,333.762877 C513.921077,333.597155 513.947862,333.353605 514.108572,333.218085 C514.276935,333.082564 514.517999,333.107345 514.648098,333.273068 C515.845768,334.757597 517.804897,335.543616 519.683671,335.319039 C520.931085,334.026561 522.251201,332.811136 523.655498,331.689414 C526.571233,329.355365 529.804561,327.397288 532.938402,325.503486 C536.018673,323.639112 539.206084,321.711237 542.064422,319.436042 C543.204696,318.523795 544.333491,317.526752 545.427848,316.562234 C548.297666,314.027614 551.26697,311.407036 554.875288,309.982135 C556.807632,309.219735 558.858595,308.827888 560.836856,308.448818 L572.465357,306.222797 C576.911661,305.370954 581.518674,304.500139 586.14482,304.56364 C587.908802,304.593454 590.101342,304.626754 591.080907,303.208048 C591.876803,302.05109 591.482681,300.364829 590.728876,299.207097 C589.592428,297.452688 587.587382,296.139301 585.084901,295.509712 C582.888534,294.957563 580.600333,294.951755 578.055761,295.000929 C574.543104,295.067528 570.961572,295.189109 567.502485,295.306431 C563.829119,295.431497 560.021827,295.560435 556.279585,295.624323 C553.325586,295.675047 550.677701,295.632067 548.217311,294.590109 C546.847451,294.007371 545.550294,293.117195 544.30288,292.256059 C542.026158,290.685571 539.879534,289.202977 537.384706,289.572754 C537.174253,289.606828 536.975279,289.457755 536.948494,289.246343 C536.914056,289.034544 537.05946,288.837846 537.269913,288.80687 C538.73926,288.587327 540.093814,288.941229 541.383319,289.554556 C541.257047,288.343777 541.054246,287.11209 540.851446,285.914476 C540.288961,282.543502 539.703519,279.057915 540.801702,275.770189 C541.302964,274.280626 542.102686,272.953687 542.982764,271.721612 C542.573336,270.306004 541.459847,269.116522 540.074682,268.651106 C540.047897,268.67821 540.017285,268.701829 539.982848,268.720415 C539.768568,268.835801 539.577247,268.755263 539.473933,268.650332 C539.378273,268.544238 539.309397,268.341345 539.443322,268.119866 C539.550462,267.93246 539.795353,267.763253 540.067029,267.839145 C541.612904,268.268551 542.913888,269.470037 543.533769,270.963472 C543.67152,270.774905 543.813097,270.588274 543.954675,270.403579 C546.617866,266.930383 549.770839,263.322829 552.900853,260.147391 C551.80267,259.612279 550.84989,258.770116 550.187919,257.736288 C550.01573,257.468345 549.843541,257.143483 549.874152,256.765575 C549.889458,256.552227 550.080779,256.393474 550.28358,256.410124 C550.494033,256.427161 550.650916,256.613405 550.635611,256.826753 C550.627958,256.973502 550.731271,257.155874 550.826932,257.314239 C551.465944,258.30741 552.407245,259.097688 553.48247,259.561168 C554.117656,258.930417 554.749016,258.319026 555.368896,257.731642 C555.246451,255.932705 555.112526,254.134542 554.951816,252.351867 C554.902073,251.803977 554.844676,251.243697 554.791106,250.674898 C554.542389,248.260698 554.278366,245.684261 554.511778,243.221273 C554.010516,243.532583 553.497775,243.841957 552.95825,244.159849 C550.279753,245.742341 547.509423,247.379041 546.177827,249.970192 C545.152346,251.952663 543.801618,254.08227 542.049116,256.480982 C541.448368,257.306882 540.602728,258.273724 539.714998,259.297097 C538.299221,260.924891 536.833701,262.607668 536.087548,263.982233 C536.01102,264.110009 535.880922,264.181641 535.750823,264.181641 C535.685774,264.181641 535.620725,264.166153 535.567155,264.133241 C535.375834,264.029858 535.310784,263.794053 535.417924,263.607035 C535.90388,262.7126 536.661512,261.716331 537.507152,260.694506 L537.067113,260.457539 C536.516108,260.159781 535.880922,259.822142 535.398792,259.300582 C535.257215,259.144152 535.264867,258.899441 535.421751,258.753466 C535.570981,258.607879 535.815872,258.615235 535.961276,258.772052 C536.355398,259.199135 536.902577,259.491085 537.426797,259.773355 L538.012239,260.090085 L538.012239,260.090472 C538.387229,259.655258 538.766045,259.218495 539.137208,258.785604 C540.017285,257.774621 540.847619,256.82017 541.433062,256.020212 C543.166432,253.654412 544.490374,251.558492 545.492897,249.612418 C545.573252,249.459473 545.66126,249.310788 545.749268,249.164426 C544.88067,248.815558 543.870494,248.113174 543.503157,247.410791 C543.40367,247.222224 543.468719,246.98758 543.652388,246.886134 C543.843709,246.785074 544.077121,246.855157 544.176608,247.043724 C544.471242,247.603618 545.44698,248.24521 546.18548,248.503473 C547.735182,246.351021 550.187919,244.899404 552.571781,243.491152 C553.298801,243.062133 553.983731,242.650151 554.638049,242.227715 C554.963295,240.149605 555.705622,238.181848 557.186448,236.497523 C557.672403,235.939565 558.269325,235.478409 558.938949,235.091207 L558.479779,234.290088 C558.368812,234.105393 558.430035,233.868039 558.613703,233.760009 C558.793545,233.651206 559.026957,233.713932 559.134097,233.897466 L559.623879,234.736144 C562.673539,233.293432 566.89791,233.155588 569.936091,233.059949 C570.265163,233.049495 570.582756,233.039428 570.88887,233.028199 C571.30595,233.012711 571.726857,233.001095 572.15159,232.987156 C573.735729,232.18139 576.50606,230.013062 577.202469,227.617448 C577.470318,226.697845 577.386137,225.850261 576.949925,225.097542 C576.104285,223.638954 574.191074,223.959557 572.46153,224.37425 C570.770251,224.77965 568.612148,225.780952 566.702763,226.664158 C566.151758,226.916613 565.635191,227.155904 565.168367,227.364218 C565.049748,227.584536 564.931129,227.796722 564.80103,227.994969 C562.91843,230.959382 559.861118,232.946112 557.163489,234.698972 L546.491594,241.642266 C543.866667,243.349824 541.15756,245.115462 538.693343,247.131619 C536.906403,249.899334 534.893704,252.676729 532.609329,255.509107 C530.259905,258.43054 527.696202,261.525828 524.925871,264.366336 C524.776641,264.518506 524.535576,264.520442 524.382519,264.370208 C524.233288,264.219974 524.233288,263.974489 524.378693,263.822319 C526.942396,261.193222 529.330085,258.338386 531.545584,255.606681 C530.259905,255.205154 529.031623,254.637129 527.899002,253.896413 C527.722987,253.780253 527.67707,253.540575 527.788036,253.360914 C527.906655,253.18164 528.143893,253.129755 528.316082,253.246689 C529.475489,254.005604 530.738208,254.580598 532.065977,254.961991 C535.341396,250.882438 538.081115,246.918658 540.354011,242.932808 C539.42419,242.547543 538.612988,241.863745 538.081115,241.00532 C537.970149,240.82411 538.023719,240.585207 538.203561,240.471757 C538.383402,240.35792 538.620641,240.412515 538.731607,240.5945 C539.198431,241.344508 539.917798,241.934603 540.732827,242.25056 C542.852665,238.43895 544.55925,234.599462 545.906151,230.610514 C546.633172,228.464644 546.755617,226.728046 546.273488,225.300822 C545.955895,224.369216 545.205916,223.548349 544.314359,223.158825 C543.851362,222.95748 543.151126,222.788273 542.431759,223.120492 C541.547855,223.529376 540.989197,224.514029 540.495588,225.382522 C534.702383,235.629417 527.401567,244.874236 518.80742,252.861037 C517.992392,253.616854 517.158231,254.368412 516.343203,255.102158 L516.167188,255.404949 C516.102139,255.529241 515.968214,255.597776 515.838115,255.597776 L515.803677,255.592742 C514.253976,256.982408 512.669837,258.414665 511.189011,259.901905 C501.202045,269.915705 493.912709,283.988537 488.253428,304.189603 C487.572325,306.609224 486.925659,309.081505 486.2943,311.472473 C485.961401,312.736685 485.628502,314.000897 485.28795,315.263948 C481.675806,328.742812 477.405518,342.215094 472.580398,355.306371 C472.526828,355.461251 471.371248,359.317776 471.210538,359.317776 L507.73375,359.317776 C508.066649,357.664426 508.927594,354.299647 508.973512,354.144767 C510.791063,347.434955 514.25015,341.216115 518.922213,336.124418 Z" id="Fill-86" fill="#DBBBAB"></path>
107
- <path d="M814.448378,308.949082 C812.921635,309.690959 810.675524,309.661532 809.014857,309.888045 C807.254702,310.126948 805.494547,310.351138 803.730566,310.529637 C799.571243,310.950525 795.396615,311.228149 791.218161,311.300942 C790.188853,311.318366 789.163372,311.327272 788.13789,311.326885 C788.558797,316.271058 788.620019,321.247369 788.199113,326.194641 C788.023097,328.27275 788.049882,330.786848 787.39939,332.786356 C787.039707,333.890266 786.438958,334.451708 785.252767,334.401372 C781.858729,334.258108 782.608708,327.434072 782.669931,325.430305 C782.742633,323.200413 782.914822,320.968585 783.278332,318.765409 C783.67628,316.292354 784.552531,313.798004 784.571663,311.283131 C782.608708,311.237829 780.6381,311.156516 778.675145,311.024868 C777.267021,310.930391 774.538781,311.07714 772.912551,310.13353 C773.012038,312.763014 773.000559,315.398307 773.012038,318.028952 C773.762017,319.729153 774.577045,321.433226 775.767063,322.824828 C776.214754,323.354519 776.731322,323.85246 777.232583,324.333364 C777.90986,324.983475 778.610096,325.656043 779.187886,326.43819 C780.412341,328.100445 780.974825,330.111569 781.522004,332.055707 C781.701846,332.692266 781.889341,333.350121 782.092141,333.97971 C784.380342,341.01477 790.762817,354.729441 792.017883,357.408874 C792.109718,357.602474 792.771689,359.224848 792.584194,359.317776 L822.047655,359.317776 C819.958428,342.373847 815.952162,325.576667 815.075911,308.513867 C814.899896,308.683074 814.693269,308.830211 814.448378,308.949082 Z" id="Fill-87" fill="#FC8181"></path>
108
- <path d="M280.885764,211.320532 C278.531366,209.333802 276.186151,207.786546 273.445284,206.406173 C271.16397,205.257347 269.383153,203.652398 267.388055,202.081135 C262.417531,198.167304 256.980949,194.952759 251.651889,191.577525 C250.641713,190.937481 249.058339,190.030269 248.356956,188.794709 C248.104029,190.413985 248.051607,192.205565 248.519961,193.412085 C249.354887,195.563375 251.934279,196.788867 253.730402,198.023265 C257.171122,200.387129 260.664264,202.698334 264.361737,204.635889 C267.714067,206.392234 271.390112,207.634763 274.32957,210.09775 C275.801595,211.330987 277.177195,212.749305 278.779701,213.811011 C279.780311,214.473512 283.085575,216.703405 283.556225,213.797072 C283.65686,213.176775 283.667574,212.570418 283.630841,211.961738 C282.789027,212.355134 281.458963,211.804147 280.885764,211.320532 Z" id="Fill-88" fill="#38B2AD"></path>
109
- <path d="M250.24453,196.356363 C249.618145,195.888237 249.057191,195.406559 248.620979,194.816077 C248.478636,196.419864 248.304916,198.024039 248.129666,199.623955 C248.633606,200.903656 249.16127,202.162834 249.724137,203.406912 C249.983186,201.070926 250.114049,198.714032 250.24453,196.356363 Z" id="Fill-89" fill="#4FD2C5"></path>
110
- <path d="M253.84596,198.884788 C253.648134,202.327008 253.391764,205.75916 252.668187,209.130522 C253.047386,209.778697 253.426967,210.424936 253.806165,211.070787 C254.485738,207.369143 254.938021,203.628391 255.288139,199.875636 C254.805627,199.548064 254.325794,199.216232 253.84596,198.884788 Z" id="Fill-90" fill="#4FD2C5"></path>
111
- <path d="M258.882681,202.237177 C258.402083,206.871589 257.737815,211.484706 256.6756,216.016122 C257.152755,216.856349 257.626849,217.700835 258.090994,218.554614 C258.895309,213.441234 259.714546,208.329789 260.416312,203.201695 C259.900893,202.887288 259.392744,202.560877 258.882681,202.237177 Z" id="Fill-91" fill="#4FD2C5"></path>
112
- <path d="M265.844094,206.230771 C265.208525,205.912879 264.579843,205.583758 263.955754,205.246118 C263.05157,211.636101 261.997007,218.004401 261.028922,224.385866 C261.298302,224.97325 261.563091,225.563345 261.816783,226.159248 C262.13208,226.899189 262.441255,227.646488 262.747369,228.394948 C263.923612,221.053611 265.355459,213.7448 266.094724,206.353514 C266.011308,206.312471 265.92751,206.272202 265.844094,206.230771 Z" id="Fill-92" fill="#4FD2C5"></path>
113
- <path d="M269.727531,208.102115 C268.682152,217.250907 266.68782,226.27928 265.557494,235.423426 C266.405047,237.541417 267.280533,239.676832 268.218772,241.776625 C268.956889,236.667504 269.53047,231.533215 269.987728,226.390794 C270.49779,220.655956 270.659648,214.801859 271.55197,209.089865 C270.955813,208.735963 270.345116,208.41265 269.727531,208.102115 Z" id="Fill-93" fill="#4FD2C5"></path>
114
- <path d="M275.024449,211.680629 C274.326892,217.023233 274.184549,222.472317 273.67793,227.806789 C273.04504,234.472847 272.238047,241.126127 271.133359,247.729458 C271.846604,249.062592 272.589313,250.380625 273.363398,251.679686 C273.426917,250.404245 273.49541,249.129578 273.578061,247.855298 C273.901011,242.877438 274.695376,238.13732 275.644329,233.253937 C276.886769,226.858533 277.032173,220.344646 277.55448,213.872576 C276.685499,213.173678 275.862818,212.416699 275.024449,211.680629 Z" id="Fill-94" fill="#4FD2C5"></path>
115
- <path d="M279.481084,244.037494 C280.263971,242.84685 281.066372,241.630263 281.946066,240.46711 C281.902828,240.413289 281.869155,240.348627 281.863033,240.262668 C281.289069,232.253022 281.255014,223.654055 283.188889,215.789997 L283.154068,215.819037 C282.611864,216.221726 281.897088,216.203528 281.169302,215.993278 C280.724289,222.10525 280.53756,228.248586 279.32841,234.281569 C278.319765,239.312089 277.586622,244.211734 277.310737,249.346023 C277.170307,251.965827 277.060871,254.58718 276.920059,257.206597 C277.694527,258.322511 278.487362,259.424873 279.307747,260.504391 C279.568327,260.847451 279.831202,261.188188 280.092929,261.5297 L280.091016,261.516535 C279.953265,260.654237 279.800591,259.691268 279.910409,259.010955 C278.74335,256.491823 277.966968,253.817424 277.606519,251.058615 C277.481013,250.096807 277.383822,248.965017 277.614172,247.860332 C277.915312,246.416846 278.747176,245.152633 279.481084,244.037494 Z" id="Fill-95" fill="#4FD2C5"></path>
116
- <path d="M278.246297,359.317776 C278.261603,358.558861 278.291067,357.799947 278.353437,357.048776 C278.619756,353.84275 278.799216,350.625494 279.043724,347.41908 C278.102424,344.356318 277.052071,341.115443 275.912944,337.766151 C275.913327,338.575402 275.919449,339.380781 275.938199,340.18616 C276.088577,346.563752 276.270715,352.948702 275.980672,359.317776 L278.246297,359.317776 Z" id="Fill-96" fill="#4FD2C5"></path>
117
- <path d="M272.117898,340.18616 C272.018793,335.868865 272.301566,331.456319 272.111775,327.100692 C270.852117,323.71965 269.532766,320.321571 268.176299,316.981573 C268.101301,323.110195 268.559706,329.29651 268.654984,335.338399 C268.729217,340.069999 269.062116,344.751263 269.474604,349.460018 C269.761969,352.739226 269.66363,356.053669 270.025609,359.317776 L272.159606,359.317776 C272.448118,352.948702 272.264067,346.563752 272.117898,340.18616 Z" id="Fill-97" fill="#4FD2C5"></path>
118
- <path d="M265.65392,349.460018 C265.122813,344.518942 264.866825,339.555021 264.8255,334.587229 C264.755093,326.110618 263.976034,317.532947 264.846545,309.084215 C264.020803,307.202029 263.188938,305.359726 262.354013,303.575502 C262.311922,305.478209 262.19139,307.372011 262.114861,309.287496 C261.850455,315.935742 261.789998,322.638971 262.134759,329.285669 C262.657065,339.357549 264.010089,349.339598 265.395254,359.317776 L266.222527,359.317776 C265.929805,356.045925 266.008247,352.751229 265.65392,349.460018 Z" id="Fill-98" fill="#4FD2C5"></path>
119
- <path d="M258.278106,328.523269 C257.982707,321.643089 257.983089,314.687792 258.364584,307.81071 C258.527589,304.871078 258.509988,301.999205 258.480907,299.057637 C258.470576,298.017227 258.485881,296.968299 258.568915,295.927889 C257.727867,294.33262 256.891028,292.818275 256.063755,291.40228 C255.730474,302.624148 254.936873,313.860343 255.487496,325.070982 C256.051511,336.558083 258.698248,347.848873 259.320042,359.317776 L261.564622,359.317776 C260.129713,349.087918 258.721206,338.846443 258.278106,328.523269 Z" id="Fill-99" fill="#4FD2C5"></path>
120
- <path d="M251.666812,325.070982 C251.13073,311.944084 252.228148,298.817572 252.363604,285.691061 C251.543601,284.617739 250.622581,283.621857 249.502204,282.888885 C249.432946,282.843195 249.357183,282.804088 249.285629,282.760334 C249.208335,296.015009 249.008213,309.265038 249.472741,322.518551 C249.739825,330.138286 250.802423,337.502855 251.833261,345.037792 C252.482223,349.781008 252.939098,354.543584 253.270083,359.317776 L255.494383,359.317776 C254.852692,347.845001 252.136697,336.569699 251.666812,325.070982 Z" id="Fill-100" fill="#4FD2C5"></path>
121
- <path d="M247.950207,344.631231 C246.874982,337.24343 245.896565,329.996183 245.652439,322.518551 C245.193269,308.47476 245.420176,294.439874 245.477572,280.395696 C244.258091,279.205052 243.676857,277.585776 243.118582,276.015288 L243.099067,275.960692 C243.107868,276.243349 243.115521,276.510518 243.118582,276.753293 C243.152254,279.20389 243.387579,281.6541 243.380309,284.103923 C243.353524,293.434313 242.430974,302.736824 242.657498,312.071473 C242.881344,321.298867 243.78591,330.484444 244.855778,339.644078 C245.621445,346.203268 246.353058,352.78569 247.348693,359.317776 L249.4582,359.317776 C249.125684,354.404191 248.65886,349.498351 247.950207,344.631231 Z" id="Fill-101" fill="#4FD2C5"></path>
122
- <path d="M241.035094,339.644078 C239.915483,329.991536 238.920613,320.294854 238.810029,310.566422 C238.705568,301.342899 239.913187,292.093047 239.530162,282.880367 C239.40542,279.879557 239.165886,276.862097 239.353381,273.858576 C239.418048,272.824362 239.50529,271.768851 239.697759,270.744316 C239.40542,270.530194 239.100837,270.330011 238.784009,270.14338 C237.798705,299.938133 236.188929,329.858339 241.488525,359.317776 L243.505433,359.317776 C242.528547,352.781818 241.795405,346.203268 241.035094,339.644078 Z" id="Fill-102" fill="#4FD2C5"></path>
123
- <path d="M250.282795,195.677987 C250.37195,194.087751 250.469524,192.497902 250.610336,190.914249 C249.758575,190.352033 248.845207,189.654296 248.356956,188.794709 C248.104029,190.413598 248.051607,192.205565 248.519961,193.412085 C248.866635,194.305358 249.515597,195.037169 250.282795,195.677987 Z" id="Fill-103" fill="#4FD2C5"></path>
124
- <path d="M254.193399,193.173956 C254.069423,194.824595 253.981033,196.478332 253.888816,198.131294 C254.377068,198.466223 254.866085,198.799991 255.356632,199.131822 C255.50548,197.474601 255.635961,195.81583 255.759172,194.157447 C255.236865,193.829875 254.715706,193.501141 254.193399,193.173956 Z" id="Fill-104" fill="#4FD2C5"></path>
125
- <path d="M259.402692,196.476009 C259.270298,198.147944 259.124894,199.820653 258.958445,201.490653 C259.474629,201.816676 259.992727,202.139215 260.514268,202.455171 C260.731992,200.838219 260.933644,199.218555 261.121522,197.597344 C260.551767,197.218661 259.977038,196.847722 259.402692,196.476009 Z" id="Fill-105" fill="#4FD2C5"></path>
126
- <path d="M264.655224,200.036712 C264.470025,201.518144 264.272581,202.998027 264.066337,204.476362 C264.165059,204.528634 264.262633,204.583617 264.361737,204.635889 C264.957511,204.947973 265.563234,205.243795 266.173166,205.533422 C266.300969,204.153049 266.401603,202.769966 266.47201,201.383011 C265.872409,200.925339 265.266304,200.477347 264.655224,200.036712 Z" id="Fill-106" fill="#4FD2C5"></path>
127
- <path d="M270.106729,204.240944 C270.025609,205.250765 269.931862,206.259037 269.823574,207.264986 C270.456082,207.582104 271.080554,207.912386 271.689721,208.268612 C271.83589,207.406314 272.000426,206.547502 272.186008,205.693336 C271.460135,205.244957 270.777119,204.753598 270.106729,204.240944 Z" id="Fill-107" fill="#4FD2C5"></path>
128
- <path d="M275.683359,207.626632 C275.475584,208.680594 275.299569,209.740751 275.14766,210.805942 C275.968045,211.533106 276.776568,212.286987 277.632539,212.969623 C277.743888,211.686437 277.873986,210.405963 278.031635,209.128198 C277.269029,208.597345 276.489204,208.100566 275.683359,207.626632 Z" id="Fill-108" fill="#4FD2C5"></path>
129
- <path d="M283.630841,211.961738 C283.03124,212.242071 282.185218,212.042275 281.540083,211.729804 C281.422612,212.852301 281.322742,213.97712 281.235499,215.103102 C282.293888,215.430674 283.310952,215.312965 283.556225,213.797072 C283.65686,213.176775 283.667574,212.570418 283.630841,211.961738 Z" id="Fill-109" fill="#4FD2C5"></path>
130
- <polygon id="Fill-110" fill="#FFFFFF" points="282.0291 211.009222 282.028334 211.017354 282.03063 211.017354"></polygon>
131
- <path d="M283.516813,208.811081 C283.466687,208.673237 283.407377,208.540427 283.342711,208.410327 C283.390541,208.545073 283.43531,208.68524 283.471661,208.831989 L283.516813,208.811081 Z" id="Fill-111" fill="#FFFFFF"></path>
132
- <path d="M322.986371,52.7468848 C323.911218,53.3238147 325.207228,53.6544846 326.543797,53.6544846 C327.62591,53.6544846 328.639147,53.4310695 329.396396,53.0248953 C330.77123,52.287664 331.65896,50.8310127 331.896199,48.9240463 C331.939437,48.5775011 331.947855,48.2294072 331.921836,47.8894444 C331.818905,46.5578591 331.124792,45.201493 330.064872,44.2613682 C329.167576,43.4648951 327.516092,43.1086699 326.277478,43.1086699 C326.069321,43.1086699 325.869582,43.11835 325.683617,43.1380972 C324.881982,43.2221199 324.043612,43.551241 323.192998,44.1165549 C322.181675,44.7883492 321.727861,45.4500762 321.395345,46.7386821 C321.2354,47.359753 321.088465,47.9672719 321.044079,48.5728547 C320.91972,50.2672476 321.70031,51.9446037 322.986371,52.7468848 Z" id="Fill-112" fill="#F7AE55"></path>
133
- <path d="M939.951242,299.575713 C939.262486,298.368032 938.569903,297.159189 937.8888,295.945313 C934.984544,290.797085 932.59303,285.327866 930.775478,279.688666 C929.627551,276.119058 928.720689,272.423608 927.844438,268.850127 C927.312565,266.705807 926.77304,264.488305 926.176117,262.325011 C924.798605,257.273196 922.866261,252.629878 920.811472,247.71397 C920.532143,247.042563 920.252814,246.369607 919.973485,245.695102 C917.654672,240.098107 916.49144,234.513116 915.316728,228.316346 C914.344816,223.197545 913.017047,217.871591 909.948255,213.598437 C906.940687,209.420148 902.203574,206.912245 896.586385,206.537047 C894.374712,206.388362 892.025288,206.537434 889.293221,206.998591 C889.212867,207.035375 889.132512,207.051638 889.055983,207.036537 C888.658035,207.105459 888.256261,207.180576 887.846833,207.262275 L887.800916,207.270407 C885.233386,207.779963 882.577848,208.306944 880.19016,209.332254 C877.779513,210.365694 876.386695,211.747615 876.053796,213.439298 C875.625237,215.615756 877.148153,217.591645 878.850912,218.584429 C882.034496,220.448029 886.281826,219.463376 890.027895,218.594109 C890.540636,218.475238 891.030418,218.364498 891.508721,218.25918 L891.57377,218.178642 C892.274005,217.54944 892.78292,216.695661 893.016332,215.774896 C893.062249,215.567356 893.268875,215.440354 893.475502,215.493013 C893.682129,215.544898 893.804575,215.754762 893.754831,215.962301 C893.555857,216.760711 893.173215,217.515366 892.656648,218.15115 C892.733176,218.206907 892.786746,218.287445 892.805878,218.386569 C892.82501,218.463235 892.805878,218.536028 892.779093,218.603402 C893.969111,219.627936 895.35045,220.44919 896.808317,220.996306 L897.053208,221.085362 C897.577428,221.275865 898.116954,221.472176 898.576125,221.847761 C899.069733,222.250838 899.387327,222.794081 899.616912,223.367914 C899.69344,223.339648 899.785275,223.335001 899.873282,223.369462 C901.744403,224.115599 903.933118,224.015314 905.72771,223.101906 C905.919032,223.006268 906.14479,223.083708 906.240451,223.274211 C906.332285,223.465101 906.255757,223.698196 906.068262,223.794222 C904.970078,224.355277 903.734144,224.638708 902.494382,224.638708 C901.602826,224.638708 900.715096,224.483053 899.873282,224.186457 C899.90772,224.297197 899.930679,224.407162 899.957464,224.515578 C900.493163,226.790773 900.650046,229.120951 900.43194,231.447256 C904.568304,233.475416 908.46743,235.974414 912.041309,238.915207 C912.202019,239.050341 912.23263,239.29389 912.094879,239.46 C912.018351,239.55409 911.907384,239.602877 911.796418,239.602877 C911.712237,239.602877 911.628055,239.574224 911.555353,239.515757 C908.000606,236.590451 904.124439,234.107329 900.007207,232.097367 L899.988075,232.096205 C899.884762,232.085751 899.808233,232.036964 899.743184,231.969591 C898.989379,231.604847 898.224094,231.250945 897.454983,230.919113 C895.113212,229.911228 892.660474,229.044285 890.291918,228.205607 L878.977184,224.200784 C878.20042,223.924322 877.320342,223.613399 876.470876,223.707489 C875.529576,223.815905 875.009183,224.012991 874.760465,224.788168 C874.745159,224.851669 874.703069,224.902005 874.660978,224.944984 C874.163543,226.130982 873.949263,228.14985 874.46583,229.558875 C874.741333,230.322823 875.196677,230.850579 875.816558,231.128202 C882.531931,234.126689 885.581591,236.16027 890.196257,239.238133 C891.860752,240.345142 893.322445,241.465702 894.608124,242.603687 C894.661694,242.585489 894.71909,242.576196 894.776486,242.584714 C896.372105,242.792254 898.032773,242.279987 899.241923,241.208988 C899.394979,241.068047 899.639871,241.083922 899.777622,241.244223 C899.919199,241.404912 899.90772,241.649623 899.743184,241.790564 C898.576125,242.827489 897.034076,243.404419 895.480548,243.404419 C898.369498,246.163616 900.202355,249.033939 901.017383,252.087021 C901.472727,253.78335 901.621958,255.551311 901.759709,257.261192 C901.790321,257.602317 901.820932,257.943054 901.847717,258.283404 C902.306888,263.346448 903.305584,268.368836 904.832327,273.211563 C904.897376,273.415231 904.790237,273.632838 904.587436,273.697888 C904.545345,273.710665 904.507081,273.716086 904.468817,273.716086 C904.308107,273.716086 904.15505,273.611155 904.105307,273.446594 C902.559432,268.550434 901.545429,263.472289 901.086259,258.353487 C901.059474,258.011589 901.025036,257.668528 900.998251,257.325468 C900.864326,255.650435 900.718922,253.918096 900.28271,252.290302 C899.07356,247.800316 895.736919,243.858607 889.775351,239.88476 C888.971802,239.347324 888.21417,238.843188 887.479497,238.359186 C887.437406,241.539271 887.406795,244.784792 887.468017,248.011728 C890.770221,249.921405 891.589076,252.926087 892.518896,256.402767 C892.603078,256.708656 892.687259,257.019192 892.77144,257.333986 C892.832663,257.539977 892.710218,257.753713 892.507417,257.811018 L892.404104,257.824958 C892.239568,257.824958 892.082684,257.713056 892.032941,257.541913 C891.952586,257.225183 891.868404,256.913486 891.784223,256.606822 C890.900319,253.315998 890.180952,250.683417 887.479497,248.927846 C887.506282,250.129332 887.552199,251.326558 887.609595,252.515266 L887.624901,252.749523 C887.774131,255.602422 887.99989,259.913134 884.846917,261.488269 C883.572718,262.124054 881.942662,262.246409 880.438877,262.260736 L880.40444,262.270416 C880.128937,262.295197 879.838129,262.285129 879.543494,262.259187 C879.432528,262.258025 879.313909,262.258025 879.206769,262.256864 C878.988663,262.254153 878.77821,262.25183 878.583062,262.251056 C878.430005,262.250281 878.30756,262.161999 878.24251,262.036159 C877.435135,261.835976 876.61628,261.548285 875.896913,261.291184 C875.544882,261.167666 875.223462,261.051506 874.932654,260.95819 C870.413648,259.513155 865.531132,258.094837 860.407551,257.511324 C855.425547,256.943687 848.151516,257.017256 841.769042,260.589188 C841.348135,260.828865 840.900444,261.094485 840.586677,261.470071 C840.081589,262.062101 839.840524,262.719182 839.848177,263.430471 C839.9094,263.495133 839.947664,263.574123 839.951491,263.664728 C839.951491,263.741781 839.932358,263.810703 839.890268,263.872655 C839.9094,263.959775 839.920879,264.046895 839.940011,264.135564 C840.387703,265.998777 842.339179,267.8163 843.973062,268.497774 C848.120905,270.22779 852.991942,271.22522 858.456075,271.461413 C858.915245,271.481548 859.378243,271.496261 859.845066,271.511362 C862.117962,271.584156 864.459733,271.660047 866.679059,272.353525 C871.580707,273.885293 875.751509,278.202975 879.440181,282.012649 C879.834303,282.423856 880.220771,282.82732 880.603414,283.217619 C881.13146,283.758152 881.663333,284.308365 882.202859,284.861676 C885.704036,288.498658 889.331486,292.259544 893.728046,294.572297 C894.080077,294.759315 894.432108,294.942075 894.780313,295.12251 C897.08382,296.320898 899.226617,297.437587 901.00973,298.987167 C901.185746,298.757169 901.510992,298.626295 901.775015,298.60074 C903.741797,298.407913 905.609091,297.337302 906.78763,295.736999 C906.910075,295.565469 907.15114,295.529459 907.319503,295.656848 C907.487865,295.784237 907.526129,296.026625 907.399857,296.198543 C906.098873,297.971925 904.024952,299.157922 901.851543,299.37127 C901.790321,299.377465 901.729098,299.398762 901.679354,299.420832 C901.683181,299.477363 901.675528,299.533508 901.656396,299.586941 C902.245665,300.163484 902.785191,300.801592 903.274973,301.51985 C903.355328,301.433117 903.458641,301.376973 903.584913,301.379296 C905.084871,301.472999 906.607788,300.529389 907.20471,299.138175 C907.288891,298.942251 907.510824,298.852808 907.705971,298.937992 C907.901119,299.023951 907.989127,299.251625 907.904945,299.447936 C907.212363,301.050562 905.505778,302.159507 903.783887,302.159507 L903.6844,302.156409 C904.128265,302.896351 904.522387,303.712571 904.855286,304.635272 C905.015996,305.084425 905.1614,305.545582 905.299151,305.991638 C905.570827,306.875231 905.83485,307.710037 906.232798,308.491797 C906.676663,309.352933 907.30037,310.136628 907.904945,310.893994 C908.482735,311.621932 909.125574,312.348709 909.753108,313.051479 C910.594921,314.005931 911.474998,314.992907 912.213498,316.013182 C913.250459,317.44815 913.981306,319.261801 914.685368,321.015436 C914.945565,321.66516 915.190456,322.278487 915.450652,322.861612 C917.536053,327.585855 919.430133,332.472722 921.071669,337.386694 C923.470836,344.549918 925.387874,351.898999 926.799824,359.317776 L965.618007,359.317776 L951.618007,323.477649 C950.669054,321.294995 949.815762,319.284259 949.180575,317.668855 C946.678095,311.347407 943.257272,305.36321 939.951242,299.575713 Z" id="Fill-113" fill="#B69892"></path>
134
- <path d="M794.003797,317.088827 C792.790821,317.088827 791.780645,318.112588 791.780645,319.339241 C791.780645,320.565895 792.790821,321.590043 794.003797,321.590043 C795.216774,321.590043 796.226949,320.565895 796.226949,319.339241 C796.226949,318.112588 795.216774,317.088827 794.003797,317.088827 Z" id="Fill-114" fill="#FED7D8"></path>
135
- <path d="M806.439674,327.591663 C804.867014,327.591663 804.867014,330.060071 806.439674,330.060071 C808.012334,330.060071 808.012334,327.591663 806.439674,327.591663 Z" id="Fill-115" fill="#FED7D8"></path>
136
- <path d="M793.621155,336.78266 C791.922223,336.78266 791.922223,339.454349 793.621155,339.454349 C795.320087,339.454349 795.320087,336.78266 793.621155,336.78266 Z" id="Fill-116" fill="#FED7D8"></path>
137
- <path d="M812.967552,344.662207 C811.509685,344.662207 810.296709,345.893507 810.296709,347.368744 C810.296709,348.843981 811.509685,350.071409 812.967552,350.071409 C814.425419,350.071409 815.638396,348.843981 815.638396,347.368744 C815.638396,345.893507 814.425419,344.662207 812.967552,344.662207 Z" id="Fill-117" fill="#FED7D8"></path>
138
- <path d="M800.89136,350.950356 C799.67073,350.950356 798.649075,351.984571 798.649075,353.219355 C798.649075,354.454528 799.67073,355.488355 800.89136,355.488355 C802.111989,355.488355 803.133644,354.454528 803.133644,353.219355 C803.133644,351.984571 802.111989,350.950356 800.89136,350.950356 Z" id="Fill-118" fill="#FED7D8"></path>
139
- <path d="M809.883455,315.213224 C808.077383,315.213224 808.077383,318.04444 809.883455,318.04444 C811.693353,318.04444 811.693353,315.213224 809.883455,315.213224 Z" id="Fill-119" fill="#FED7D8"></path>
140
- <path d="M794.195118,296.866465 C792.450269,296.866465 792.450269,299.607076 794.195118,299.607076 C795.939968,299.607076 795.939968,296.866465 794.195118,296.866465 Z" id="Fill-120" fill="#FED7D8"></path>
141
- <path d="M807.778922,301.745976 C806.6463,301.745976 805.697347,302.703525 805.697347,303.851189 C805.697347,304.998854 806.6463,305.95679 807.778922,305.95679 C808.91537,305.95679 809.860496,304.998854 809.860496,303.851189 C809.860496,302.703525 808.91537,301.745976 807.778922,301.745976 Z" id="Fill-121" fill="#FED7D8"></path>
142
- <path d="M776.019607,318.253142 C774.38955,318.253142 774.38955,320.812542 776.019607,320.812542 C777.649663,320.812542 777.649663,318.253142 776.019607,318.253142 Z" id="Fill-122" fill="#FED7D8"></path>
143
- <path d="M777.741497,295.09076 C776.566785,295.09076 775.587221,296.081608 775.587221,297.268767 C775.587221,298.456314 776.566785,299.446774 777.741497,299.446774 C778.916209,299.446774 779.891947,298.456314 779.891947,297.268767 C779.891947,296.081608 778.916209,295.09076 777.741497,295.09076 Z" id="Fill-123" fill="#FED7D8"></path>
144
- <path d="M799.552111,308.297809 C797.822568,308.297809 797.822568,311.020609 799.552111,311.020609 C801.285481,311.020609 801.285481,308.297809 799.552111,308.297809 Z" id="Fill-124" fill="#FED7D8"></path>
145
- <path d="M805.525158,338.978092 C804.308356,338.978092 803.290527,340.008047 803.290527,341.239347 C803.290527,342.470647 804.308356,343.500603 805.525158,343.500603 C806.741961,343.500603 807.75979,342.470647 807.75979,341.239347 C807.75979,340.008047 806.741961,338.978092 805.525158,338.978092 Z" id="Fill-125" fill="#FED7D8"></path>
146
- <path d="M786.660891,347.016391 C787.479745,348.588815 788.134064,350.238293 788.941439,351.806071 C790.303646,351.492825 791.348259,350.242165 791.348259,348.778157 C791.348259,347.086474 789.951615,345.672802 788.279468,345.672802 C787.495051,345.672802 786.775683,345.98295 786.228505,346.485925 C786.396867,346.621445 786.546098,346.796073 786.660891,347.016391 Z" id="Fill-126" fill="#FED7D8"></path>
147
- <path d="M257.858348,128.463325 L257.764218,128.451322 C257.559121,128.39905 257.435145,128.188412 257.486802,127.980872 C258.08602,125.588356 258.894926,123.132725 259.67743,120.757245 C260.454959,118.396866 261.259273,115.955949 261.850838,113.592085 C262.376206,111.493067 262.919558,109.322029 263.994018,107.370921 C265.050493,105.453113 266.561548,103.860942 268.037017,102.425974 C275.781698,94.8949083 285.131564,89.2518365 295.076821,86.1066003 C296.813635,85.5571616 298.796105,85.1389842 300.331649,86.202239 C301.33685,86.8984269 301.966679,88.1827737 302.016805,89.6386506 C302.100987,92.08615 300.583427,94.6645235 297.958118,96.5354802 C296.737489,97.4055215 295.394032,98.0928038 294.094578,98.7576285 C293.07675,99.2784142 292.024483,99.816624 291.051041,100.434597 C287.375379,102.767485 283.327405,105.955701 279.345246,109.654635 C278.980588,109.993823 278.653046,110.406192 278.30599,110.843343 C277.955107,111.284752 277.592744,111.74165 277.1837,112.120333 C277.028347,112.264372 276.786134,112.253917 276.643409,112.096326 C276.500683,111.938348 276.511014,111.693637 276.667132,111.549211 C277.032939,111.21041 277.361628,110.796491 277.70945,110.35818 C278.058803,109.917932 278.420017,109.46297 278.828296,109.0839 C282.843745,105.35399 286.929983,102.13596 290.644675,99.7782911 C291.64758,99.1417322 292.7163,98.5953911 293.749052,98.0664741 C295.024016,97.4144271 296.342219,96.7399225 297.516931,95.902406 C299.930639,94.1824579 301.327284,91.8507316 301.252286,89.6657547 C301.210578,88.4549762 300.705107,87.3990782 299.899645,86.8415083 C298.633864,85.9648846 296.866439,86.3513115 295.304493,86.8457676 C285.472498,89.9553812 276.227094,95.5361136 268.567359,102.984318 C267.134364,104.377855 265.669991,105.918917 264.662111,107.748056 C263.63663,109.610107 263.105905,111.731195 262.592782,113.782588 C261.994329,116.173556 261.185423,118.628412 260.403302,121.002343 C259.625007,123.364271 258.820693,125.80635 258.229128,128.170988 C258.184742,128.34639 258.029006,128.463325 257.858348,128.463325 Z" id="Fill-127" fill="#000000"></path>
148
- <path d="M282.317229,92.4969706 C282.245675,92.4969706 282.173738,92.4768361 282.109072,92.4346312 C281.931909,92.3180836 281.8814,92.078406 281.996575,91.8991318 L291.151293,77.6272789 C291.665565,76.8246106 292.249477,75.9150748 293.113483,75.3063943 C293.947261,74.7178483 295.240592,74.4049897 296.250768,75.0334174 C296.885954,75.4291371 297.258648,76.104029 297.511957,76.6476596 C298.907836,79.6449849 298.90401,83.2223378 297.501626,86.2169526 C297.410939,86.4101661 297.182119,86.4922528 296.992329,86.4012605 C296.801008,86.3094938 296.719505,86.0787218 296.810574,85.8855083 C298.115767,83.0980461 298.11921,79.7681149 296.819757,76.9779423 C296.6116,76.5314992 296.313139,75.9816734 295.849759,75.6932084 C295.134983,75.2490885 294.180673,75.4976718 293.550461,75.9414045 C292.809665,76.463739 292.292715,77.2695049 291.792984,78.0489411 L282.638649,92.3204068 C282.565182,92.4346312 282.442353,92.4969706 282.317229,92.4969706 Z" id="Fill-128" fill="#000000"></path>
149
- <path d="M252.906956,142.531897 L252.905425,142.531897 C252.694207,142.530736 252.523548,142.356495 252.524313,142.14276 C252.566787,133.287854 256.022047,129.518449 259.364045,125.873336 L263.625151,121.209109 C265.314517,119.359835 267.061662,117.447061 269.055993,115.842886 C275.969575,110.282288 285.482064,108.795048 293.125728,107.600145 C294.249548,107.42513 295.649254,107.205974 296.886719,107.746894 C298.973651,108.659527 299.649015,111.405172 298.970207,113.397323 C298.216402,115.610565 296.23661,117.037789 294.708719,117.845104 C292.676123,118.919588 290.404375,119.549177 288.20686,120.15747 C284.923789,121.067006 281.822855,121.925431 279.456978,124.139061 C278.635827,124.907268 277.911485,125.845844 277.21125,126.753444 C275.975315,128.354522 274.69729,130.010582 272.81048,130.856229 C272.615333,130.942575 272.391104,130.854293 272.305775,130.658757 C272.220063,130.46322 272.307306,130.234384 272.50054,130.148038 C274.212099,129.380992 275.375715,127.87323 276.608206,126.2768 C277.32719,125.344806 278.070665,124.381449 278.937732,123.570262 C281.440596,121.228856 284.778002,120.304219 288.004825,119.410559 C290.163311,118.81272 292.394881,118.194747 294.354392,117.158983 C295.759072,116.416331 297.57471,115.117271 298.247013,113.14448 C298.813706,111.480289 298.281068,109.20006 296.583284,108.457796 C295.548619,108.005932 294.270211,108.204953 293.242434,108.365642 C285.294952,109.607783 276.287169,111.016422 269.532001,116.449243 C267.583968,118.016247 265.857103,119.906564 264.187252,121.734928 L259.924999,126.400317 C256.68287,129.936626 253.330541,133.593355 253.289598,142.146632 C253.288833,142.359593 253.117409,142.531897 252.906956,142.531897 Z" id="Fill-129" fill="#000000"></path>
150
- <path d="M294.728999,108.172041 C294.524286,108.172041 294.354775,108.008255 294.347122,107.799553 C294.202866,103.882625 295.0795,100.10083 296.952151,96.5594867 C297.052404,96.3709196 297.283137,96.3000618 297.469866,96.4007341 C297.656596,96.5014065 297.726619,96.7360505 297.627132,96.9246175 C295.819147,100.343605 294.973125,103.992977 295.111642,107.770513 C295.119677,107.984248 294.954758,108.16391 294.74354,108.172041 L294.728999,108.172041 Z" id="Fill-130" fill="#000000"></path>
151
- <path d="M287.317217,123.377823 C287.11786,123.377823 286.949498,123.221394 286.935723,123.016952 C286.872969,122.071019 286.726035,121.124699 286.49951,120.203547 C286.448619,119.996007 286.57336,119.786144 286.778457,119.734259 C286.98164,119.681987 287.190945,119.808989 287.242219,120.016529 C287.479457,120.981434 287.63328,121.973444 287.699477,122.96468 C287.713634,123.178027 287.554073,123.362722 287.343619,123.377049 L287.317217,123.377823 Z" id="Fill-131" fill="#000000"></path>
152
- <path d="M289.786408,147.303379 L289.761919,147.302605 C289.5507,147.289053 289.390756,147.105132 289.404148,146.891397 C289.752735,141.357903 293.176619,136.246459 298.126863,133.869817 C298.318184,133.777276 298.546239,133.860524 298.636543,134.05335 C298.727612,134.246564 298.646109,134.477336 298.45517,134.569103 C293.824433,136.7928 290.493914,141.764464 290.167902,146.940571 C290.154893,147.145788 289.986913,147.303379 289.786408,147.303379 Z" id="Fill-132" fill="#000000"></path>
153
- <path d="M287.282396,109.314285 C287.237627,109.314285 287.19171,109.306154 287.147324,109.289117 C286.949498,109.213225 286.850011,108.98981 286.924626,108.790014 C287.986458,105.944859 289.385781,103.230578 291.083566,100.722675 C291.684697,99.8344353 292.36427,98.9218018 293.258505,98.264334 C293.429546,98.1381064 293.668697,98.1764393 293.792673,98.3495183 C293.917032,98.5225973 293.879533,98.7645981 293.708109,98.8904385 C292.952773,99.4464596 292.365035,100.199953 291.714925,101.160213 C290.051962,103.617005 288.680954,106.275916 287.64055,109.063766 C287.582771,109.218646 287.437367,109.314285 287.282396,109.314285 Z" id="Fill-133" fill="#000000"></path>
154
- <path d="M277.683048,110.23079 C276.75514,110.23079 275.823789,109.972914 275.034015,109.485041 C274.85379,109.373139 274.796777,109.135011 274.906978,108.952639 C275.017179,108.76988 275.252121,108.712961 275.433111,108.824088 C276.310892,109.36617 277.395301,109.57371 278.408538,109.392887 C278.616313,109.355328 278.815287,109.495882 278.851638,109.706907 C278.888754,109.917157 278.749855,110.118115 278.541697,110.155673 C278.258542,110.206009 277.970795,110.23079 277.683048,110.23079 Z" id="Fill-134" fill="#000000"></path>
155
- <path d="M287.57971,102.470115 C287.522313,102.470115 287.464534,102.457337 287.409816,102.429846 C286.596319,102.021735 285.871594,101.422735 285.312936,100.697894 C285.183221,100.529462 285.212684,100.285912 285.379516,100.154651 C285.545966,100.023002 285.786265,100.053204 285.916746,100.222024 C286.404615,100.855485 287.039036,101.379368 287.749985,101.735981 C287.939393,101.831232 288.016687,102.063553 287.922557,102.255218 C287.855977,102.391513 287.720522,102.470115 287.57971,102.470115 Z" id="Fill-135" fill="#000000"></path>
156
- <path d="M264.592853,144.110517 C263.017897,144.110517 261.443324,143.923499 259.910076,143.546752 C259.70498,143.496416 259.578708,143.28694 259.628834,143.0794 C259.67896,142.871473 259.883674,142.743697 260.091066,142.79442 C264.052179,143.768231 268.301423,143.422073 272.056292,141.820221 C272.250292,141.736973 272.475668,141.829127 272.557936,142.0266 C272.639822,142.223685 272.548753,142.450585 272.353988,142.533833 C269.902398,143.579277 267.247626,144.110517 264.592853,144.110517 Z" id="Fill-136" fill="#000000"></path>
157
- <path d="M655.934959,291.872343 C652.724589,292.003991 649.51422,292.145319 646.303851,292.286261 C639.527255,292.58518 632.521073,292.89378 625.625858,293.099771 C613.733334,293.455996 601.638009,293.598099 589.944459,293.735555 L586.382059,293.77776 C585.433106,293.788989 584.480326,293.798282 583.527547,293.807962 C578.346569,293.860234 572.98575,293.913281 567.770335,294.279573 L567.525444,294.296997 C566.691283,294.356239 565.746157,294.423612 564.778072,294.423612 C561.605967,294.423612 559.715713,293.675539 558.816504,292.069428 C556.995126,288.794867 557.064002,283.611016 557.121398,279.037394 C557.144357,277.256655 557.167315,275.573878 557.083134,274.11955 C556.926251,271.704963 556.799979,269.243524 556.66988,266.863398 C556.421163,262.077202 556.153313,257.127608 555.713274,252.281784 C555.663531,251.730796 555.609961,251.167418 555.552565,250.595522 C555.078088,245.945622 554.534736,240.67465 557.756585,237.011726 C560.274371,234.139467 566.102014,233.955933 569.959049,233.833965 C570.291948,233.82351 570.609541,233.813443 570.915655,233.801827 C575.342827,233.638041 579.850354,233.555567 584.20865,233.475416 C586.424149,233.43476 588.643475,233.394104 590.858974,233.342994 L631.855275,232.39861 C637.33854,232.39861 642.917466,232.227467 648.312723,232.061744 C651.006525,231.979271 653.799814,231.893699 656.531881,231.830585 C658.460398,231.786057 660.404221,231.56845 662.275342,231.357812 C664.360743,231.123556 666.522672,230.881168 668.642511,230.881168 C669.346573,230.881168 669.997065,230.906723 670.639904,230.958608 C676.647389,231.444546 678.078471,234.927808 678.736616,241.613226 C680.183004,256.30558 680.971247,271.240321 681.082214,286.002371 C681.093693,287.625131 680.760794,288.848688 680.064385,289.722214 C680.278665,289.747382 680.496771,289.780681 680.730183,289.821337 C680.7761,289.829468 680.810538,289.845731 680.852628,289.857347 L680.898545,289.861993 C681.545211,288.885472 681.858978,287.603061 681.847498,285.996176 C681.736532,271.210894 680.948289,256.252533 679.498074,241.536948 C678.920284,235.669299 677.864192,230.765782 670.701127,230.186529 C670.035329,230.133095 669.361879,230.106765 668.642511,230.106765 C666.476755,230.106765 664.295694,230.351476 662.191161,230.588056 C660.331519,230.797145 658.406828,231.012816 656.516575,231.056183 C653.773029,231.119684 650.983567,231.204868 648.289764,231.287729 C642.898334,231.453451 637.327061,231.624207 631.847623,231.624207 L590.843669,232.568591 C588.624343,232.619701 586.41267,232.660358 584.189518,232.701014 C579.831222,232.781164 575.319868,232.863638 570.88887,233.028199 C570.586583,233.039428 570.265163,233.049495 569.936091,233.059949 C565.948957,233.185403 559.92234,233.375906 557.186448,236.497523 C553.742666,240.414838 554.297498,245.865858 554.791106,250.674898 C554.844676,251.243697 554.902073,251.803977 554.951816,252.351867 C555.388028,257.183752 555.655878,262.12599 555.904596,266.904828 C556.034694,269.287278 556.164792,271.750265 556.317849,274.16795 C556.402031,275.593238 556.379072,277.261301 556.356114,279.027327 C556.294891,283.698523 556.229842,288.993114 558.150706,292.44966 C559.528219,294.913034 562.593184,295.198015 564.778072,295.198015 C565.772942,295.198015 566.733374,295.129867 567.579014,295.069464 L567.823905,295.052427 C573.020188,294.687683 578.369528,294.634249 583.539026,294.582364 C584.491806,294.572684 585.440759,294.563392 586.389712,294.552163 L589.952112,294.509958 C601.649488,294.372501 613.74864,294.230399 625.64499,293.874173 C632.547858,293.667408 639.557866,293.358808 646.342115,293.059889 C649.548658,292.918948 652.755201,292.777619 655.96557,292.645971 L657.840517,292.568531 C659.857043,292.484895 661.904179,292.40126 663.958969,292.327304 C664.020191,292.274645 664.089067,292.225083 664.154116,292.183652 C664.234471,292.137575 664.314826,292.08995 664.387528,292.036129 C664.441098,291.997796 664.697468,291.79529 664.425792,292.014058 C664.613287,291.861888 664.804608,291.709331 664.995929,291.561807 L665.064805,291.514569 C662.623547,291.597042 660.193768,291.695779 657.809906,291.794902 L655.934959,291.872343 Z" id="Fill-137" fill="#000000"></path>
158
- <path d="M508.261797,359.964402 L507.630437,360.219955 C507.42381,360.165747 508.919942,354.349983 508.973512,354.144767 C511.365026,345.332065 516.576615,337.35959 523.655498,331.689414 C526.571233,329.355752 529.804561,327.397288 532.938402,325.503486 C536.018673,323.639112 539.206084,321.711237 542.064422,319.436042 C543.204696,318.523795 544.333491,317.526752 545.427848,316.562621 C548.297666,314.028001 551.26697,311.407036 554.875288,309.982135 C556.807632,309.220123 558.858595,308.827888 560.836856,308.449205 L572.465357,306.222797 C576.911661,305.370954 581.518674,304.500139 586.14482,304.56364 C587.908802,304.593454 590.101342,304.626754 591.080907,303.208048 C591.876803,302.05109 591.482681,300.364829 590.728876,299.207097 C589.592428,297.452688 587.587382,296.139301 585.084901,295.509712 C582.888534,294.957563 580.604159,294.951755 578.055761,295.000929 C574.543104,295.067528 570.961572,295.189109 567.502485,295.306431 C563.829119,295.431497 560.021827,295.560435 556.279585,295.624323 C553.325586,295.675047 550.677701,295.632067 548.217311,294.590109 C546.847451,294.007371 545.557947,293.117195 544.30288,292.256059 C542.026158,290.685571 539.879534,289.202977 537.384706,289.572754 C537.174253,289.606828 536.975279,289.457755 536.948494,289.246343 C536.914056,289.034544 537.05946,288.837846 537.269913,288.80687 C540.063202,288.390241 542.435585,290.030426 544.735265,291.616403 C545.952068,292.455855 547.210961,293.323573 548.511945,293.876497 C550.830758,294.859988 553.394462,294.900644 556.264279,294.849921 C560.006522,294.78642 563.802334,294.657482 567.4757,294.532416 C570.938614,294.414706 574.520146,294.293512 578.040456,294.226526 C580.642424,294.176965 582.984195,294.183547 585.26857,294.758154 C587.958545,295.434982 590.124301,296.864142 591.367889,298.783111 C592.198222,300.057778 592.779839,302.098329 591.712267,303.651393 C590.495464,305.407351 588.080991,305.369018 586.133341,305.338042 C581.579897,305.267184 577.0188,306.139549 572.606934,306.983648 L560.978433,309.209668 C559.030784,309.582156 557.021911,309.967421 555.154617,310.703878 C551.668745,312.079217 548.75301,314.655267 545.92911,317.145746 C544.830926,318.11646 543.698305,319.120085 542.535072,320.044335 C539.642296,322.350506 536.431927,324.291546 533.328697,326.168311 C530.217815,328.049335 527.007445,329.994247 524.133801,332.296546 C517.173537,337.866824 512.053782,345.696034 509.708185,354.349983 C509.662268,354.520352 508.430159,359.964402 508.261797,359.964402 Z" id="Fill-138" fill="#000000"></path>
159
- <path d="M541.827184,290.509394 C541.62821,290.509394 541.459847,290.356837 541.448368,290.15433 C541.325922,288.753823 541.084857,287.310337 540.851446,285.914476 C540.288961,282.543502 539.703519,279.057915 540.801702,275.770189 C541.478979,273.735834 542.737872,272.003108 543.954675,270.403579 C547.356366,265.958508 551.569258,261.289248 555.5143,257.593798 C555.667357,257.448211 555.908422,257.457116 556.053826,257.61432 C556.19923,257.771524 556.187751,258.016235 556.03852,258.161435 C552.120263,261.829781 547.937982,266.464967 544.563076,270.877513 C543.376885,272.425157 542.167735,274.09748 541.524896,276.018385 C540.495588,279.120642 541.031288,282.358032 541.605251,285.784764 C541.842489,287.196887 542.08738,288.656636 542.209826,290.090055 C542.225132,290.303016 542.072075,290.490421 541.857795,290.507845 L541.827184,290.509394 Z" id="Fill-139" fill="#000000"></path>
160
- <path d="M471.210538,359.317776 C471.168447,359.317776 470.682492,359.333264 470.636575,359.317776 C470.437601,359.244208 471.792155,355.236674 471.864857,355.03533 C476.678497,341.967286 480.944959,328.517848 484.545624,315.061441 C484.886176,313.799552 485.219075,312.536115 485.551973,311.273064 C486.183333,308.879385 486.833825,306.404007 487.514929,303.978579 C495.007066,277.262463 504.305275,265.714184 510.649485,259.352467 C512.237451,257.758359 513.940209,256.232011 515.577918,254.756 C516.473302,253.95217 517.39547,253.121623 518.290853,252.290689 C526.823777,244.358096 534.078676,235.17523 539.833617,224.997644 C540.354011,224.07533 541.004503,222.928053 542.117992,222.415786 C542.87945,222.064981 543.763354,222.075823 544.616646,222.447536 C545.703351,222.921083 546.614039,223.918514 546.996682,225.05069 C547.532381,226.646347 547.413762,228.546731 546.629345,230.861033 C543.755701,239.371718 539.297918,247.203639 532.609329,255.509107 C530.259905,258.43054 527.696202,261.525828 524.925871,264.366336 C524.776641,264.518506 524.535576,264.520442 524.382519,264.370208 C524.233288,264.219974 524.233288,263.974489 524.378693,263.822319 C527.129891,261.004655 529.678289,257.926404 532.02006,255.019684 C538.647426,246.787397 543.059292,239.031368 545.906151,230.610514 C546.633172,228.464644 546.755617,226.728046 546.273488,225.300822 C545.955895,224.369216 545.205916,223.548349 544.318185,223.158825 C543.851362,222.95748 543.151126,222.788273 542.431759,223.120492 C541.547855,223.529376 540.989197,224.514029 540.495588,225.382522 C534.702383,235.629417 527.401567,244.874236 518.80742,252.861037 C517.912037,253.69623 516.982216,254.529487 516.090659,255.334866 C514.45295,256.804295 512.761671,258.322898 511.189011,259.901905 C501.202045,269.915705 493.912709,283.988537 488.253428,304.189603 C487.572325,306.609611 486.925659,309.081505 486.2943,311.472473 C485.961401,312.737072 485.628502,314.000897 485.28795,315.263948 C481.675806,328.743199 477.405518,342.215094 472.584224,355.306371 C472.526828,355.461251 471.371248,359.317776 471.210538,359.317776 Z" id="Fill-140" fill="#000000"></path>
161
- <path d="M532.043019,255.749946 L531.943532,255.736007 C530.508623,255.333317 529.150243,254.714569 527.899002,253.896413 C527.722987,253.780253 527.67707,253.540575 527.788036,253.360914 C527.906655,253.18164 528.143893,253.129755 528.316082,253.246689 C529.498447,254.021866 530.787952,254.608476 532.146332,254.989482 C532.352959,255.046401 532.467752,255.260136 532.414182,255.466127 C532.364438,255.637657 532.215208,255.749946 532.043019,255.749946 Z" id="Fill-141" fill="#000000"></path>
162
- <path d="M540.905016,243.107823 C540.870578,243.107823 540.832314,243.103177 540.794049,243.091948 C539.684386,242.758568 538.697169,241.997717 538.081115,241.00532 C537.970149,240.82411 538.023719,240.585207 538.203561,240.471757 C538.383402,240.35792 538.620641,240.412515 538.731607,240.5945 C539.252001,241.429306 540.078508,242.069349 541.015982,242.349296 C541.214956,242.410474 541.329749,242.625758 541.268526,242.831361 C541.222609,242.99902 541.069552,243.107823 540.905016,243.107823 Z" id="Fill-142" fill="#000000"></path>
163
- <path d="M538.406361,247.255136 C538.295395,247.255136 538.184428,247.206349 538.1079,247.112259 C537.973975,246.946537 538.004587,246.7026 538.165296,246.567467 C540.667777,244.509105 543.418976,242.720622 546.074514,240.991381 L556.754062,234.0477 C559.382815,232.337432 562.359772,230.398715 564.162018,227.575243 C565.195152,225.950933 565.948957,223.42793 564.663279,221.664228 C563.794681,220.473584 562.08427,219.965963 560.603444,220.45616 C559.964431,220.666023 559.367509,221.040059 558.789719,221.402093 L547.314275,228.598229 C547.138259,228.712066 546.901021,228.654373 546.786228,228.473163 C546.675262,228.291565 546.728832,228.052662 546.908674,227.940374 L558.387944,220.74385 C559.003999,220.357811 559.639185,219.958606 560.366205,219.719703 C562.156972,219.129995 564.219414,219.753389 565.279333,221.204233 C566.798423,223.285827 565.971916,226.163507 564.80103,227.994969 C562.91843,230.959382 559.861118,232.946112 557.163489,234.698972 L546.491594,241.642266 C543.847535,243.360666 541.119295,245.137145 538.647426,247.16879 C538.57855,247.226871 538.490542,247.255136 538.406361,247.255136 Z" id="Fill-143" fill="#000000"></path>
164
- <path d="M551.905983,237.679648 C551.825628,237.679648 551.733794,237.65177 551.664918,237.593689 C550.731271,236.828967 549.943028,235.906653 549.338453,234.852304 C549.227487,234.667996 549.292536,234.430642 549.472378,234.323 C549.65222,234.215358 549.889458,234.278085 549.992771,234.462005 C550.555256,235.434268 551.27845,236.284949 552.143221,236.991204 C552.307758,237.124789 552.334543,237.368725 552.204444,237.535222 C552.127916,237.630086 552.020776,237.679648 551.905983,237.679648 Z" id="Fill-144" fill="#000000"></path>
165
- <path d="M515.838115,255.597776 C515.773066,255.597776 515.711843,255.580739 515.646794,255.545503 C515.463126,255.437862 515.401903,255.201282 515.509043,255.016199 L521.340512,244.858747 C521.937434,243.814466 522.557315,242.734948 523.425913,241.837416 C524.229462,241.009192 525.189894,240.388121 526.119715,239.787959 L533.187119,235.235246 C533.366961,235.121022 533.6042,235.173294 533.715166,235.354117 C533.826132,235.534553 533.776389,235.773843 533.600373,235.888842 L526.532969,240.441555 C525.637586,241.017711 524.711591,241.614001 523.973092,242.37911 C523.177196,243.206947 522.576447,244.244259 522.002484,245.247498 L516.171014,255.404949 C516.102139,255.529241 515.968214,255.597776 515.838115,255.597776 Z" id="Fill-145" fill="#000000"></path>
166
- <path d="M535.750823,264.181641 C535.685774,264.181641 535.620725,264.166153 535.567155,264.133241 C535.375834,264.029858 535.310784,263.794053 535.417924,263.607035 C536.206168,262.159289 537.698473,260.443987 539.137208,258.785604 C540.017285,257.774621 540.847619,256.82017 541.433062,256.020212 C543.166432,253.654412 544.490374,251.558492 545.492897,249.612418 C546.931633,246.822633 549.797624,245.129014 552.571781,243.491152 C553.455685,242.971528 554.282192,242.480557 555.058956,241.960546 C555.234972,241.842449 555.47221,241.89085 555.590829,242.069737 C555.705622,242.248236 555.659705,242.488301 555.483689,242.606398 C554.691619,243.138799 553.84598,243.634804 552.95825,244.159849 C550.279753,245.742341 547.509423,247.379041 546.177827,249.970192 C545.152346,251.952663 543.801618,254.08227 542.049116,256.480982 C541.448368,257.306882 540.602728,258.273724 539.714998,259.297097 C538.299221,260.924891 536.833701,262.607668 536.087548,263.982233 C536.01102,264.110009 535.880922,264.181641 535.750823,264.181641 Z" id="Fill-146" fill="#000000"></path>
167
- <path d="M537.832398,260.819185 C537.771175,260.819185 537.713778,260.804472 537.652556,260.773495 L537.067113,260.457539 C536.516108,260.159781 535.880922,259.822142 535.402619,259.300582 C535.257215,259.144152 535.264867,258.899441 535.421751,258.753466 C535.574808,258.607879 535.815872,258.615235 535.961276,258.772052 C536.355398,259.199135 536.902577,259.491085 537.426797,259.773355 L538.012239,260.090085 C538.199734,260.190758 538.26861,260.425014 538.169123,260.613581 C538.104074,260.744455 537.970149,260.819185 537.832398,260.819185 Z" id="Fill-147" fill="#000000"></path>
168
- <path d="M546.327058,249.340215 L546.231397,249.328987 C545.293923,249.094343 543.943196,248.249082 543.503157,247.410791 C543.40367,247.222224 543.468719,246.98758 543.656214,246.886134 C543.843709,246.785074 544.077121,246.855157 544.176608,247.043724 C544.50568,247.664408 545.668913,248.390023 546.418892,248.577042 C546.617866,248.628539 546.744138,248.83879 546.690568,249.04633 C546.648477,249.222506 546.491594,249.340215 546.327058,249.340215 Z" id="Fill-148" fill="#000000"></path>
169
- <path d="M572.316126,233.722064 C572.178375,233.722064 572.040624,233.643849 571.975574,233.508328 C571.879914,233.317438 571.960269,233.08473 572.143937,232.989092 C573.731903,232.184487 576.50606,230.014998 577.202469,227.617448 C577.474145,226.697845 577.386137,225.850261 576.949925,225.097542 C576.104285,223.638954 574.191074,223.959557 572.46153,224.37425 C570.770251,224.77965 568.612148,225.780952 566.702763,226.664158 C566.151758,226.917388 565.631364,227.157453 565.160714,227.366154 C564.965566,227.453662 564.743634,227.362282 564.655626,227.167133 C564.571445,226.971209 564.659453,226.74276 564.8546,226.656801 C565.321424,226.449649 565.841817,226.211133 566.381343,225.959839 C568.325166,225.061919 570.52536,224.043967 572.285515,223.620756 C573.728076,223.275372 576.410399,222.631069 577.611896,224.705694 C578.159075,225.650465 578.273867,226.703653 577.940969,227.836604 C577.171857,230.469185 574.187247,232.818336 572.492141,233.68102 C572.438572,233.708899 572.373522,233.722064 572.316126,233.722064 Z" id="Fill-149" fill="#000000"></path>
170
- <path d="M519.044658,336.132162 C517.150579,336.132162 515.260325,335.257087 514.055002,333.762877 C513.921077,333.597542 513.947862,333.353605 514.108572,333.218085 C514.276935,333.082952 514.517999,333.107345 514.648098,333.273068 C515.884032,334.804061 517.931169,335.597824 519.85586,335.295807 C520.07014,335.264831 520.261461,335.408096 520.292072,335.621056 C520.32651,335.830145 520.181106,336.027618 519.974479,336.062466 C519.664539,336.10893 519.354598,336.132162 519.044658,336.132162 Z" id="Fill-150" fill="#000000"></path>
171
- <path d="M553.497775,260.375065 C553.448032,260.375065 553.402115,260.366547 553.356198,260.348348 C552.070519,259.83763 550.941724,258.910283 550.187919,257.736288 C550.01573,257.468345 549.843541,257.143483 549.874152,256.765575 C549.889458,256.552227 550.080779,256.393474 550.28358,256.410124 C550.494033,256.427161 550.650916,256.613405 550.635611,256.826753 C550.627958,256.973502 550.731271,257.155874 550.826932,257.314239 C551.496556,258.353487 552.495252,259.175516 553.6317,259.62738 C553.830674,259.705594 553.930161,259.930171 553.849806,260.129193 C553.79241,260.28175 553.647006,260.375065 553.497775,260.375065 Z" id="Fill-151" fill="#000000"></path>
172
- <path d="M559.45169,235.598054 C559.321592,235.598054 559.19532,235.529519 559.122618,235.406776 L558.479779,234.290088 C558.368812,234.105393 558.430035,233.868039 558.613703,233.760009 C558.793545,233.651206 559.026957,233.713932 559.134097,233.897466 L559.784589,235.014929 C559.891729,235.199624 559.830506,235.436591 559.646838,235.54462 C559.585615,235.581017 559.524392,235.598054 559.45169,235.598054 Z" id="Fill-152" fill="#000000"></path>
173
- <path d="M748.503796,359.317776 L744.13402,346.482053 C743.062621,343.547067 741.956785,340.515281 740.185151,337.909416 C739.347164,336.68586 738.363773,335.547488 737.418647,334.486556 C734.57944,331.287499 731.200709,327.696594 726.991643,325.557307 C726.153656,325.13216 725.265926,324.7558 724.408807,324.391444 C722.836147,323.724296 721.209917,323.033916 719.786487,322.005897 C718.776311,321.277571 717.892408,320.392816 717.031462,319.537101 C716.576118,319.088722 716.109294,318.624468 715.638644,318.193513 C713.017544,315.809514 709.87605,314.131771 706.845523,312.509398 C701.239813,309.516332 694.891776,306.124061 688.107527,304.865657 C687.453209,304.744075 686.779758,304.639918 686.133093,304.539633 C684.682878,304.315831 683.186747,304.084284 681.751838,303.644037 C681.08604,303.441143 680.439375,303.192173 679.804188,302.951333 C679.027424,302.655512 678.223875,302.349623 677.4165,302.136275 C675.005853,301.497005 672.411538,301.632913 669.893751,301.763787 C667.020107,301.913634 664.046976,302.069289 661.280472,301.085798 C659.960356,300.615735 659.191245,299.87773 659.061147,298.951157 C658.957833,298.25342 659.256294,297.589757 659.566234,297.032962 C661.548322,293.451349 664.911748,290.729712 668.799394,289.565397 C672.488067,288.461099 676.501985,288.779766 680.045253,289.0601 L696.690195,290.379682 C697.796031,290.467189 698.940132,290.557407 700.019184,290.326248 C702.410698,289.812819 704.21677,287.418753 703.883871,285.203187 C703.849433,284.991388 703.994838,284.794303 704.201464,284.762165 C704.419571,284.728479 704.607065,284.875228 704.637677,285.085865 C705.039451,287.731999 702.996141,290.478805 700.179893,291.084001 C698.997528,291.338779 697.792205,291.243915 696.632799,291.152148 L679.987857,289.832179 C676.341275,289.543714 672.568421,289.24402 669.0175,290.308049 C665.317349,291.415058 662.114632,294.004273 660.232032,297.411257 C659.975662,297.87706 659.746076,298.372291 659.814952,298.839643 C659.933571,299.668641 660.943747,300.144898 661.533016,300.355149 C664.161769,301.288304 666.928273,301.143491 669.855487,300.990546 C672.423017,300.856187 675.086208,300.716795 677.611648,301.386653 C678.457287,301.610843 679.276142,301.924088 680.072038,302.22688 C680.691918,302.462685 681.334758,302.707009 681.977597,302.902933 C683.358936,303.327306 684.824456,303.554206 686.244059,303.773749 C686.902204,303.875583 687.579481,303.980127 688.245278,304.104032 C695.14432,305.383345 701.549753,308.80543 707.197554,311.824826 C710.132421,313.392604 713.457583,315.169471 716.147559,317.617357 C716.633514,318.060316 717.107991,318.530378 717.563335,318.984952 C718.405148,319.819758 719.26992,320.682443 720.230352,321.375146 C721.584906,322.353604 723.172872,323.026559 724.703441,323.677445 C725.575866,324.046835 726.475076,324.428615 727.332194,324.865378 C731.659879,327.065456 735.103661,330.717539 737.984957,333.968094 C738.94539,335.047998 739.951739,336.20573 740.808858,337.468006 C742.637888,340.155184 743.77051,343.233434 744.853388,346.211012 L747.864783,354.446784 C747.937485,354.648128 749.334129,359.244208 749.135155,359.317776 C749.093065,359.333264 748.557366,359.472657 748.503796,359.317776 Z" id="Fill-153" fill="#000000"></path>
174
- <path d="M684.426508,294.253243 L684.369111,294.248984 C684.158658,294.216846 684.017081,294.019374 684.047692,293.807962 C684.246666,292.497673 684.043865,291.116913 683.481381,289.918912 C683.389547,289.726086 683.473728,289.494927 683.66505,289.40316 C683.852544,289.31178 684.08213,289.39348 684.17779,289.58708 C684.801497,290.922538 685.02343,292.462825 684.805324,293.924509 C684.774712,294.116174 684.614003,294.253243 684.426508,294.253243 Z" id="Fill-154" fill="#000000"></path>
175
- <path d="M792.010231,359.317776 C791.864827,359.317776 791.394176,357.881259 791.329127,357.741867 C790.070234,355.05469 783.664801,341.301299 781.368947,334.22326 C781.154667,333.577021 780.967172,332.911422 780.791157,332.26828 C780.263111,330.390741 779.712106,328.449314 778.571831,326.900896 C778.036132,326.171796 777.393293,325.551499 776.708363,324.895193 C776.191796,324.401124 775.659923,323.889631 775.18162,323.3309 C773.746711,321.646187 772.855155,319.584727 771.990383,317.591028 C771.806715,317.177109 771.626873,316.763578 771.443204,316.354307 C770.379459,313.978439 769.112912,311.650972 767.884631,309.400946 L763.139865,300.670331 C761.268744,297.23934 759.3364,293.692189 757.235694,290.325473 C755.157946,286.990121 752.483276,283.99357 749.896614,281.095756 C746.4337,277.211352 742.852168,273.194913 740.659627,268.317726 C738.819118,264.243981 734.701886,261.565709 731.39203,259.414419 L722.442025,253.595171 C720.907629,252.597353 719.327316,251.567784 717.815879,250.472392 C711.846659,246.131865 706.799606,240.556941 701.920916,235.16555 C699.307469,232.280126 696.60984,229.296353 693.797419,226.538705 C692.863772,225.619102 691.757935,224.640644 690.499042,224.640644 L690.453125,224.641031 C689.787327,224.653809 689.106224,225.005388 688.539913,225.630331 C687.797587,226.445002 687.357548,227.605832 687.422597,228.587774 C687.6981,233.092861 690.68271,237.523219 695.205543,240.149218 L695.415996,240.267314 C695.848382,240.516285 696.296073,240.774161 696.686369,241.132322 C697.363646,241.749908 697.761594,242.565741 698.144236,243.35447 L698.281987,243.628609 C699.76664,246.640648 701.886478,249.38668 704.419571,251.570108 C704.790734,251.887226 705.16955,252.193889 705.540713,252.500165 C706.126155,252.972938 706.723077,253.461973 707.285562,253.986244 C708.326349,254.953085 709.240864,256.053124 710.120942,257.117154 C710.641335,257.745194 711.180861,258.394531 711.735692,259.003986 C713.553243,260.998072 715.213911,262.148447 716.962587,262.624705 C717.165387,262.680075 717.287833,262.892648 717.230436,263.099027 C717.180693,263.305792 716.966413,263.428922 716.763613,263.372391 C714.865707,262.856251 713.090246,261.635018 711.173208,259.52903 C710.606897,258.906024 710.059719,258.250105 709.535499,257.615482 C708.666901,256.570038 707.767691,255.488972 706.765168,254.55543 C706.225642,254.048583 705.632547,253.568454 705.06241,253.104199 C704.679767,252.792889 704.297125,252.48158 703.925962,252.159428 C701.312515,249.909401 699.1238,247.07896 697.593231,243.97438 L697.45548,243.696756 C697.09197,242.939778 696.739939,242.22423 696.177454,241.706154 C695.848382,241.406073 695.450434,241.180335 695.033354,240.941045 L694.826727,240.820625 C690.081962,238.066849 686.951947,233.397976 686.657313,228.636174 C686.580784,227.43585 687.089699,226.082969 687.973602,225.105673 C688.685317,224.323914 689.561568,223.884053 690.441646,223.866629 C692.018132,223.846107 693.273199,224.943048 694.333118,225.983071 C697.157019,228.756207 699.866127,231.748499 702.4834,234.642054 C707.339132,240.004792 712.359399,245.549515 718.263571,249.84319 C719.752049,250.927354 721.328536,251.951114 722.851452,252.941188 L731.805283,258.762759 C735.199321,260.969032 739.423693,263.715451 741.35221,267.996349 C743.498834,272.764345 747.042102,276.736256 750.470577,280.576906 C753.072545,283.499114 755.766347,286.520833 757.88236,289.911555 C759.994545,293.298018 761.930716,296.856011 763.80949,300.296681 L768.558081,309.027296 C769.794016,311.290101 771.064388,313.630733 772.139613,316.034091 C772.327108,316.44646 772.50695,316.863089 772.686792,317.279718 C773.528605,319.221145 774.40103,321.228397 775.767063,322.824828 C776.214754,323.354906 776.731322,323.85246 777.232583,324.333364 C777.90986,324.983862 778.610096,325.656043 779.187886,326.43819 C780.412341,328.100445 780.974825,330.111569 781.522004,332.055707 C781.701846,332.692266 781.893167,333.350121 782.092141,333.97971 C784.380342,341.01477 790.762817,354.729441 792.017883,357.408874 C792.109718,357.602474 792.775515,359.224848 792.584194,359.317776 C792.530624,359.34488 792.063801,359.317776 792.010231,359.317776 Z" id="Fill-155" fill="#000000"></path>
176
- <path d="M704.266514,285.531921 C704.101977,285.531921 703.952747,285.4297 703.899177,285.26785 C702.380087,280.693067 699.491137,275.423257 696.537138,271.843194 C696.131537,271.347189 695.687672,270.856992 695.266766,270.383445 C694.842033,269.917254 694.413473,269.435189 694.000219,268.941507 C693.04744,267.790745 692.190321,266.541633 691.359987,265.33434 C691.065353,264.905708 690.774544,264.477463 690.476083,264.053091 C687.346069,259.602986 683.699487,255.530403 679.62052,251.948016 C679.45981,251.807849 679.444504,251.563138 679.586082,251.401675 C679.72766,251.239825 679.968724,251.22395 680.121781,251.363729 C684.242839,254.985998 687.935338,259.104271 691.095964,263.604324 C691.398251,264.031407 691.692886,264.461588 691.987521,264.892156 C692.806375,266.08551 693.655841,267.319908 694.585662,268.443953 C694.987437,268.925632 695.415996,269.401889 695.82925,269.862659 C696.257809,270.342014 696.709327,270.838406 697.122581,271.346801 C700.133976,274.995012 703.080322,280.362397 704.622371,285.02159 C704.695073,285.224096 704.584107,285.443639 704.381306,285.511787 C704.343042,285.525339 704.300951,285.531921 704.266514,285.531921 Z" id="Fill-156" fill="#000000"></path>
177
- <path d="M708.770214,258.052245 C708.708991,258.052245 708.640116,258.035595 708.578893,258.000747 C705.016493,255.926897 701.867346,253.266437 699.207982,250.093322 C699.074057,249.935344 698.943959,249.775817 698.81386,249.61629 C698.239897,248.91623 697.639148,248.192551 696.954218,247.611749 C696.2999,247.061923 695.534615,246.615867 694.796115,246.184912 L694.509134,246.016867 C690.315374,243.553105 686.420074,240.578237 682.918897,237.175899 L682.850021,237.111237 C682.383198,236.656275 681.943159,236.226094 681.411286,235.95273 C681.08604,235.783911 680.730183,235.676269 680.34754,235.562431 C680.140914,235.502028 679.941939,235.441625 679.742965,235.371541 C677.864192,234.710589 676.410151,233.296142 674.967589,231.781411 C673.081162,229.797391 671.129686,227.651522 668.833832,225.027846 C668.328744,224.45169 667.758607,223.798481 667.44484,222.987295 C666.625986,220.868142 667.81983,218.632442 668.967757,217.130875 C670.157775,215.575875 672.675561,216.252315 674.47398,217.304728 C675.57599,217.948644 676.505811,218.831076 677.405021,219.684468 C677.772357,220.034885 678.155,220.396531 678.537642,220.733009 C679.850105,221.880673 681.338584,222.856421 682.777319,223.799643 L687.713406,227.034323 C687.885595,227.150483 687.935338,227.390548 687.820545,227.569822 C687.709579,227.748709 687.472341,227.800207 687.292499,227.683659 L682.360239,224.449367 C680.898545,223.491818 679.394761,222.501744 678.040207,221.319231 C677.642259,220.971912 677.25579,220.604845 676.880801,220.249394 C675.973938,219.388259 675.116819,218.574361 674.091338,217.974974 C672.491893,217.039883 670.402666,216.524518 669.572332,217.604035 C668.734345,218.704074 667.433361,220.829422 668.156555,222.704638 C668.420578,223.388435 668.944798,223.986661 669.407796,224.514417 C671.695997,227.129961 673.635994,229.268087 675.518594,231.243588 C676.899933,232.688236 678.273619,234.035309 679.991683,234.640118 C680.179178,234.705942 680.370499,234.763248 680.56182,234.819779 C680.959768,234.93865 681.369195,235.061393 681.759491,235.26235 C682.390851,235.588761 682.895938,236.078958 683.381894,236.554054 L683.446943,236.617942 C686.902204,239.977301 690.751586,242.914223 694.895602,245.347008 L695.178758,245.513892 C695.947869,245.961497 696.739939,246.42459 697.444001,247.017395 C698.186327,247.642725 698.806207,248.394283 699.399303,249.121059 C699.529401,249.27865 699.6595,249.436241 699.789598,249.592671 C702.395393,252.697251 705.475663,255.300405 708.961535,257.32934 C709.145204,257.436207 709.206426,257.673175 709.099286,257.858257 C709.030411,257.982548 708.904139,258.052245 708.770214,258.052245 Z" id="Fill-157" fill="#000000"></path>
178
- <path d="M662.374829,231.209902 C662.275342,231.209902 662.175855,231.170794 662.099327,231.093354 L659.811126,228.724069 C658.877478,227.757228 657.917046,226.757474 657.297165,225.492874 C656.96044,224.795138 656.600756,223.722977 656.818862,222.581508 C657.021663,221.482243 657.767815,220.567287 658.709116,220.249781 C659.064973,220.131685 659.462921,220.083285 659.971835,220.100709 C662.608241,220.188991 667.651467,223.213807 669.373358,224.371539 C669.549373,224.490023 669.59529,224.730475 669.480498,224.908588 C669.361879,225.0867 669.12464,225.134326 668.948625,225.016617 C666.625986,223.453872 662.129938,220.947518 659.941224,220.874337 C659.531797,220.863108 659.21803,220.89602 658.95018,220.985077 C658.26525,221.215074 657.725725,221.898485 657.565015,222.725934 C657.392826,223.65754 657.69894,224.558945 657.985922,225.150976 C658.544579,226.304835 659.466747,227.259674 660.358304,228.182762 L662.650332,230.552047 C662.795736,230.704991 662.795736,230.950089 662.646505,231.099549 C662.56615,231.173117 662.47049,231.209902 662.374829,231.209902 Z" id="Fill-158" fill="#000000"></path>
179
- <path d="M701.80995,265.667333 C701.752553,265.667333 701.698983,265.65533 701.645414,265.629387 C701.454092,265.53762 701.373737,265.306461 701.465572,265.113635 C702.043362,263.88582 701.557406,262.450852 700.918393,261.516922 C700.22581,260.521815 699.227114,259.743153 698.259029,258.990433 L697.949088,258.743786 C695.278245,256.654448 693.376512,254.741286 691.956909,252.723193 C691.74263,252.418853 691.539829,252.108318 691.333202,251.797782 C690.881684,251.117469 690.418687,250.414312 689.875335,249.810665 C688.570524,248.360209 686.7568,247.411953 685.000471,246.49506 C683.026037,245.460458 680.9789,244.391008 679.570776,242.581617 C679.440678,242.413571 679.467463,242.170409 679.635826,242.037986 C679.800362,241.906338 680.041426,241.93499 680.171525,242.103036 C681.476335,243.780005 683.362762,244.764658 685.352502,245.806616 C687.166227,246.754872 689.041175,247.73604 690.441646,249.288718 C691.019435,249.934957 691.501565,250.662895 691.972215,251.366827 C692.171189,251.671554 692.370163,251.976282 692.580616,252.27404 C693.954302,254.228632 695.806291,256.090296 698.412086,258.132008 L698.725852,258.376719 C699.739855,259.165061 700.784468,259.980507 701.5421,261.073189 C702.311211,262.185619 702.877522,263.918732 702.158154,265.446628 C702.089279,265.58602 701.951527,265.667333 701.80995,265.667333 Z" id="Fill-159" fill="#000000"></path>
180
- <path d="M685.513212,257.658074 C685.310412,257.658074 685.142049,257.50358 685.13057,257.3003 C685.111438,257.087339 685.272147,256.901095 685.478774,256.884833 C686.443033,256.809716 687.166227,255.855265 687.809066,254.835763 C687.920032,254.65494 688.157271,254.600732 688.337113,254.715731 C688.513128,254.830343 688.570524,255.069246 688.451905,255.250069 C687.709579,256.440326 686.837155,257.555853 685.536171,257.656912 L685.513212,257.658074 Z" id="Fill-160" fill="#000000"></path>
181
- <path d="M689.282239,248.748572 C689.178926,248.748572 689.075612,248.707141 689.00291,248.625442 C688.861333,248.469012 688.865159,248.223914 689.018216,248.077939 C689.630444,247.50372 690.10492,246.781976 690.388076,245.991311 C690.453125,245.789579 690.678884,245.688133 690.874031,245.758991 C691.073005,245.832172 691.172492,246.054425 691.107443,246.254995 C690.778371,247.160272 690.238845,247.98656 689.542436,248.644415 C689.465908,248.714111 689.374073,248.748572 689.282239,248.748572 Z" id="Fill-161" fill="#000000"></path>
182
- <path d="M681.839846,235.859028 L681.836019,235.859028 C681.625566,235.859028 681.453377,235.685561 681.453377,235.471439 C681.453377,235.257704 681.625566,235.084625 681.836019,235.084625 L681.839846,235.084625 C682.126827,235.084625 682.436768,234.920452 682.693138,234.633923 C682.949508,234.343134 683.12935,233.961741 683.313019,233.593513 L684.001775,232.147703 C684.093609,231.955264 684.323194,231.875113 684.510689,231.968429 C684.70201,232.061744 684.782365,232.293291 684.690531,232.48573 L683.994122,233.93154 C683.806627,234.329195 683.588521,234.77951 683.263275,235.151611 C682.861501,235.601152 682.341107,235.859028 681.839846,235.859028 Z" id="Fill-162" fill="#000000"></path>
183
- <path d="M707.660551,254.747094 C707.561064,254.747094 707.450098,254.73664 707.342958,254.713408 C707.136331,254.66888 707.006233,254.463663 707.048323,254.254574 C707.094241,254.045486 707.297041,253.911901 707.503668,253.955655 C707.959012,254.051681 708.414357,253.693132 708.670727,253.35588 C708.865875,253.093745 709.015105,252.792502 709.175815,252.473061 C709.286781,252.249646 709.401574,252.0181 709.539325,251.794684 C709.650291,251.611925 709.883703,251.556168 710.063545,251.667295 C710.243387,251.779196 710.300783,252.017712 710.193644,252.200084 C710.071198,252.396008 709.967885,252.603161 709.860745,252.82193 C709.692382,253.158407 709.516367,253.506501 709.282955,253.824781 C708.923271,254.29523 708.334002,254.747094 707.660551,254.747094 Z" id="Fill-163" fill="#000000"></path>
184
- <path d="M696.816467,241.764622 C696.690195,241.764622 696.56775,241.703057 696.495048,241.58922 C696.380255,241.409945 696.429998,241.170268 696.60984,241.053333 C697.40191,240.528675 698.052402,239.758919 698.438871,238.884619 C698.526878,238.689469 698.752637,238.603123 698.943959,238.689856 C699.13528,238.777364 699.223287,239.006587 699.13528,239.201736 C698.691415,240.209621 697.945262,241.097474 697.02692,241.701508 C696.961871,241.7441 696.892996,241.764622 696.816467,241.764622 Z" id="Fill-164" fill="#000000"></path>
185
- <path d="M696.632799,246.704536 C696.487395,246.704536 696.35347,246.623611 696.284594,246.484606 C696.19276,246.292167 696.276941,246.06062 696.468263,245.968079 C696.866211,245.773704 697.153192,245.359786 697.202936,244.91373 C697.229721,244.700769 697.421042,244.547438 697.623842,244.57067 C697.834296,244.593902 697.987353,244.784792 697.964394,244.997366 C697.887866,245.703621 697.428695,246.358378 696.801161,246.666203 C696.743765,246.692146 696.686369,246.704536 696.632799,246.704536 Z" id="Fill-165" fill="#000000"></path>
186
- <path d="M719.124516,278.863928 C717.762309,278.863928 716.403929,278.740023 715.049375,278.49144 C714.842748,278.453107 714.704997,278.251375 714.743261,278.041125 C714.785352,277.830487 714.980499,277.691869 715.187126,277.729041 C717.865623,278.221948 720.69335,278.201813 723.364193,277.670186 C725.503164,277.245039 727.374285,276.529491 728.92016,275.543289 C729.096176,275.429452 729.333414,275.48366 729.448207,275.664096 C729.562999,275.844919 729.505603,276.084209 729.329587,276.198047 C727.703357,277.235746 725.744229,277.986917 723.513424,278.430262 C722.059383,278.719501 720.590036,278.863928 719.124516,278.863928 Z" id="Fill-166" fill="#000000"></path>
187
- <path d="M543.453414,272.385663 C543.269745,272.385663 543.116688,272.258273 543.078424,272.073966 C542.764657,270.504251 541.57464,269.154855 540.074682,268.651106 C540.047897,268.67821 540.017285,268.701829 539.982848,268.720415 C539.768568,268.835801 539.577247,268.755263 539.473933,268.650332 C539.378273,268.544238 539.309397,268.341345 539.443322,268.119866 C539.550462,267.93246 539.795353,267.763253 540.067029,267.839145 C541.934323,268.35722 543.445761,269.998567 543.824577,271.92257 C543.866667,272.132046 543.732743,272.336488 543.526116,272.377919 L543.453414,272.385663 Z" id="Fill-167" fill="#000000"></path>
188
- <path d="M523.559838,295.221634 L523.475657,295.213115 C523.272856,295.1682 523.138931,294.962209 523.184848,294.75312 C524.15676,290.168657 528.017621,286.344657 532.567239,285.454481 C532.773866,285.411889 532.976666,285.550894 533.01493,285.761144 C533.053195,285.971008 532.91927,286.173901 532.708816,286.214557 C528.453834,287.047814 524.845516,290.625942 523.934827,294.915745 C523.896563,295.097729 523.732027,295.221634 523.559838,295.221634 Z" id="Fill-168" fill="#000000"></path>
189
- <path d="M729.838502,296.81729 C729.666313,296.81729 729.509429,296.698032 729.471165,296.520307 C728.70588,293.292597 725.893459,291.089809 722.83232,288.933485 C718.22148,285.686415 713.668036,282.816866 708.739603,283.375984 C708.020235,283.456909 707.57637,283.668321 707.423313,284.004025 C707.327652,284.196851 707.098067,284.278551 706.910572,284.186397 C706.719251,284.094243 706.638896,283.863084 706.73073,283.670257 C707.013886,283.068934 707.641419,282.72084 708.651595,282.606228 C713.851704,282.020005 718.535247,284.963123 723.268533,288.298087 C726.45977,290.54308 729.386984,292.847703 730.209665,296.340258 C730.259408,296.548186 730.136963,296.757274 729.92651,296.806836 L729.838502,296.81729 Z" id="Fill-169" fill="#000000"></path>
190
- <path d="M735.581963,329.001463 C735.42508,329.001463 735.26437,328.995268 735.111313,328.983652 C734.897034,328.968163 734.736324,328.782307 734.75163,328.568959 C734.766935,328.356385 734.946777,328.19802 735.164883,328.211572 C736.928865,328.337413 738.704325,327.643161 739.921128,326.34139 C740.066532,326.186509 740.307596,326.17954 740.460653,326.325515 C740.617537,326.472651 740.621363,326.717749 740.475959,326.873404 C739.217066,328.225511 737.41482,329.001463 735.581963,329.001463 Z" id="Fill-170" fill="#000000"></path>
191
- <path d="M737.889297,333.813213 L737.862512,333.813213 C737.652059,333.812052 737.479869,333.637424 737.483696,333.423689 C737.483696,333.210728 737.655885,333.038811 737.866338,333.038811 L737.889297,333.038811 C739.745112,333.038811 741.501441,331.678573 741.979744,329.864922 C742.03714,329.658543 742.247593,329.536188 742.450394,329.59117 C742.653194,329.64654 742.77564,329.858726 742.72207,330.065492 C742.151933,332.206715 740.085664,333.813213 737.889297,333.813213 Z" id="Fill-171" fill="#000000"></path>
192
- <path d="M704.698899,295.831089 L704.63385,295.825668 C704.427223,295.789271 704.285646,295.589088 704.32391,295.378838 C704.622371,293.608166 703.941268,291.712428 702.59054,290.548501 C702.42983,290.409883 702.410698,290.165559 702.548449,290.002935 C702.686201,289.839923 702.927265,289.819788 703.087975,289.958407 C704.64533,291.296187 705.422094,293.474969 705.077715,295.509324 C705.043278,295.698279 704.886394,295.831089 704.698899,295.831089 Z" id="Fill-172" fill="#000000"></path>
193
- <path d="M664.29952,235.780426 C663.488318,235.780426 662.67329,235.994548 661.99984,236.384073 C659.087931,238.070334 659.570061,242.759729 659.95653,246.527972 C660.071322,247.626075 660.178462,248.663388 660.178462,249.488901 C660.178462,249.819958 660.170809,250.183153 660.163156,250.568805 C660.094281,253.697779 660.002447,257.983323 663.515103,259.048126 C663.943663,259.178226 664.399007,259.24405 664.87731,259.24405 C666.384921,259.24405 667.827483,258.576902 668.474148,257.583344 C668.952451,256.839143 669.059591,255.935028 669.120814,254.997226 C669.461366,250.262142 669.277697,245.476721 668.569809,240.772999 C668.298133,238.959736 667.724169,236.780567 665.692338,236.020103 C665.325002,235.881098 664.915574,235.801722 664.487015,235.783911 C664.425792,235.781587 664.360743,235.780426 664.29952,235.780426 Z M664.87731,260.018453 C664.326305,260.018453 663.794432,259.941787 663.293171,259.790004 C659.225683,258.555994 659.328996,253.739209 659.397872,250.551768 C659.405525,250.172698 659.413177,249.815311 659.413177,249.488901 C659.413177,248.703656 659.306038,247.685704 659.195071,246.608123 C658.808603,242.827102 658.27673,237.648285 661.621024,235.711891 C662.47049,235.220533 663.511277,234.968852 664.517626,235.010282 C665.026541,235.031578 665.50867,235.12683 665.956362,235.293326 C668.393793,236.204411 669.048112,238.790529 669.327441,240.656452 C670.042982,245.417092 670.230477,250.26098 669.886099,255.052983 C669.80957,256.096878 669.694777,257.108635 669.113161,258.007717 C668.321091,259.228949 666.66425,260.018453 664.87731,260.018453 Z" id="Fill-173" fill="#000000"></path>
194
- <path d="M664.330132,234.451938 C663.327609,234.451938 662.317433,234.690067 661.47562,235.123345 C657.90174,236.975716 658.491009,242.091033 658.965486,246.202336 C659.095584,247.399175 659.225683,248.529803 659.225683,249.430433 C659.225683,249.791305 659.21803,250.187412 659.210377,250.607525 C659.126196,254.026126 659.019056,258.707777 663.339088,259.881771 C663.870961,260.026197 664.441098,260.099378 665.041846,260.099378 C666.909141,260.099378 668.696081,259.359049 669.495803,258.256687 C670.081246,257.443177 670.207518,256.457363 670.287873,255.43399 C670.704953,250.274919 670.479194,245.058931 669.614422,239.930837 C669.281524,237.946043 668.581288,235.560108 666.067328,234.719494 C665.604331,234.565001 665.099243,234.475945 664.56737,234.456197 C664.487015,234.4531 664.410487,234.451938 664.330132,234.451938 Z M665.041846,260.873781 C664.376049,260.873781 663.737036,260.791694 663.140114,260.629457 C658.234639,259.297871 658.360911,254.056714 658.445092,250.588552 C658.452745,250.175021 658.460398,249.785884 658.460398,249.430433 C658.460398,248.575106 658.334126,247.465774 658.204028,246.291392 C657.725725,242.172345 657.079059,236.530822 661.127415,234.43374 C662.141417,233.90792 663.385005,233.635331 664.594155,233.682569 C665.19873,233.705027 665.77652,233.806861 666.308393,233.984586 C669.239433,234.965754 670.031503,237.774125 670.372054,239.800737 C671.240652,244.992719 671.470238,250.273371 671.049331,255.497103 C670.957497,256.635088 670.819746,257.737837 670.115684,258.714359 C669.162905,260.026197 667.173164,260.873781 665.041846,260.873781 Z" id="Fill-174" fill="#000000"></path>
195
- <path d="M664.180901,240.754801 L664.069935,240.756737 C663.664334,240.771063 663.323782,240.858958 663.04828,241.016549 C662.837826,241.141228 662.623547,241.332118 662.413093,241.601223 C661.762601,242.40815 661.452661,243.414099 661.548322,244.362355 C661.647809,245.346621 662.233252,246.26545 663.036801,246.7026 C663.549541,246.980998 664.142637,247.083219 664.659204,247.145946 C664.812261,247.165693 664.999756,247.18544 665.183424,247.18544 C665.313522,247.18544 665.432142,247.174598 665.539281,247.152528 C665.807131,247.098707 666.074981,246.962799 666.350483,246.747903 C667.448667,245.894898 667.888705,244.255488 667.383618,242.934744 C666.893835,241.671694 665.546934,240.754801 664.180901,240.754801 Z M665.183424,247.959843 C664.957665,247.959843 664.743385,247.936998 664.56737,247.91454 C664.012538,247.847554 663.300824,247.725973 662.67329,247.384462 C661.63633,246.820697 660.913135,245.693166 660.786863,244.441732 C660.668244,243.291357 661.043234,242.078642 661.816171,241.113736 C662.091674,240.769515 662.367176,240.518221 662.665637,240.345142 C663.04828,240.123276 663.515103,240.001694 664.04315,239.983109 C665.791825,239.911089 667.467799,241.037458 668.091506,242.652862 C668.726692,244.282592 668.175687,246.30688 666.817307,247.361617 C666.44997,247.64892 666.071154,247.834002 665.692338,247.91183 C665.531629,247.944355 665.363266,247.959843 665.183424,247.959843 Z" id="Fill-175" fill="#000000"></path>
196
- <path d="M664.112026,240.135666 C664.069935,240.135666 664.027844,240.13644 663.98958,240.137989 C663.495971,240.155026 663.082718,240.260732 662.753645,240.451235 C662.497275,240.601469 662.244731,240.830692 661.98836,241.152069 C661.223076,242.111167 660.848086,243.308006 660.962879,244.436311 C661.085325,245.629278 661.766428,246.700277 662.745992,247.230743 C663.354394,247.562574 664.058456,247.683768 664.66303,247.757724 C664.995929,247.798767 665.413009,247.827033 665.72295,247.764693 C666.044369,247.699643 666.369615,247.535857 666.702514,247.277594 C668.011151,246.261191 668.535371,244.306986 667.92697,242.732238 C667.345353,241.227574 665.742082,240.135666 664.112026,240.135666 Z M665.286738,248.578978 C665.030367,248.578978 664.78165,248.552648 664.571196,248.526705 C663.932184,248.448491 663.109503,248.307937 662.378656,247.912991 C661.184812,247.262493 660.354478,245.96111 660.201421,244.515687 C660.067496,243.185651 660.499882,241.782046 661.395265,240.66497 C661.712858,240.267314 662.030451,239.978075 662.374829,239.779828 C662.811042,239.525437 663.342914,239.385657 663.955142,239.363974 C665.971667,239.29389 667.919317,240.583271 668.638684,242.450355 C669.365705,244.333703 668.734345,246.672786 667.165511,247.891695 C666.740778,248.222365 666.308393,248.435326 665.87218,248.523995 C665.688512,248.560779 665.497191,248.578978 665.286738,248.578978 Z" id="Fill-176" fill="#000000"></path>
197
- <path d="M664.685989,251.637868 L664.624766,251.63903 C664.387528,251.647548 664.19238,251.696335 664.039323,251.785004 C663.920704,251.855088 663.802085,251.965053 663.675813,252.12187 C663.289344,252.604322 663.10185,253.204097 663.159246,253.767088 C663.220469,254.345567 663.561021,254.884164 664.027844,255.140104 C664.333958,255.305051 664.693642,255.367004 665.007409,255.405337 C665.187251,255.427407 665.378572,255.440959 665.523976,255.410757 C665.665553,255.38133 665.81861,255.30389 665.97932,255.18076 C666.625986,254.677398 666.886183,253.709395 666.583895,252.929184 C666.296913,252.180724 665.497191,251.637868 664.685989,251.637868 Z M665.325002,256.203358 C665.187251,256.203358 665.049499,256.190581 664.911748,256.174318 C664.552064,256.129403 664.089067,256.049252 663.66816,255.821965 C662.967925,255.442895 662.481969,254.685917 662.397788,253.846851 C662.317433,253.081354 662.56615,252.274814 663.082718,251.634383 C663.270212,251.40245 663.453881,251.232468 663.656681,251.113597 C663.920704,250.961814 664.234471,250.878179 664.594155,250.865401 L664.685989,250.863465 C665.81861,250.863465 666.893835,251.596825 667.299436,252.646915 C667.724169,253.75431 667.368312,255.077764 666.446144,255.794861 C666.1936,255.990785 665.933403,256.117013 665.673206,256.170059 C665.566066,256.19213 665.447447,256.203358 665.325002,256.203358 Z" id="Fill-177" fill="#000000"></path>
198
- <path d="M732.979995,169.405991 C732.727452,169.7022 732.44047,169.908578 732.130529,170.039452 C732.340983,173.540914 733.025913,177.437708 735.604922,179.535952 C737.368903,180.968984 739.171149,181.745709 741.160889,182.131749 C741.321599,181.855287 741.535878,181.608253 741.784596,181.399939 C739.741286,181.073141 737.95052,180.346364 736.175059,178.904039 C733.707016,176.89369 733.133052,172.892739 732.979995,169.405991 Z" id="Fill-178" fill="#000000"></path>
199
- <path d="M801.637512,105.512742 C801.526546,91.2950977 801.411753,76.5942258 800.26,62.2348655 C800.24852,62.1074763 800.237041,61.9827975 800.221735,61.8592802 C799.559764,56.4260716 794.267821,55.9552348 789.358519,55.9405211 C779.559049,55.9126426 769.602695,56.3091368 759.963934,56.6936277 C754.270216,56.921302 748.38135,57.1563332 742.591971,57.3007593 C739.936433,57.3665835 736.129142,57.9814592 734.143228,59.4954163 C730.730058,62.0950858 730.886942,65.7390373 731.036172,69.2633436 C731.055304,69.7485068 731.078263,70.2309596 731.085916,70.7076044 C731.193056,75.4272011 731.372898,80.2099116 731.621615,84.9237003 C731.912423,90.5605769 731.912423,96.2601801 731.912423,101.771991 C731.912423,102.800784 731.912423,103.831127 731.91625,104.86418 L731.988952,145.818462 C731.992778,148.03093 731.985125,150.243786 731.977473,152.457028 C731.977473,153.042864 731.973646,153.636831 731.973646,154.227313 C732.256801,154.032163 732.551436,153.915616 732.849897,153.868764 C732.853723,153.399476 732.853723,152.925929 732.853723,152.459739 C732.865203,150.245335 732.869029,148.03093 732.869029,145.816913 L732.792501,104.862631 C732.792501,103.830353 732.792501,102.800397 732.788674,101.771603 C732.788674,96.2501128 732.788674,90.5400552 732.49404,84.8822698 C732.249149,80.1766123 732.069307,75.4012586 731.965993,70.6901804 C731.95834,70.2077275 731.931555,69.7202411 731.912423,69.2296571 C731.770846,65.9121163 731.625442,62.4815127 734.690407,60.1447529 C736.393165,58.8491773 739.898169,58.2006151 742.61493,58.1328549 C748.411961,57.9884288 754.300827,57.7530104 759.998372,57.5257233 C769.625653,57.1416196 779.574354,56.7420278 789.354693,56.7730039 C795.289476,56.7908152 798.825091,57.6445941 799.353137,61.9545318 C799.364617,62.0668201 799.376096,62.1814317 799.387575,62.2979793 C800.535502,76.629074 800.646468,91.3156194 800.757435,105.51855 L800.761261,106.017653 C800.765088,106.246489 800.960235,106.430409 801.2013,106.430409 L801.205126,106.430409 C801.446191,106.428861 801.645165,106.241068 801.645165,106.01107 L801.637512,105.512742 Z" id="Fill-179" fill="#000000"></path>
200
- <path d="M310.030867,137.068874 C306.569484,137.19394 304.084605,136.858624 301.642199,134.766188 C299.089591,132.578501 299.036404,127.625034 299.000818,124.347375 C298.997757,124.064331 298.994696,123.791742 298.990487,123.532317 C298.927734,119.759814 298.939978,115.919939 298.952223,112.206679 C298.958728,110.317136 298.964467,108.427981 298.961406,106.539213 L298.941891,95.0710849 C298.714219,95.290628 298.475833,95.4567373 298.23209,95.5752209 L298.250839,106.540762 C298.252753,107.691524 298.248161,108.843061 298.2451,109.99421 C298.947248,110.95447 298.944953,112.414606 298.238212,113.37138 C298.228264,116.724156 298.223672,120.15747 298.27992,123.543933 C298.284129,123.801809 298.28719,124.073237 298.290252,124.355119 C298.326985,127.761329 298.382468,132.908396 301.179967,135.305172 C303.49457,137.288417 305.899095,137.801459 308.892506,137.801459 C309.270556,137.801459 309.658173,137.793328 310.056121,137.778614 C310.252417,137.771645 311.381212,137.574946 311.373941,137.379022 C311.366671,137.182711 310.208795,137.057258 310.030867,137.068874 Z" id="Fill-180" fill="#000000"></path>
201
- <path d="M354.663036,127.399683 L354.651939,127.185174 C354.424267,122.806701 354.476306,118.301614 354.529876,113.939404 C354.534468,113.818985 354.538294,113.688885 354.540973,113.541749 C354.544034,113.343502 354.666479,72.7771954 354.665331,72.5808843 L354.66227,72.1557373 C354.572732,60.0266565 354.480133,47.4852063 353.548016,35.2353186 C353.53998,35.1265151 353.529649,35.0200347 353.517787,34.9147159 C352.979792,30.2795291 348.693815,29.8780014 344.718161,29.8656109 C336.779098,29.8416045 328.711849,30.1800184 320.908623,30.5079779 C316.297018,30.7019658 311.528146,30.902536 306.838482,31.025666 C304.687266,31.0821974 301.604317,31.606468 299.995306,32.8981715 C297.231863,35.1160606 297.357752,38.2248999 297.478667,41.2311308 C297.495503,41.645049 297.511957,42.056644 297.520758,42.4632053 C297.605704,46.4893245 297.750343,50.5696518 297.950083,54.5911246 C298.188851,59.4001648 298.189234,64.2622515 298.189234,68.9648114 C298.189617,69.8422095 298.189617,70.7211565 298.191147,71.6024266 L298.215636,85.9153228 C298.378259,85.9292621 298.541265,85.9590766 298.70274,86.0086383 C298.778886,86.0322576 298.852353,86.0609105 298.926586,86.0884018 L298.901714,71.6008778 C298.900183,70.7203821 298.900183,69.8418223 298.899801,68.9644242 C298.899801,64.2537331 298.899418,59.3823535 298.659884,54.5558893 C298.460145,50.5413861 298.315889,46.4676412 298.231325,42.4484917 C298.222524,42.0368967 298.205688,41.6210425 298.188851,41.2024779 C298.074441,38.3720364 297.956587,35.4455689 300.439936,33.4522566 C301.817066,32.3467969 304.655124,31.7934862 306.857231,31.7357932 C311.552635,31.612276 316.323803,31.4117057 320.93847,31.2177179 C328.73366,30.8901456 336.794021,30.5494084 344.716248,30.5757381 C349.520322,30.590839 352.385166,31.3191646 352.811812,34.9960282 C352.822526,35.0916669 352.832092,35.1896289 352.839745,35.2891396 C353.769566,47.5150208 353.862165,60.0440805 353.951704,72.1607709 L353.954765,72.5863052 C353.956295,72.7710002 353.748903,109.510209 353.890863,113.520065 C353.851451,113.576597 353.822753,113.641259 353.821605,113.715215 L353.821222,113.786073 C353.766887,118.20404 353.710639,122.772628 353.942137,127.221958 L353.953617,127.437629 C354.08295,129.867704 354.277715,133.540309 351.769494,134.778191 C350.407287,135.449986 348.437827,135.427528 346.855984,135.409329 C346.652801,135.406619 346.456123,135.404683 346.269393,135.403909 L346.267862,135.403909 C346.072332,135.403909 344.784358,135.416686 344.783593,135.612223 C344.782828,135.808534 344.970322,136.119844 345.166235,136.120618 C345.351817,136.121005 346.646296,136.117133 346.847566,136.119457 C347.116946,136.122554 347.397423,136.125652 347.684404,136.125652 C349.162169,136.125652 350.815567,136.040855 352.084026,135.41475 C355.012388,133.970102 354.802317,130.01639 354.663036,127.399683 Z" id="Fill-181" fill="#000000"></path>
202
- <path d="M432.601925,246.744031 C432.613404,246.144256 432.536876,245.565003 432.36086,245.024082 C431.698889,242.935519 429.712975,241.411881 427.631401,241.400653 C427.038305,241.397168 426.525565,241.511779 426.12379,241.740615 C425.798544,241.920664 425.484777,242.205644 425.151879,242.61298 C424.164661,243.822597 423.625136,245.399281 423.709317,246.888844 C423.793498,248.437262 424.597047,249.912112 425.748801,250.64702 C426.4873,251.116695 427.355899,251.315329 428.109704,251.44659 C428.614792,251.534872 429.020393,251.579401 429.406862,251.512802 C429.79333,251.44659 430.198931,251.251441 430.619838,250.933549 C431.806029,250.026723 432.567487,248.420999 432.601925,246.744031 Z M422.461903,246.438916 C422.496341,244.775112 423.135353,243.059036 424.222058,241.730548 C424.662096,241.196985 425.090656,240.812494 425.553653,240.555005 C426.135269,240.22511 426.843158,240.059 427.639054,240.063259 C430.233369,240.077586 432.705239,241.980293 433.539399,244.587707 C433.753679,245.277699 433.856992,246.01222 433.841686,246.769973 C433.799596,248.863183 432.835337,250.877405 431.335379,252.024682 C430.761415,252.461832 430.175973,252.734035 429.598183,252.833546 C429.020393,252.933831 428.442603,252.861037 427.906904,252.766947 C427.091875,252.623682 426.035782,252.384779 425.121267,251.798556 C423.598351,250.830166 422.584348,248.981667 422.469556,246.973254 C422.461903,246.795528 422.461903,246.617029 422.461903,246.438916 Z" id="Fill-182" fill="#000000"></path>
203
- <path d="M427.570178,238.899332 C427.206668,238.899332 426.846984,238.923726 426.4873,238.971352 C425.852114,239.056149 425.270498,239.209093 424.769236,239.424764 C423.345807,240.033832 422.13283,241.317017 421.444074,242.945586 C420.169875,245.956463 421.004036,249.748713 423.384071,251.766419 C424.08048,252.356901 424.929946,252.845162 425.989865,253.258693 C427.149272,253.714816 428.197712,253.936682 429.188755,253.936682 C429.326507,253.936682 429.456605,253.932036 429.594356,253.92313 C432.184845,253.7516 434.572533,251.789651 435.406694,249.152036 C436.20259,246.622062 435.513833,243.570529 433.692456,241.557856 C432.184845,239.892891 429.90047,238.899332 427.570178,238.899332 Z M429.188755,254.323883 C428.147968,254.323883 427.057437,254.093111 425.848288,253.619564 C424.757757,253.190158 423.8662,252.681375 423.13918,252.063015 C420.636699,249.93999 419.752795,245.954914 421.092043,242.793803 C421.819064,241.07308 423.108568,239.715165 424.620006,239.068152 C425.155705,238.838929 425.767933,238.677079 426.437557,238.586861 C426.80872,238.537299 427.191362,238.512131 427.570178,238.512131 C430.003784,238.512131 432.399125,239.552928 433.975611,241.296108 C435.888823,243.407904 436.608191,246.611995 435.770204,249.269745 C434.890126,252.055658 432.36086,254.127572 429.624968,254.309557 C429.479564,254.31885 429.334159,254.323883 429.188755,254.323883 Z" id="Fill-183" fill="#000000"></path>
204
- <path d="M428.492346,259.276188 C428.358421,259.276188 428.224497,259.285094 428.090572,259.302905 C427.849507,259.335043 427.631401,259.392348 427.44008,259.473273 C426.904381,259.702109 426.449036,260.183788 426.192666,260.795566 C425.714363,261.926194 426.031956,263.35032 426.919686,264.108073 C427.183709,264.329552 427.501303,264.513086 427.903077,264.668353 C428.335463,264.839496 428.729585,264.923132 429.096921,264.923132 L429.100748,264.923132 C429.150491,264.923132 429.200235,264.921196 429.253805,264.917711 C430.225716,264.853436 431.121099,264.116592 431.438692,263.126131 C431.733327,262.176326 431.480783,261.03021 430.792027,260.274393 C430.225716,259.649063 429.364771,259.276188 428.492346,259.276188 Z M429.100748,265.068332 L429.096921,265.068332 C428.714279,265.068332 428.301025,264.981599 427.849507,264.803874 C427.436253,264.642798 427.103355,264.451521 426.827852,264.2192 C425.890378,263.421952 425.557479,261.925419 426.058741,260.738647 C426.334243,260.092408 426.816373,259.582464 427.382683,259.339302 C427.585484,259.253343 427.815069,259.192553 428.067613,259.158866 C428.205365,259.14028 428.350769,259.1306 428.492346,259.1306 C429.406862,259.1306 430.306071,259.521286 430.89534,260.176044 C431.614708,260.969032 431.886384,262.172454 431.576444,263.170272 C431.247371,264.216489 430.294592,264.994764 429.261457,265.062912 C429.207887,265.066396 429.154318,265.068332 429.100748,265.068332 Z" id="Fill-184" fill="#000000"></path>
205
- <path d="M428.492346,259.469789 C428.369901,259.469789 428.235976,259.478307 428.11353,259.494957 C427.891598,259.524771 427.688797,259.577043 427.520435,259.651773 C427.030653,259.860862 426.609746,260.305369 426.372508,260.871457 C425.92099,261.926968 426.215624,263.254294 427.042132,263.959775 C427.287023,264.167315 427.58931,264.340007 427.968126,264.487918 C428.438776,264.672613 428.848204,264.75044 429.242325,264.724498 C430.141535,264.665256 430.964216,263.983781 431.251198,263.067276 C431.534353,262.180972 431.293288,261.111135 430.650449,260.405267 C430.118576,259.819431 429.315027,259.469789 428.492346,259.469789 Z M429.100748,265.261933 C428.687494,265.261933 428.255108,265.171328 427.776805,264.983922 C427.348246,264.81549 426.996215,264.613758 426.705407,264.367498 C425.702884,263.517978 425.354679,261.925032 425.886552,260.662369 C426.181187,259.97044 426.70158,259.423325 427.309981,259.160802 C427.524261,259.068648 427.772979,259.003211 428.044655,258.966427 C429.146665,258.820839 430.313724,259.243276 431.036918,260.04517 C431.802203,260.887333 432.089184,262.167033 431.752459,263.229513 C431.400428,264.3493 430.386426,265.182557 429.28059,265.256125 C429.21554,265.259997 429.158144,265.261933 429.100748,265.261933 Z" id="Fill-185" fill="#000000"></path>
206
- <path d="M588.72383,135.389969 C588.597558,128.689451 588.46746,121.760871 588.440675,114.948838 C588.429195,111.824124 587.813141,107.334137 586.125688,104.961755 C583.217607,100.888397 579.031499,100.983649 574.979317,101.075028 C574.420659,101.087806 573.865828,101.100584 573.318649,101.101745 C567.900433,101.1122 562.401863,101.208226 556.987473,101.385177 C550.501686,101.597363 543.958502,101.461842 537.625771,101.330194 C536.447232,101.306187 535.264867,101.281407 534.082502,101.258949 L487.044279,100.366837 C484.503533,100.318824 481.962788,100.257259 479.422043,100.195307 C476.919562,100.134129 474.363511,100.072177 471.80746,100.023777 C472.071483,100.323083 472.262805,100.682406 472.377597,101.067671 C474.734674,101.114523 477.084098,101.170667 479.399084,101.226811 C481.943656,101.288763 484.484401,101.350328 487.025146,101.398729 L534.059544,102.290453 C535.241909,102.312911 536.4281,102.337692 537.606639,102.361698 C543.947022,102.493734 550.505512,102.629641 557.010432,102.416681 C562.417168,102.239343 567.908086,102.144091 573.318649,102.133637 C573.877307,102.132475 574.432138,102.119697 574.998449,102.10692 C578.809567,102.020187 582.754609,101.930743 585.36423,105.592119 C586.810618,107.622215 587.472589,111.757912 587.484069,114.956195 C587.510854,121.776359 587.640952,128.708811 587.767224,135.413201 C587.981504,146.739227 588.19961,158.450517 587.927934,169.950783 C587.767224,176.924666 586.703478,181.063461 581.740607,181.579987 C581.610509,181.592765 581.484237,181.603607 581.346485,181.612125 C572.828867,182.132524 564.215587,182.322252 555.617614,182.359036 C555.751539,182.539859 555.858679,182.742366 555.946686,182.956101 C556.340808,183.027346 556.673707,183.176805 556.953036,183.384733 C565.12245,183.334009 573.303343,183.137311 581.396229,182.64208 C581.541633,182.633175 581.687037,182.621559 581.828615,182.606845 C588.084817,181.95596 588.754441,175.744864 588.88454,169.974015 C589.152389,158.448969 588.93811,146.727998 588.72383,135.389969 Z" id="Fill-186" fill="#000000"></path>
207
- <path d="M453.773526,101.287989 C453.310529,101.287989 452.916407,101.186155 452.579682,101.015399 C450.873097,101.595427 449.350181,102.472825 448.240518,103.81409 C447.46758,104.745697 446.859179,105.691629 446.373223,106.666215 C446.706122,106.667764 447.046674,106.729329 447.368093,106.847812 C447.800479,106.050565 448.317046,105.27229 448.952233,104.500211 C450.364183,102.796912 452.579682,101.908673 454.97885,101.443644 C454.806661,101.37085 454.665083,101.287215 454.523505,101.185768 C454.297746,101.249656 454.045202,101.287989 453.773526,101.287989 Z" id="Fill-187" fill="#000000"></path>
208
- <path d="M538.452278,182.277337 C536.190862,182.251394 533.933272,182.222741 531.683335,182.193701 L531.113198,182.186345 C531.021364,182.185183 530.933356,182.219644 530.860654,182.26727 C515.853421,181.769716 475.966783,180.848951 475.748676,180.841982 L475.653016,180.838884 C469.706754,180.636378 463.561518,180.426902 457.565512,180.638314 L457.274704,180.648768 C453.999285,180.768413 449.047893,180.948462 447.459928,177.272373 C446.598982,175.27635 446.68699,172.417256 446.752039,170.121539 C446.763518,169.826492 446.771171,169.541124 446.782651,169.269696 L447.268606,155.036951 C447.272433,154.752745 446.698469,155.301409 446.438272,155.294827 C446.174249,155.288632 445.833698,168.961484 445.826045,169.246077 C445.814565,169.515569 445.806913,169.797452 445.795433,170.089401 C445.78778,170.480862 445.772475,170.88781 445.764822,171.304052 C445.718905,173.449534 445.791607,175.852118 446.595156,177.711072 C448.450971,182.002811 453.777353,181.808823 457.309142,181.679885 L457.596123,181.669818 C463.557691,181.459568 469.695274,181.668269 475.626231,181.869614 L475.721891,181.873099 C475.982088,181.882004 532.138679,183.587239 532.150159,183.302646 C532.150159,183.302259 532.28791,183.277091 532.513669,183.236434 C534.809523,183.265862 537.11303,183.294515 539.42419,183.32007 C538.987977,183.076133 538.662731,182.707517 538.452278,182.277337 Z" id="Fill-188" fill="#000000"></path>
209
- <path d="M576.016278,130.51859 C576.085153,127.14142 575.947402,123.723207 575.60685,120.358815 C575.381091,118.140926 574.837739,115.46459 572.557191,114.44354 C572.15159,114.258071 571.688593,114.142298 571.202637,114.098931 C570.230725,114.012973 569.189938,114.233677 568.348125,114.705289 C566.419607,115.787516 565.478307,118.205201 565.394126,122.313407 C565.367341,123.881185 565.459175,125.516723 565.53953,126.96021 C565.616058,128.314253 565.684934,129.585047 565.650496,130.592158 C565.631364,130.997558 565.604579,131.440903 565.577794,131.912127 C565.531877,132.637743 565.48596,133.460545 565.466828,134.289156 C565.409432,137.432456 565.749983,141.194504 568.983311,142.396377 C571.022795,143.154517 573.640069,142.452908 574.692335,140.865383 C575.273951,139.989146 575.430835,138.895303 575.55328,137.757318 C575.809651,135.36364 575.966534,132.928531 576.016278,130.51859 Z M564.43752,122.293272 C564.498743,119.445407 564.919649,115.465365 567.908086,113.789945 C568.918262,113.223469 570.115932,112.967529 571.282992,113.070525 C571.872261,113.12241 572.423266,113.264125 572.928354,113.490638 C575.698684,114.732005 576.322391,117.939968 576.55963,120.24459 C577.145072,126.085135 577.133593,132.049584 576.50606,137.873091 C576.368308,139.151243 576.18464,140.387577 575.469099,141.465158 C574.168115,143.425171 571.118455,144.280886 568.669544,143.372511 C564.804857,141.937931 564.448999,137.490149 564.510222,134.269409 C564.529354,133.419115 564.579098,132.584696 564.621188,131.848239 C564.6518,131.385534 564.674758,130.949545 564.69389,130.551115 L564.697717,130.304855 C564.716849,129.387575 564.6518,128.240685 564.582924,127.026034 C564.502569,125.563187 564.410735,123.904417 564.43752,122.293272 Z" id="Fill-189" fill="#000000"></path>
210
- <path d="M577.389964,130.643656 C577.466492,126.900968 577.282824,123.111816 576.846611,119.381906 C576.55963,116.952218 575.870873,114.016457 573.058452,112.873439 C572.538059,112.663189 571.967921,112.530766 571.355694,112.480043 C570.146544,112.378983 568.853213,112.619435 567.804773,113.139834 C565.443869,114.315377 564.307422,116.934019 564.219414,121.380639 L564.219414,121.381026 C564.177323,123.10988 564.307422,124.917336 564.410735,126.512218 C564.510222,127.988616 564.602056,129.37712 564.563792,130.474449 C564.548486,130.915858 564.514049,131.399086 564.483437,131.912514 C564.433694,132.681883 564.380124,133.554248 564.364818,134.432421 C564.292116,137.90097 564.728328,142.055253 568.742246,143.405811 C571.282992,144.261526 574.531625,143.496803 575.836436,141.736973 C576.540498,140.779424 576.720339,139.635632 576.86957,138.348575 C577.164205,135.801564 577.336394,133.208864 577.389964,130.643656 Z M563.262808,121.361279 L563.262808,121.360892 C563.320204,118.285739 563.817639,113.991289 567.402998,112.203194 C568.612148,111.602645 570.039404,111.335476 571.436049,111.451636 C572.128631,111.510103 572.790603,111.663048 573.395177,111.908146 C576.724166,113.259479 577.50093,116.745065 577.799391,119.249483 C578.541717,125.622042 578.54937,132.125088 577.818523,138.473253 C577.657813,139.865629 577.443533,141.211928 576.578762,142.37934 C575.02906,144.474874 571.390132,145.377053 568.455265,144.390464 C563.783202,142.818039 563.33551,137.943175 563.408212,134.412673 C563.427344,133.511269 563.480914,132.626901 563.526831,131.846303 C563.561269,131.342167 563.59188,130.867458 563.607186,130.433405 L563.614839,130.196051 C563.637798,129.190877 563.54979,127.927826 563.457956,126.590433 C563.350816,124.972706 563.220717,123.139307 563.262808,121.361279 Z" id="Fill-190" fill="#000000"></path>
211
- <path d="M574.324998,124.278066 C574.336478,123.814974 574.271428,123.368143 574.14133,122.95074 C573.632416,121.339208 572.094193,120.164053 570.487096,120.155147 C570.027925,120.152824 569.63763,120.241106 569.327689,120.417669 C569.075145,120.556675 568.830254,120.776992 568.573884,121.091012 C567.812426,122.024555 567.395345,123.241141 567.468047,124.390742 C567.52927,125.585258 568.149151,126.723243 569.040707,127.290105 C569.607018,127.652526 570.276642,127.805857 570.862085,127.906917 C571.248554,127.975064 571.562321,128.009525 571.864608,127.958028 C572.159243,127.906917 572.473009,127.756296 572.794429,127.51081 C573.712771,126.81075 574.30204,125.572093 574.324998,124.278066 Z M566.499962,124.043422 C566.526747,122.759463 567.020356,121.435622 567.858343,120.410313 C568.195068,119.998718 568.527967,119.701734 568.883824,119.5031 C569.335342,119.248321 569.878694,119.120158 570.494748,119.123255 C572.492141,119.134097 574.405353,120.601977 575.044366,122.613875 C575.216555,123.146277 575.293083,123.71314 575.281604,124.297814 C575.247166,125.913217 574.50484,127.467444 573.34926,128.352973 C572.901569,128.690225 572.453877,128.900088 572.013839,128.977141 C571.562321,129.054582 571.118455,128.998437 570.701375,128.925644 C570.073842,128.815291 569.258814,128.630983 568.550925,128.17912 C567.376213,127.431821 566.595623,126.005759 566.511442,124.455792 C566.499962,124.318723 566.499962,124.181266 566.499962,124.043422 Z" id="Fill-191" fill="#000000"></path>
212
- <path d="M574.998449,124.317174 C575.009928,123.763863 574.9334,123.229912 574.780343,122.73081 C574.168115,120.807581 572.331432,119.404751 570.41822,119.394684 C569.867215,119.391973 569.392738,119.498453 569.013923,119.712189 C568.715461,119.879847 568.424653,120.144305 568.114713,120.521439 C567.292032,121.527001 566.809903,122.81793 566.783118,124.06317 C566.779291,124.192882 566.783118,124.322982 566.794597,124.453081 C566.871125,125.90315 567.594319,127.232412 568.677197,127.921631 C569.354474,128.352973 570.15037,128.534958 570.839127,128.655377 C571.21029,128.720814 571.642675,128.783928 572.036797,128.715006 C572.400307,128.652667 572.779123,128.471456 573.169418,128.175635 C574.263776,127.340054 574.971664,125.860945 574.998449,124.317174 Z M565.826512,124.043035 C565.857123,122.558118 566.431087,121.026737 567.395345,119.840352 C567.785641,119.366418 568.168283,119.024906 568.573884,118.797619 C569.098104,118.505669 569.717984,118.359307 570.429699,118.363179 C572.733206,118.375183 574.941053,120.069963 575.679552,122.393558 C575.8747,123.008046 575.966534,123.662029 575.955055,124.336921 C575.916791,126.202844 575.059672,127.99636 573.716597,129.018185 C573.211509,129.405773 572.694942,129.646612 572.186028,129.73412 C571.650328,129.827435 571.129935,129.751931 570.682243,129.674104 C569.955223,129.545553 569.00627,129.331818 568.187415,128.810258 C566.840514,127.949896 565.941304,126.305065 565.837991,124.518131 C565.826512,124.359766 565.822685,124.201401 565.826512,124.043035 Z" id="Fill-192" fill="#000000"></path>
213
- <path d="M572.855652,135.899913 C572.867131,135.628873 572.828867,135.367512 572.748512,135.123962 C572.446224,134.17648 571.543188,133.484939 570.598062,133.479905 C570.337865,133.478357 570.115932,133.526757 569.943743,133.624331 C569.809819,133.702159 569.668241,133.827225 569.522837,134.008435 C569.067492,134.56252 568.814949,135.286587 568.857039,135.963415 C568.89913,136.659602 569.254987,137.320942 569.771554,137.649289 C570.104453,137.862637 570.510054,137.954404 570.865911,138.015969 C571.09167,138.056238 571.279165,138.077146 571.439875,138.048881 C571.604411,138.021002 571.7766,137.935818 571.964095,137.7972 C572.495968,137.387928 572.840346,136.660764 572.855652,135.899913 Z M567.900433,135.75239 C567.915739,134.893965 568.244811,134.009984 568.807296,133.327735 C569.029228,133.050112 569.254987,132.847993 569.499878,132.710149 C569.813645,132.533973 570.188635,132.446078 570.605715,132.448014 C571.941136,132.455371 573.222988,133.438862 573.651548,134.787097 C573.76634,135.145645 573.823737,135.526651 573.812258,135.919661 C573.789299,137.002276 573.291864,138.044622 572.511274,138.639363 C572.208986,138.870135 571.899046,139.013786 571.592932,139.06722 C571.282992,139.121041 570.984531,139.083483 570.709028,139.034695 C570.291948,138.962289 569.760075,138.84032 569.285599,138.537916 C568.489703,138.034167 567.961656,137.072359 567.90426,136.028464 C567.900433,135.93631 567.900433,135.844544 567.900433,135.75239 Z" id="Fill-193" fill="#000000"></path>
214
- <path d="M325.868434,339.407885 C325.806446,339.597614 325.726091,339.779598 325.620099,339.938351 C325.619333,339.980943 325.621247,340.019663 325.618568,340.062255 C325.610533,340.190032 325.60288,340.317808 325.594844,340.441712 C325.592166,340.488177 325.581069,340.530769 325.575712,340.577233 C331.268282,352.13132 333.036473,357.284969 333.14323,359.337136 C333.153944,359.546225 333.323072,359.704977 333.525107,359.704977 L333.54577,359.704977 C333.756606,359.693361 333.918463,359.511377 333.907749,359.298416 C333.765024,356.560903 331.071987,349.904912 325.868434,339.407885 Z" id="Fill-194" fill="#000000"></path>
215
- <path d="M217.545063,184.717867 C217.456673,184.717867 217.368282,184.687278 217.295963,184.624551 C217.135253,184.485546 217.116886,184.241222 217.254255,184.078597 C217.923496,183.287932 218.352438,182.283145 218.462257,181.248543 C218.484833,181.035969 218.665823,180.880315 218.883929,180.905095 C219.093999,180.92794 219.245908,181.118831 219.22295,181.331791 C219.096678,182.519338 218.603834,183.673972 217.835489,184.582346 C217.759725,184.67179 217.652586,184.717867 217.545063,184.717867 Z" id="Fill-195" fill="#000000"></path>
216
- <path d="M228.345526,197.772746 C228.139282,197.772746 227.969389,197.607024 227.963266,197.396773 C227.89133,194.830403 227.387772,192.315918 226.4679,189.923014 C226.138445,189.066137 225.696493,188.126013 224.917816,187.652853 C224.481986,187.387232 223.961593,187.276106 223.411353,187.158396 L223.125519,187.096444 C221.135014,186.653099 219.203818,185.786929 217.541237,184.591639 C217.369048,184.467735 217.328488,184.226121 217.450933,184.05188 C217.572996,183.87764 217.811765,183.835822 217.984337,183.960501 C219.563884,185.095775 221.398654,185.918965 223.290055,186.34024 L223.569384,186.400644 C224.157506,186.526484 224.765907,186.656196 225.312703,186.988802 C226.288058,187.582769 226.804625,188.663448 227.180763,189.642293 C228.13316,192.117671 228.653553,194.719664 228.728551,197.374703 C228.734673,197.588438 228.568224,197.766551 228.357005,197.772746 L228.345526,197.772746 Z" id="Fill-196" fill="#000000"></path>
217
- <path d="M228.757632,189.430494 C228.087242,189.430494 227.417236,189.351505 226.765596,189.191591 C226.560499,189.141254 226.434228,188.931778 226.484354,188.723851 C226.53448,188.515924 226.739576,188.388535 226.946586,188.439258 C229.08173,188.965078 231.438807,188.525217 233.249853,187.262941 C233.424721,187.14136 233.662341,187.187049 233.782109,187.362452 C233.901876,187.538628 233.857489,187.779855 233.683769,187.901049 C232.248478,188.900415 230.500568,189.430494 228.757632,189.430494 Z" id="Fill-197" fill="#000000"></path>
218
- <path d="M248.801969,282.240323 C248.598403,282.240323 248.428892,282.077698 248.420092,281.869771 C248.411291,281.656036 248.574679,281.475213 248.785898,281.466308 C251.661072,281.342403 253.978737,279.222863 256.295636,276.873326 C256.44525,276.721156 256.687462,276.72193 256.836693,276.872551 C256.986689,277.02356 256.986689,277.268658 256.837458,277.420054 C254.506018,279.784305 251.966421,282.104028 248.818805,282.239936 L248.801969,282.240323 Z" id="Fill-198" fill="#000000"></path>
219
- <path d="M224.289517,210.721145 C224.079446,210.721145 223.908405,210.549614 223.906875,210.337041 C223.905344,210.122919 224.075237,209.948291 224.286456,209.946742 C226.042402,209.93319 227.775389,209.122003 228.923316,207.777253 C229.061067,207.615016 229.303662,207.597592 229.462842,207.737371 C229.622786,207.877151 229.64077,208.121475 229.502637,208.283325 C228.213132,209.794572 226.2651,210.706044 224.292578,210.721145 L224.289517,210.721145 Z" id="Fill-199" fill="#000000"></path>
220
- <path d="M252.719844,285.347613 C252.651351,285.347613 252.582858,285.346839 252.513982,285.344903 C252.303146,285.339095 252.136314,285.16137 252.142054,284.947247 C252.147411,284.733125 252.316539,284.567403 252.535027,284.5705 C254.298243,284.627806 256.089392,283.972662 257.426727,282.79557 C257.585906,282.656177 257.827354,282.672052 257.966636,282.833903 C258.105535,282.995365 258.088698,283.240077 257.929137,283.380244 C256.50035,284.636712 254.612393,285.347613 252.719844,285.347613 Z" id="Fill-200" fill="#000000"></path>
221
- <path d="M221.114734,195.566473 C220.93757,195.566473 220.778774,195.441794 220.740509,195.259422 C220.024968,191.830755 219.169763,188.384276 218.198234,185.015624 C218.138924,184.810408 218.255247,184.595124 218.458048,184.535495 C218.663527,184.474704 218.873597,184.593575 218.932907,184.798792 C219.90941,188.186029 220.76959,191.651868 221.48934,195.099121 C221.533344,195.308597 221.40095,195.513813 221.194323,195.558342 L221.114734,195.566473 Z" id="Fill-201" fill="#000000"></path>
222
- <path d="M224.481604,191.430001 L224.451375,191.42884 C222.928458,191.30842 221.440745,190.947161 220.030708,190.353582 C219.83556,190.271108 219.742961,190.044595 219.824081,189.84751 C219.905201,189.64965 220.130195,189.557496 220.324194,189.638421 C221.659999,190.20025 223.068505,190.542923 224.511067,190.65676 C224.72152,190.67341 224.879169,190.859654 224.862715,191.073002 C224.847027,191.275508 224.67943,191.430001 224.481604,191.430001 Z" id="Fill-202" fill="#000000"></path>
223
- <path d="M775.851244,193.463582 C775.65227,193.463582 775.487734,193.310251 775.468602,193.108132 L775.204579,189.860287 C775.170141,189.42275 775.131877,188.970499 774.959688,188.594139 C774.833416,188.314192 774.622962,188.055155 774.420162,187.804635 L772.246753,185.129074 C772.131961,184.9831 772.135787,184.7713 772.254406,184.628423 C773.666356,182.990949 774.645921,180.879927 775.594874,178.838215 C776.214754,177.49695 776.86142,176.110382 777.622878,174.864755 C778.85116,172.860988 780.458258,171.030688 782.011786,169.260403 C784.877777,165.997458 787.586885,162.915723 788.103452,158.849722 C788.267988,157.538271 788.130237,156.429327 787.690199,155.55309 C787.181284,154.536299 786.197893,153.854051 785.229808,153.854051 L785.225982,153.854051 C783.58062,153.857536 782.516874,155.507013 781.476087,157.101895 C781.349815,157.300142 781.223543,157.496066 781.093444,157.685408 C779.023349,160.799281 775.927773,162.98116 772.939336,165.091407 C770.413896,166.874082 767.800449,168.71716 765.84132,171.104256 C764.984202,172.14544 764.241875,173.311691 763.511028,174.439608 L756.478062,185.412893 C756.363269,185.592554 756.126031,185.643665 755.950016,185.52673 C755.774,185.41057 755.72043,185.170892 755.835223,184.991618 L762.868189,174.023754 C763.606689,172.871056 764.368147,171.685058 765.252051,170.609026 C767.280056,168.141779 769.935594,166.268112 772.503124,164.456397 C775.437991,162.386806 778.468518,160.246357 780.462085,157.252904 C780.58453,157.065886 780.710802,156.872672 780.8409,156.677135 C781.931431,154.993197 783.167366,153.084295 785.225982,153.079648 L785.237461,153.079648 C786.492528,153.079648 787.728463,153.912131 788.371302,155.20306 C788.884043,156.219851 789.048579,157.479804 788.861084,158.948071 C788.313906,163.251426 785.401997,166.567806 782.58575,169.774994 C781.051354,171.520497 779.463388,173.32563 778.27337,175.272478 C777.538697,176.480159 776.899684,177.846205 776.287457,179.167336 C775.365288,181.156776 774.412509,183.210879 773.042649,184.887461 L775.009431,187.31289 C775.23519,187.587803 775.487734,187.899887 775.656097,188.271213 C775.881856,188.770703 775.927773,189.315882 775.966037,189.796786 L776.233887,193.044631 C776.249192,193.257591 776.092309,193.44461 775.881856,193.462421 L775.851244,193.463582 Z" id="Fill-203" fill="#000000"></path>
224
- <path d="M740.77442,183.092396 C740.686412,183.092396 740.598405,183.062968 740.529529,183.002178 C740.364993,182.864721 740.345861,182.621172 740.479786,182.456998 C742.576666,179.920442 744.202896,176.898724 745.308732,173.475477 C745.519185,172.825753 745.718159,172.146215 745.90948,171.489134 C746.686244,168.831384 747.482141,166.083804 749.422137,164.075391 C750.646593,162.81234 752.180989,161.988376 753.673294,161.191903 C760.790441,157.370613 768.163959,153.419224 776.249192,151.749224 C777.469821,151.497544 778.881772,151.263287 780.224846,151.675656 C781.52583,152.073312 782.819161,153.283703 782.777071,154.827475 C782.769418,155.04121 782.601055,155.199575 782.382949,155.203834 C782.176322,155.197639 782.004133,155.019527 782.011786,154.805792 C782.042397,153.662773 781.00161,152.721874 780.002914,152.41676 C778.832028,152.057824 777.531044,152.275818 776.402249,152.507752 C768.42033,154.155681 761.100382,158.08074 754.025325,161.876087 C752.590416,162.645069 751.10959,163.440381 749.969316,164.617085 C748.159417,166.487655 747.390306,169.141145 746.644154,171.707516 C746.452833,172.370017 746.250032,173.055363 746.035752,173.71709 C744.899305,177.23404 743.227158,180.341718 741.065228,182.953778 C740.996353,183.045157 740.88156,183.092396 740.77442,183.092396 Z" id="Fill-204" fill="#000000"></path>
225
- <path d="M757.170645,182.961134 C756.845399,182.961134 756.516326,182.836456 756.252303,182.606458 C755.930884,182.331932 755.739562,181.948216 755.735736,181.554432 C755.73191,181.179234 755.862008,180.849338 756.015065,180.51712 C760.185866,171.286628 767.999423,164.037058 777.450689,160.62775 C777.649663,160.556505 777.871596,160.661437 777.940471,160.862394 C778.009347,161.064126 777.906034,161.285605 777.70706,161.357625 C768.592519,164.648061 760.736871,171.930544 756.707648,180.839271 C756.592855,181.097147 756.497194,181.327532 756.501021,181.540493 C756.501021,181.708925 756.592855,181.886651 756.745912,182.015202 C756.895142,182.143365 757.082637,182.207253 757.247173,182.180924 C757.457627,182.153045 757.648948,182.295535 757.679559,182.507334 C757.713997,182.718746 757.568593,182.915445 757.35814,182.946808 C757.296917,182.956488 757.235694,182.961134 757.170645,182.961134 Z" id="Fill-205" fill="#000000"></path>
226
- <path d="M724.271056,188.762571 C724.140957,188.762571 724.018512,188.695198 723.941983,188.574392 C722.093821,185.446579 720.364277,182.197573 718.806923,178.916042 C717.915366,177.055153 717.058247,175.063002 717.115644,172.971728 C717.188346,170.454532 718.546726,168.228899 720.050511,165.981196 C722.882064,161.758378 726.4062,156.502508 731.767019,153.915229 C736.932691,151.419716 740.808858,151.168422 747.22577,150.939587 C747.876262,150.916354 748.568845,151.269482 749.020363,151.861513 C749.448922,152.421019 749.468054,153.160573 749.448922,153.667807 C749.32265,156.787875 747.466835,159.720925 744.719463,161.140405 C744.107235,161.456361 743.460569,161.696813 742.836862,161.928747 C742.232287,162.152549 741.616233,162.384483 741.046096,162.678756 C740.755288,162.828603 740.472133,162.966833 740.192804,163.101579 C739.190281,163.591389 738.321683,164.0146 737.487522,164.791713 C736.381686,165.821281 735.26437,167.027801 734.181492,168.195213 C733.090962,169.371917 731.965993,170.588117 730.837198,171.636658 C730.684141,171.781471 730.443077,171.772178 730.297673,171.614587 C730.156095,171.457384 730.163748,171.212285 730.320631,171.067472 C731.430294,170.037904 732.543783,168.831772 733.622835,167.665521 C734.717192,166.488042 735.84216,165.270681 736.970955,164.221753 C737.889297,163.3672 738.845903,162.89946 739.859905,162.40423 C740.127755,162.271807 740.407083,162.135899 740.694065,161.988763 C741.302467,161.673581 741.952959,161.433903 742.576666,161.20197 C743.177414,160.977393 743.801121,160.745847 744.371258,160.450799 C746.839301,159.176133 748.572671,156.437845 748.683637,153.636444 C748.710422,153.013824 748.626241,152.612296 748.415788,152.334673 C748.121153,151.942438 747.661982,151.702373 747.252555,151.713215 C740.938956,151.938566 737.124012,152.184439 732.092265,154.614127 C726.918941,157.110801 723.46368,162.270258 720.685697,166.416023 C719.189565,168.647077 717.945978,170.681819 717.880928,172.993411 C717.827358,174.912768 718.615602,176.731065 719.491853,178.579952 C721.049207,181.840574 722.763445,185.069445 724.600128,188.176349 C724.707268,188.360269 724.649872,188.597624 724.47003,188.707589 C724.408807,188.74476 724.339931,188.762571 724.271056,188.762571 Z" id="Fill-206" fill="#000000"></path>
227
- <path d="M740.070358,183.027733 C739.668584,183.027733 739.224719,182.899569 738.708151,182.642855 C737.085748,181.827409 735.685277,180.514022 734.747803,178.945082 C734.258021,178.120731 733.894511,177.230942 733.54248,176.370194 L731.250452,170.755 C731.170097,170.557528 731.261931,170.331015 731.457079,170.249316 C731.652227,170.168003 731.874159,170.261319 731.95834,170.459179 L734.254194,176.074372 C734.59092,176.908404 734.942951,177.770701 735.405948,178.545878 C736.263067,179.990139 737.556398,181.198981 739.048703,181.949377 C739.676237,182.265334 740.139234,182.333481 740.472133,182.160015 C740.659627,182.061278 740.885386,182.134072 740.984873,182.323027 C741.080534,182.512368 741.007832,182.746625 740.824164,182.846136 C740.594578,182.966942 740.342034,183.027733 740.070358,183.027733 Z" id="Fill-207" fill="#000000"></path>
228
- <path d="M775.216058,249.440501 C773.601307,242.58394 770.532516,236.157947 766.572167,231.346584 C759.757307,223.065122 751.756256,217.841777 743.276901,212.31138 C742.469526,211.784399 741.654498,211.253546 740.835643,210.715337 C736.599792,207.935231 732.138182,204.90964 728.265842,201.194057 C723.30297,196.432255 717.48298,191.027699 712.34792,186.259315 L710.580112,184.622228 C709.083981,183.232175 709.914315,175.186519 711.318612,168.299757 C711.796915,165.964933 712.286697,163.550733 713.836399,161.604659 C714.437147,160.852714 715.141209,160.137166 715.826139,159.44485 C716.736828,158.520988 717.678128,157.565762 718.428107,156.47308 C718.699783,156.076973 718.925542,155.65415 719.143648,155.245265 C719.403845,154.762425 719.64491,154.306689 719.95485,153.894707 C720.444632,153.245757 721.274966,152.609973 722.132085,152.768338 C722.859105,152.904246 723.440722,153.33946 723.846323,154.061978 C724.695789,155.567029 724.646045,158.087323 724.114172,159.559075 C724.04147,159.760032 724.144784,159.982286 724.339931,160.055854 C724.542732,160.128648 724.760838,160.026427 724.83354,159.825469 C725.438115,158.155083 725.480205,155.398597 724.508294,153.677874 C723.991727,152.760594 723.218789,152.18289 722.269836,152.006713 C721.075992,151.782524 719.973982,152.593323 719.350275,153.425032 C719.00207,153.885027 718.730394,154.389163 718.470198,154.876649 C718.252091,155.285147 718.045465,155.670799 717.800573,156.032445 C717.088859,157.067434 716.174344,157.998266 715.282787,158.897735 C714.586378,159.604377 713.86701,160.334639 713.243303,161.118334 C711.578809,163.210383 711.066068,165.717899 710.568633,168.143328 C710.067372,170.603218 707.68351,182.984366 710.063545,185.192575 L711.827526,186.83005 C716.962587,191.596111 722.782577,196.998343 727.737795,201.756273 C731.659879,205.516385 736.339595,208.687951 740.422389,211.36506 C741.237417,211.903657 742.052446,212.435285 742.863647,212.962653 C751.285605,218.459363 759.244566,223.651345 765.982898,231.842201 C769.870544,236.563734 772.885766,242.877438 774.477558,249.620549 C775.770889,255.119195 775.323198,260.399459 774.852548,265.989097 C774.783672,266.795637 774.718623,267.607986 774.653574,268.427304 C774.071957,275.791872 773.624266,283.208713 773.295193,290.636783 C773.387028,290.682086 773.482688,290.74791 773.570696,290.84471 C773.723753,291.022436 773.884463,291.199774 774.045172,291.377112 C774.370418,283.722917 774.825763,276.078401 775.415032,268.487707 C775.483908,267.670325 775.548957,266.859526 775.614006,266.054921 C776.092309,260.401395 776.543827,255.060727 775.216058,249.440501 Z" id="Fill-208" fill="#000000"></path>
229
- <path d="M796.73969,213.451688 C796.609592,213.451688 796.48332,213.38509 796.410618,213.26467 C794.137722,209.468161 791.566366,205.164419 787.831776,202.325072 C786.695328,201.463549 785.440262,200.723994 784.227285,200.008833 C783.542355,199.606531 782.834467,199.190677 782.153364,198.755075 C779.704453,197.190782 777.462169,195.307048 775.487734,193.157306 C775.34233,193.000103 775.353809,192.755391 775.506866,192.609804 C775.66375,192.464216 775.904814,192.473122 776.054045,192.629938 C777.974909,194.730892 780.171276,196.57126 782.562791,198.099931 C783.232415,198.528176 783.932651,198.940545 784.609928,199.339362 C785.845862,200.065752 787.120061,200.81731 788.290947,201.705937 C792.144155,204.635502 794.761429,209.007004 797.064936,212.863917 C797.175902,213.046676 797.118506,213.284804 796.934838,213.395544 C796.873615,213.43349 796.804739,213.451688 796.73969,213.451688 Z" id="Fill-209" fill="#000000"></path>
230
- <path d="M806.585078,240.771451 C806.106775,252.811088 808.150085,271.735552 810.847713,291.167249 C811.077299,290.967066 811.310711,290.767657 811.53647,290.569023 C808.877105,271.347963 806.875886,252.688732 807.350362,240.802427 C807.373321,240.216204 807.400106,239.627271 807.423064,239.036401 C807.771269,230.948928 808.127126,222.586154 804.281571,215.535993 C803.282874,213.705692 802.020154,212.02369 800.795699,210.397057 L788.256509,193.698226 C786.729766,191.671615 785.203023,189.898233 783.56914,188.343232 C782.880384,187.685765 779.501652,182.757466 778.889425,181.882779 C778.610096,181.934664 777.764456,181.688404 777.488954,181.753841 L780.699323,186.383219 C781.449302,187.226931 782.229892,188.047411 783.018135,188.880281 C784.556358,190.499944 786.151976,192.175364 787.644281,194.167127 L800.187298,210.865958 C801.392621,212.470133 802.640035,214.12929 803.611947,215.910416 C807.354189,222.770075 807.005984,231.022496 806.661606,239.002715 C806.634821,239.594359 806.608036,240.184453 806.585078,240.771451 Z" id="Fill-210" fill="#000000"></path>
231
- <path d="M772.078391,73.2158945 L771.998036,73.2178305 C768.42033,73.3796806 765.26353,73.4029127 761.919236,73.4273064 C760.671822,73.436212 759.397623,73.4455048 758.062201,73.4625417 C757.572419,73.4687369 757.117075,73.6700816 756.78035,74.030566 C756.443624,74.3895016 756.267609,74.8587896 756.286741,75.3528585 C756.359443,77.2424008 756.424492,79.1733737 756.493368,81.105121 C756.554591,83.0864301 756.61964,85.0677392 756.696168,87.0037457 C756.734432,87.9434833 757.488238,88.6791657 758.418059,88.6791657 L758.456323,88.6787785 C763.093948,88.5800422 767.670351,88.4476194 772.45338,88.2729916 C773.402333,88.2385306 774.167618,87.4234719 774.148486,86.4566303 C774.140833,85.5885249 774.125527,84.7277764 774.114048,83.8678023 C774.083437,81.0021255 774.048999,78.0388739 773.834719,74.8696312 C773.773496,73.9426713 773.000559,73.2158945 772.078391,73.2158945 Z M758.418059,89.4535683 C757.078811,89.4535683 755.984453,88.391088 755.930884,87.0347218 C755.854355,85.0967793 755.789306,83.1139214 755.728083,81.1306763 C755.659207,79.2012522 755.594158,77.2714409 755.521456,75.3834474 C755.494671,74.678741 755.743389,74.0088827 756.221692,73.4973898 C756.703821,72.9843481 757.35814,72.6970447 758.054549,72.6881391 C759.386144,72.6711022 760.664169,72.6618094 761.91541,72.6529038 C765.248225,72.6285101 768.401198,72.6056652 771.963598,72.4442023 C773.348763,72.3791525 774.504343,73.4466665 774.600004,74.8165847 C774.814283,78.0078978 774.848721,80.9823782 774.879333,83.8592839 C774.890812,84.7177092 774.906118,85.5765217 774.91377,86.4438526 C774.936729,87.8292589 773.846198,88.9966708 772.480165,89.0466198 C767.693309,89.2216348 763.11308,89.3544448 758.471629,89.4531811 L758.418059,89.4535683 Z" id="Fill-211" fill="#000000"></path>
232
- <path d="M770.830977,74.6260816 L770.762101,74.6276304 C767.865498,74.7588917 765.309448,74.7778645 762.604166,74.7976118 C761.597817,74.8045814 760.564682,74.8123255 759.489457,74.8258775 C759.060898,74.8316855 758.659124,75.0082493 758.364489,75.3234312 C758.073681,75.6374514 757.916797,76.0478848 757.935929,76.4800015 C757.993326,78.0051874 758.046896,79.5632854 758.096639,81.1221579 C758.150209,82.7298177 758.203779,84.3378647 758.265002,85.9091276 C758.29944,86.7342536 758.965237,87.3804926 759.780266,87.3804926 L759.780266,87.5740932 L759.810877,87.3801054 C763.564598,87.2999547 767.268576,87.1923127 771.140917,87.0509843 C771.975077,87.0207825 772.640875,86.3067833 772.629396,85.4595869 C772.617916,84.7552677 772.61409,84.057531 772.602611,83.3597942 C772.575826,81.0408456 772.549041,78.6421335 772.376852,76.0761505 C772.323282,75.263415 771.642178,74.6260816 770.830977,74.6260816 Z M759.780266,87.7676939 C758.758611,87.7676939 757.928277,86.9580559 757.88236,85.9250029 C757.821137,84.3525784 757.767567,82.743757 757.713997,81.1349355 C757.664253,79.5768375 757.610683,78.0195138 757.553287,76.4951023 C757.530329,75.9580541 757.72165,75.4469484 758.088986,75.0570367 C758.456323,74.665189 758.949932,74.4452586 759.485631,74.4386762 C760.560856,74.4251241 761.59399,74.4173801 762.604166,74.4104105 C765.305621,74.3906632 767.857846,74.3720776 770.750622,74.2412035 C771.799062,74.1866081 772.682966,75.0055389 772.759494,76.0498208 C772.931683,78.6266455 772.958468,81.0307784 772.985253,83.3551478 C772.996732,84.0521102 773.000559,84.7494597 773.012038,85.4530045 C773.027344,86.510064 772.19701,87.3998526 771.152396,87.4381856 C767.280056,87.5791268 763.576078,87.687156 759.81853,87.7673067 L759.780266,87.7676939 Z" id="Fill-212" fill="#000000"></path>
233
- <path d="M779.402165,73.4447304 C778.816722,73.4447304 778.323114,73.6030958 778.047611,73.8795575 C777.733845,74.1885442 777.710886,74.5885231 777.714712,75.0787199 C777.733845,78.1662631 777.8142,81.3010449 777.948124,84.3959449 C777.971083,84.9647436 777.997868,85.5532896 778.315461,86.0504561 C778.59479,86.4794751 779.21467,86.9123662 779.995261,86.9123662 L780.045004,86.9115918 C780.8409,86.8926189 781.506698,86.4295262 781.801333,85.9788238 C782.122752,85.4986942 782.187802,84.9477068 782.233719,84.3293463 C782.348511,82.822746 782.405908,81.2983345 782.402081,79.7979294 C782.398255,78.5573365 782.046224,76.7107734 781.74011,75.2405701 L781.701846,75.0179293 C781.575574,74.394148 781.548789,74.2640484 780.867685,73.8268981 C780.492696,73.5876077 779.945517,73.4447304 779.402165,73.4447304 Z M779.995261,87.4931681 C779.11901,87.4931681 778.269544,87.050597 777.833332,86.3660251 C777.431557,85.7364358 777.400946,85.0379247 777.374161,84.4215002 C777.240236,81.3188562 777.159881,78.1771048 777.140749,75.082592 C777.136923,74.6396337 777.133096,73.970937 777.645837,73.4644777 C778.036132,73.0772764 778.659839,72.8639285 779.402165,72.8639285 C780.06031,72.8639285 780.706976,73.0362331 781.177626,73.3363141 C782.019439,73.8791703 782.1151,74.1629889 782.260504,74.9040922 L782.302594,75.1216993 C782.612535,76.6186195 782.972218,78.5027411 782.976045,79.7963806 C782.979871,81.3118865 782.922475,82.8517861 782.807682,84.3742616 C782.754112,85.0762576 782.673757,85.7058469 782.279636,86.3029113 C781.808986,87.0045201 780.940387,87.4714849 780.06031,87.4923937 L779.995261,87.4931681 Z" id="Fill-213" fill="#000000"></path>
234
- <path d="M765.076036,75.4965102 C764.865582,75.4965102 764.655129,75.5069646 764.463808,75.5267119 C763.629648,75.6142193 762.764876,75.9537949 761.884799,76.5361457 C760.828706,77.2385288 760.354229,77.9289087 760.009851,79.2709485 C759.845315,79.9016994 759.699911,80.5192855 759.653994,81.1399692 C759.523895,82.9044455 760.338923,84.6542082 761.685824,85.4932734 C762.638604,86.0884018 763.970199,86.4299134 765.343885,86.4299134 C766.457375,86.4299134 767.501988,86.1979798 768.286405,85.7774792 C769.717487,85.009659 770.639655,83.5011227 770.888373,81.5294937 C770.930464,81.1705581 770.941943,80.8092992 770.911332,80.4557844 C770.804192,79.0750246 770.084824,77.6702583 768.990467,76.6972214 C768.05682,75.8678362 766.350235,75.4965102 765.076036,75.4965102 Z M765.343885,86.8171147 C763.90515,86.8171147 762.497026,86.454307 761.483024,85.8227817 C760.02133,84.909761 759.129774,83.0163467 759.271351,81.1113163 C759.317268,80.4584949 759.470325,79.8219359 759.638688,79.1733737 C760.009851,77.7415033 760.541724,76.9667135 761.678172,76.2124454 C762.604166,75.5956337 763.530161,75.2355365 764.421717,75.1418338 C764.628344,75.1205377 764.84645,75.1093089 765.076036,75.1093089 C766.32345,75.1093089 768.167786,75.4488844 769.243011,76.406046 C770.413896,77.4445199 771.179181,78.9464738 771.293974,80.4255827 C771.324585,80.80504 771.313106,81.1930157 771.263362,81.5778938 C771.003166,83.6780737 770.008296,85.2907671 768.46242,86.1193779 C767.624434,86.5693058 766.518597,86.8171147 765.343885,86.8171147 Z" id="Fill-214" fill="#000000"></path>
235
- <path d="M333.278685,40.6344536 L333.198713,40.6363896 C329.619859,40.7982397 326.463825,40.8214718 323.122592,40.8454783 C321.872882,40.8547711 320.597535,40.864064 319.265557,40.8811008 C318.773862,40.887296 318.317369,41.0886407 317.979114,41.4491251 C317.642771,41.8080607 317.468286,42.2773487 317.487418,42.7714176 C317.561651,44.6609599 317.625552,46.5919328 317.689071,48.5236802 C317.754503,50.5049892 317.819934,52.4862983 317.896463,54.4223048 C317.933962,55.3620424 318.691211,56.0977248 319.620649,56.0977248 L319.657766,56.0973376 C324.293095,55.9986013 328.870645,55.8657913 333.65291,55.6915507 C334.605306,55.6567026 335.36753,54.842031 335.351459,53.8751894 C335.337301,53.007084 335.32697,52.1463355 335.317404,51.2863615 C335.284879,48.4206846 335.250824,45.457433 335.036162,42.2881904 C334.973408,41.3608432 334.201619,40.6344536 333.278685,40.6344536 Z M319.620267,56.8721275 C318.279105,56.8721275 317.185513,55.8096471 317.131943,54.4532809 C317.055415,52.5153384 316.989601,50.5324805 316.924169,48.5492354 C316.86065,46.6198113 316.796749,44.69 316.722899,42.8020065 C316.695349,42.0973001 316.944449,41.4274419 317.424282,40.9159489 C317.905646,40.4029072 318.556138,40.1156038 319.255609,40.1066982 C320.5895,40.0896614 321.865995,40.0803685 323.116852,40.0714629 C326.450815,40.0470692 329.599962,40.0242243 333.164275,39.8627614 C334.551736,39.7973244 335.706551,40.8652256 335.800298,42.2351438 C336.015726,45.4264569 336.049781,48.4009373 336.082688,51.277843 C336.092255,52.1362683 336.102203,52.9950808 336.116744,53.8624117 C336.13932,55.247818 335.046493,56.4152299 333.68046,56.4651789 C328.894752,56.6398067 324.312992,56.7730039 319.674219,56.8717403 L319.620267,56.8721275 Z" id="Fill-215" fill="#000000"></path>
236
- <path d="M332.03395,42.0446407 L331.963926,42.0461895 C329.067706,42.1774508 326.512421,42.1964237 323.807522,42.2161709 C322.798111,42.2231405 321.768038,42.2308846 320.691665,42.2444366 C320.261958,42.2498574 319.862097,42.4264212 319.566697,42.7419903 C319.272062,43.0556233 319.119388,43.4664439 319.136607,43.8985606 C319.196299,45.4237465 319.247573,46.9818446 319.29923,48.5403298 C319.352034,50.1483768 319.405222,51.7564238 319.467592,53.3276867 C319.500117,54.1528127 320.164767,54.7990517 320.98056,54.7990517 L320.98056,54.9926523 L321.013467,54.7986645 C324.766041,54.7185138 328.471167,54.6108718 332.341594,54.4695434 C333.176137,54.4393417 333.843848,53.7253425 333.830073,52.878146 C333.818594,52.1738268 333.810176,51.4760901 333.802523,50.7783533 C333.77612,48.4594047 333.74857,46.0606927 333.57485,43.4947096 C333.520133,42.6819741 332.842856,42.0446407 332.03395,42.0446407 Z M320.98056,55.186253 C319.958905,55.186253 319.125893,54.3766151 319.08495,53.343562 C319.022962,51.7711375 318.969775,50.1623161 318.916587,48.5534947 C318.865313,46.9953966 318.813657,45.438073 318.753964,43.9136614 C318.732919,43.3766132 318.923092,42.8655075 319.288898,42.4752086 C319.656235,42.0837481 320.152905,41.8638177 320.686691,41.8572353 C321.763829,41.8436833 322.794285,41.8359392 323.804461,41.8289696 C326.505916,41.8092223 329.057758,41.7906367 331.946707,41.6597626 C332.997061,41.6051673 333.886321,42.424098 333.956728,43.4683799 C334.131212,46.0452046 334.158763,48.4493375 334.185165,50.7737069 C334.192818,51.4706693 334.201236,52.1680188 334.212715,52.8715636 C334.229934,53.9286231 333.396922,54.8184117 332.355369,54.8567447 C328.483029,54.9976859 324.775607,55.1057151 321.021503,55.1858658 L320.98056,55.186253 Z" id="Fill-216" fill="#000000"></path>
237
- <path d="M326.277478,42.9150693 C326.062433,42.9150693 325.855806,42.9255237 325.66372,42.945271 C324.83109,43.0327785 323.964405,43.372354 323.087772,43.9547048 C322.030531,44.6570879 321.55682,45.3470807 321.210528,46.6895076 C321.047905,47.3202585 320.898292,47.9378446 320.85314,48.5585283 C320.723807,50.3230046 321.541131,52.0727673 322.886119,52.9118325 C323.839664,53.5069609 325.17279,53.8480853 326.543797,53.8480853 L326.54418,53.8480853 C327.656904,53.8480853 328.7019,53.6165389 329.486317,53.1960383 C330.917782,52.4282181 331.840715,50.9196818 332.085989,48.9480528 C332.130758,48.58873 332.139559,48.2278584 332.112391,47.8743436 C332.006017,46.4935837 331.287797,45.0884302 330.190379,44.1157805 C329.256349,43.2863953 327.55206,42.9150693 326.277478,42.9150693 Z M326.54418,54.2352866 L326.543797,54.2352866 C325.103532,54.2352866 323.697321,53.8728662 322.684849,53.2413408 C321.221625,52.3283202 320.332364,50.4349058 320.471263,48.5298754 C320.519094,47.877054 320.672916,47.240495 320.840513,46.5919328 C321.209763,45.1600624 321.742784,44.3852726 322.877701,43.6310045 C323.805991,43.0141928 324.730073,42.6540956 325.624308,42.5603929 C325.829787,42.5387096 326.049423,42.527868 326.277478,42.527868 C327.525275,42.527868 329.364637,42.8674435 330.443306,43.8246051 C331.613043,44.8626918 332.379858,46.3650329 332.493503,47.8441419 C332.522967,48.2235991 332.513783,48.6115748 332.46557,48.9964529 C332.204608,51.0966328 331.209738,52.7093262 329.665394,53.537937 C328.827024,53.9878649 327.718127,54.2352866 326.54418,54.2352866 Z" id="Fill-217" fill="#000000"></path>
238
- <path d="M324.147691,43.1559085 C323.76237,43.3208562 323.37284,43.5334298 322.982545,43.7928546 L322.98178,43.793629 L322.982545,43.7928546 C323.373223,43.5334298 323.76237,43.3208562 324.147691,43.1559085 Z M326.281687,42.7214686 C327.591472,42.722243 329.345887,43.1086699 330.316651,43.9701928 C330.588327,44.211032 330.83781,44.4778137 331.061273,44.7639555 C330.83781,44.4778137 330.588327,44.211032 330.316651,43.9701928 C329.280073,43.0494281 327.495812,42.722243 326.281687,42.7214686 Z M320.804162,47.5688417 C320.737582,47.8929292 320.686308,48.2170167 320.662202,48.5442018 C320.63006,48.9825137 320.654549,49.419664 320.729164,49.8436494 C320.654549,49.419664 320.63006,48.9825137 320.662202,48.5442018 C320.686308,48.2174039 320.737582,47.8933164 320.804162,47.5688417 Z M332.31634,48.4532095 C332.3106,48.6262885 332.297208,48.7993675 332.27578,48.9724465 C332.10206,50.3710176 331.594676,51.5453991 330.81179,52.4022756 C331.595059,51.5450119 332.10206,50.3710176 332.27578,48.9724465 C332.297208,48.7997547 332.3106,48.6262885 332.31634,48.4532095 Z M326.277478,43.1086699 C326.069321,43.1086699 325.869199,43.1187372 325.683617,43.1380972 C324.881599,43.2221199 324.043612,43.551241 323.192616,44.1165549 C322.181675,44.7887364 321.727861,45.4500762 321.395345,46.7386821 C321.2354,47.359753 321.088083,47.9676591 321.044079,48.5728547 C320.91972,50.2672476 321.70031,51.9446037 322.986371,52.7468848 C323.910835,53.3238147 325.207228,53.6544846 326.543797,53.6544846 C327.62591,53.6544846 328.639147,53.4310695 329.396396,53.0248953 C330.77123,52.287664 331.658578,50.8310127 331.895816,48.9240463 C331.939437,48.5775011 331.947855,48.2294072 331.921836,47.8894444 C331.818905,46.5578591 331.124792,45.201493 330.06449,44.2613682 C329.167576,43.4652823 327.516092,43.1086699 326.277478,43.1086699 Z M328.834677,53.6862351 C328.155104,53.9177815 327.366861,54.0416859 326.54418,54.0416859 C327.366861,54.0416859 328.155487,53.9177815 328.834677,53.6862351 Z M321.557968,51.8865235 C321.891249,52.3685891 322.306416,52.7774737 322.785484,53.0763931 C323.768492,53.6901071 325.138735,54.0416859 326.543797,54.0416859 L326.54418,54.0416859 C325.138352,54.0416859 323.768492,53.6901071 322.785484,53.0763931 C322.306416,52.7774737 321.891632,52.3685891 321.557968,51.8865235 Z M326.54418,54.4288872 C325.069859,54.4288872 323.626532,54.0563996 322.584214,53.4062886 C321.062446,52.4560966 320.136451,50.49105 320.280325,48.5159361 C320.329686,47.8449163 320.485804,47.1998389 320.655314,46.5431455 C321.037957,45.0582285 321.592405,44.2536242 322.772857,43.4691543 C323.726402,42.8353058 324.679181,42.4651414 325.60441,42.3679538 C325.816777,42.3454962 326.043301,42.3342673 326.277478,42.3342673 C327.558182,42.3342673 329.451114,42.6866205 330.569577,43.6790174 C331.776431,44.7500162 332.566588,46.3015319 332.684059,47.829041 C332.71467,48.2220503 332.705104,48.6231909 332.655361,49.0208466 C332.386746,51.1849147 331.35629,52.8498803 329.755315,53.70908 C328.889778,54.1733344 327.749503,54.4288872 326.54418,54.4288872 Z" id="Fill-218" fill="#000000"></path>
239
- <path d="M343.00201,133.588322 C337.427294,129.409258 328.425632,130.014066 322.410877,131.801775 C320.278412,132.435623 318.151303,133.654533 316.093835,134.833561 C311.526998,137.450655 307.212706,139.922161 302.529164,136.880307 C300.641206,135.653653 294.587804,130.590222 295.967995,116.935568 C295.98904,116.722607 295.836366,116.532879 295.625913,116.511195 C295.417755,116.489512 295.227965,116.644005 295.206154,116.856966 C294.80438,120.837783 295.070316,124.868161 295.955368,128.205062 C297.087989,132.473956 299.160763,135.612223 302.11591,137.53158 C307.188599,140.827437 311.907727,138.122449 316.47112,135.507291 C318.490706,134.349947 320.578786,133.153495 322.62707,132.544814 C328.472697,130.807442 337.198091,130.201472 342.5459,134.210554 C343.86946,135.202951 345.616988,137.509122 345.456278,139.258885 C345.385489,140.026705 344.957312,140.59318 344.146876,140.991611 C343.162337,141.475612 341.983033,141.513945 340.842759,141.551504 C340.519044,141.561958 340.19839,141.572413 339.885388,141.59216 C338.023068,141.711418 336.096464,142.069579 334.159145,142.657351 C325.874173,145.171062 318.832023,150.275536 315.32128,156.312005 C310.781611,164.117983 306.305078,170.62219 301.636842,176.197115 C298.28719,180.196517 294.367785,184.150617 289.655162,188.284765 C287.274744,190.372942 285.299926,192.976483 284.049069,195.90992 C282.678061,199.124853 282.348606,202.774612 281.847345,206.208701 C281.611637,207.824104 281.393913,209.442219 281.194939,211.062269 C281.235499,211.084339 281.27606,211.107959 281.31662,211.138935 C281.444422,211.235735 281.571842,211.332535 281.699262,211.429336 C281.806019,211.510261 281.887905,211.597381 281.951423,211.691471 C282.385722,207.717237 282.901142,203.737195 283.49615,199.74786 L283.49462,199.710688 C283.823692,198.685379 284.132102,197.802947 284.452756,196.978983 C285.703997,193.762889 287.516956,191.186064 290.156423,188.870213 C294.899275,184.709348 298.845466,180.727757 302.220371,176.697766 C306.917689,171.088768 311.418711,164.549325 315.980955,156.705014 C319.396038,150.832332 326.274034,145.857957 334.378782,143.399228 C336.260235,142.828494 338.12906,142.4804 339.933984,142.365401 C340.239332,142.345654 340.551568,142.335586 340.867248,142.325519 C342.087877,142.28525 343.349832,142.244207 344.480923,141.688186 C345.522475,141.176306 346.123224,140.36086 346.218119,139.330517 C346.413649,137.204782 344.414343,134.647317 343.00201,133.588322 Z" id="Fill-219" fill="#000000"></path>
240
- <path d="M253.287302,142.097845 C253.261283,141.885658 253.071109,141.736199 252.861039,141.760205 C252.651351,141.785761 252.501738,141.978974 252.526992,142.19116 C253.993277,154.416654 255.655093,168.273427 251.511076,180.890382 L251.501893,180.966273 C250.356262,183.482694 249.99543,186.251571 249.775028,189.046003 C249.757809,189.26361 249.745182,189.481991 249.728728,189.699599 C249.855766,189.770456 249.970941,189.884681 250.057418,190.058534 C250.078081,190.099965 250.101422,190.139459 250.122467,190.180503 C250.247591,190.216125 250.365445,190.276529 250.46455,190.361713 C250.643244,187.188985 250.838774,183.641834 252.182996,180.727757 C253.359239,178.176875 253.830272,175.250408 254.228602,172.479982 C254.638795,169.626309 254.836621,166.744369 254.883304,163.862043 C255.001157,156.576076 254.164701,149.316826 253.287302,142.097845 Z" id="Fill-220" fill="#000000"></path>
241
- <path d="M447.873181,138.208795 C447.789,138.088762 447.655075,138.067466 447.53263,138.164267 C447.203557,138.439954 447.234169,138.930538 447.188251,139.335938 C447.130855,139.875696 447.100244,140.425522 447.100244,140.968379 C447.096417,141.511622 447.919098,141.509686 447.934404,140.968379 C447.942057,140.491734 447.945883,140.015863 447.968842,139.539606 C447.9918,139.109812 448.144857,138.573151 447.873181,138.208795 Z" id="Fill-221" fill="#000000"></path>
242
- <path d="M593.434157,136.785443 C592.932896,134.586914 592.175264,132.486734 591.226311,130.449668 C590.61791,129.143638 589.829666,127.043071 588.345014,126.575332 C588.080991,126.491696 587.904975,126.898258 588.153693,127.031842 C589.489115,127.752036 590.235267,130.136809 590.82071,131.453681 C591.620433,133.236743 592.163785,135.113895 592.634435,137.007309 C592.76836,137.530805 593.54895,137.308552 593.434157,136.785443 Z" id="Fill-222" fill="#000000"></path>
243
- <path d="M327.66073,61.2920303 C326.774531,61.2920303 325.890244,61.8499874 325.509898,62.6483965 C325.188478,63.32445 325.183504,64.1604176 325.178912,64.8984233 L325.149831,69.9386226 C325.14103,71.5091111 325.131464,73.1330334 325.702367,74.5931695 C326.060903,75.5100622 326.884349,76.4974255 327.844016,76.4974255 C327.930493,76.4974255 328.017353,76.4892943 328.103448,76.4730318 C328.642208,76.3708107 329.143087,75.929014 329.442696,75.2920679 C329.729295,74.6833874 329.819598,73.9810043 329.894214,73.2546146 C330.204154,70.2309596 330.263464,67.1596789 330.070612,64.1255695 C330.043444,63.7039073 330.012833,63.326386 329.906076,62.9775176 C329.62866,62.074177 328.750878,61.3679218 327.818762,61.2978384 C327.765957,61.2939663 327.713535,61.2920303 327.66073,61.2920303 Z M327.844016,77.2718281 L327.843633,77.2718281 C326.519308,77.2718281 325.456328,76.0695681 324.990652,74.8777625 C324.365414,73.2782339 324.375746,71.5017543 324.384547,69.9343634 L324.413627,64.8937769 C324.418602,64.0744589 324.424341,63.145563 324.820376,62.3123058 C325.362198,61.1743211 326.609612,60.4289586 327.875393,60.525759 C329.128929,60.6194617 330.264612,61.5332567 330.636923,62.7479072 C330.768552,63.1780879 330.805668,63.6214334 330.834366,64.0760077 C331.029896,67.1527093 330.969439,70.2677438 330.655672,73.3343781 C330.573787,74.130464 330.472386,74.9048666 330.13413,75.6246738 C329.729295,76.4846479 329.022937,77.0863587 328.244643,77.2342696 C328.112248,77.2594377 327.977558,77.2718281 327.844016,77.2718281 Z" id="Fill-223" fill="#000000"></path>
244
- <path d="M801.752305,171.566574 C801.46915,166.39705 801.534199,161.076904 801.603074,155.929063 C801.629859,155.876016 801.652818,155.818323 801.652818,155.75366 C802.092857,139.169441 802.016328,122.356774 801.427059,105.783009 C801.419406,105.568887 801.251043,105.400841 801.032937,105.409747 C800.822484,105.417491 800.654121,105.597152 800.661774,105.8105 C801.247217,122.278172 801.323745,138.981649 800.895186,155.462098 C800.795699,155.537215 800.726823,155.647567 800.726823,155.776892 L800.726823,155.860528 C800.657948,161.038958 800.592899,166.394339 800.87988,171.609554 L800.887533,171.862396 C801.048243,174.711036 801.289308,179.01594 798.193731,180.466784 C796.510105,181.254351 794.080326,181.228021 792.12885,181.206725 C791.876306,181.203628 791.631415,181.201304 791.401829,181.20053 L791.398003,181.20053 C791.156938,181.20053 775.12805,180.943816 775.12805,181.173039 C775.124224,181.403036 774.691838,182.075605 774.936729,182.076379 C775.166314,182.077154 791.868653,182.036498 792.117371,182.039208 C792.450269,182.042693 792.798474,182.046565 793.150505,182.046565 C794.971882,182.046565 797.015193,181.947054 798.584026,181.213308 C802.19617,179.519689 801.935973,174.885277 801.763784,171.817868 L801.752305,171.566574 Z" id="Fill-224" fill="#000000"></path>
245
- <path d="M428.626271,257.066043 C428.025523,257.066043 427.424774,257.296041 426.934992,257.713444 C425.825329,258.648535 425.595744,259.969666 425.580438,261.666382 C425.565132,263.563668 425.611049,265.488833 425.714363,267.387668 C425.798544,268.87878 425.982212,270.381896 426.751324,271.277492 C427.309981,271.930314 428.094398,272.146372 428.786981,272.272213 C428.993608,272.308997 429.253805,272.350814 429.510175,272.350814 C429.774198,272.350814 430.003784,272.307835 430.202758,272.219553 C430.719325,271.996138 431.174669,271.416498 431.461651,270.629705 C431.74098,269.870403 431.84812,269.003459 431.924648,268.251127 C432.131275,266.213287 432.207804,264.1375 432.146581,262.080687 C432.085358,260.153586 431.962912,258.912606 430.673408,257.930664 C430.126229,257.515584 429.69767,257.276681 429.26911,257.155486 C429.062483,257.095857 428.848204,257.066043 428.626271,257.066043 Z M429.510175,272.738016 C429.223193,272.738016 428.936211,272.692713 428.721932,272.653606 C428.006391,272.523893 427.103355,272.279182 426.464342,271.531496 C425.568959,270.498831 425.415902,268.862131 425.33172,267.408964 C425.228407,265.501998 425.18249,263.569089 425.197796,261.663284 C425.205449,260.102476 425.392943,258.507593 426.686274,257.416073 C427.459212,256.765962 428.473214,256.525123 429.380077,256.782999 C429.850727,256.917745 430.31755,257.176395 430.90682,257.621677 C432.322596,258.704679 432.464174,260.086213 432.529223,262.069458 C432.590446,264.142921 432.510091,266.236131 432.303464,268.290234 C432.223109,269.06696 432.115969,269.962944 431.825161,270.764451 C431.492262,271.662758 430.971869,272.305512 430.355815,272.575004 C430.103271,272.684582 429.827768,272.738016 429.510175,272.738016 Z" id="Fill-225" fill="#000000"></path>
246
- <path d="M282.990297,206.568798 C282.598854,206.19631 282.006906,206.792987 282.400645,207.165475 C283.24705,207.966595 283.687089,208.86645 283.765913,210.036185 C282.756503,211.216762 281.861885,211.344151 281.081295,210.41874 C280.793548,210.156992 280.501591,209.901052 280.204661,209.649759 C278.995894,208.605864 277.639427,207.745115 276.260001,206.954837 C274.684662,206.052271 273.000653,205.390931 271.480033,204.386531 C270.00112,203.410397 268.687126,202.142312 267.288568,201.050018 C264.327299,198.73649 261.160169,196.698649 257.978497,194.713081 C256.383262,193.717587 254.776929,192.741065 253.175953,191.755638 C252.385797,191.269313 251.597554,190.780277 250.814285,190.281949 C250.120937,189.87229 249.538938,189.339501 249.069053,188.683195 C248.243693,187.500682 248.623657,186.42465 250.208945,185.455098 C250.484064,185.424509 250.497074,184.996264 250.208945,185.010591 C248.834876,185.077964 248.126222,185.968527 248.008751,187.32528 C247.833884,189.342599 250.276672,190.706322 251.651889,191.577525 C256.980949,194.952759 262.417531,198.167304 267.388055,202.081135 C269.383153,203.652398 271.16397,205.257347 273.445284,206.406173 C276.186151,207.786546 278.531366,209.333802 280.885764,211.320532 C281.613167,211.933859 283.562348,212.662959 284.180698,211.423915 C285.051974,209.678411 284.328015,207.841141 282.990297,206.568798 Z" id="Fill-226" fill="#000000"></path>
247
- <path d="M283.915909,208.976416 C283.870757,208.84438 283.724205,208.725122 283.578036,208.78204 C283.539389,208.797141 283.506099,208.814953 283.471661,208.831989 C283.408908,208.581083 283.326257,208.340631 283.236336,208.132704 C283.216439,208.087401 283.183532,208.056812 283.146033,208.033968 C283.106621,207.873666 283.066443,207.713752 283.027031,207.553451 C282.970782,207.325002 282.718621,207.296736 282.569008,207.410186 L282.560207,207.391213 C282.429726,207.137984 282.04364,207.262275 282.043257,207.532929 C282.042875,207.654897 282.040962,207.776479 282.040196,207.898447 L282.035222,207.922066 C282.036753,208.508289 282.03637,209.094512 282.041344,209.680347 C281.605515,209.968038 281.684722,210.582139 282.026039,210.883769 C281.965198,211.116864 282.262129,211.345313 282.481766,211.21289 C282.602298,211.140096 282.712882,211.057623 282.817343,210.970889 C283.065678,210.863247 283.246285,210.705657 283.366052,210.511669 C283.405082,210.567813 283.444876,210.622795 283.486202,210.67468 C283.667574,210.90158 283.95953,210.687071 283.986315,210.464817 C284.001238,210.338202 284.003917,210.191453 283.99282,210.040057 C284.068583,209.687704 284.040651,209.343095 283.915909,208.976416 Z" id="Fill-227" fill="#000000"></path>
248
- <path d="M250.079611,185.179411 C250.048235,185.256851 250.023746,185.335066 249.996961,185.412893 C249.902831,185.380368 249.788803,185.395469 249.706535,185.467488 C249.546591,185.606881 249.472358,185.738529 249.443277,185.91548 C249.367131,185.960396 249.302082,186.013442 249.245451,186.071522 C249.195708,186.081202 249.147495,186.099401 249.1077,186.131151 C248.83985,186.343338 248.725823,186.647678 248.783602,186.907877 C248.765618,186.933432 248.750695,186.962473 248.743424,186.997708 C248.715874,187.124323 248.691768,187.255197 248.672636,187.38762 C248.581949,187.624587 248.569705,187.867749 248.632458,188.096585 C248.665748,188.705266 248.908343,189.245799 249.610492,189.448305 L249.653348,189.452951 L249.661383,189.467665 C249.806405,189.677528 250.158053,189.621771 250.168384,189.344148 C250.218893,189.300781 250.252948,189.234183 250.252948,189.142803 C250.252948,188.932553 250.252948,188.722303 250.253331,188.512052 L250.262515,188.464426 C250.260984,188.08768 250.259453,187.71132 250.258305,187.33496 C250.37195,186.664715 250.485212,185.994469 250.598857,185.324224 C250.658549,184.973032 250.211623,184.856872 250.079611,185.179411 Z" id="Fill-228" fill="#000000"></path>
249
- <path d="M284.34753,210.816009 C284.279037,210.28593 283.44679,210.279348 283.516813,210.816009 C283.646912,211.820022 283.719231,212.789574 283.556225,213.797072 C283.085575,216.703405 279.780311,214.473512 278.779701,213.811011 C277.177195,212.749305 275.801595,211.330987 274.32957,210.09775 C271.390112,207.634763 267.714067,206.392234 264.361737,204.635889 C260.664264,202.698334 257.171122,200.387129 253.730402,198.023265 C251.934279,196.788867 249.354887,195.563375 248.519961,193.412085 C247.778783,191.503957 248.340502,188.129497 248.938189,186.293389 C249.022371,186.034738 248.632075,185.934453 248.540241,186.182649 C247.819343,188.13879 247.36706,190.885209 247.79868,192.95751 C248.211169,194.937658 249.553861,195.884365 251.120781,196.987114 C255.86746,200.327113 260.650489,203.633812 265.844094,206.230771 C268.247853,207.432644 270.732732,208.403358 272.933308,209.982752 C274.849964,211.358091 276.463567,213.121018 278.378309,214.506037 C279.425984,215.26379 281.815585,216.812983 283.154068,215.819037 C284.735912,214.644655 284.579794,212.604879 284.34753,210.816009 Z" id="Fill-229" fill="#000000"></path>
250
- <path d="M248.237954,194.310779 C247.876357,196.079514 247.641032,197.897037 247.487975,199.695975 C247.452772,200.111442 248.077244,200.099826 248.121631,199.695975 C248.316013,197.923754 248.513839,196.145726 248.663835,194.369246 C248.68488,194.122212 248.287315,194.06994 248.237954,194.310779 Z" id="Fill-230" fill="#000000"></path>
251
- <path d="M283.464774,214.702348 C281.247361,222.855646 281.262284,231.88247 281.863033,240.262668 C281.895557,240.716855 282.568625,240.727697 282.568625,240.262668 C282.569773,231.639308 282.106011,223.338099 283.888359,214.820445 C283.946903,214.54166 283.540537,214.423951 283.464774,214.702348 Z" id="Fill-231" fill="#000000"></path>
252
- <path d="M811.199744,287.99336 C810.338799,288.197802 810.706136,289.540229 811.567081,289.332302 C811.406371,289.6591 811.238009,289.985898 811.073472,290.312309 C810.748226,290.406786 810.419154,290.475707 810.082429,290.519848 C809.370714,290.641042 808.64752,290.728163 807.931979,290.829222 C806.068511,291.091358 804.201216,291.319806 802.330095,291.527346 C798.955189,291.902157 795.564978,292.142996 792.174767,292.241345 C788.799861,292.339307 785.432609,292.230117 782.065356,291.936618 C780.201888,291.773993 778.353725,291.502953 776.505563,291.17538 C775.793848,291.048765 775.089786,290.89737 774.385724,290.7452 C773.911248,290.641042 773.440597,290.530303 772.973774,290.414142 C772.793932,289.530162 773.046476,289.204138 773.735232,289.436072 C774.163791,289.460078 774.263279,288.748015 773.838545,288.67406 C773.45973,288.61172 773.080914,288.543573 772.705924,288.470779 C772.50695,288.433995 772.288844,288.489752 772.185531,288.683353 C771.82202,289.381864 771.680443,289.930915 771.642178,290.720031 C771.630699,290.941898 771.802888,291.149051 772.005689,291.205969 C780.967172,293.675152 790.223291,293.8885 799.429666,293.135393 C801.606901,292.957668 803.780309,292.711795 805.949891,292.445013 C807.874582,292.208046 810.078602,292.1701 811.892327,291.454552 C813.862935,290.679375 813.411417,287.469864 811.199744,287.99336 Z" id="Fill-232" fill="#000000"></path>
253
- <path d="M773.670183,289.809721 C773.651051,289.760547 773.620439,289.720665 773.586002,289.685817 C773.597481,289.534808 773.586002,289.379153 773.543911,289.22195 C773.490341,289.031447 773.34111,288.941616 773.184227,288.93 C773.165095,288.865337 773.142136,288.801836 773.103872,288.737174 C772.901072,288.37514 772.338587,288.535055 772.338587,288.947424 C772.338587,289.115469 772.342414,289.283515 772.342414,289.451173 L772.334761,289.492991 C772.327108,289.57198 772.330935,289.666844 772.34624,289.756675 C772.350067,289.946016 772.350067,290.135358 772.353893,290.324312 C772.35772,290.551599 772.549041,290.739392 772.759494,290.748297 C772.81689,291.043732 773.218665,291.248174 773.436771,290.977133 C773.7161,290.636396 773.838545,290.234481 773.670183,289.809721 Z" id="Fill-233" fill="#000000"></path>
254
- <path d="M815.382025,301.589934 C814.800409,297.51464 813.843803,293.534598 812.512208,289.642063 C812.255837,288.886246 811.061993,289.211495 811.32219,289.973895 C812.267317,292.718377 813.021122,295.505065 813.602738,298.349059 C813.927984,299.950136 814.165223,301.569412 814.36037,303.191785 C814.551691,304.775826 815.332282,307.614012 813.078518,308.069747 C806.6463,309.370744 799.973018,309.882237 793.429834,310.154827 C787.299903,310.409992 780.856206,310.566809 774.768366,309.694057 C772.388331,309.352545 772.430422,307.030112 772.438074,305.115789 C772.441901,303.383063 772.445727,301.650337 772.449554,299.917611 C772.45338,298.432307 772.457207,296.94739 772.457207,295.462086 C772.461033,294.66871 771.952119,290.400203 772.866634,290.090829 C773.287541,289.949114 773.111525,289.35476 772.686792,289.430264 C772.074564,289.53868 771.734013,289.920461 771.657484,290.568636 C771.397287,292.649456 771.546518,294.849921 771.531212,296.94739 C771.519733,298.927538 771.504427,300.907685 771.492948,302.887832 C771.477642,304.735557 771.271015,306.694796 771.668963,308.508834 C772.269712,311.225825 776.731322,310.894381 778.675145,311.024868 C782.849773,311.304814 787.03588,311.373349 791.218161,311.300942 C795.396615,311.228149 799.571243,310.950525 803.730566,310.529637 C805.494547,310.351138 807.254702,310.126948 809.014857,309.888045 C810.675524,309.661532 812.921635,309.690959 814.448378,308.949082 C816.924074,307.746434 815.684313,303.704827 815.382025,301.589934 Z" id="Fill-234" fill="#000000"></path>
255
- <path d="M788.700374,303.404359 C788.623846,300.13638 788.60854,296.850977 788.371302,293.590355 C788.348343,293.176049 787.743768,293.168305 787.732289,293.590355 C787.640455,296.354972 787.732289,299.129269 787.766727,301.894661 C787.801165,304.373911 788.558797,308.140993 787.204243,310.327131 C786.867517,310.860694 787.705504,311.353602 788.03075,310.819651 C789.331734,308.696239 788.757771,305.774418 788.700374,303.404359 Z" id="Fill-235" fill="#000000"></path>
256
- <path d="M784.433912,303.323821 C784.430086,304.111776 784.410954,305.935881 783.496438,306.310305 C782.218413,306.833027 781.479913,305.172707 781.384253,304.240714 C781.353641,303.905397 781.368947,302.452231 781.724804,301.70532 C781.99648,301.832709 782.386776,301.699124 782.405908,301.296048 L782.42504,301.29024 L782.428866,301.290627 C782.547485,301.332832 782.654625,301.286755 782.719674,301.206604 C783.090837,301.100511 783.462001,300.994805 783.833164,300.889099 C784.10484,301.16982 784.280855,301.505137 784.345904,301.895048 C784.476003,302.34033 784.441565,302.864213 784.433912,303.323821 Z M784.965785,300.810497 C784.296161,299.254723 781.904646,299.217164 781.522004,300.784942 C780.607489,301.446282 780.553919,303.733093 780.615141,304.632174 C780.74524,306.415624 782.662278,308.007795 784.322946,306.892656 C785.09971,306.371095 785.19537,305.108819 785.30251,304.280596 C785.459394,303.093049 785.444088,301.917119 784.965785,300.810497 Z" id="Fill-236" fill="#000000"></path>
257
- <path d="M772.874287,309.078407 C772.855155,308.686559 772.296497,308.686559 772.277365,309.078407 C772.120481,312.171371 772.158746,315.275177 772.135787,318.371238 C772.135787,318.944683 773.019691,318.944683 773.015864,318.371238 C772.996732,315.275177 773.03117,312.171371 772.874287,309.078407 Z" id="Fill-237" fill="#000000"></path>
258
- <path d="M788.069014,310.478527 C788.000139,309.759494 786.882823,309.753686 786.951699,310.478527 C787.644281,317.764881 787.636629,325.280458 786.427479,332.514927 C785.616277,332.376697 784.812728,332.238466 783.9977,332.099848 C783.844643,331.593001 783.760462,331.074151 783.737503,330.542911 C783.641842,329.573359 783.615058,328.596063 783.584446,327.623026 C783.52705,325.674629 783.618884,323.724296 783.779594,321.782869 C784.066575,318.287215 785.509137,314.634746 785.210676,311.134059 C785.176238,310.729433 784.57549,310.715881 784.579316,311.134059 C784.590796,313.699267 783.683933,316.24318 783.278332,318.765409 C782.914822,320.968585 782.742633,323.200413 782.669931,325.430305 C782.608708,327.434072 781.858729,334.258108 785.252767,334.401372 C786.438958,334.451708 787.039707,333.890266 787.39939,332.786356 C788.049882,330.786848 788.023097,328.27275 788.199113,326.194641 C788.642978,320.964325 788.55497,315.701098 788.069014,310.478527 Z" id="Fill-238" fill="#000000"></path>
259
- <path d="M874.278336,225.036751 C874.079362,224.97054 873.972222,224.751771 874.033445,224.54849 C874.056403,224.477245 874.083188,224.410259 874.106147,224.34521 L874.04875,224.424586 C873.41739,225.747266 873.130409,228.129328 873.742636,229.826044 C874.094667,230.794435 874.687763,231.471262 875.510444,231.83678 C880.591934,234.106167 883.557413,235.820695 886.718038,237.864343 L886.718038,237.829108 C886.718038,237.616922 886.894054,237.446553 887.100681,237.446553 L887.104507,237.446553 C887.314961,237.449263 887.483323,237.624666 887.483323,237.838788 L887.479497,237.915841 C887.479497,238.062977 887.479497,238.211663 887.479497,238.359186 C888.21417,238.843188 888.971802,239.347324 889.775351,239.88476 C895.736919,243.858607 899.07356,247.800316 900.28271,252.290302 C900.718922,253.918096 900.864326,255.650435 900.998251,257.325468 C901.025036,257.668528 901.059474,258.011589 901.086259,258.353487 C901.545429,263.472289 902.559432,268.550434 904.105307,273.446594 C904.15505,273.611155 904.308107,273.716086 904.468817,273.716086 C904.507081,273.716086 904.545345,273.710665 904.587436,273.697888 C904.790237,273.632838 904.897376,273.415231 904.832327,273.211563 C903.305584,268.368836 902.306888,263.346448 901.847717,258.283404 C901.820932,257.943054 901.790321,257.602317 901.759709,257.261192 C901.621958,255.551311 901.472727,253.78335 901.017383,252.087021 C900.202355,249.033939 898.369498,246.163616 895.480548,243.404419 C895.216525,243.404419 894.944849,243.387383 894.680826,243.352147 C894.470372,243.324656 894.321142,243.130668 894.351753,242.918482 C894.370885,242.766699 894.474199,242.649377 894.608124,242.603687 C893.322445,241.465702 891.860752,240.345142 890.196257,239.238133 C885.581591,236.16027 882.531931,234.126689 875.816558,231.128202 C875.196677,230.850579 874.741333,230.322823 874.46583,229.558875 C873.949263,228.14985 874.163543,226.130982 874.660978,224.944984 C874.561491,225.039462 874.416087,225.082054 874.278336,225.036751 Z" id="Fill-239" fill="#000000"></path>
260
- <path d="M900.026339,232.098529 L900.007207,232.097367 C904.124439,234.107329 908.000606,236.590451 911.555353,239.515757 C911.628055,239.574224 911.712237,239.602877 911.796418,239.602877 C911.907384,239.602877 912.018351,239.55409 912.094879,239.46 C912.23263,239.29389 912.202019,239.050341 912.041309,238.915207 C908.46743,235.974414 904.568304,233.475416 900.43194,231.447256 C900.420461,231.54909 900.416635,231.651311 900.405155,231.753145 C900.386023,231.951779 900.217661,232.098529 900.026339,232.098529 Z" id="Fill-240" fill="#000000"></path>
261
- <path d="M899.643697,231.669122 C899.666656,231.473973 899.678135,231.278436 899.69344,231.083287 C899.054428,230.779334 898.403936,230.48661 897.753444,230.205889 C896.555773,229.690524 895.331318,229.213104 894.106862,228.757368 L894.106862,228.75853 C894.118341,228.972265 893.965285,229.15696 893.751005,229.172061 L893.72422,229.173223 C893.525246,229.173223 893.356883,229.017568 893.341577,228.813513 C893.333925,228.698901 893.322445,228.583902 893.314793,228.469291 C892.384972,228.130102 891.458977,227.798271 890.544462,227.474183 L887.52924,226.407057 C887.52924,226.485271 887.525414,226.561937 887.525414,226.640152 C887.521587,226.852725 887.353225,227.023481 887.142771,227.023481 L887.138945,227.023481 C886.928492,227.021545 886.756303,226.846143 886.760129,226.632795 C886.763956,226.466298 886.763956,226.303287 886.763956,226.137177 L879.233554,223.469747 C878.376435,223.165407 877.400697,222.820024 876.382869,222.938507 C875.518097,223.038792 874.561491,223.242848 874.106147,224.34521 C874.083188,224.410259 874.056403,224.477245 874.033445,224.54849 C873.972222,224.751771 874.079362,224.97054 874.278336,225.036751 C874.416087,225.082054 874.561491,225.039462 874.660978,224.944984 C874.703069,224.902005 874.745159,224.851669 874.760465,224.788168 C875.009183,224.012991 875.529576,223.815905 876.470876,223.707489 C877.320342,223.613399 878.20042,223.924322 878.977184,224.200784 L890.291918,228.205607 C892.660474,229.044285 895.113212,229.911228 897.454983,230.919113 C898.224094,231.250945 898.989379,231.604847 899.743184,231.969591 C899.674308,231.890214 899.632218,231.784121 899.643697,231.669122 Z" id="Fill-241" fill="#000000"></path>
262
- <path d="M892.779093,218.603402 C892.805878,218.536028 892.82501,218.463235 892.805878,218.386569 C892.786746,218.287445 892.733176,218.206907 892.656648,218.15115 C892.603078,218.216975 892.549508,218.278927 892.488285,218.342041 C892.583946,218.429548 892.679606,218.518604 892.779093,218.603402 Z" id="Fill-242" fill="#000000"></path>
263
- <path d="M949.888464,317.380777 C947.366851,311.007831 943.934549,304.998854 940.613213,299.188124 C939.924457,297.981992 939.235701,296.774698 938.554597,295.561984 C935.680953,290.458671 933.304744,285.037465 931.506325,279.448989 C930.362225,275.905322 929.463015,272.223812 928.582938,268.663109 C928.054891,266.514142 927.507713,264.291607 926.914617,262.118633 C925.521799,257.018804 923.486142,252.135422 921.523186,247.413114 C921.243858,246.742095 920.960702,246.069913 920.677547,245.395796 C918.389346,239.866948 917.237592,234.323774 916.070533,228.169597 C915.075663,222.962901 913.721109,217.538598 910.56431,213.143089 C909.324548,211.415784 907.793979,209.966876 906.045303,208.816114 L906.056783,208.888521 C906.083568,209.100707 905.938164,209.294695 905.731537,209.322573 L905.677967,209.325284 C905.486646,209.325284 905.322109,209.182794 905.299151,208.987644 C905.272366,208.753 905.230275,208.519518 905.188185,208.28681 C902.693357,206.84526 899.804407,205.975605 896.639955,205.764193 C894.39767,205.613959 892.025288,205.760709 889.285569,206.216057 C889.335312,206.289626 889.392708,206.363194 889.442452,206.441021 C889.564898,206.61836 889.515154,206.858812 889.339139,206.97807 L889.293221,206.998591 C892.025288,206.537434 894.374712,206.388362 896.586385,206.537047 C902.203574,206.912245 906.940687,209.420148 909.948255,213.598437 C913.017047,217.871591 914.344816,223.197545 915.316728,228.316346 C916.49144,234.513116 917.654672,240.098107 919.973485,245.695102 C920.252814,246.369607 920.532143,247.042563 920.811472,247.71397 C922.866261,252.629878 924.798605,257.273196 926.176117,262.325011 C926.77304,264.488305 927.312565,266.705807 927.844438,268.850127 C928.720689,272.423608 929.627551,276.119058 930.775478,279.688666 C932.59303,285.327866 934.984544,290.797085 937.8888,295.945313 C938.569903,297.159189 939.262486,298.368032 939.951242,299.575713 C943.257272,305.36321 946.678095,311.347407 949.180575,317.668855 C949.815762,319.284259 950.669054,321.294995 951.618007,323.477649 L965.498988,359.010989 L966.336938,359.010989 L951.618007,321.543191 C950.956036,319.997484 950.36294,318.578778 949.888464,317.380777 Z" id="Fill-243" fill="#000000"></path>
264
- <path d="M888.41697,206.369002 C888.175906,206.412756 887.942494,206.453799 887.697603,206.502199 C887.693776,206.653208 887.693776,206.804603 887.693776,206.955225 C887.693776,207.168573 887.521587,207.341264 887.311134,207.341264 C887.100681,207.34049 886.928492,207.167024 886.928492,206.952901 L886.928492,206.654756 C884.548456,207.131014 882.122504,207.659931 879.887873,208.619029 C877.236161,209.758949 875.694112,211.329438 875.307644,213.287515 C874.798729,215.839946 876.528273,218.124046 878.468269,219.255449 C880.940139,220.703969 883.917096,220.582 886.829005,220.065474 L886.832831,219.598509 C886.836658,219.385935 887.008847,219.21518 887.215473,219.21518 L887.2193,219.21518 C887.43358,219.217503 887.601942,219.392518 887.598116,219.60664 L887.598116,219.921435 C888.478193,219.746033 889.350618,219.545462 890.200084,219.348764 C890.831444,219.202789 891.424539,219.068043 892.006156,218.9453 C891.971718,218.911227 891.929627,218.87754 891.895189,218.842692 L891.826314,218.85547 C891.719174,218.85547 891.612034,218.811329 891.539332,218.724983 C891.420713,218.591398 891.416886,218.40167 891.508721,218.25918 C891.030418,218.364498 890.540636,218.475238 890.027895,218.594109 C886.281826,219.463376 882.034496,220.448029 878.850912,218.584429 C877.148153,217.591645 875.625237,215.615756 876.053796,213.439298 C876.386695,211.747615 877.779513,210.365694 880.19016,209.332254 C882.577848,208.306944 885.233386,207.779963 887.800916,207.270407 L887.846833,207.262275 C888.256261,207.180576 888.658035,207.105459 889.055983,207.036537 C888.956496,207.018339 888.868488,206.962194 888.811092,206.871976 C888.688647,206.692702 888.554722,206.525431 888.41697,206.369002 Z" id="Fill-244" fill="#000000"></path>
265
- <path d="M891.539332,218.724983 C891.612034,218.811329 891.719174,218.85547 891.826314,218.85547 L891.895189,218.842692 C891.856925,218.803972 891.807182,218.767575 891.768917,218.728468 C891.612034,218.581718 891.604381,218.33662 891.749785,218.180965 C891.895189,218.024923 892.136254,218.017953 892.293137,218.164315 C892.358187,218.225106 892.423236,218.282412 892.488285,218.342041 C892.549508,218.278927 892.603078,218.216975 892.656648,218.15115 C893.173215,217.515366 893.555857,216.760711 893.754831,215.962301 C893.804575,215.754762 893.682129,215.544898 893.475502,215.493013 C893.268875,215.440354 893.062249,215.567356 893.016332,215.774896 C892.78292,216.695661 892.274005,217.54944 891.57377,218.178642 L891.508721,218.25918 C891.416886,218.40167 891.420713,218.591398 891.539332,218.724983 Z" id="Fill-245" fill="#000000"></path>
266
- <path d="M892.293137,218.164315 C892.136254,218.017953 891.895189,218.024923 891.749785,218.180965 C891.604381,218.33662 891.612034,218.581718 891.768917,218.728468 C891.807182,218.767575 891.856925,218.803972 891.895189,218.842692 C891.929627,218.87754 891.971718,218.911227 892.006156,218.9453 C892.105643,219.035905 892.20513,219.127672 892.308443,219.215567 L892.30079,219.17917 C892.270179,218.967371 892.415583,218.770672 892.629863,218.739309 C892.840316,218.710269 893.027811,218.854695 893.058422,219.06572 C893.104339,219.34102 893.134951,219.618643 893.173215,219.895105 C894.210176,220.652858 895.35045,221.275865 896.54812,221.722308 L896.793011,221.814462 C897.278967,221.990251 897.734312,222.156748 898.097822,222.450634 C898.736835,222.973355 899.01999,223.878632 899.211311,224.694852 C899.708746,226.792322 899.86563,228.938579 899.69344,231.083287 C899.678135,231.278436 899.666656,231.473973 899.643697,231.669122 C899.632218,231.784121 899.674308,231.890214 899.743184,231.969591 C899.808233,232.036964 899.884762,232.085751 899.988075,232.096205 L900.007207,232.097367 L900.026339,232.098529 C900.217661,232.098529 900.386023,231.951779 900.405155,231.753145 C900.416635,231.651311 900.420461,231.54909 900.43194,231.447256 C900.650046,229.120951 900.493163,226.790773 899.957464,224.515578 C899.930679,224.407162 899.90772,224.297197 899.873282,224.186457 C899.781448,224.153545 899.685788,224.126828 899.593953,224.090044 C899.394979,224.011442 899.299319,223.786865 899.375847,223.587457 C899.425591,223.477492 899.513599,223.403536 899.616912,223.367914 C899.387327,222.794081 899.069733,222.250838 898.576125,221.847761 C898.116954,221.472176 897.577428,221.275865 897.053208,221.085362 L896.808317,220.996306 C895.35045,220.44919 893.969111,219.627936 892.779093,218.603402 C892.679606,218.518604 892.583946,218.429548 892.488285,218.342041 C892.423236,218.282412 892.358187,218.225106 892.293137,218.164315 Z" id="Fill-246" fill="#000000"></path>
267
- <path d="M899.375847,223.587457 C899.299319,223.786865 899.394979,224.011442 899.593953,224.090044 C899.685788,224.126828 899.781448,224.153545 899.873282,224.186457 C900.715096,224.483053 901.602826,224.638708 902.494382,224.638708 C903.734144,224.638708 904.970078,224.355277 906.068262,223.794222 C906.255757,223.698196 906.332285,223.465101 906.240451,223.274211 C906.14479,223.083708 905.919032,223.006268 905.72771,223.101906 C903.933118,224.015314 901.744403,224.115599 899.873282,223.369462 C899.785275,223.335001 899.69344,223.339648 899.616912,223.367914 C899.513599,223.403536 899.425591,223.477492 899.375847,223.587457 Z" id="Fill-247" fill="#000000"></path>
268
- <path d="M887.246085,193.36988 L887.242258,193.36988 C887.031805,193.36988 886.863443,193.198737 886.859616,192.985776 L886.85579,192.577279 C885.872399,192.388324 884.885182,192.204404 883.878832,192.023968 L883.492363,191.951949 C882.156942,191.700655 880.496274,191.387022 879.256513,192.232282 C877.725943,193.276564 877.132848,195.794534 877.102236,197.232213 C877.063972,199.116722 877.83691,200.940827 879.168505,202.111336 C880.480968,203.265583 882.176074,203.718996 883.813783,204.157308 L884.360962,204.304445 C885.221907,204.539476 886.128769,204.833749 886.932318,205.262768 L886.932318,204.985532 C886.932318,204.771797 887.104507,204.59833 887.314961,204.59833 L887.345572,204.604526 C886.465494,204.127881 885.489756,203.809989 884.559936,203.556372 L884.016583,203.408461 C882.455403,202.992607 880.844478,202.562813 879.669766,201.527437 C878.51036,200.505225 877.833083,198.90531 877.867521,197.247314 C877.898132,195.686892 878.583062,193.624658 879.685072,192.874262 C880.668463,192.20634 882.153115,192.487448 883.354612,192.713186 L883.748734,192.786367 C886.538197,193.289729 889.274089,193.79735 891.93728,194.465659 C893.081381,194.751801 894.191044,195.051495 895.224178,195.568022 C896.13104,196.026468 896.957548,196.656057 897.577428,197.153224 C901.977815,200.691469 904.472643,204.340841 905.188185,208.28681 C905.230275,208.519518 905.272366,208.753 905.299151,208.987644 C905.322109,209.182794 905.486646,209.325284 905.677967,209.325284 L905.731537,209.322573 C905.938164,209.294695 906.083568,209.100707 906.056783,208.888521 L906.045303,208.816114 C905.463687,204.418669 902.85024,200.404553 898.051905,196.546479 C897.409066,196.026081 896.536641,195.365128 895.560903,194.874544 C894.46272,194.323169 893.261223,193.999082 892.120948,193.714102 C890.640123,193.342776 889.140165,193.023335 887.624901,192.724802 L887.624901,192.979968 C887.628727,193.193703 887.460365,193.368331 887.246085,193.36988 Z" id="Fill-248" fill="#000000"></path>
269
- <path d="M889.442452,206.441021 C889.392708,206.363194 889.335312,206.289626 889.285569,206.216057 C888.826398,205.610087 888.252434,205.136153 887.617248,204.757083 C887.666991,204.822133 887.697603,204.898411 887.697603,204.985532 L887.697603,205.744446 C887.9578,205.933013 888.198864,206.135132 888.41697,206.369002 C888.554722,206.525431 888.688647,206.692702 888.811092,206.871976 C888.868488,206.962194 888.956496,207.018339 889.055983,207.036537 C889.132512,207.051638 889.212867,207.035375 889.293221,206.998591 L889.339139,206.97807 C889.515154,206.858812 889.564898,206.61836 889.442452,206.441021 Z" id="Fill-249" fill="#000000"></path>
270
- <path d="M879.543494,262.259187 C879.838129,262.285129 880.128937,262.295197 880.40444,262.270416 L880.438877,262.260736 C880.327911,262.26151 880.216945,262.263446 880.109805,262.263446 C879.918484,262.263446 879.730989,262.261123 879.543494,262.259187 Z" id="Fill-250" fill="#000000"></path>
271
- <path d="M878.583062,261.476653 C878.785863,261.477427 878.996316,261.479751 879.214422,261.482461 C879.340694,261.483623 879.466966,261.484784 879.593238,261.485946 C878.487402,261.386048 877.213202,260.939992 876.149457,260.560922 C875.797426,260.434307 875.456874,260.315436 875.158413,260.220185 C870.608796,258.762759 865.680362,257.332825 860.495558,256.741181 C853.190916,255.910634 846.586509,257.006414 841.401705,259.911585 C840.931055,260.173721 840.403009,260.492775 840.00506,260.967096 C839.411965,261.663671 839.109677,262.458983 839.090545,263.305018 C839.247429,263.301146 839.396659,263.297661 839.553543,263.291853 C839.664509,263.284496 839.771649,263.342576 839.848177,263.430471 C839.840524,262.719182 840.081589,262.062101 840.586677,261.470071 C840.900444,261.094485 841.348135,260.828865 841.769042,260.589188 C848.151516,257.017256 855.425547,256.943687 860.407551,257.511324 C865.531132,258.094837 870.413648,259.513155 874.932654,260.95819 C875.223462,261.051506 875.544882,261.167666 875.896913,261.291184 C876.61628,261.548285 877.435135,261.835976 878.24251,262.036159 C878.215725,261.9835 878.20042,261.925807 878.20042,261.862306 C878.20042,261.648958 878.372609,261.476653 878.583062,261.476653 Z" id="Fill-251" fill="#000000"></path>
272
- <path d="M894.351753,242.918482 C894.321142,243.130668 894.470372,243.324656 894.680826,243.352147 C894.944849,243.387383 895.216525,243.404419 895.480548,243.404419 C897.034076,243.404419 898.576125,242.827489 899.743184,241.790564 C899.90772,241.649623 899.919199,241.404912 899.777622,241.244223 C899.639871,241.083922 899.394979,241.068047 899.241923,241.208988 C898.032773,242.279987 896.372105,242.792254 894.776486,242.584714 C894.71909,242.576196 894.661694,242.585489 894.608124,242.603687 C894.474199,242.649377 894.370885,242.766699 894.351753,242.918482 Z" id="Fill-252" fill="#000000"></path>
273
- <path d="M891.784223,256.606822 C891.868404,256.913486 891.952586,257.225183 892.032941,257.541913 C892.082684,257.713056 892.239568,257.824958 892.404104,257.824958 L892.507417,257.811018 C892.710218,257.753713 892.832663,257.539977 892.77144,257.333986 C892.687259,257.019192 892.603078,256.708656 892.518896,256.402767 C891.589076,252.926087 890.770221,249.921405 887.468017,248.011728 C887.471844,248.31723 887.47567,248.623119 887.479497,248.927846 C890.180952,250.683417 890.900319,253.315998 891.784223,256.606822 Z" id="Fill-253" fill="#000000"></path>
274
- <path d="M893.341577,228.813513 C893.356883,229.017568 893.525246,229.173223 893.72422,229.173223 L893.751005,229.172061 C893.965285,229.15696 894.118341,228.972265 894.106862,228.75853 L894.106862,228.757368 C894.007375,227.345633 893.881103,225.927701 893.731873,224.511319 C893.597948,224.436202 893.45637,224.368055 893.318619,224.287904 C893.138777,224.179487 893.077554,223.942133 893.184694,223.757825 C893.276528,223.596362 893.467849,223.536346 893.636212,223.595201 C893.502287,222.356931 893.341577,221.12292 893.173215,219.895105 C893.134951,219.618643 893.104339,219.34102 893.058422,219.06572 C893.027811,218.854695 892.840316,218.710269 892.629863,218.739309 C892.415583,218.770672 892.270179,218.967371 892.30079,219.17917 L892.308443,219.215567 C892.752308,222.272521 893.089034,225.382909 893.314793,228.469291 C893.322445,228.583902 893.333925,228.698901 893.341577,228.813513 Z" id="Fill-254" fill="#000000"></path>
275
- <path d="M897.298099,225.840194 C897.474115,225.840194 897.630998,225.716289 897.673089,225.535854 C897.71518,225.326765 897.585081,225.119999 897.378454,225.074697 C896.08895,224.788555 894.849188,224.299133 893.708914,223.619982 L893.636212,223.595201 C893.467849,223.536346 893.276528,223.596362 893.184694,223.757825 C893.077554,223.942133 893.138777,224.179487 893.318619,224.287904 C893.45637,224.368055 893.597948,224.436202 893.731873,224.511319 C894.833883,225.111481 895.997115,225.561022 897.217744,225.830901 L897.298099,225.840194 Z" id="Fill-255" fill="#000000"></path>
276
- <path d="M887.483323,237.838788 C887.483323,237.624666 887.314961,237.449263 887.104507,237.446553 L887.100681,237.446553 C886.894054,237.446553 886.718038,237.616922 886.718038,237.829108 L886.718038,237.864343 L886.718038,237.906548 C886.656816,242.723332 886.599419,247.704677 886.848137,252.555535 L886.859616,252.790566 C887.001194,255.440185 887.207821,259.444621 884.510192,260.794017 C883.144159,261.473555 881.227121,261.501434 879.593238,261.485946 C879.466966,261.484784 879.340694,261.483623 879.214422,261.482461 C878.996316,261.479751 878.785863,261.477427 878.583062,261.476653 C878.372609,261.476653 878.20042,261.648958 878.20042,261.862306 C878.20042,261.925807 878.215725,261.9835 878.24251,262.036159 C878.30756,262.161999 878.430005,262.250281 878.583062,262.251056 C878.77821,262.25183 878.988663,262.254153 879.206769,262.256864 C879.313909,262.258025 879.432528,262.258025 879.543494,262.259187 C879.730989,262.261123 879.918484,262.263446 880.109805,262.263446 C880.216945,262.263446 880.327911,262.26151 880.438877,262.260736 C881.942662,262.246409 883.572718,262.124054 884.846917,261.488269 C887.99989,259.913134 887.774131,255.602422 887.624901,252.749523 L887.609595,252.515266 C887.552199,251.326558 887.506282,250.129332 887.479497,248.927846 C887.47567,248.623119 887.471844,248.31723 887.468017,248.011728 C887.406795,244.784792 887.437406,241.539271 887.479497,238.359186 C887.479497,238.211663 887.479497,238.062977 887.479497,237.915841 L887.483323,237.838788 Z" id="Fill-256" fill="#000000"></path>
277
- <path d="M886.763956,226.137177 C886.763956,226.303287 886.763956,226.466298 886.760129,226.632795 C886.756303,226.846143 886.928492,227.021545 887.138945,227.023481 L887.142771,227.023481 C887.353225,227.023481 887.521587,226.852725 887.525414,226.640152 C887.525414,226.561937 887.52924,226.485271 887.52924,226.407057 C887.544546,224.804818 887.563678,223.21342 887.578984,221.632477 L887.598116,219.921435 L887.598116,219.60664 C887.601942,219.392518 887.43358,219.217503 887.2193,219.21518 L887.215473,219.21518 C887.008847,219.21518 886.836658,219.385935 886.832831,219.598509 L886.829005,220.065474 L886.813699,221.623572 C886.80222,223.118169 886.779261,224.623607 886.763956,226.137177 Z" id="Fill-257" fill="#000000"></path>
278
- <path d="M887.345572,204.604526 L887.314961,204.59833 C887.104507,204.59833 886.932318,204.771797 886.932318,204.985532 L886.932318,205.262768 C886.932318,205.727409 886.932318,206.191277 886.928492,206.654756 L886.928492,206.952901 C886.928492,207.167024 887.100681,207.34049 887.311134,207.341264 C887.521587,207.341264 887.693776,207.168573 887.693776,206.955225 C887.693776,206.804603 887.693776,206.653208 887.697603,206.502199 L887.697603,204.985532 C887.697603,204.898411 887.666991,204.822133 887.617248,204.757083 C887.556025,204.671511 887.460365,204.614206 887.345572,204.604526 Z" id="Fill-258" fill="#000000"></path>
279
- <path d="M839.553543,263.291853 C839.396659,263.297661 839.247429,263.301146 839.090545,263.305018 C835.604673,263.392138 833.04097,262.965829 830.519357,260.78124 C827.775811,258.396079 827.714588,252.995396 827.68015,249.421528 C827.676324,249.112541 827.672498,248.815558 827.668671,248.532513 C827.595969,244.419661 827.611275,240.233241 827.622754,236.184277 C827.630407,234.123979 827.634233,232.064455 827.634233,230.005318 L827.573011,191.91168 C827.569184,190.95142 827.569184,189.993484 827.569184,189.03671 C827.569184,183.900485 827.569184,178.589632 827.308987,173.327179 C827.098534,168.949868 826.937824,164.508282 826.84599,160.125937 C826.838337,159.677558 826.823032,159.223758 826.803899,158.768022 C826.677627,155.681641 826.551355,152.490715 829.226026,150.317354 C830.706851,149.112384 833.764164,148.509124 836.136546,148.44601 C841.191252,148.311651 846.333965,148.092883 851.304489,147.881083 C859.695836,147.524084 868.377991,147.152371 876.910915,147.181411 C882.08424,147.197673 885.172163,147.991823 885.627508,152.000905 C885.642813,152.10545 885.654293,152.21193 885.661946,152.320346 C886.660642,165.650526 886.760129,179.310988 886.85579,192.521909 L886.85579,192.577279 L886.859616,192.985776 C886.863443,193.198737 887.031805,193.36988 887.242258,193.36988 L887.246085,193.36988 C887.460365,193.368331 887.628727,193.193703 887.624901,192.979968 L887.624901,192.724802 L887.621074,192.516101 C887.525414,179.292015 887.425927,165.618001 886.42723,152.261492 C886.415751,152.143008 886.408098,152.026848 886.388966,151.912236 C885.811176,146.858485 881.192683,146.42056 876.910915,146.407008 C868.362685,146.380678 859.672877,146.749681 851.270051,147.107455 C846.303354,147.318867 841.17212,147.537636 836.117414,147.671995 C833.802428,147.73356 830.477266,148.305069 828.747723,149.713707 C825.774592,152.131392 825.90469,155.520952 826.038615,158.798999 C826.057747,159.250088 826.073053,159.698854 826.080705,160.1422 C826.17254,164.532288 826.333249,168.980844 826.543703,173.365512 C826.803899,178.608604 826.803899,183.910165 826.803899,189.037097 C826.803899,189.993872 826.803899,190.952195 826.807726,191.913228 L826.868949,230.00648 C826.868949,232.064455 826.865122,234.122817 826.857469,236.181566 C826.84599,240.234402 826.830684,244.425082 826.903386,248.545291 C826.907213,248.826786 826.911039,249.122608 826.914866,249.430046 C826.949304,253.143307 827.014353,258.755789 830.021922,261.369011 C832.512923,263.531143 835.103412,264.090649 838.329087,264.090649 C838.596937,264.090649 838.880092,264.081356 839.155594,264.074387 C839.297172,264.070515 839.43875,264.070902 839.580327,264.065481 C839.721905,264.060835 839.829045,263.981845 839.890268,263.872655 C839.932358,263.810703 839.951491,263.741781 839.951491,263.664728 C839.947664,263.574123 839.9094,263.495133 839.848177,263.430471 C839.771649,263.342576 839.664509,263.284496 839.553543,263.291853 Z" id="Fill-259" fill="#000000"></path>
280
- <path d="M856.772448,162.974577 C855.926809,165.615678 853.144999,165.954091 850.814707,165.954091 C850.198653,165.954091 849.590251,165.927762 849.046899,165.904917 C848.698695,165.890203 848.369622,165.876264 848.067335,165.869682 C847.321182,165.857291 846.379882,165.93357 845.381185,166.01798 C844.309787,166.10781 843.096811,166.210419 841.937404,166.210419 C838.883918,166.210419 837.077847,165.490224 836.243686,163.944517 C835.884002,163.271948 835.707987,162.432883 835.750078,161.642992 C835.776863,161.24766 835.853391,160.876334 835.991142,160.539081 C836.706683,158.680902 838.688771,158.192254 840.32648,157.974647 C840.973146,157.889463 841.612158,157.815894 842.258824,157.752393 C842.587896,157.671468 842.924622,157.627715 843.272826,157.627715 C843.372313,157.627715 843.467974,157.638556 843.563634,157.645139 C844.994717,157.53711 846.429626,157.476706 847.856881,157.476706 C849.639995,157.476706 851.449893,157.562278 853.233006,157.73071 C854.078646,157.810474 854.886021,157.920439 855.547993,158.377336 C856.73801,159.204398 857.300495,161.309612 856.772448,162.974577 Z M855.984205,157.738067 C855.169177,157.176625 854.250835,157.049623 853.301882,156.959792 C848.970371,156.549746 844.547025,156.633382 840.226993,157.206827 C838.520408,157.432952 836.151852,157.995169 835.275601,160.25565 C835.114891,160.668019 835.019231,161.118334 834.988619,161.594592 C834.935049,162.540138 835.141676,163.506205 835.574062,164.315068 C836.867393,166.707972 839.825219,166.984821 841.937404,166.984821 C843.127422,166.984821 844.355704,166.881051 845.438582,166.789672 C846.341618,166.71378 847.191084,166.642148 847.872187,166.642148 L848.055855,166.644084 C848.35049,166.650279 848.67191,166.664219 849.020114,166.678932 C849.563466,166.701777 850.183347,166.728494 850.814707,166.728494 C853.206222,166.728494 856.493119,166.36375 857.499469,163.212319 C857.537733,163.103128 857.560691,162.992002 857.587476,162.880488 L857.610435,162.810404 C857.625741,162.738385 857.633393,162.665204 857.648699,162.592023 C857.660178,162.528909 857.671658,162.465795 857.679311,162.401907 C857.939507,160.592128 857.258404,158.624758 855.984205,157.738067 Z" id="Fill-260" fill="#000000"></path>
281
- <path d="M857.648699,162.592023 C857.633393,162.665204 857.625741,162.738385 857.610435,162.810404 L857.587476,162.880488 C857.568344,162.971867 857.549212,163.063247 857.526254,163.15269 C856.581127,166.42609 853.512335,166.845816 850.937152,166.845816 C850.282834,166.845816 849.636168,166.816389 849.066031,166.790833 C848.683389,166.773409 848.327532,166.757147 847.998459,166.750177 C847.187257,166.735077 846.154123,166.832264 845.059766,166.938357 C843.881227,167.052194 842.541979,167.18152 841.263954,167.18152 C837.96175,167.18152 836.006448,166.301024 835.091933,164.41032 C834.690158,163.573965 834.491184,162.529683 834.552407,161.54503 C834.579192,161.05251 834.671026,160.587481 834.812604,160.16427 C835.623806,157.863907 837.785735,157.258325 839.580327,156.987284 C842.343005,156.571817 845.147774,156.360792 847.925757,156.360792 C849.82749,156.360792 851.752181,156.460303 853.64626,156.655839 C854.602866,156.754963 855.452332,156.881965 856.179353,157.439535 C857.346412,158.343263 857.962466,160.486422 857.679311,162.401907 C857.671658,162.465795 857.660178,162.528909 857.648699,162.592023 Z M856.638523,156.824272 C855.762272,156.144734 854.763576,155.992564 853.722789,155.885696 C849.008635,155.397822 844.183515,155.51166 839.469361,156.2214 C837.621199,156.500572 835.046016,157.186305 834.097063,159.906007 C833.921047,160.39814 833.817734,160.934414 833.787122,161.500502 C833.722073,162.629581 833.940179,163.783054 834.403176,164.749121 C835.784515,167.623316 838.979579,167.955922 841.263954,167.955922 C842.580243,167.955922 843.938624,167.824661 845.132468,167.708888 C846.127338,167.613249 847.060985,167.522644 847.807138,167.522644 L847.983153,167.52458 C848.304573,167.53155 848.656604,167.547425 849.031593,167.564462 C849.609383,167.590404 850.267528,167.620219 850.937152,167.620219 C853.554426,167.620219 857.162743,167.179971 858.257101,163.369136 C858.945857,160.979716 858.218836,158.043569 856.638523,156.824272 Z" id="Fill-261" fill="#000000"></path>
282
- <path d="M842.270303,159.119214 C842.576417,159.004602 842.909316,158.946909 843.249868,158.946909 C844.214126,158.946909 845.140121,159.401871 845.67582,160.134069 C845.863315,160.390783 845.974281,160.642464 846.020198,160.882916 C846.062289,161.122206 846.043157,161.380082 845.99724,161.69449 C845.928364,162.166101 845.828877,162.711668 845.572507,163.178633 C845.159253,163.90812 844.328919,164.427744 843.441189,164.501699 C842.595549,164.574106 841.681034,164.256988 840.980798,163.655665 C840.739734,163.453158 840.571371,163.258783 840.468058,163.060923 C840.330306,162.810017 840.257604,162.493673 840.253778,162.121186 C840.234646,160.8229 841.084112,159.560236 842.270303,159.119214 Z M839.691294,162.18972 C839.698947,162.637712 839.783128,163.018718 839.947664,163.322284 C840.077763,163.5608 840.276737,163.795057 840.563718,164.037832 C841.32135,164.68562 842.285609,165.056946 843.207777,165.056946 C843.303438,165.056946 843.402925,165.053461 843.498585,165.044943 C844.569984,164.955499 845.545722,164.34798 846.043157,163.460515 C846.349271,162.905268 846.471716,162.257868 846.552071,161.697975 C846.594162,161.395183 846.636252,161.045153 846.578856,160.726487 C846.529113,160.43415 846.383708,160.129809 846.161776,159.820436 C845.522763,158.945748 844.420753,158.402117 843.272826,158.402117 C842.859572,158.402117 842.465451,158.471426 842.098114,158.608108 C840.686164,159.134702 839.668335,160.640915 839.691294,162.18972 Z" id="Fill-262" fill="#000000"></path>
283
- <path d="M843.272826,158.402117 C844.420753,158.402117 845.522763,158.945748 846.161776,159.820436 C846.383708,160.129809 846.529113,160.43415 846.578856,160.726487 C846.636252,161.045153 846.594162,161.395183 846.552071,161.697975 C846.471716,162.257868 846.349271,162.905268 846.043157,163.460515 C845.545722,164.34798 844.569984,164.955499 843.498585,165.044943 C843.402925,165.053461 843.303438,165.056946 843.207777,165.056946 C842.285609,165.056946 841.32135,164.68562 840.563718,164.037832 C840.276737,163.795057 840.077763,163.5608 839.947664,163.322284 C839.783128,163.018718 839.698947,162.637712 839.691294,162.18972 C839.668335,160.640915 840.686164,159.134702 842.098114,158.608108 C842.465451,158.471426 842.859572,158.402117 843.272826,158.402117 Z M838.926009,162.200949 C838.933662,162.77633 839.056107,163.278918 839.27804,163.693997 C839.454055,164.017311 839.710426,164.323587 840.066283,164.629863 C840.965493,165.393424 842.109593,165.831349 843.207777,165.831349 C843.326396,165.831349 843.448842,165.827089 843.563634,165.817022 C844.887577,165.706283 846.089074,164.948917 846.712781,163.841134 C847.083944,163.169727 847.225522,162.40152 847.309703,161.807166 C847.359446,161.443971 847.40919,161.020372 847.328835,160.588643 C847.256133,160.179758 847.072465,159.766615 846.77783,159.361215 C846.054636,158.367269 844.84166,157.73071 843.563634,157.645139 C843.467974,157.638556 843.372313,157.627715 843.272826,157.627715 C842.924622,157.627715 842.587896,157.671468 842.258824,157.752393 C842.121073,157.788403 841.971842,157.829447 841.837917,157.881331 C840.12368,158.517503 838.899224,160.334252 838.926009,162.200949 Z" id="Fill-263" fill="#000000"></path>
284
- <path d="M853.49703,161.524509 C853.451113,161.81065 853.38989,162.140546 853.236833,162.415459 C853.003421,162.838283 852.517465,163.139138 852.000898,163.182117 C851.503463,163.226645 850.960111,163.03653 850.546857,162.678756 C850.40528,162.562595 850.309619,162.45263 850.252223,162.342665 C850.175694,162.204047 850.13743,162.025934 850.133603,161.812974 C850.122124,161.048638 850.623386,160.305212 851.319795,160.045787 C851.503463,159.979575 851.694784,159.945502 851.893758,159.945502 C852.460069,159.945502 853.003421,160.211509 853.317188,160.639754 C853.424328,160.784954 853.48555,160.925121 853.512335,161.055608 C853.531468,161.187643 853.519988,161.338652 853.49703,161.524509 Z M853.929416,160.180533 C853.477898,159.557913 852.697307,159.171099 851.893758,159.171099 C851.60295,159.171099 851.319795,159.221048 851.055772,159.31901 C850.064728,159.688013 849.353013,160.741588 849.368319,161.824202 C849.372145,162.16494 849.444847,162.464246 849.582598,162.714378 C849.689738,162.909915 849.838969,163.091899 850.053249,163.270399 C850.562163,163.710647 851.224134,163.962715 851.85932,163.962715 C851.928196,163.962715 851.997072,163.960005 852.069774,163.954197 C852.842711,163.889534 853.542947,163.445414 853.902631,162.79569 C854.120737,162.40694 854.201092,161.970952 854.250835,161.633699 C854.285273,161.408348 854.304405,161.165573 854.266141,160.917764 C854.216397,160.669568 854.105431,160.421759 853.929416,160.180533 Z" id="Fill-264" fill="#000000"></path>
285
- <path d="M900.982945,299.683742 C901.0633,299.791771 901.178093,299.849851 901.300538,299.849851 C901.37324,299.849851 901.449769,299.827781 901.522471,299.780929 C901.58752,299.731755 901.637264,299.662833 901.656396,299.586941 C901.675528,299.533508 901.683181,299.477363 901.679354,299.420832 C901.729098,299.398762 901.790321,299.377465 901.851543,299.37127 C904.024952,299.157922 906.098873,297.971925 907.399857,296.198543 C907.526129,296.026625 907.487865,295.784237 907.319503,295.656848 C907.15114,295.529459 906.910075,295.565469 906.78763,295.736999 C905.609091,297.337302 903.741797,298.407913 901.775015,298.60074 C901.510992,298.626295 901.185746,298.757169 901.00973,298.987167 C900.979119,299.025887 900.95616,299.066543 900.929375,299.111071 C900.84902,299.299638 900.868153,299.508727 900.982945,299.683742 Z" id="Fill-265" fill="#000000"></path>
286
- <path d="M903.542823,302.15215 C903.584913,302.15486 903.638483,302.155248 903.6844,302.156409 L903.783887,302.159507 C905.505778,302.159507 907.212363,301.050562 907.904945,299.447936 C907.989127,299.251625 907.901119,299.023951 907.705971,298.937992 C907.510824,298.852808 907.288891,298.942251 907.20471,299.138175 C906.607788,300.529389 905.084871,301.472999 903.584913,301.379296 C903.458641,301.376973 903.355328,301.433117 903.274973,301.51985 C903.221403,301.580641 903.183139,301.654209 903.179312,301.742104 C903.167833,301.955452 903.324716,302.138985 903.542823,302.15215 Z" id="Fill-266" fill="#000000"></path>
287
- <path d="M819.56048,335.950177 C818.022258,326.591135 816.740406,317.241385 815.707271,307.81342 C815.661354,307.393307 815.018515,307.373172 815.041474,307.81342 C815.841196,325.117059 819.935469,342.141526 822.047655,359.317776 L823.065484,359.317776 C822.124184,351.496697 820.834679,343.721308 819.56048,335.950177 Z" id="Fill-267" fill="#000000"></path>
288
- <path d="M921.071669,337.386694 C919.430133,332.472722 917.536053,327.585855 915.450652,322.861612 C915.190456,322.278487 914.945565,321.66516 914.685368,321.015436 C913.981306,319.261801 913.250459,317.44815 912.213498,316.013182 C911.474998,314.992907 910.594921,314.005931 909.753108,313.051479 C909.125574,312.348709 908.482735,311.621932 907.904945,310.893994 C907.30037,310.136628 906.676663,309.352933 906.232798,308.491797 C905.83485,307.710037 905.570827,306.875231 905.299151,305.991638 C905.1614,305.545582 905.015996,305.084425 904.855286,304.635272 C904.522387,303.712571 904.128265,302.896351 903.6844,302.156409 C903.638483,302.155248 903.584913,302.15486 903.542823,302.15215 C903.324716,302.138985 903.167833,301.955452 903.179312,301.742104 C903.183139,301.654209 903.221403,301.580641 903.274973,301.51985 C902.785191,300.801592 902.245665,300.163484 901.656396,299.586941 C901.637264,299.662833 901.58752,299.731755 901.522471,299.780929 C901.449769,299.827781 901.37324,299.849851 901.300538,299.849851 C901.178093,299.849851 901.0633,299.791771 900.982945,299.683742 C900.868153,299.508727 900.84902,299.299638 900.929375,299.111071 C900.95616,299.066543 900.979119,299.025887 901.00973,298.987167 C899.226617,297.437587 897.08382,296.320898 894.780313,295.12251 C894.432108,294.942075 894.080077,294.759315 893.728046,294.572297 C889.331486,292.259544 885.704036,288.498658 882.202859,284.861676 C881.663333,284.308365 881.13146,283.758152 880.603414,283.217619 C880.220771,282.82732 879.834303,282.423856 879.440181,282.012649 C875.751509,278.202975 871.580707,273.885293 866.679059,272.353525 C864.459733,271.660047 862.117962,271.584156 859.845066,271.511362 C859.378243,271.496261 858.915245,271.481548 858.456075,271.461413 C852.991942,271.22522 848.120905,270.22779 843.973062,268.497774 C842.339179,267.8163 840.387703,265.998777 839.940011,264.135564 C839.920879,264.046895 839.9094,263.959775 839.890268,263.872655 C839.829045,263.981845 839.721905,264.060835 839.580327,264.065481 C839.43875,264.070902 839.297172,264.070515 839.155594,264.074387 C839.1709,264.154924 839.174727,264.235462 839.193859,264.317162 C839.69512,266.420052 841.868529,268.45828 843.682253,269.213709 C847.910451,270.978186 852.869496,271.994976 858.421637,272.235041 C858.88846,272.255176 859.355284,272.270277 859.822108,272.285377 C862.037607,272.356622 864.333461,272.430578 866.4533,273.093079 C871.167453,274.567155 875.269379,278.810107 878.889176,282.553956 C879.287124,282.966325 879.677419,283.370951 880.060062,283.762411 C880.591934,284.301783 881.116154,284.850447 881.648027,285.402596 C885.198948,289.083332 888.868488,292.88952 893.372189,295.259967 C893.728046,295.446598 894.083904,295.630131 894.432108,295.811729 C898.671785,298.017227 902.337499,299.92187 904.135918,304.900505 C904.296628,305.333396 904.430553,305.78526 904.568304,306.222797 C904.83998,307.100583 905.119309,308.007795 905.559348,308.849958 C906.037651,309.779241 906.684316,310.592364 907.308023,311.379544 C907.897292,312.123358 908.551611,312.858266 909.182971,313.56878 C910.013305,314.509292 910.878076,315.481555 911.593618,316.471629 C912.577008,317.828769 913.29255,319.597118 913.977479,321.306998 C914.241503,321.963305 914.486394,322.58244 914.750417,323.177568 C916.831991,327.879741 918.710765,332.743763 920.348474,337.634503 C922.720857,344.716802 924.614937,351.980699 926.023061,359.317776 L926.799824,359.317776 C925.387874,351.898999 923.470836,344.549918 921.071669,337.386694 Z" id="Fill-268" fill="#000000"></path>
289
- <path d="M608.720719,219.263967 C607.224587,218.275055 605.544788,217.598227 603.92621,216.943857 C602.307633,216.291423 600.639313,215.617305 599.185272,214.642719 C598.217187,213.988736 597.314151,213.182196 596.4379,212.401598 C596.070563,212.06938 595.695574,211.736774 595.316758,211.414235 C587.94324,205.116019 578.308305,202.632509 568.987138,200.230312 C567.066273,199.735856 565.084186,199.224363 563.167147,198.689638 C560.91721,198.063921 558.326722,197.291067 555.992603,196.032663 C553.872765,194.885386 551.974859,193.34355 550.134349,191.852438 C547.761966,189.925724 545.385757,187.995138 543.013375,186.060681 C540.855272,184.299302 538.410187,182.302505 536.826048,179.772919 C536.443406,179.166949 536.01102,178.363893 536.022499,177.522892 C536.041631,176.407365 536.914056,175.284094 538.153817,174.791574 C539.443322,174.280468 540.88971,174.410568 542.003199,174.582098 C547.027293,175.352629 551.741447,178.08356 554.944163,182.073669 C556.501518,184.013547 559.03461,184.204438 561.487348,184.389133 C562.111055,184.436371 562.753894,184.485159 563.362295,184.563373 C566.014007,184.906821 568.761379,185.261884 571.497271,185.307961 L571.527883,185.308349 C575.641288,185.371462 580.382227,184.005416 584.694606,181.724026 C584.828531,181.614835 584.958629,181.505645 585.092554,181.396067 C585.6206,180.961627 586.274919,180.485369 586.634603,179.88482 C586.684346,179.799636 586.730263,179.712515 586.780007,179.625782 C581.993151,182.685834 576.326218,184.607514 571.535536,184.533946 L571.508751,184.533559 C568.814949,184.488256 566.090535,184.135903 563.457956,183.795166 C562.830422,183.714241 562.176104,183.664679 561.540917,183.617053 C559.252716,183.444362 556.88416,183.266249 555.537259,181.585795 C552.215923,177.447388 547.329581,174.615397 542.121818,173.816214 C540.908842,173.630745 539.332356,173.492126 537.874488,174.070992 C536.58881,174.581711 535.280173,175.843987 535.257215,177.512438 C535.241909,178.557494 535.74317,179.490649 536.183209,180.187224 C537.828571,182.825227 540.327226,184.864616 542.535072,186.663553 C544.903628,188.598398 547.283664,190.529371 549.656046,192.456859 C551.519514,193.970042 553.455685,195.534722 555.63292,196.715299 C558.032087,198.011649 560.676146,198.799216 562.960521,199.436163 C564.889038,199.972824 566.874952,200.485478 568.803469,200.981096 C578.036629,203.360835 587.583556,205.822661 594.826975,212.005879 C595.198138,212.324932 595.565475,212.653279 595.932812,212.981626 C596.824368,213.77926 597.746537,214.604774 598.764365,215.288184 C600.283455,216.306911 601.99004,216.996516 603.639229,217.663277 C605.227194,218.303708 606.86873,218.965822 608.303639,219.912529 C610.465568,221.337043 612.187459,223.451162 613.155544,225.864975 C614.062406,228.11113 614.835344,230.36619 615.516447,232.632866 C615.7269,232.635964 615.925875,232.642934 616.132501,232.661132 C616.201377,232.660358 616.258773,232.66423 616.323823,232.66694 C615.619761,230.292234 614.820038,227.928758 613.867259,225.572638 C612.834124,223.014012 611.00892,220.773665 608.720719,219.263967 Z" id="Fill-269" fill="#000000"></path>
290
- <path d="M630.271136,350.532566 C631.135908,342.079574 630.1066,333.544883 629.107903,325.290525 L625.235563,293.21748 C624.998325,293.250392 624.780218,293.269365 624.493237,293.276722 L624.477931,293.27556 L628.354098,325.385003 C629.341315,333.595993 630.366797,342.087318 629.505851,350.450866 C629.482893,350.663827 629.027549,355.306371 628.510981,357.664426 C628.400015,358.198764 628.346445,358.698254 628.342619,359.155151 L629.517331,359.155151 C629.750743,356.696423 630.252004,350.687059 630.271136,350.532566 Z" id="Fill-270" fill="#000000"></path>
291
- <path d="M592.699484,100.46054 C585.31066,96.9691456 577.252212,94.3621193 568.149151,92.5124586 C568.049664,92.4915498 567.94635,92.5147818 567.854516,92.5751852 C566.511442,93.5354445 565.616058,95.1334243 565.417084,96.9594656 C565.413258,96.9974113 565.417084,97.0345827 565.413258,97.0725284 L565.883908,97.1027301 C566.002527,97.1104741 566.102014,97.1774599 566.17089,97.2707755 C566.174716,97.194884 566.174716,97.1201541 566.178543,97.0438755 C566.346905,95.4997167 567.066273,94.1468353 568.164457,93.3054469 C577.860614,95.2883048 586.3591,98.135396 594.12674,102.008571 C594.18031,102.036449 594.241533,102.04458 594.302755,102.043856 C593.770883,101.535798 593.223704,101.010366 592.699484,100.46054 Z" id="Fill-271" fill="#000000"></path>
292
- <path d="M565.837991,97.8755839 L565.386473,97.846931 C565.417084,99.2602158 565.876255,100.582508 566.710416,101.594652 C566.928522,101.549737 567.161934,101.526118 567.418304,101.531151 C567.513965,101.533087 567.609625,101.53967 567.705286,101.542767 C567.609625,101.449839 567.513965,101.353813 567.42213,101.253141 C566.595623,100.336635 566.147931,99.0786183 566.147931,97.7280602 C566.075229,97.8209885 565.95661,97.8813919 565.837991,97.8755839 Z" id="Fill-272" fill="#000000"></path>
293
- <path d="M590.208482,114.030784 C590.828363,114.718066 591.444417,115.390248 592.056645,116.055459 C596.449379,120.819972 600.589569,125.320412 602.058916,132.477828 C602.101006,132.658651 602.250237,132.78333 602.430079,132.786041 L602.510434,132.778297 C602.720887,132.734543 602.850985,132.529713 602.812721,132.320237 C601.293631,124.950635 597.080739,120.373528 592.622955,115.527317 C592.006901,114.864428 591.390847,114.194183 590.770966,113.508837 C589.822013,112.455262 588.850102,111.375745 587.748092,110.430199 C587.767224,110.752738 587.72896,111.07063 587.652431,111.374196 C588.559294,112.204355 589.393454,113.127056 590.208482,114.030784 Z" id="Fill-273" fill="#000000"></path>
294
- <path d="M676.639736,338.424394 C675.361711,327.817788 673.888538,317.081471 672.254655,306.513198 C671.982979,304.76692 671.707476,303.045036 671.405189,301.330122 C671.148818,301.381619 670.888622,301.373875 670.628425,301.329347 C670.938365,303.082595 671.22152,304.844748 671.500849,306.632456 C673.127079,317.192597 674.604079,327.920397 675.882104,338.517322 C675.901236,338.676075 676.700959,353.591069 677.098907,359.155151 L677.952199,359.155151 C677.707308,354.861089 676.666521,338.61025 676.639736,338.424394 Z" id="Fill-274" fill="#000000"></path>
295
- <path d="M614.556015,133.359873 C614.502445,133.229773 614.471834,133.070246 614.456528,132.91343 C614.513924,132.855737 614.548362,132.78062 614.559841,132.696597 L614.647849,132.056941 C614.674634,131.893542 614.586626,131.734015 614.441222,131.659285 C614.345562,131.61011 614.242248,131.604689 614.138935,131.640312 C613.637673,130.597966 613.094321,129.576916 612.554795,128.582583 L604.898122,114.338222 C604.236151,113.109245 603.551221,111.838837 602.789763,110.63619 C600.574263,107.14557 597.624091,104.149794 595.033602,101.679837 C592.91759,99.6644539 590.522249,97.3803534 590.304143,94.4581452 C590.166392,92.6065486 591.069428,90.674414 592.60765,89.5348806 C593.571908,88.8224302 593.878022,88.806555 594.788711,89.4218178 C595.615219,89.9797749 596.453205,90.6496332 597.337109,91.4697255 C599.231189,93.2167778 600.88803,95.2546183 602.495128,97.2246985 C603.268066,98.1737289 604.067788,99.1552842 604.886643,100.095796 C606.206759,101.607817 607.266678,102.668749 608.552356,103.757559 C610.369908,105.297458 611.667065,106.566317 612.765249,107.873122 C613.679764,108.966578 614.513924,110.168838 615.3213,111.336637 C617.456444,114.412564 619.660464,117.593036 621.791782,120.761117 C624.504716,124.794206 627.183212,128.936485 629.750743,133.072957 C630.079815,133.597615 630.385929,134.140858 630.711175,134.716239 C631.514724,136.127975 632.337405,137.587724 633.439415,138.738099 C634.786316,140.143253 635.329668,141.65295 635.146,143.490221 C633.902412,155.737398 637.208442,168.018649 640.399679,179.896049 C641.352459,183.435843 642.335849,187.096057 643.181489,190.675733 C644.459514,196.132174 646.342115,201.45503 648.760414,206.495617 C648.974694,206.930057 649.185147,207.362948 649.399427,207.795839 C650.172365,209.373684 650.97974,211.004963 651.549877,212.686191 C652.372558,215.117428 652.732242,217.720583 653.088099,220.237778 L654.618669,231.267207 C654.699024,231.256366 654.794684,231.264884 654.897998,231.297409 C655.06636,231.353553 655.238549,231.403502 655.414565,231.450741 L653.845731,220.129749 C653.486047,217.576156 653.118711,214.936218 652.273071,212.434898 C651.683802,210.705269 650.868774,209.050371 650.080531,207.450455 C649.870077,207.019887 649.655798,206.589319 649.452997,206.156816 C647.05383,201.166565 645.194188,195.897917 643.919989,190.496459 C643.078176,186.90478 642.090958,183.23837 641.138179,179.692768 C637.966074,167.883516 634.67535,155.672735 635.903632,143.568823 C636.114085,141.486841 635.505684,139.780832 633.99042,138.199115 C632.953459,137.118436 632.14991,135.701666 631.373146,134.331361 C631.059379,133.774566 630.734133,133.198797 630.397408,132.660975 C627.829878,128.516372 625.147555,124.366348 622.426968,120.325515 C620.291824,117.152788 618.083977,113.969993 615.945007,110.886709 C615.129978,109.709617 614.288165,108.492644 613.346865,107.371696 C612.221897,106.030818 610.897954,104.732919 609.042139,103.163979 C607.790898,102.101886 606.750111,101.064574 605.460606,99.583916 C604.653231,98.6530841 603.861161,97.6761752 603.084397,96.7317912 C601.461994,94.7408021 599.782194,92.6820528 597.853676,90.8978292 C596.935335,90.05102 596.074389,89.3575424 595.213444,88.7775149 C594.031079,87.9798802 593.372934,88.0085331 592.156132,88.9103249 C590.411283,90.2035773 589.381975,92.4040423 589.538858,94.5162254 C589.714874,96.8688605 591.100039,98.7785373 592.699484,100.46054 C593.223704,101.010366 593.770883,101.535798 594.302755,102.043806 C594.367805,102.110405 594.444333,102.177778 594.509382,102.243602 C597.06926,104.681421 599.977341,107.634606 602.146924,111.054367 C602.893076,112.233395 603.574179,113.4918 604.224671,114.708386 L611.885171,128.953135 C612.501225,130.102348 613.144065,131.287572 613.691243,132.490993 C613.649153,132.922335 613.740987,133.387751 613.848127,133.651048 C615.141458,136.881469 616.645242,140.064651 618.317389,143.110763 C618.420703,143.298169 618.650288,143.365155 618.841609,143.261772 C619.025278,143.158002 619.0865,142.922196 618.987013,142.735565 C617.330172,139.71617 615.841693,136.561641 614.556015,133.359873 Z" id="Fill-275" fill="#000000"></path>
296
- <path d="M565.883908,97.1027301 L565.413258,97.0725284 L560.817723,96.7770938 C560.50013,96.7569593 560.151926,96.7341144 559.792242,96.7836762 C558.774413,96.9273279 557.83694,97.6827576 557.343331,98.7560797 C556.960689,99.5924345 556.83059,100.622003 556.949209,101.816906 L556.964515,101.908673 C557.217059,101.866468 557.477256,101.868404 557.733626,101.907124 C557.725973,101.845946 557.71832,101.786317 557.714494,101.737142 C557.603528,100.683181 557.714494,99.7895199 558.043566,99.0813288 C558.426209,98.2449739 559.134097,97.658364 559.899382,97.550722 C560.174884,97.5116147 560.473345,97.5309747 560.76798,97.5499476 L565.386473,97.846931 L565.837991,97.8755839 C565.95661,97.8813919 566.075229,97.8209885 566.147931,97.7280602 C566.197675,97.6684312 566.232113,97.5975734 566.239765,97.5135507 C566.243592,97.4225584 566.212981,97.3400845 566.17089,97.2707755 C566.102014,97.1774599 566.002527,97.1104741 565.883908,97.1027301 Z" id="Fill-276" fill="#000000"></path>
297
- <path d="M445.592633,275.37718 C445.447229,281.487991 444.509755,285.114131 440.162938,285.566382 C440.051972,285.577611 439.933353,285.587291 439.814733,285.594261 C425.369985,286.475531 410.593102,286.283866 396.299115,286.098397 L395.797088,286.091814 C395.578217,286.089104 341.92028,284.643681 336.477193,284.709506 C336.594664,283.680712 336.400282,282.582996 335.981671,281.645195 C337.757514,282.768466 339.858986,283.387988 341.949361,283.387988 C342.584165,283.387988 343.218203,283.330682 343.840762,283.214134 C345.594412,282.885013 346.960828,282.054854 347.687466,280.877374 C348.5266,279.518298 348.505555,277.6516 347.6316,275.885575 C346.595787,273.791591 345.232815,271.869523 343.914995,270.010957 L343.655946,269.645826 L338.786057,261.174249 C338.316554,260.258905 337.845522,259.340076 337.358418,258.422409 C335.468165,254.858996 333.287486,250.60133 331.449272,246.040486 L331.312286,245.700523 C330.406189,243.443527 329.469098,241.109864 327.518005,239.638112 C325.796497,238.339826 323.696556,237.774125 321.756942,238.087758 C321.560263,238.119122 321.368177,238.157455 321.173795,238.191915 C321.069716,237.153442 321.005815,236.119227 321.000075,235.073783 C320.994335,234.127851 321.29624,233.066532 320.884517,232.201524 C323.59439,232.215851 326.367017,232.291742 328.841947,233.352674 C329.89651,233.804537 330.887171,234.447679 331.844924,235.070299 L335.223656,237.264568 C335.863434,237.680035 336.501299,238.082725 337.140312,238.457148 L337.137633,238.486963 L337.173984,238.488899 L337.18929,238.485801 C339.403259,239.777118 341.634446,240.701367 344.02443,240.454333 C346.068123,240.241372 347.94728,239.118875 349.051203,237.451974 C350.202956,235.712278 350.442873,233.465736 349.676823,231.588972 C348.86983,229.611147 347.065289,228.233872 345.61584,227.127251 L336.64479,220.279983 C335.318934,219.267839 333.948309,218.220847 332.397077,217.476646 C330.858472,216.73864 329.176759,216.326658 327.735346,216.021543 C327.510352,215.973917 327.283062,215.932487 327.056538,215.887184 C329.906076,214.856842 333.50674,214.881623 336.173757,214.906403 C336.508187,214.909501 336.829989,214.912211 337.136103,214.913373 C338.25801,214.916471 339.385275,214.926151 340.513687,214.940477 C340.65029,214.955965 340.785363,214.978423 340.922349,214.991588 C342.035838,215.101166 343.368581,215.143371 344.798133,215.014045 C346.71211,215.053153 348.618434,215.098455 350.495678,215.144532 C352.723804,215.199128 354.951931,215.253336 357.179674,215.295928 L398.391021,216.082721 C399.429512,216.102855 400.46609,216.124539 401.501138,216.145448 C407.057487,216.261995 412.803245,216.382028 418.501555,216.196171 C423.242493,216.04129 428.048481,215.958429 432.793246,215.949911 C433.279202,215.949137 433.772811,215.937521 434.262593,215.926679 C437.606887,215.851175 441.058321,215.773347 443.350349,218.981697 C444.613068,220.760887 445.190858,224.385091 445.206164,227.187267 C445.225296,233.163332 445.340089,239.238133 445.451055,245.113139 C445.634724,255.037495 445.829871,265.299879 445.592633,275.37718 Z M320.273437,238.342924 L320.276881,238.359186 C317.388696,238.942312 314.714026,239.810804 312.117033,240.656452 C309.316856,241.568698 306.505583,242.650926 303.736783,243.762581 C304.543775,243.033481 305.312504,242.258304 306.026515,241.440147 C306.775728,240.581335 307.479408,239.666765 308.159363,238.78201 C308.833196,237.906161 309.529988,237.00011 310.264279,236.159109 C310.390168,236.01507 310.522562,235.860964 310.661844,235.699501 C311.748166,234.436063 313.236644,232.706047 314.602295,232.159706 C315.384416,231.847235 316.482599,231.96417 317.544815,232.07762 C318.054494,232.131828 318.536241,232.183326 318.987759,232.189134 C319.438129,232.195329 319.892325,232.197265 320.348435,232.199201 C320.40124,232.199201 320.454044,232.199588 320.507232,232.199588 C320.008266,232.896938 320.109666,233.74878 320.079437,234.605657 C320.035434,235.852832 320.119615,237.106203 320.273437,238.342924 Z M321.752732,214.978036 C323.649108,214.391426 325.498418,213.89 327.429232,213.369601 C328.58596,213.057517 329.780952,212.735366 330.993545,212.390757 C332.480111,212.950262 334.106341,213.523708 335.817135,213.999191 C332.708166,213.972861 328.534303,214.001514 325.499184,215.592137 C324.246795,215.368722 322.992111,215.169313 321.752732,214.978036 Z M320.036964,214.71319 L312.039356,213.480728 C311.274837,213.362632 310.483915,213.240276 309.684575,213.255377 C307.703253,213.289064 305.86504,214.13626 304.213555,214.978423 C306.265283,211.89359 308.118038,208.650392 309.729345,205.316976 L309.805108,205.160159 C310.27461,204.187123 310.7598,203.180786 311.502892,202.440845 C312.396362,201.551056 313.749002,200.977998 315.415793,200.782849 C316.422525,200.663978 317.466373,200.68024 318.477697,200.694954 C318.967861,200.702311 319.457644,200.70928 319.947809,200.703085 C321.770717,200.67753 323.624619,200.457212 325.418064,200.243865 C328.99003,199.819492 332.363405,199.417964 335.652216,200.383257 C337.059957,200.795626 338.409919,201.460451 339.715878,202.103592 L348.734375,206.543243 C349.711261,207.023759 350.818628,207.568552 351.549857,208.438593 C352.166677,209.172727 352.579548,210.390087 352.028926,211.329051 C351.733908,211.832412 351.200122,212.180506 350.716462,212.455032 C349.076457,213.386638 347.342322,213.886902 345.69696,214.128903 C343.64638,214.084375 341.585851,214.048753 339.527618,214.028231 C336.518135,213.549263 333.630334,212.560738 331.143924,211.621388 C331.06816,211.592735 330.984362,211.58925 330.906303,211.61132 C329.657741,211.967546 328.424484,212.299764 327.232171,212.621141 C324.793209,213.278996 322.485875,213.90239 320.036964,214.71319 Z M318.8634,283.31016 C318.631136,281.503479 318.822457,279.623617 318.750138,277.793703 C318.988524,277.961361 319.210839,278.135602 319.397569,278.341593 C319.62792,278.596759 319.808909,278.902648 320.000613,279.226735 L320.315528,279.757201 C321.581691,281.891842 323.003208,284.282035 324.987974,285.802575 C322.74722,285.720488 319.253313,286.343108 318.8634,283.31016 Z M446.285216,245.092617 C446.178076,239.221097 446.067109,233.150167 446.040324,227.181072 C446.032672,224.443172 445.496972,220.508432 444.016146,218.429548 C441.467748,214.859939 437.802035,214.9428 434.251114,215.022564 C433.757505,215.033793 433.271549,215.044634 432.793246,215.045796 C428.044655,215.054314 423.227188,215.137563 418.478596,215.292056 C412.800566,215.477525 407.065523,215.35788 401.519122,215.24172 C400.484457,215.220424 399.447496,215.19874 398.407857,215.178606 L357.196511,214.391813 C354.970297,214.349221 352.743702,214.295013 350.516723,214.240417 C349.917123,214.226091 349.309487,214.211764 348.704912,214.197051 C349.507695,213.921751 350.308948,213.574818 351.091069,213.130698 C351.66312,212.805836 352.299836,212.384949 352.687453,211.72477 C353.429397,210.458622 352.9201,208.873807 352.132622,207.937167 C351.297696,206.943221 350.113418,206.360483 349.069187,205.846667 L340.05069,201.407017 C338.716033,200.749937 337.33546,200.070398 335.865348,199.639056 C332.427689,198.631171 328.818989,199.060577 325.328908,199.474883 C323.554978,199.685907 321.720591,199.903902 319.937477,199.928683 C319.4542,199.935265 318.971305,199.927908 318.489176,199.920939 C317.455276,199.905451 316.385026,199.889575 315.327785,200.013867 C313.490336,200.228764 311.98196,200.877326 310.966045,201.888696 C310.129588,202.721953 309.614935,203.788692 309.117117,204.820197 L309.041736,204.976626 C307.233751,208.716991 305.11927,212.344292 302.757984,215.757472 C302.714745,215.820199 302.699057,215.891056 302.696378,215.962301 C302.268584,216.385512 301.954052,216.877258 301.629189,217.386815 C301.535441,217.533564 301.439781,217.683798 301.338381,217.836356 C300.379861,219.283327 299.602715,220.35239 298.818298,221.302969 C297.828402,222.502519 296.715678,223.637406 295.639305,224.735121 C294.431686,225.966809 293.183124,227.240701 292.086854,228.624171 C291.500263,229.363726 290.950406,230.145098 290.418151,230.900528 C289.732455,231.873952 289.023419,232.880288 288.241681,233.790211 C287.448463,234.714073 286.546958,235.575983 285.675681,236.409628 C284.898152,237.153442 284.09422,237.922423 283.358017,238.741741 C281.884461,240.381539 280.662684,242.240105 279.481084,244.037494 C278.747176,245.152633 277.915312,246.416846 277.614172,247.860332 C277.383822,248.965017 277.481013,250.096807 277.606519,251.058615 C277.966586,253.817811 278.74335,256.492211 279.910409,259.010955 C279.800591,259.691268 279.953265,260.654625 280.091016,261.516535 C280.151091,261.89483 280.208487,262.251443 280.227619,262.504673 C280.643934,267.924716 281.709211,272.417413 282.943232,277.618688 C283.581097,280.308576 284.240772,283.089455 284.869071,286.251341 C285.563184,289.742735 286.476169,293.238389 287.359308,296.619818 C287.997555,299.063832 288.657996,301.591095 289.228515,304.092029 C290.14877,308.125892 290.97566,312.510946 290.795819,317.242159 C290.61942,321.873861 289.675824,326.502078 288.763222,330.978125 L285.056949,349.157614 C284.403778,352.364028 283.687089,355.798116 282.865173,359.317776 L283.652269,359.317776 C284.458496,355.852324 285.162941,352.472057 285.806162,349.316754 L289.512819,331.134555 C290.431543,326.627532 291.381644,321.967177 291.560338,317.271586 C291.744006,312.449769 290.906785,308.00431 289.974285,303.918175 C289.400705,301.404851 288.739116,298.871781 288.099338,296.421571 C287.21926,293.051758 286.308954,289.567333 285.619433,286.098784 C284.988073,282.922959 284.326867,280.134335 283.687089,277.438252 C282.461103,272.268341 281.402332,267.80391 280.990991,262.445044 C280.968798,262.159676 280.909488,261.787576 280.846735,261.393018 C280.718932,260.595383 280.544447,259.503475 280.694443,258.994693 C280.741508,258.835166 280.680668,258.67138 280.556309,258.576902 C279.449325,256.160766 278.710443,253.599043 278.364917,250.957168 C278.248211,250.06041 278.155994,249.011094 278.363003,248.020633 C278.633914,246.72196 279.388485,245.575457 280.118184,244.466125 C281.284095,242.693131 282.489801,240.859732 283.92471,239.262914 C284.641399,238.464892 285.434234,237.705978 286.201432,236.972619 C287.086101,236.125809 288.001381,235.250347 288.819471,234.298219 C289.625316,233.360418 290.345066,232.338593 291.041092,231.350068 C291.567226,230.603544 292.111343,229.831078 292.683776,229.10856 C293.754792,227.75684 294.989196,226.498049 296.182658,225.280301 C297.270127,224.171356 298.394713,223.024079 299.406037,221.798974 C300.208055,220.827099 301.000507,219.737901 301.974332,218.267311 C302.078028,218.111269 302.176367,217.957163 302.272411,217.806541 C302.780942,217.008132 303.183099,216.377768 303.997362,215.957655 C305.716574,215.07019 307.664606,214.064628 309.697203,214.02978 C310.440677,214.016615 311.191421,214.13355 311.925329,214.246225 L319.956609,215.483721 L320.047678,215.498047 L321.236165,215.680806 C323.323479,216.002958 325.482347,216.335563 327.57808,216.779296 C328.976255,217.075505 330.602867,217.472774 332.069153,218.176318 C333.549596,218.886833 334.888844,219.909044 336.183706,220.898344 L345.154756,227.745999 C346.601909,228.850297 348.241914,230.102119 348.970083,231.884793 C349.628993,233.500584 349.411269,235.516354 348.415251,237.021019 C347.436452,238.498579 345.765836,239.494073 343.945989,239.683802 C341.098364,239.983883 338.390022,238.40023 335.63691,236.612521 L332.258178,234.418252 C331.273639,233.778982 330.255428,233.117255 329.140408,232.639449 C326.360512,231.44803 323.305495,231.436027 320.351496,231.424798 C319.8973,231.422862 319.446164,231.420926 318.998473,231.414731 C318.581393,231.40931 318.116865,231.359748 317.624787,231.307476 C316.470738,231.184346 315.276893,231.057731 314.321435,231.439899 C312.782065,232.055162 311.222798,233.867264 310.084437,235.190718 C309.946685,235.350632 309.815439,235.503964 309.690698,235.646454 C308.940336,236.505654 308.236657,237.420998 307.555553,238.306527 C306.882868,239.181602 306.186459,240.086879 305.452934,240.927493 C304.453089,242.072834 303.348783,243.138799 302.171393,244.095574 C302.063105,244.183856 302.021014,244.318989 302.038233,244.448701 C301.472305,244.679086 300.907908,244.909471 300.346572,245.138694 C298.228646,246.004089 296.038401,246.898911 293.895222,247.719004 C293.697778,247.794508 293.597908,248.017923 293.672524,248.218106 C293.747522,248.418289 293.970219,248.518574 294.16575,248.443457 C296.316965,247.620267 298.511419,246.723509 300.633553,245.856565 C304.464569,244.29111 308.426447,242.672222 312.351975,241.39407 C315.359544,240.414064 318.469661,239.400758 321.877091,238.852094 C323.614288,238.573309 325.504158,239.085576 327.060747,240.259183 C328.840417,241.60161 329.736565,243.833438 330.603633,245.992086 L330.740619,246.33321 C332.592608,250.927354 334.784383,255.207477 336.684202,258.788702 C337.169775,259.703658 337.638895,260.618615 338.106484,261.530861 C338.622668,262.537197 339.146123,263.555537 339.691006,264.572327 L339.659629,264.571553 C339.656185,264.73108 339.748785,264.869698 339.885005,264.932037 C340.835106,266.687608 341.856379,268.433112 343.034152,270.096528 L343.293201,270.462434 C344.593802,272.296219 345.938407,274.193118 346.947053,276.231733 C347.700475,277.75537 347.734531,279.338636 347.038122,280.467715 C346.213145,281.804721 344.59342,282.285238 343.701098,282.452509 C340.399659,283.072806 336.773741,281.877515 334.466025,279.407171 L334.454163,279.398653 C334.081086,278.880964 333.748187,278.321071 333.427151,277.77473 C333.103435,277.223356 332.76824,276.653008 332.387129,276.122542 C331.741228,275.223461 331.232314,274.152849 330.740236,273.117473 C330.574169,272.768217 330.40925,272.421285 330.240505,272.083646 C329.556341,270.712953 328.956357,269.272564 328.375506,267.879414 C328.001282,266.981107 327.599125,266.071184 327.21036,265.191075 C326.567521,263.735973 325.902871,262.231308 325.346892,260.743681 C324.734282,259.102335 323.663648,256.841853 321.453506,256.165026 C320.346139,255.82545 319.18635,255.969102 317.996715,256.160766 C312.573143,257.03042 303.686274,259.553424 299.290861,260.90708 C299.088444,260.969419 298.974799,261.185865 299.036022,261.390307 C299.097627,261.595137 299.311524,261.710523 299.513559,261.648183 C303.890222,260.300335 312.734235,257.788561 318.116865,256.925489 C319.257139,256.741956 320.278794,256.614179 321.231574,256.906129 C323.118383,257.483833 324.075372,259.529418 324.630968,261.017432 C325.1946,262.526743 325.864225,264.041862 326.511655,265.507031 C326.898889,266.383655 327.299516,267.290093 327.670679,268.180269 C328.256122,269.585423 328.861845,271.038202 329.557488,272.433288 C329.723938,272.766281 329.886561,273.108567 330.050332,273.453564 C330.557716,274.519529 331.081936,275.622278 331.768396,276.577891 C332.128462,277.079704 332.439933,277.609395 332.769388,278.170063 C333.140169,278.801588 333.523959,279.45441 333.980834,280.056895 C334.089504,280.199772 334.201619,280.340713 334.313733,280.481267 C334.545231,280.771668 334.76372,281.045807 334.95198,281.342016 C335.912795,282.850165 336.156156,285.186538 334.902237,286.485598 C334.027899,287.390875 332.731124,287.663077 330.819826,287.342862 C328.989647,287.036198 327.372218,286.444167 326.013838,285.584193 C323.852674,284.215437 322.321722,281.635127 320.971377,279.358771 L320.657227,278.829079 C320.454427,278.486406 320.244739,278.132117 319.961584,277.818484 C319.608405,277.428185 319.181376,277.146303 318.768122,276.873326 L318.692359,276.82299 C317.386401,275.957595 316.123298,275.001207 314.927924,273.982481 C315.236333,273.583276 315.534029,273.152321 315.829429,272.675289 C315.941543,272.493692 315.887591,272.254789 315.708514,272.141339 C315.52982,272.027889 315.29373,272.082484 315.18085,272.263694 C314.00346,274.165627 312.798519,275.332652 310.883011,276.425721 C310.584168,276.595702 310.354582,277.131202 310.528302,277.445996 C310.557383,277.499043 310.598325,277.546669 310.648069,277.58384 C311.563732,280.969141 311.892422,284.458599 311.62572,287.960061 L311.618067,288.061507 C311.574063,288.625272 311.528529,289.208785 311.688091,289.789587 C311.735156,289.96073 311.889361,290.073018 312.056575,290.073018 L312.159506,290.059079 C312.363072,290.001773 312.482074,289.788038 312.425825,289.582434 C312.302232,289.133281 312.340113,288.641922 312.381056,288.122298 L312.388709,288.020077 C312.668038,284.354055 312.31065,280.700423 311.326876,277.161791 L311.293969,277.080091 C312.583857,276.340149 313.569161,275.564198 314.437759,274.577222 C315.656092,275.615309 316.942536,276.58912 318.272983,277.471164 L318.287523,277.480457 C318.194924,278.883675 318.201046,280.293475 318.186123,281.699403 C318.175792,282.685992 318.049137,283.986988 318.563026,284.889554 C319.81197,287.08305 323.005886,286.596338 325.139883,286.622667 C325.421507,286.626152 325.54357,286.397316 325.520612,286.181258 L325.607854,286.2405 C327.052329,287.155456 328.764271,287.78311 330.695084,288.106423 C331.15502,288.183476 331.684597,288.250462 332.237898,288.250462 C333.333021,288.250462 334.52036,287.989101 335.449415,287.026905 C335.828231,286.634671 336.096464,286.168867 336.269418,285.663182 C343.038361,285.995788 395.568651,286.993219 395.784844,286.995929 L396.286488,287.002512 C410.595016,287.187981 425.389117,287.380033 439.86065,286.497214 C439.994575,286.489083 440.117021,286.479016 440.243293,286.466238 C445.722731,285.896278 446.312,280.454163 446.422967,275.397314 C446.660205,265.29833 446.468884,255.027815 446.285216,245.092617 Z" id="Fill-277" fill="#000000"></path>
298
- <path d="M344.30529,286.072067 C344.109377,285.996176 343.811299,286.72334 343.735535,286.923523 C343.468834,287.628229 343.1367,288.871532 342.815281,290.073793 C342.499218,291.258241 342.171676,292.482572 341.919132,293.150881 C341.82615,293.396367 341.73929,293.64495 341.652813,293.893533 C341.347847,294.765898 341.0601,295.590637 340.517896,296.263593 C340.256169,296.588842 339.966891,296.906734 339.687179,297.214172 C339.05735,297.907262 338.406093,298.623197 337.962993,299.518407 C337.315179,300.828309 336.711752,302.199389 336.12784,303.525553 C335.964452,303.896492 335.801829,304.266656 335.638058,304.635272 C335.003637,306.062883 334.378399,307.522632 333.774207,308.933594 C332.793112,311.223115 331.779493,313.590464 330.701972,315.878049 C329.243722,318.973723 328.72065,322.341988 328.215179,325.599512 C328.065949,326.558997 327.912126,327.550232 327.736876,328.519397 L323.216722,353.474908 C322.870431,355.387683 322.521078,357.346921 322.234097,359.317776 L323.008182,359.317776 C323.290572,357.397258 323.631124,355.484483 323.970528,353.610429 L328.489151,328.659564 C328.666314,327.680332 328.821667,326.683676 328.970898,325.719932 C329.468333,322.517003 329.982604,319.20527 331.392259,316.211429 C332.475902,313.911066 333.492965,311.537522 334.476356,309.241419 C335.079783,307.832393 335.703873,306.375742 336.335998,304.952777 C336.500151,304.583387 336.66354,304.212061 336.826928,303.840348 C337.407396,302.522314 338.006997,301.159366 338.64754,299.864952 C339.042044,299.067704 339.6294,298.421853 340.250429,297.738442 C340.537793,297.422486 340.835106,297.095688 341.111374,296.752628 C341.736994,295.975902 342.061093,295.048168 342.374094,294.151409 C342.458658,293.909409 342.543222,293.667021 342.633525,293.427343 C342.900227,292.722637 343.232743,291.478946 343.55378,290.276299 C343.870608,289.092237 344.239475,287.883008 344.449929,287.199984 C344.847111,285.910991 344.502351,286.148733 344.30529,286.072067 Z" id="Fill-278" fill="#000000"></path>
299
- <path d="M73.6359542,224.106694 C73.4281794,224.095465 73.2441284,224.257702 73.2326491,224.471824 C72.478461,238.048264 71.6240207,253.436805 64.7877325,266.275626 C58.2514359,278.551456 49.9075368,290.655369 39.2784976,303.280455 C37.3385009,305.585077 35.2722322,307.836652 33.2377229,310.047572 C15.5820642,331.012264 4.80966338,347.435655 0.920520279,359.317746 L1.95473251,359.317746 C9.77366255,338.241758 30.8009895,314.515838 33.2377229,311.237829 C35.486512,308.807753 37.7176995,306.32889 39.8612619,303.782655 C50.5255042,291.115751 58.899632,278.96731 65.461183,266.643467 C72.3785914,253.652476 73.2383888,238.172555 73.9964032,224.514804 C74.0082652,224.301456 73.8467901,224.11831 73.6359542,224.106694 Z" id="Fill-279" fill="#000000"></path>
300
- <path d="M174.830315,107.308582 C174.811566,107.396864 174.793199,107.485533 174.771388,107.572653 C174.793964,107.485533 174.811566,107.396864 174.830315,107.308582 Z M154.401423,101.163697 C152.162965,101.894733 150.532526,104.075838 150.52296,106.350646 C150.520281,107.05148 150.661859,107.666743 150.943484,108.178236 C151.16312,108.576279 151.492193,108.956124 151.949451,109.338291 C153.093168,110.291581 154.569403,110.854572 156.000485,110.882837 C156.152777,110.885935 156.305451,110.883224 156.457743,110.874319 C158.179633,110.773259 159.76339,109.881922 160.591428,108.548013 C161.092689,107.740312 161.297786,106.807931 161.420997,106.086188 C161.495612,105.645165 161.567549,105.130575 161.477245,104.602819 C161.392298,104.102555 161.160034,103.594934 160.78581,103.093121 C159.869382,101.863757 158.309349,101.057604 156.650212,100.920535 C158.511767,100.826058 160.376766,100.788886 162.22952,100.825671 C164.551394,100.87136 166.897757,101.021982 169.204325,101.272888 C170.300978,101.392146 171.354775,101.546639 172.199649,102.120085 C173.730218,103.157784 174.408643,105.736545 173.680475,107.75154 C172.526043,110.946338 168.901272,111.287075 165.872658,111.227446 C165.074466,111.211571 164.281631,111.163945 163.582543,111.122128 C163.128347,111.095024 162.700935,111.069468 162.31064,111.05398 C161.340259,111.019519 160.116186,111.088441 158.811376,111.165494 C157.420853,111.247581 155.84475,111.341284 154.334078,111.311469 C150.375643,111.233254 148.045733,110.309779 147.000737,108.405523 C146.545775,107.576913 146.332261,106.550442 146.413764,105.589408 C146.455089,105.108891 146.566055,104.658576 146.744749,104.250853 C147.725844,102.00586 150.304088,101.461842 152.440763,101.238814 C153.277219,101.151694 154.117119,101.078513 154.95855,101.017722 C154.769907,101.057991 154.58356,101.104456 154.401423,101.163697 Z M154.9398,102.682688 C155.341575,102.551427 155.772048,102.489475 156.218209,102.497993 C157.464857,102.522774 158.659084,103.100865 159.33483,104.006142 C159.571303,104.323647 159.716708,104.633795 159.766451,104.927294 C159.816195,105.220018 159.783287,105.533651 159.718238,105.915045 C159.62143,106.48849 159.474495,107.14983 159.125908,107.712046 C158.58026,108.590606 157.484755,109.201609 156.333384,109.268982 C155.2264,109.335581 154.053601,108.925535 153.153243,108.175139 C152.850191,107.922296 152.637824,107.681457 152.503517,107.43752 C152.333623,107.128533 152.247912,106.741332 152.249825,106.287919 C152.25633,104.705428 153.38742,103.189535 154.9398,102.682688 Z M166.011939,112.317031 C165.165535,112.299994 164.325252,112.247722 163.583691,112.201645 C163.089317,112.170669 162.623641,112.141629 162.198143,112.124979 C161.140902,112.085485 159.803185,112.177638 158.38052,112.278311 C156.844211,112.386727 155.102806,112.509857 153.437164,112.476945 L153.436781,112.476945 C149.152335,112.392148 146.628043,111.269651 145.493126,108.943346 C144.990717,107.914165 144.75807,106.637175 144.853731,105.439174 C144.902326,104.839787 145.029364,104.276021 145.231399,103.764141 C146.329965,100.982874 149.157692,100.301013 151.498315,100.017194 C155.091709,99.5815928 158.7425,99.3968978 162.348522,99.4681429 C164.820009,99.5173174 167.31828,99.687686 169.772548,99.9746022 C171.013075,100.119803 172.114702,100.296366 173.038401,100.994103 C174.53568,102.125118 175.286042,104.751117 174.877763,107.077036 C175.255431,104.878894 174.417444,102.465468 172.776674,101.352652 C171.7378,100.647945 170.546251,100.469445 169.314908,100.335474 C163.703458,99.7252445 157.956553,99.7136285 152.329797,100.301013 C150.109706,100.532559 147.019486,101.156728 145.826025,103.887659 C145.608301,104.385599 145.472463,104.93194 145.423103,105.510806 C145.325146,106.661181 145.572716,107.843307 146.119512,108.839576 C147.736558,111.78734 151.571783,112.200483 154.315711,112.254691 C155.867708,112.28528 157.466005,112.190803 158.87566,112.107168 C160.04578,112.037859 161.150851,111.972422 162.034755,111.989846 L162.271993,111.996815 C162.655783,112.011916 163.075542,112.037084 163.521703,112.064188 C164.231122,112.106006 165.035436,112.154406 165.854673,112.170669 C168.957903,112.231847 173.243115,111.872524 174.621392,108.059365 C174.66884,107.92733 174.7094,107.792971 174.746899,107.657838 C174.717436,107.768577 174.688737,107.879317 174.653152,107.987733 C173.355994,111.950738 169.353938,112.382855 166.011939,112.317031 Z M175.602105,108.270003 C176.54991,105.377222 175.677103,101.782445 173.656751,100.256485 C172.530635,99.4061906 171.233477,99.1951659 169.89155,99.0383494 C163.77463,98.3228014 157.508861,98.3379022 151.369747,99.0813288 C148.956805,99.3736657 145.599501,100.142648 144.300813,103.431148 C144.065488,104.026277 143.918553,104.676775 143.862687,105.365219 C143.752486,106.739009 144.011152,108.14997 144.591238,109.338291 C146.317338,112.874601 150.455615,113.3617 153.418414,113.420167 L153.41918,113.420167 C155.13227,113.454241 156.898547,113.329175 158.457049,113.218823 C159.745406,113.12783 160.962208,113.041872 161.931059,113.060845 L162.159496,113.067814 C162.577724,113.084464 163.034982,113.11273 163.520938,113.142931 C164.273213,113.189783 165.124975,113.242829 165.993955,113.260253 C169.395263,113.327626 174.092198,112.883506 175.602105,108.270003 Z" id="Fill-280" fill="#000000"></path>
301
- <path d="M166.669702,104.044088 C166.904261,103.967422 167.15604,103.931412 167.417385,103.936446 C168.150528,103.950772 168.851528,104.288799 169.246033,104.81849 C169.379957,104.998152 169.462226,105.170844 169.489393,105.330371 C169.516561,105.491446 169.496663,105.67498 169.458399,105.900718 C169.39909,106.248425 169.311082,106.648404 169.105986,106.979461 C168.789923,107.488243 168.153206,107.842533 167.482051,107.88164 C166.830411,107.922683 166.132854,107.677198 165.59792,107.230755 C165.423818,107.085941 165.302903,106.949259 165.227905,106.813739 C165.133393,106.64337 165.08671,106.425376 165.087858,106.165951 C165.091685,105.234345 165.7571,104.341846 166.669702,104.044088 Z M164.942837,107.938946 C165.600982,108.488384 166.453126,108.812472 167.280016,108.828734 C167.368789,108.83067 167.45718,108.829122 167.545953,108.823314 C168.551919,108.764459 169.477914,108.242124 169.962722,107.459978 C170.25353,106.991464 170.370236,106.462547 170.439877,106.053663 C170.486559,105.779911 170.522145,105.484864 170.470488,105.181298 C170.418449,104.878119 170.27955,104.573005 170.057234,104.27486 C169.482888,103.505104 168.478452,103.013745 167.435369,102.993224 C167.056936,102.985867 166.689982,103.038913 166.344456,103.151976 C165.045768,103.575961 164.099493,104.840948 164.093753,106.159756 C164.092223,106.574836 164.177169,106.941515 164.347445,107.249727 C164.480222,107.490567 164.67537,107.716305 164.942837,107.938946 Z" id="Fill-281" fill="#000000"></path>
302
- <path d="M112.933706,237.363692 C113.105512,237.363692 113.262013,237.245595 113.305252,237.069032 C114.661719,231.470875 119.265289,226.691262 124.760033,225.174982 C124.963981,225.118451 125.084514,224.905877 125.028648,224.699499 C124.973548,224.492733 124.761564,224.371927 124.559146,224.427684 C118.713901,226.040377 114.004722,230.929955 112.561395,236.884337 C112.511269,237.091877 112.636776,237.30174 112.842255,237.35285 L112.933706,237.363692 Z" id="Fill-282" fill="#000000"></path>
303
- <path d="M89.9219778,229.255309 C91.5428508,229.255309 93.1644891,229.076035 94.7482458,228.714776 C94.9548726,228.667538 95.0838231,228.459998 95.0375234,228.251684 C94.9912236,228.042982 94.7826836,227.911721 94.5802658,227.958959 C90.1645731,228.968006 85.4523325,228.505688 81.3106117,226.65835 C81.1166121,226.571617 80.8916184,226.661448 80.8062891,226.856597 C80.7209599,227.052521 80.808585,227.280583 81.002202,227.366929 C83.8065878,228.617976 86.8631349,229.255309 89.9219778,229.255309 Z" id="Fill-283" fill="#000000"></path>
304
- <path d="M145.845157,228.167274 C144.993778,228.446833 144.123267,228.77518 143.268826,229.102752 C141.093122,228.665215 139.17264,227.806015 137.286978,226.209971 C133.772408,223.234329 133.82483,216.65423 133.859268,212.300539 C133.862329,211.924179 133.865008,211.562146 133.865773,211.217149 C133.874574,206.20599 133.990514,201.106936 134.102629,196.175153 C134.160025,193.666089 134.216656,191.157412 134.26066,188.649121 L134.381575,181.751905 C135.988673,180.365337 137.02372,178.666297 137.274734,176.889431 C137.498962,175.304229 137.063515,173.791433 136.110353,172.843564 C135.656539,172.3917 135.127728,172.08736 134.554529,171.8895 L134.603125,169.102812 C135.38869,166.780379 135.500804,164.230658 134.863704,161.842788 C134.827736,161.70688 134.785263,161.563229 134.737432,161.416479 L135.073392,142.247692 C135.093672,141.078344 135.116631,139.911319 135.138442,138.74623 C135.259357,132.490219 135.383715,126.020859 135.172114,119.604547 C134.996099,114.267364 134.898525,108.853128 134.883219,103.513235 C134.881689,102.966507 134.868679,102.413583 134.856051,101.857562 C134.768426,98.0955142 134.678505,94.2053027 138.203407,91.6269293 C140.157944,90.1969948 144.142399,89.5406886 147.223817,89.5248134 C153.794552,89.4907397 160.473957,89.3563808 166.933725,89.2262812 C177.845919,89.006738 189.12966,88.7771277 200.210217,89.0315189 C206.929799,89.1844634 210.918463,90.2310686 211.420872,95.1256802 C211.4335,95.2534567 211.444213,95.3835563 211.452249,95.5159791 C212.439466,111.778047 212.247762,128.419959 212.062181,144.513981 L212.055676,145.079295 C212.052615,145.321296 212.066773,156.002631 212.290618,157.42637 C209.914792,157.229672 207.514477,157.120868 205.07054,157.024455 L204.644276,157.005095 C203.174547,156.935012 201.342073,156.84673 200.137897,157.937863 C198.649036,159.287259 198.378508,162.080917 198.55988,163.628948 C198.797501,165.658657 199.894154,167.501348 201.492834,168.558407 C203.070468,169.602302 204.964931,169.834623 206.79664,170.059587 L207.407337,170.135866 C209.05576,170.348439 210.869102,170.717829 212.139857,171.793474 C211.967286,171.853491 211.794714,171.91312 211.622907,171.973136 L211.296131,172.086586 C208.557942,173.037939 205.726772,174.021818 203.2285,175.531903 C200.541585,177.156212 199.113946,179.074795 198.986527,181.234604 C198.819312,184.047234 201.009939,186.239181 203.254519,187.163817 C205.766949,188.199194 208.510112,187.890981 211.205827,187.134003 C211.097922,187.825544 211.169476,188.610789 211.155701,189.281808 C211.130064,190.511947 211.109401,191.742085 211.094861,192.972611 L204.684836,191.662322 C203.715603,191.464462 202.617037,191.240273 201.545639,191.51867 C200.733671,191.729308 199.896833,192.350379 199.569673,193.194865 C199.434601,193.218871 199.315599,193.311025 199.270065,193.451966 C198.783726,194.96786 198.825051,197.569852 199.735358,199.299868 C200.253073,200.283746 200.986215,200.918369 201.914888,201.187087 C205.543486,202.236015 208.252594,203.17614 210.677781,204.154598 C210.551892,208.634517 210.478807,213.178324 210.636838,217.637334 L210.647552,217.92425 C210.765789,221.155058 210.9441,226.037667 207.404276,227.612414 C205.481498,228.46658 202.726855,228.382558 200.5148,228.31441 C200.230114,228.305892 199.95576,228.297373 199.694032,228.291565 L199.692119,228.291565 C199.424652,228.286145 189.968412,228.219546 189.54674,228.459611 L189.476334,228.449931 C184.37265,227.747935 177.382922,226.785739 172.53867,229.1376 C171.805145,229.493825 171.129781,229.998349 170.554669,230.596187 C168.461233,229.326554 166.256448,228.582354 164.892328,228.203283 C158.101574,226.316451 151.514769,226.303287 145.845157,228.167274 Z M131.78879,230.646136 C129.254933,229.515121 126.893264,227.055232 125.772887,224.379671 C123.592209,219.176072 123.454457,212.520082 125.375705,205.622478 C126.872219,204.94565 128.452149,203.87349 129.376996,202.196133 C130.492781,200.173007 130.288067,197.070363 128.205727,195.675664 C127.621815,195.28459 126.964818,195.073566 126.302082,194.952759 C126.921962,190.934384 128.529826,187.234675 131.08932,183.95237 C131.137916,183.890417 131.157431,183.817624 131.16317,183.744055 C131.288294,183.688686 131.416479,183.639898 131.540456,183.581431 C132.199366,183.270121 132.810445,182.915445 133.373695,182.52863 L133.266938,188.63131 C133.222551,191.138051 133.16592,193.64518 133.108907,196.152308 C132.99641,201.088351 132.880469,206.192825 132.871286,211.213277 C132.87052,211.555951 132.868224,211.916435 132.864781,212.290859 C132.829195,216.815306 132.77486,223.652507 136.626538,226.913129 C138.255829,228.29234 139.929506,229.157735 141.734048,229.689362 C138.35302,230.965578 134.909621,232.040061 131.78879,230.646136 Z M118.179733,194.691785 C119.786448,192.059978 121.68091,189.608994 123.82562,187.403882 C124.626108,186.580305 125.342415,185.928645 126.153999,185.469812 C126.405013,185.392759 126.656026,185.316093 126.904361,185.240588 C127.89617,184.939733 128.907876,184.625326 129.903129,184.256323 C127.597326,187.450733 126.133337,191.008339 125.543685,194.848989 C125.06079,194.804073 124.587844,194.790909 124.152397,194.780454 C122.249899,194.735152 120.243323,194.687526 118.179733,194.691785 Z M107.331439,195.3206 C107.795585,194.911715 108.23371,194.524901 108.699768,194.22482 C113.759448,190.973878 118.792343,188.292896 123.255101,186.471889 C123.478947,186.380509 123.706619,186.296099 123.934674,186.211689 C123.709297,186.425037 123.491574,186.643419 123.279973,186.861026 C120.983353,189.222179 118.96568,191.859407 117.277079,194.697593 C113.971432,194.730505 110.536834,194.917911 107.154276,195.476255 C107.213586,195.42437 107.272895,195.372485 107.331439,195.3206 Z M96.3224364,199.019534 C93.8394702,200.374351 91.5665746,202.115596 89.3682943,203.799534 L83.8188323,208.048681 C83.4534089,208.327466 83.0872202,208.607413 82.7214141,208.891231 C83.683377,206.879333 84.7704639,204.855819 85.8303832,202.886513 C87.1409332,200.450243 88.4962524,197.931886 89.6097417,195.441407 C90.5659649,193.302507 91.5550954,191.090813 93.0370692,189.256253 C94.4907275,187.456929 96.3893988,186.061068 98.2241689,184.821249 C108.022109,178.202043 119.191439,173.935085 130.525305,172.481531 C131.173502,172.398283 131.847335,172.336718 132.502801,172.346785 C132.620655,172.421128 132.763763,172.422676 132.880852,172.360724 C133.912455,172.424225 134.872888,172.697589 135.573889,173.395326 C136.354479,174.171665 136.707275,175.437039 136.517102,176.779853 C136.176168,179.192891 134.194463,181.47312 131.21674,182.879822 C129.771117,183.562458 128.201901,184.038716 126.684341,184.498711 C126.581793,184.530074 126.477715,184.562212 126.374401,184.593575 C126.290603,184.572279 126.199916,184.574602 126.115352,184.615645 C126.031554,184.656689 125.950816,184.703153 125.868931,184.748068 C124.899315,185.046988 123.917837,185.366429 122.968884,185.753243 C121.817131,186.223693 120.626348,186.751835 119.40878,187.330314 L119.393474,187.313277 C118.680611,186.779326 118.085985,186.078105 117.673114,185.285117 C117.574392,185.096162 117.342894,185.024143 117.156164,185.123266 C116.969052,185.222777 116.897115,185.457034 116.995837,185.645988 C117.405265,186.432007 117.979611,187.130131 118.656505,187.698155 C115.331343,189.320141 111.818304,191.304161 108.289576,193.571612 C108.150294,193.661055 108.014073,193.758243 107.879383,193.859302 C107.838823,193.844201 107.795967,193.832585 107.75005,193.832585 C106.599445,193.830262 105.446161,193.385755 104.585215,192.613676 C104.427184,192.47196 104.185737,192.485512 104.045307,192.646588 C103.90526,192.806502 103.9198,193.051213 104.077832,193.192929 C104.898599,193.929773 105.950101,194.40332 107.040249,194.552005 C106.96946,194.613958 106.898288,194.675523 106.828647,194.737475 C106.394731,195.120417 105.982625,195.480127 105.550239,195.770141 C102.34714,196.420252 99.2182737,197.438591 96.3224364,199.019534 Z M128.363759,162.20366 C128.594109,161.955076 128.827521,161.704557 129.068969,161.463718 C129.171134,161.425772 129.253402,161.348332 129.29358,161.246498 C129.720609,160.844196 130.178631,160.484873 130.700556,160.241711 C131.48612,159.876193 132.595018,159.792944 133.301376,160.431052 C133.486575,160.597936 133.631979,160.806637 133.750215,161.030052 L133.74945,161.05948 L133.770113,161.069934 C133.933883,161.39015 134.043319,161.738631 134.124822,162.04452 C134.985385,165.270294 134.38961,168.809701 132.540683,171.573157 C131.835855,171.560766 131.118018,171.624655 130.429262,171.713324 C125.770592,172.310775 121.141767,173.38642 116.620848,174.893021 L128.363759,162.20366 Z M133.418464,171.632786 C133.470121,171.547989 133.518716,171.460868 133.569225,171.37491 L133.564251,171.653695 C133.515655,171.646725 133.46706,171.638981 133.418464,171.632786 Z M217.84582,159.070814 C218.899617,159.428588 219.886834,159.984609 220.62916,160.428729 C225.693432,163.460128 229.194992,167.540068 230.559877,171.963456 C227.525906,170.702341 224.2436,169.998796 220.905428,169.927164 C218.179101,169.872181 215.535808,170.640389 212.965982,171.510817 C211.532221,170.065395 209.411235,169.613144 207.503763,169.367658 L206.888856,169.290992 C205.144007,169.076483 203.339849,168.855004 201.911445,167.910232 C200.50026,166.97669 199.531027,165.342701 199.320191,163.537568 C199.123895,161.864084 199.522608,159.535068 200.648342,158.514793 C201.618723,157.635071 203.27633,157.714835 204.608308,157.778723 L205.040694,157.798083 C208.133209,157.920439 211.155701,158.055959 214.134572,158.374239 C215.411832,158.510921 216.656568,158.666963 217.84582,159.070814 Z M212.453624,204.940229 C213.272096,208.962863 213.909578,213.057517 214.356887,217.158366 L214.352678,217.165336 C214.305613,217.286143 214.328954,217.412758 214.393621,217.513817 C214.522189,218.72266 214.636981,219.931502 214.732259,221.13957 C214.945391,223.837976 214.906744,226.567358 213.199394,228.251296 C211.923282,229.509313 209.951143,229.83766 208.375422,229.982861 C203.618795,230.420785 198.804771,229.781903 194.130795,229.107786 C194.469051,229.135664 194.702463,229.152314 194.75565,229.153475 C195.015464,229.159671 200.203329,229.248727 200.484954,229.257633 C200.861857,229.269249 201.254065,229.281252 201.655457,229.288996 C203.722108,229.330039 206.037094,229.262666 207.827478,228.46658 C211.960781,226.628923 211.768312,221.372278 211.640892,217.893662 L211.630943,217.608294 C211.477886,213.299131 211.542935,208.902847 211.661937,204.55961 C211.927873,204.671511 212.191514,204.7838 212.453241,204.89725 L212.453624,204.940229 Z M283.133405,359.224848 C278.687484,340.790194 265.239136,303.524779 254.286381,287.086534 C253.097894,285.301924 251.781222,283.457684 249.917754,282.238387 C249.417258,281.911202 248.883471,281.635127 248.366904,281.368346 C247.526622,280.934293 246.733021,280.524247 246.081764,279.915566 C244.937664,278.846504 244.40426,277.343775 243.839097,275.753152 C243.429287,274.59968 243.005702,273.4071 242.324982,272.369013 C240.411005,269.447579 236.995156,268.321598 233.691805,267.2324 C233.115163,267.042672 232.543495,266.854492 231.983307,266.657406 C226.077987,264.578523 220.864103,260.524912 215.822407,256.604499 C213.154625,254.529874 210.395773,252.385166 207.593301,250.586229 C198.821608,244.955935 194.51229,243.259606 178.758904,241.163298 C177.866582,241.044427 177.237135,240.693623 176.508202,240.287836 C176.305784,240.175161 176.094565,240.060162 175.874929,239.94555 C176.068546,239.333385 176.102218,238.610093 175.972885,237.785354 C175.493434,234.723366 173.483797,232.540325 171.216641,231.017075 C171.703744,230.535784 172.265081,230.12961 172.870038,229.835724 C177.506516,227.584923 184.364997,228.528533 189.37302,229.217364 L190.2795,229.341655 C191.269013,229.475627 192.259291,229.619279 193.2511,229.76293 C198.20938,230.481189 203.336405,231.223454 208.44468,230.754166 C210.146673,230.597349 212.284879,230.233767 213.733945,228.805769 C215.672411,226.893381 215.711824,223.82636 215.495248,221.078005 C215.412597,220.032174 215.313876,218.985956 215.206353,217.939351 C218.919897,219.605478 221.942772,222.674436 223.560583,226.45507 C223.623337,226.601044 223.764149,226.688165 223.912232,226.688165 C223.962741,226.688165 224.014397,226.678097 224.064141,226.656414 C224.257758,226.57123 224.346913,226.343556 224.263115,226.147245 C222.511378,222.054527 219.186599,218.760605 215.116432,217.061179 C214.684429,213.104756 214.074114,209.155303 213.298116,205.268963 C214.977533,206.018198 216.630931,206.816607 218.505495,207.72227 C225.530426,211.114928 229.718447,214.871555 231.685994,219.543526 C232.397709,221.235596 232.807901,223.083708 233.203936,224.870642 C233.285821,225.237709 233.367324,225.604775 233.451123,225.971068 C234.700833,231.423249 236.543638,236.748042 238.928265,241.798308 C238.99408,241.936926 239.131066,242.018239 239.274174,242.018239 C239.329275,242.018239 239.385523,242.006235 239.43871,241.980293 C239.629266,241.888139 239.710004,241.65698 239.618935,241.464154 C237.258032,236.46461 235.433593,231.193252 234.19651,225.795666 C234.113094,225.431697 234.031974,225.066566 233.950854,224.70066 C233.546783,222.88004 233.129321,220.99708 232.389673,219.240348 C230.373148,214.450668 225.939471,210.454363 218.835333,207.023372 C213.400664,204.398534 209.811096,202.66426 202.124959,200.442112 C201.404061,200.233797 200.827036,199.726951 200.410721,198.935899 C199.7212,197.626384 199.591867,195.756201 199.832166,194.385896 C200.037262,194.372344 200.197207,194.198491 200.190319,193.989402 C200.165065,193.170084 200.955987,192.471186 201.735429,192.269066 C202.637317,192.034035 203.644814,192.240026 204.53331,192.421624 L217.33461,195.037943 C220.014637,195.585833 222.786115,196.152308 225.463464,196.884893 C231.269296,198.474742 236.819141,200.881972 241.958793,204.039599 C242.020781,204.077932 242.089274,204.09613 242.157002,204.09613 C242.286335,204.09613 242.412607,204.029919 242.484161,203.909499 C242.593979,203.72674 242.536583,203.488611 242.355593,203.377872 C237.154718,200.182299 231.538676,197.746416 225.662821,196.137982 C222.961748,195.398427 220.178025,194.829241 217.48231,194.277867 L211.897645,193.136397 L211.902619,193.111616 C211.891522,191.6751 211.869329,190.239357 211.84484,188.80284 C211.837952,188.388922 211.9868,187.485969 211.806193,186.956277 C213.204751,186.529969 214.584942,186.002213 215.907354,185.494592 C216.754141,185.169343 217.553481,184.862293 218.320679,184.59706 C218.520418,184.527751 218.627558,184.30782 218.559065,184.105701 C218.490955,183.902808 218.272849,183.795553 218.07311,183.864475 C217.29405,184.13358 216.48897,184.442954 215.63606,184.770139 C211.714742,186.275577 207.270733,187.981586 203.543032,186.44672 C201.551378,185.626241 199.606024,183.710756 199.750281,181.280681 C199.862012,179.392687 201.164527,177.682032 203.621091,176.196728 C206.050487,174.727686 208.843776,173.757359 211.544848,172.818783 L211.871242,172.705333 C212.19381,172.593432 212.517525,172.480757 212.842006,172.369243 C212.948763,172.383956 213.060112,172.357239 213.146589,172.279412 L213.160364,172.260826 C215.681595,171.40395 218.267109,170.643486 220.888975,170.701567 C226.581162,170.823148 232.10537,172.829238 236.444534,176.350446 C240.488681,179.632752 242.224347,184.887461 243.902616,189.969478 C244.061413,190.450769 244.219827,190.930124 244.378623,191.403672 C246.563511,197.912138 248.642407,203.761588 251.966421,209.45035 C252.365899,210.134922 252.766909,210.817558 253.167153,211.498645 C256.104698,216.497414 258.879238,221.218559 261.114252,226.465524 C262.070092,228.710904 262.98499,231.021335 263.869659,233.255099 C265.344363,236.979588 266.869575,240.83108 268.636617,244.510654 C271.426463,250.31906 274.812465,255.859137 278.700877,260.976389 C279.296268,261.759697 279.895869,262.538359 280.494321,263.317795 C280.569702,263.026233 280.677224,262.743963 280.814593,262.47176 C280.311801,261.816229 279.807861,261.162633 279.307747,260.504391 C275.450712,255.428956 272.091878,249.933795 269.324991,244.171852 C267.569811,240.517446 266.049955,236.67912 264.579843,232.967408 C263.693644,230.72861 262.776833,228.413534 261.816783,226.159248 C259.562254,220.866206 256.645754,215.90306 253.825297,211.102925 C253.425054,210.421838 253.024427,209.740364 252.624566,209.056179 C249.338433,203.431693 247.27446,197.62135 245.10373,191.155088 C244.944934,190.681928 244.787285,190.204509 244.628489,189.723992 C242.915016,184.535882 241.142999,179.170821 236.923602,175.746412 C235.254516,174.391982 233.415155,173.255546 231.461,172.356465 L231.456026,172.285994 C230.162312,167.464564 226.455655,163.016782 221.01869,159.761968 C220.24384,159.298488 219.210705,158.717299 218.089181,158.336293 C216.827226,157.908048 215.483769,157.740003 214.215309,157.604095 C213.816596,157.561503 213.415204,157.529753 213.015343,157.493356 C213.210491,155.962362 213.04672,145.333299 213.049398,145.091298 L213.056286,144.526759 C213.241867,128.416474 213.433954,111.758299 212.444441,95.4640942 C212.43564,95.3192809 212.424543,95.1775652 212.410385,95.0373983 C211.77673,88.8669584 205.791821,88.2149114 200.231262,88.0882965 C189.126981,87.8370029 177.834057,88.0631285 166.910001,88.2830588 C160.454442,88.4131584 153.778864,88.5475173 147.215782,88.581591 C144.205152,88.5966919 139.879763,89.2080827 137.595771,90.8792435 C133.673687,93.7476308 133.76973,97.8798431 133.861947,101.875761 C133.874574,102.425974 133.887201,102.973089 133.889114,103.513235 C133.904803,108.862808 134.002376,114.285562 134.178392,119.631651 C134.389228,126.024731 134.265252,132.482088 134.144337,138.72687 C134.122526,139.891959 134.09995,141.059758 134.079288,142.22988 L133.77126,159.820436 C132.805089,158.985242 131.378215,159.07275 130.380667,159.538166 L128.956089,160.719904 L128.938105,160.716032 L128.936192,160.716032 L128.936574,160.736167 L127.805101,161.674355 L115.083391,175.421551 C109.040703,177.580585 103.211529,180.520605 97.7990532,184.176946 C95.9145396,185.450452 93.9619157,186.887743 92.4443562,188.766443 C90.8992464,190.678831 89.8890706,192.937763 88.9125673,195.122353 C87.81094,197.586502 86.4621257,200.092469 85.1580806,202.515575 C83.8475305,204.951458 82.4922113,207.470202 81.3787221,209.960681 L81.3775742,209.966489 C77.8882586,212.86624 74.6591398,216.595763 73.2383888,224.423424 C73.2001245,224.633675 73.3374931,224.835406 73.5452679,224.874127 L73.6149088,224.880322 C73.7962813,224.880322 73.9569911,224.749835 73.9906636,224.563204 C75.6861519,215.223909 80.0547796,211.890493 84.2795337,208.666654 L89.8301436,204.416733 C92.0054654,202.750606 94.2546371,201.027947 96.685564,199.701008 C99.4953067,198.167304 102.491779,197.173745 105.568223,196.536025 C105.666563,196.561193 105.773702,196.548802 105.866302,196.489173 L105.898061,196.467103 C111.950315,195.264456 118.297204,195.415464 124.134413,195.554857 C125.291141,195.582348 126.730641,195.616809 127.78329,196.321515 C129.511686,197.479247 129.65709,200.098277 128.70852,201.818999 C127.589291,203.84987 125.347389,204.915061 123.664528,205.45056 C121.322757,206.195149 118.766323,206.429405 116.294071,206.655918 C115.855946,206.696187 115.415524,206.736456 114.975103,206.779823 L114.89207,206.767045 C114.848831,206.770142 114.809419,206.784082 114.771155,206.800344 C111.571117,207.122496 108.356156,207.62547 105.617967,209.399239 C104.518635,210.111303 103.522617,211.014643 102.559889,211.888169 C100.903813,213.39051 99.3399539,214.809216 97.314628,215.310642 C97.1087664,215.361752 96.9832597,215.571228 97.0333859,215.778768 C97.0838947,215.986695 97.2932,216.114472 97.4960005,216.063361 C99.7076732,215.515858 101.417319,213.96473 103.070717,212.464712 C104.011252,211.611708 104.983546,210.729276 106.030455,210.050899 C108.558573,208.413812 111.465125,207.920905 114.554962,207.600689 C114.594374,208.515646 114.569119,209.435636 114.470015,210.342075 C114.446674,210.554648 114.5982,210.745925 114.808271,210.769545 L114.850744,210.771868 C115.043213,210.771868 115.208897,210.625119 115.230708,210.426872 C115.335169,209.467387 115.361572,208.493188 115.317568,207.524798 C115.664624,207.491886 116.012446,207.459361 116.363329,207.427223 C118.875759,207.196838 121.473518,206.959097 123.893731,206.189341 C124.085435,206.128163 124.284791,206.059241 124.487592,205.984898 C122.684198,212.847267 122.880877,219.461827 125.06806,224.682462 C126.260756,227.529166 128.777395,230.148583 131.480381,231.354715 C135.223771,233.024714 139.224297,231.486363 143.092428,229.998349 C144.07888,229.618891 145.099005,229.226656 146.081247,228.903731 C151.608516,227.086982 158.043795,227.103245 164.68991,228.949808 C166.036811,229.323844 168.24351,230.066883 170.297534,231.338452 L170.343068,231.398856 C170.395873,231.445707 170.458244,231.469326 170.522145,231.482104 C172.753715,232.914749 174.759909,234.985114 175.217166,237.906935 C175.32622,238.600413 175.304026,239.19709 175.152883,239.688448 C175.041916,239.714778 174.942812,239.784862 174.891538,239.897537 C174.840264,240.009438 174.852126,240.130245 174.9034,240.232079 C173.964395,241.732871 171.761906,241.547789 169.391819,241.197759 C163.214059,240.283577 156.236958,241.674017 148.060274,245.445745 C146.202545,246.302234 144.251069,247.283402 142.562851,248.648287 C141.028838,249.88888 139.745455,251.421035 138.504164,252.902855 C138.276874,253.174283 138.049967,253.445711 137.821147,253.715203 C129.807851,263.158656 121.193424,271.152814 112.2174,277.475811 C109.705353,279.245321 107.738954,280.407312 106.00367,281.432621 C100.357017,284.768747 98.0198378,286.149895 91.7184836,300.147609 C91.5539474,300.512352 91.2053602,301.276301 90.7018029,302.377888 C78.379954,329.34917 70.6104011,347.334283 65.7458689,359.317776 L66.572759,359.317776 C71.4369086,347.353256 79.1731716,329.45836 91.3966814,302.70275 C91.9006214,301.599227 92.2499739,300.834117 92.4148927,300.468599 C98.615612,286.694687 100.891186,285.349937 106.389374,282.101318 C108.137284,281.068652 110.117841,279.898142 112.654377,278.111208 C121.683589,271.75104 130.346229,263.712353 138.401615,254.219726 C138.631584,253.948685 138.860021,253.676096 139.088076,253.403506 C140.305644,251.949952 141.564537,250.447224 143.040771,249.253482 C144.663558,247.94087 146.564525,246.986419 148.377867,246.150451 C156.417565,242.44145 163.254236,241.072693 169.281236,241.963643 C171.273654,242.258304 174.265152,242.695067 175.548152,240.645997 C175.751718,240.752865 175.948779,240.860507 176.139335,240.966213 C176.902706,241.391747 177.623604,241.793275 178.658652,241.930731 C194.265103,244.008066 198.525443,245.683099 207.183108,251.240212 C209.9565,253.020564 212.701576,255.154817 215.355966,257.2186 C220.446257,261.176185 225.709886,265.268903 231.732676,267.388443 C232.296308,267.587077 232.873716,267.777193 233.454567,267.968857 C236.633177,269.017011 239.920457,270.100013 241.687499,272.79687 C242.316946,273.757517 242.72446,274.905181 243.118582,276.015288 C243.690632,277.623722 244.281432,279.286751 245.562136,280.484365 C246.29107,281.165452 247.169234,281.619252 248.0187,282.057951 C248.518431,282.315827 249.034615,282.582996 249.502204,282.888885 C251.244375,284.028806 252.507477,285.801026 253.65196,287.519038 C264.541196,303.862418 277.914929,340.914098 282.368503,359.32552 C282.510846,359.313904 282.651659,359.317776 282.790558,359.337136 C282.907264,359.333264 283.022822,359.337136 283.137997,359.34488 C283.142972,359.30616 283.142972,359.26744 283.133405,359.224848 Z" id="Fill-284" fill="#000000"></path>
305
- <path d="M238.792045,269.906413 C238.806585,269.462293 238.142701,269.469262 238.114768,269.906413 C236.243647,299.593911 235.120974,329.900544 240.314961,359.317776 L241.488525,359.317776 C236.174771,329.780512 237.807506,299.77938 238.792045,269.906413 Z" id="Fill-285" fill="#000000"></path>
306
- <path d="M464.7898,149.178595 C464.625263,149.053529 464.583173,148.811915 464.705618,148.638062 C464.740056,148.587339 464.77832,148.535454 464.816584,148.484343 C463.530906,146.931666 461.640653,145.965986 460.067993,145.163705 C459.532294,144.889953 458.992768,144.615428 458.445589,144.343225 C458.418804,144.378848 458.384367,144.414857 458.353755,144.448931 C458.277227,144.527146 458.17774,144.565091 458.078253,144.563543 C457.982592,144.562381 457.886932,144.524823 457.810403,144.451641 C457.691784,144.328899 457.668825,144.145365 457.74918,143.998616 C455.809184,143.049973 453.807964,142.169864 451.71491,141.592547 C449.376966,140.95018 446.989277,140.694627 444.601589,140.616413 C444.039105,140.869642 443.449836,141.065179 442.841434,141.192955 L442.757253,141.201087 C442.585064,141.198376 442.432007,141.074085 442.393743,140.892874 C442.366958,140.780973 442.397569,140.67217 442.458792,140.586985 C441.085106,140.592793 439.715246,140.636934 438.356866,140.681075 L429.758892,140.961796 C426.827852,141.057822 423.514169,141.165851 420.590782,142.449424 C416.075602,144.438477 413.198514,148.952469 411.428028,152.175146 C411.325097,152.361777 411.39206,152.597583 411.576493,152.701352 C411.76131,152.805897 411.993956,152.738137 412.096504,152.551506 C413.813038,149.427565 416.592169,145.054901 420.896896,143.159938 C423.682532,141.935607 426.919686,141.829514 429.781851,141.735812 L438.383651,141.455091 C442.738121,141.312988 447.241821,141.165851 451.508284,142.339458 C454.381928,143.129736 457.094862,144.51553 459.723615,145.854859 C461.53734,146.781045 463.794929,147.932968 464.877807,149.936735 C466.021908,152.048531 465.669877,154.661365 465.176268,157.377195 L464.433942,161.485401 C464.189051,162.828215 463.894416,164.095138 463.021992,164.843598 C462.348541,165.418205 461.548819,165.465831 461.00164,165.40775 C459.976159,165.296236 458.954504,164.717758 458.330797,163.896891 C457.378017,162.641197 456.983896,160.89066 457.079556,158.388178 C457.079556,158.222069 456.983896,158.070286 456.830839,158.011044 L448.711168,154.89872 C448.301741,154.741129 447.834917,154.55566 447.329829,154.564952 C446.644899,154.567663 446.028845,154.903366 445.493146,155.20035 L445.416617,155.240619 C442.07615,157.071694 438.303296,158.1485 434.507484,158.35604 C434.385038,158.362623 434.277899,158.425349 434.212849,158.525634 C434.143974,158.62592 434.124842,158.752534 434.166932,158.867146 C434.572533,160.083345 433.42078,161.179125 432.303464,162.238508 C432.035614,162.493673 431.756286,162.758132 431.511394,163.017557 C429.142838,165.498356 428.966823,169.01879 428.806113,172.423451 C428.7028,174.49188 428.59566,176.63078 428.006391,178.5331 C427.945168,178.737543 428.056134,178.954762 428.255108,179.018651 C428.293372,179.030267 428.331637,179.035688 428.369901,179.036075 C428.530611,179.038785 428.683667,178.932305 428.737237,178.765034 C429.353292,176.767849 429.460431,174.579001 429.567571,172.461784 C429.732108,169.049766 429.888991,165.827089 432.062399,163.556154 C432.299638,163.309894 432.556008,163.063247 432.827684,162.803047 C433.941173,161.746762 435.184761,160.562701 435.001093,159.100628 C438.758641,158.8292 442.477924,157.733808 445.783954,155.921706 L445.85283,155.880662 C446.338785,155.615429 446.840047,155.341291 447.333656,155.339355 C447.68186,155.328901 448.079808,155.483007 448.439492,155.623173 L456.306619,158.637148 C456.260702,160.315666 456.398453,162.619127 457.722395,164.368502 C458.468548,165.351606 459.693003,166.044697 460.917459,166.177507 C461.908503,166.286697 462.830671,166.021464 463.5156,165.434855 C464.586999,164.521447 464.916071,163.111647 465.183921,161.625568 L465.930074,157.517362 C466.450467,154.659042 466.810151,151.900233 465.547431,149.565022 C465.467076,149.413239 465.379069,149.267264 465.283408,149.124774 C465.210706,149.20415 465.115046,149.252938 465.011732,149.251389 C464.931377,149.250227 464.858675,149.226608 464.7898,149.178595 Z" id="Fill-286" fill="#000000"></path>
307
- <path d="M441.75473,190.046531 C439.963964,191.709948 437.939786,193.212676 435.980657,194.66623 C430.914472,198.423244 425.679925,202.308422 424.049869,209.276109 C423.529475,211.491675 423.035866,213.661938 422.569043,215.798902 C422.836892,215.730368 423.108568,215.698617 423.372592,215.706749 C423.82411,213.657679 424.29476,211.576472 424.792195,209.454609 C426.364855,202.764545 431.251198,199.134146 436.432175,195.290785 C438.40661,193.824841 440.44992,192.308948 442.286603,190.609522 C443.840131,189.077753 448.244344,183.448621 449.568287,180.12837 C449.334875,179.995172 449.128248,179.82674 448.94458,179.631203 C447.861702,182.582451 443.468968,188.365303 441.75473,190.046531 Z" id="Fill-287" fill="#000000"></path>
308
- <path d="M411.398565,297.61144 C411.13148,300.569271 410.858274,303.598347 410.573205,306.71222 C409.504485,318.399117 407.773411,329.131175 405.940554,340.492049 C405.096063,345.72701 403.73156,353.389724 402.84383,359.317776 L403.617915,359.317776 C404.50488,353.412956 405.857521,345.816067 406.69589,340.619825 C408.531043,329.242302 410.26403,318.497079 411.335429,306.783852 C411.620115,303.669205 411.893704,300.639742 412.160788,297.681911 C412.513202,293.776211 412.854136,290.003322 413.194305,286.327233 C412.9387,286.306324 412.684243,286.252503 412.4405,286.166931 C412.097652,289.871286 411.754039,293.67399 411.398565,297.61144 Z" id="Fill-288" fill="#000000"></path>
309
- <path d="M371.104029,286.255213 C369.597184,291.179252 368.018784,296.075026 366.343959,300.938274 C364.424625,306.512424 359.065336,326.709231 358.595451,333.184398 C358.582441,333.360962 355.97129,352.712122 355.210597,359.317776 L356.215033,359.317776 C356.929426,353.536861 359.345813,333.416332 359.35844,333.241317 C359.791974,327.272609 364.979456,307.255463 367.06677,301.192665 C368.76685,296.254687 370.369356,291.284184 371.897247,286.284641 C371.790872,286.297418 371.681819,286.305549 371.568557,286.305549 C371.4155,286.305549 371.259765,286.287351 371.104029,286.255213 Z" id="Fill-289" fill="#000000"></path>
310
- <path d="M439.305819,109.295699 C439.095366,109.284857 438.93083,109.10326 438.946135,108.889525 C438.946135,108.854677 438.949962,108.82099 438.949962,108.786142 L436.807165,109.862562 C435.150323,110.69427 433.439912,111.554632 431.828988,112.577617 C430.149188,113.647842 428.572701,114.905084 427.049785,116.121284 L419.339541,122.269653 C419.220922,122.541469 419.098477,122.812509 418.979858,123.084325 C418.922461,123.231074 418.773231,123.317807 418.624,123.315871 C418.574257,123.315097 418.524513,123.304255 418.478596,123.282959 C418.390588,123.245013 418.333192,123.177253 418.294928,123.099426 C418.126565,123.231461 417.958202,123.363497 417.78984,123.495533 C415.859792,124.999035 413.862399,126.553648 412.684243,128.800578 C411.846639,130.398945 411.208009,132.228471 410.614148,134.732114 C408.814198,142.318162 407.566402,150.135757 406.35993,157.696249 C405.639032,162.209468 404.89441,166.876792 404.03997,171.441508 C403.502357,174.314155 402.815897,176.057722 401.946916,178.265157 C401.070282,180.492726 400.076178,183.017279 398.943939,187.435633 C398.039372,190.96536 396.208046,194.889258 394.437177,198.683443 C393.514244,200.661268 392.642585,202.529901 391.917095,204.30367 C390.515476,207.730789 389.710396,211.406491 388.932484,214.961386 L388.842946,215.369109 C389.094342,215.381887 389.347269,215.435708 389.59216,215.5267 L389.679402,215.128657 C390.450809,211.606287 391.248236,207.964271 392.624218,204.599879 C393.34282,202.843534 394.210653,200.983419 395.129377,199.014113 C396.915169,195.187403 398.761801,191.230205 399.684734,187.630008 C400.805111,183.258505 401.789267,180.757572 402.658248,178.551686 C403.507331,176.394587 404.240857,174.531762 404.792244,171.585547 C405.647833,167.010764 406.393985,162.338406 407.114884,157.819766 C408.319442,150.273213 409.565325,142.470332 411.358387,134.912937 C411.936177,132.475505 412.554145,130.701736 413.360755,129.163385 C414.460851,127.065141 416.389369,125.562413 418.256663,124.109634 C418.574257,123.861051 418.89185,123.613629 419.209443,123.364658 L427.524261,116.729577 C429.031872,115.525768 430.593053,114.281303 432.242241,113.233149 C433.811075,112.231072 435.510007,111.379617 437.147716,110.556039 L442.317214,107.959855 C443.162854,107.536256 444.031452,107.098719 444.949794,106.92293 C446.859179,106.558186 448.898663,107.357757 450.532546,108.000124 L458.112691,110.974604 C461.05521,112.130013 463.442898,113.539813 466.102263,115.68878 C466.653268,116.134836 467.223405,116.59638 467.705534,117.118327 C470.835549,120.505177 470.089396,125.140751 465.497688,130.897273 C465.685183,131.074224 465.872677,131.253111 466.048693,131.434708 C470.954168,125.307635 471.707973,120.313512 468.268018,116.58941 C467.747625,116.026419 467.154529,115.547451 466.580566,115.083971 C463.863805,112.883119 461.407241,111.438084 458.388193,110.252861 L450.811875,107.277993 C449.086158,106.600004 446.935708,105.755518 444.808216,106.162079 C443.786561,106.357616 442.872046,106.819547 441.976663,107.26599 L439.799428,108.362544 C439.745858,108.544916 439.715246,108.733096 439.707594,108.928245 C439.696114,109.141593 439.516272,109.307315 439.305819,109.295699 Z" id="Fill-290" fill="#000000"></path>
311
- <path d="M472.970693,100.730419 C472.450299,99.5482935 471.302372,98.9771716 470.188883,98.4250225 C469.989909,98.3247374 469.790935,98.2248395 469.591961,98.1218439 C468.122614,97.3439565 466.806325,96.2013255 465.543605,95.0962529 C463.959466,93.7158803 462.31793,92.2886563 460.320537,91.5119305 C458.158608,90.6740268 455.797704,90.6821581 453.754394,90.7553391 C448.324699,90.9497142 442.891178,91.7171472 437.61454,93.0371164 C436.489571,93.3182245 435.311033,93.6446352 434.270246,94.2695782 C433.095534,94.9800925 432.177192,96.0468321 431.507568,96.896739 C431.063703,97.4585681 430.63897,98.0459525 430.241022,98.6426297 C429.024219,100.462476 428.01787,102.438751 427.045958,104.350364 C426.17736,106.074184 425.270498,107.856472 424.375115,109.663153 C422.247623,113.95799 420.19666,118.3686 418.279622,122.772628 C418.233705,122.882206 418.245184,122.999915 418.294928,123.099426 C418.333192,123.177253 418.390588,123.245013 418.478596,123.282959 C418.524513,123.304255 418.574257,123.315097 418.624,123.315871 C418.773231,123.317807 418.922461,123.231074 418.979858,123.084325 C419.098477,122.812509 419.220922,122.541469 419.339541,122.269653 C421.14944,118.149057 423.066478,114.028848 425.056218,110.010086 C425.947775,108.206889 426.854637,106.426537 427.727062,104.704653 C428.687494,102.813175 429.682364,100.857808 430.872382,99.0762951 C431.25885,98.4962676 431.679757,97.9255329 432.108316,97.3791918 C432.73585,96.5807827 433.592969,95.581029 434.664367,94.9340156 C435.609494,94.3640553 436.684719,94.0670719 437.802035,93.7890613 C443.025103,92.4818697 448.401228,91.7217936 453.781179,91.5293545 C455.747961,91.4588839 458.024683,91.4492039 460.045034,92.2348353 C461.919982,92.9635482 463.439072,94.2842918 465.042343,95.6828629 C466.339501,96.8165883 467.690229,97.9890339 469.236104,98.8083518 C469.438904,98.9140578 469.649357,99.0170533 469.852158,99.1204361 C470.843201,99.6117945 471.864857,100.119415 472.270457,101.045601 C472.576571,101.734045 472.404382,102.397321 472.209235,102.832535 C471.826592,103.677021 471.015391,104.397603 470.135313,104.669031 C468.555,105.15884 466.852242,104.717431 465.107393,104.180383 C462.719704,103.447411 460.324363,102.636998 457.986419,101.771603 L457.883105,101.732109 C456.892061,101.366978 455.878059,100.98907 454.791355,100.902724 C452.725086,100.736614 450.823354,101.641891 448.994323,102.517353 C448.160163,102.915009 447.299218,103.326217 446.442099,103.624749 C445.879615,103.821834 445.27504,103.9802 444.69725,104.133531 C443.782735,104.375919 442.829955,104.626826 441.942225,105.045778 C440.576192,105.689306 439.095366,107.006178 438.949962,108.786142 C438.949962,108.82099 438.946135,108.854677 438.946135,108.889525 C438.93083,109.10326 439.095366,109.284857 439.305819,109.295699 C439.516272,109.307315 439.696114,109.141593 439.707594,108.928245 C439.715246,108.733096 439.745858,108.544916 439.799428,108.362544 C440.117021,107.152927 441.234337,106.23526 442.267471,105.747386 C443.093978,105.358249 443.970229,105.127477 444.892397,104.882379 C445.485493,104.725562 446.097721,104.563712 446.694643,104.356559 C447.5862,104.044862 448.470103,103.624362 449.323396,103.2178 C451.144773,102.347372 452.862838,101.526505 454.733959,101.674803 C455.709697,101.753018 456.677782,102.111953 457.615255,102.459273 L457.722395,102.498767 C460.071819,103.369196 462.482466,104.184255 464.881634,104.921099 C466.6724,105.471699 468.570306,105.963058 470.364899,105.40936 C471.455429,105.071333 472.431167,104.206712 472.90947,103.153912 C473.27298,102.33382 473.295939,101.473071 472.970693,100.730419 Z" id="Fill-291" fill="#000000"></path>
312
- <path d="M461.977378,128.013785 C459.019553,125.791249 455.958414,123.493209 452.725086,121.557203 C451.102683,120.583779 449.346354,119.685472 447.444622,119.697475 C445.485493,119.711414 443.740644,120.673609 442.057018,121.604054 L442.014927,121.624576 C435.563577,125.178309 428.836724,128.381239 422.014211,131.144307 L421.72723,131.260467 C420.192834,131.880764 418.604868,132.521969 417.189091,133.460545 C415.979941,134.262052 414.39121,135.640489 413.689827,137.65471 C413.619803,137.856829 413.724265,138.077534 413.923622,138.148779 C414.124126,138.220024 414.34185,138.114318 414.411873,137.912586 C415.042085,136.102033 416.496509,134.844403 417.609998,134.108333 C418.960725,133.212349 420.510427,132.585858 422.010385,131.9795 L422.297367,131.86334 C429.146665,129.088655 435.904129,125.872949 442.382264,122.304889 L442.416701,122.284367 C444.023799,121.399612 445.688293,120.484655 447.456101,120.472265 C449.162686,120.453292 450.811875,121.307071 452.338617,122.223576 C455.537508,124.139061 458.579514,126.42471 461.52586,128.63563 C464.927551,131.194256 468.302456,134.019277 468.849635,137.931559 C469.370028,141.633978 467.162182,145.17261 464.816584,148.484343 C464.77832,148.535454 464.740056,148.587339 464.705618,148.638062 C464.583173,148.811915 464.625263,149.053529 464.7898,149.178595 C464.858675,149.226608 464.931377,149.250227 465.011732,149.251389 C465.115046,149.252938 465.210706,149.20415 465.283408,149.124774 L465.325499,149.090313 C467.801195,145.606663 470.177404,141.867073 469.611093,137.822755 C469.255236,135.312142 467.862418,133.253005 466.048693,131.434708 C465.872677,131.253111 465.685183,131.074224 465.497688,130.897273 C464.403331,129.876223 463.198007,128.926805 461.977378,128.013785 Z" id="Fill-292" fill="#000000"></path>
313
- <path d="M442.757253,141.201087 L442.841434,141.192955 C443.449836,141.065179 444.039105,140.869642 444.601589,140.616413 C446.338785,139.838138 447.823438,138.503842 448.772391,136.834617 C448.653772,136.728911 448.5275,136.624367 448.412707,136.515951 C448.324699,136.4358 448.282609,136.324286 448.290261,136.213547 C448.240518,136.246071 448.198427,136.286728 448.175469,136.340161 C447.035195,138.419432 444.984232,139.950039 442.688377,140.434815 C442.58889,140.455337 442.512362,140.512643 442.458792,140.586985 C442.397569,140.67217 442.366958,140.780973 442.393743,140.892874 C442.432007,141.074085 442.585064,141.198376 442.757253,141.201087 Z" id="Fill-293" fill="#000000"></path>
314
- <path d="M448.772391,136.834617 C451.646035,139.340971 455.089816,141.009422 458.449416,142.601594 C458.288706,143.099922 458.135649,143.568823 457.806577,143.904139 L457.74918,143.998616 C457.668825,144.145365 457.691784,144.328899 457.810403,144.451641 C457.886932,144.524823 457.982592,144.562381 458.078253,144.563543 C458.17774,144.565091 458.277227,144.527146 458.353755,144.448931 C458.384367,144.414857 458.418804,144.378848 458.445589,144.343225 C458.843537,143.8902 459.015726,143.344633 459.184089,142.81378 C459.2147,142.716205 459.249138,142.618631 459.27975,142.521056 C459.340972,142.334038 459.256791,142.129208 459.084602,142.045573 C455.537508,140.365893 451.867967,138.629295 448.921621,135.940957 C448.764738,135.797692 448.523673,135.810083 448.382096,135.968835 C448.324699,136.038919 448.290261,136.126039 448.290261,136.213547 C448.282609,136.324286 448.324699,136.4358 448.412707,136.515951 C448.5275,136.624367 448.653772,136.728911 448.772391,136.834617 Z" id="Fill-294" fill="#000000"></path>
315
- <path d="M324.006113,16.5946735 C322.363047,12.9216819 320.02625,9.58129625 317.480531,6.49452746 C316.953632,5.85564531 315.841673,6.71871702 316.337961,7.38663927 C318.712639,10.5825988 320.558888,14.0255928 322.296467,17.6060433 C322.864691,18.7765528 324.524594,17.7531798 324.006113,16.5946735 Z" id="Fill-295" fill="#000000"></path>
316
- <path d="M332.481641,0.745362509 C332.423097,-0.248583237 331.015738,-0.248583237 330.957194,0.745362509 C330.713834,4.8725412 330.674039,9.11665469 330.85809,13.246931 C330.908216,14.370202 332.53062,14.370202 332.580363,13.246931 C332.764414,9.11665469 332.724619,4.8725412 332.481641,0.745362509 Z" id="Fill-296" fill="#000000"></path>
317
- <path d="M346.10103,1.23594656 C344.320213,4.76683525 342.582251,8.62684504 341.799748,12.529447 C341.577815,13.6352939 343.119864,14.073993 343.469982,12.9956373 C344.685254,9.25643436 345.727572,5.58111959 347.391683,1.99950753 C347.796519,1.1279174 346.5426,0.359710011 346.10103,1.23594656 Z" id="Fill-297" fill="#000000"></path>
318
- <path d="M359.501548,11.8073165 C355.598596,12.6994284 351.956224,13.9826135 348.500963,16.0583997 C347.573821,16.6151951 348.390762,18.005635 349.340481,17.5115662 C352.697019,15.7652883 356.229956,14.1998334 359.880364,13.1985308 C360.770773,12.9542068 360.395018,11.6032615 359.501548,11.8073165 Z" id="Fill-298" fill="#000000"></path>
319
- <path d="M912.959651,135.679983 C905.540216,135.130932 899.43707,128.393629 899.456202,120.882311 C899.456202,120.586876 899.050601,120.605462 899.012337,120.882311 C898.60291,124.248252 898.354192,127.68931 897.680742,131.013433 C897.363149,132.579275 896.766227,134.044832 895.668043,135.216116 C894.393844,136.579839 892.350534,136.965879 890.613338,137.323653 C890.406711,137.365083 890.490892,137.672908 890.693692,137.633414 C893.850492,137.014666 896.299403,136.014138 897.573602,132.842959 C898.208788,131.258919 898.373324,129.492119 898.579951,127.810504 C898.778925,126.259375 898.974073,124.708634 899.16922,123.157506 C900.087562,129.374023 905.00069,134.652738 911.084703,135.961866 C908.9266,136.712262 907.537609,138.863939 906.833547,141.125969 C905.896073,144.145752 905.662661,147.521373 905.73919,150.776962 C904.805542,149.859682 903.466294,149.159622 902.532647,148.754997 C899.731705,147.540733 896.567252,147.39321 893.628559,148.130441 C895.139997,146.372934 896.406543,144.005586 894.581339,142.042862 C893.559684,140.941662 891.539332,140.401129 890.16182,139.914804 C888.585333,139.360332 886.95145,139.011463 885.298435,138.793082 C886.144075,138.460476 887.00502,138.261454 887.94632,138.173172 C888.283046,138.140647 888.294525,137.600502 887.94632,137.624121 C886.568808,137.715113 885.321394,138.07521 884.096938,138.70751 C883.821436,138.850775 883.982146,139.221326 884.242342,139.247269 C887.100681,139.533798 889.8404,140.271803 892.465327,141.463996 C894.106862,142.210133 895.323665,143.282294 894.749701,145.258182 C894.382365,146.515424 893.387495,147.591844 892.492111,148.494023 C892.293137,148.698465 892.492111,149.082182 892.779093,148.989254 C895.132344,148.222982 897.523858,148.094431 899.942158,148.566817 C901.243142,148.819659 904.522387,149.911567 905.758322,151.545557 C905.79276,152.381524 905.842503,153.207425 905.903726,154.014352 C905.926684,154.29546 906.286368,154.426721 906.443252,154.162263 C907.009562,153.191937 906.864158,152.301374 906.35907,151.524648 C906.301674,148.927689 906.458557,146.338861 906.852679,143.758551 C907.36542,140.397644 908.903642,136.103969 912.959651,136.237553 C913.315508,136.249556 913.307855,135.705926 912.959651,135.679983 Z" id="Fill-299" fill="#000000"></path>
320
- <path d="M513.324155,57.8889181 C512.895596,57.9555167 512.474689,58.0225025 512.049956,58.0891012 C511.67114,58.1495046 511.720884,58.7554746 512.103526,58.6950712 C512.528259,58.6280854 512.949166,58.5610995 513.373899,58.4945009 C513.756541,58.4340975 513.706797,57.8281275 513.324155,57.8889181 Z" id="Fill-300" fill="#000000"></path>
321
- <path d="M507.462074,74.7360468 C508.556431,71.595457 509.654615,68.4548672 510.748972,65.3138903 C510.886723,64.9282378 510.31276,64.6610689 510.171182,65.0509806 L506.861326,74.4622955 C506.719748,74.8642104 507.31667,75.1426082 507.462074,74.7360468 Z" id="Fill-301" fill="#000000"></path>
322
- <path d="M499.323272,71.3244161 C496.985327,66.1459859 494.119336,61.2045228 490.90514,56.5364239 C490.606679,56.1062433 489.960013,56.5735953 490.250821,57.0076479 C493.357877,61.6846525 496.044027,66.5649377 498.454673,71.6446316 C498.711044,72.1812926 499.571989,71.8754036 499.323272,71.3244161 Z" id="Fill-302" fill="#000000"></path>
323
- <path d="M490.109244,82.6407614 C486.826172,79.1462696 482.590322,76.7816313 477.922085,75.8167256 C477.405518,75.7102453 477.279246,76.5074928 477.78816,76.6263636 C482.330125,77.6973624 486.286647,79.9578436 489.554412,83.3307541 C489.95236,83.7415747 490.491886,83.0492588 490.109244,82.6407614 Z" id="Fill-303" fill="#000000"></path>
324
- <path d="M694.157103,169.8807 C693.552528,173.780979 693.104836,177.710297 692.607401,181.626064 C692.534699,182.184796 693.407124,182.178988 693.472173,181.626064 C693.958129,177.747469 694.493828,173.868873 694.868818,169.977887 C694.907082,169.56939 694.222152,169.474913 694.157103,169.8807 Z" id="Fill-304" fill="#000000"></path>
325
- <path d="M705.345565,178.713536 C702.161981,180.803261 699.494964,183.505927 697.394257,186.701499 C697.095796,187.158396 697.822816,187.583931 698.121277,187.129744 C700.145456,184.038716 702.69768,181.454147 705.728207,179.37565 C706.129982,179.100737 705.758819,178.442108 705.345565,178.713536 Z" id="Fill-305" fill="#000000"></path>
326
- <path d="M681.939333,163.63282 C681.893415,163.117068 681.093693,163.108162 681.135784,163.63282 C681.34241,166.341293 681.560517,169.048604 681.793928,171.755141 C681.839846,172.295287 682.674006,172.301482 682.631915,171.755141 C682.413809,169.046281 682.180397,166.339357 681.939333,163.63282 Z" id="Fill-306" fill="#000000"></path>
327
- <path d="M466.278278,229.005565 C468.528215,225.455703 470.965647,220.963006 471.474561,216.715795 C471.528131,216.259672 470.915904,216.065297 470.713103,216.481151 C469.813894,218.323068 469.251409,220.353551 468.436381,222.242319 C467.521866,224.356826 466.40455,226.364077 465.256623,228.355066 C464.912245,228.957939 465.907115,229.592175 466.278278,229.005565 Z" id="Fill-307" fill="#000000"></path>
328
- <path d="M473.548483,230.906723 C476.211674,229.034217 478.909302,227.200045 481.538055,225.279526 C481.974267,224.96086 481.499791,224.305715 481.055926,224.598439 C478.327686,226.381501 475.660669,228.257104 472.966867,230.089341 C472.434994,230.452149 473.020436,231.277275 473.548483,230.906723 Z" id="Fill-308" fill="#000000"></path>
329
- <path d="M483.642588,241.915243 C484.178287,241.973323 484.316039,241.143551 483.776513,241.077727 C479.219242,240.51977 474.650493,239.963749 470.08557,239.478973 C469.523085,239.419344 469.377681,240.286675 469.943992,240.356758 C474.501262,240.924395 479.077665,241.420787 483.642588,241.915243 Z" id="Fill-309" fill="#000000"></path>
330
- <path d="M847.810964,132.208723 C847.566073,128.758373 847.305876,125.306473 846.88497,121.872772 C846.708954,120.397922 844.42458,120.336357 844.554678,121.872772 C844.814875,124.930888 845.208996,127.976613 845.62225,131.017305 C846.10438,134.576847 846.858185,138.206084 846.770177,141.808218 C846.743392,142.742922 848.097946,142.71001 848.182127,141.808218 C848.469109,138.621164 848.048203,135.389195 847.810964,132.208723 Z" id="Fill-310" fill="#000000"></path>
331
- <path d="M857.453552,120.973303 C855.303102,127.427562 854.572255,134.660095 853.994465,141.416758 C853.921763,142.23414 855.283969,142.423481 855.414068,141.611133 C855.942114,138.24132 856.581127,134.894739 857.26223,131.552804 C857.939507,128.205836 858.949683,124.916561 859.561911,121.561462 C859.822108,120.165601 857.908896,119.610355 857.453552,120.973303 Z" id="Fill-311" fill="#000000"></path>
332
- <path d="M721.940764,49.8436494 C720.861712,49.43128 720.253311,47.9653359 719.648736,47.0643184 C719.032682,46.1389073 718.412801,45.213109 717.800573,44.2873107 C716.560812,42.4391989 715.313398,40.5918614 713.939712,38.8459708 C712.92571,37.5542672 711.016325,39.0674499 711.949972,40.4029072 C713.476715,42.5890458 715.187126,44.6385023 716.878405,46.69609 C718.11434,48.2026903 719.445936,50.5955943 721.393585,51.212406 C722.277489,51.4935141 722.828494,50.1836121 721.940764,49.8436494 Z" id="Fill-312" fill="#000000"></path>
333
- <path d="M719.06712,55.2118083 C715.435844,52.8680788 711.429578,51.1887867 707.262603,50.1197239 C705.869785,49.7631115 705.280516,52.1513692 706.638896,52.5923914 C710.553327,53.8666709 714.463932,55.1672801 718.38219,56.4256844 C719.090078,56.6521971 719.767355,55.6656082 719.06712,55.2118083 Z" id="Fill-313" fill="#000000"></path>
334
- <path d="M716.947281,60.7882814 C713.446104,59.895008 709.432185,59.8171806 705.843,60.2721421 C704.446356,60.4498675 704.43105,62.7506176 705.881264,62.8067618 C709.504887,62.9469287 713.384881,62.8838149 716.966413,62.3092082 C717.880928,62.1628461 717.735524,60.9900133 716.947281,60.7882814 Z" id="Fill-314" fill="#000000"></path>
335
- <path d="M727.592391,48.2894234 C727.297757,44.4131511 727.473772,40.563983 727.443161,36.6861619 C727.431681,35.2848804 725.396024,34.947628 725.239141,36.4282858 C724.818234,40.450533 725.434288,44.56687 726.387068,48.4667616 C726.574563,49.2310969 727.653614,49.0909301 727.592391,48.2894234 Z" id="Fill-315" fill="#000000"></path>
336
- <path d="M736.886774,40.4857683 C734.617705,42.7601887 732.769542,45.7850053 731.694317,48.8287948 C731.4456,49.53505 732.367768,50.1038487 732.834591,49.488973 C734.705712,47.0294703 736.641883,44.5502204 738.413517,42.0225703 C739.09462,41.0503078 737.793636,39.5785556 736.886774,40.4857683 Z" id="Fill-316" fill="#000000"></path>
337
- <path d="M717.134776,68.3414173 C714.28409,69.0801974 711.483148,70.6576555 709.198773,72.5181577 C708.188598,73.3452197 709.378615,74.8878297 710.430882,74.1293024 C712.719083,72.4798248 715.079986,71.187734 717.559509,69.860408 C718.290356,69.4670115 718.056944,68.1021269 717.134776,68.3414173 Z" id="Fill-317" fill="#000000"></path>
338
- <path d="M672.442149,196.960397 C668.535371,195.746909 666.201253,191.806748 666.981843,187.74036 C667.020107,187.506103 666.671903,187.40272 666.625986,187.640849 C666.35431,189.258964 665.933403,190.83255 665.367092,192.369352 C664.678336,194.229854 663.561021,196.285506 661.334042,196.318418 C661.188638,196.320354 661.188638,196.541058 661.334042,196.548415 C663.032974,196.630889 664.230645,195.432114 665.015061,194.032768 C665.692338,192.825862 666.159162,191.459816 666.499714,190.077507 C666.782869,193.196026 668.753477,195.930829 671.738088,197.114891 C668.734345,198.034494 667.276478,201.074024 666.201253,203.896334 C665.420662,200.840155 663.46536,198.219963 660.760079,196.607657 C660.545799,196.476009 660.339172,196.824103 660.561105,196.955364 C663.369699,198.625363 665.317349,201.400435 665.964014,204.628145 C666.006105,204.838008 666.285434,204.795803 666.34283,204.628145 C667.463972,201.592099 668.925666,198.034881 672.442149,197.335208 C672.637297,197.296488 672.614339,197.013057 672.442149,196.960397 Z" id="Fill-318" fill="#000000"></path>
339
- <path d="M660.224379,208.052166 C658.992271,207.526347 658.253771,206.32912 658.280556,204.983983 C658.288209,204.744692 657.928525,204.74779 657.917046,204.983983 C657.836691,206.492519 657.465528,207.891865 656.891564,209.281143 C656.845647,209.393044 657.033142,209.471259 657.086712,209.363617 C657.568841,208.359604 657.894087,207.300995 658.104541,206.21296 C658.410655,207.180576 659.11089,207.983631 660.078975,208.40026 C660.331519,208.507902 660.476923,208.158646 660.224379,208.052166 Z" id="Fill-319" fill="#000000"></path>
340
- <path d="M675.572164,210.555035 C675.549205,210.424936 675.52242,210.392411 675.430586,210.297159 C675.15891,210.013728 674.914019,209.760498 674.722698,209.412017 C674.355361,208.751452 674.32475,207.946847 674.519897,207.231686 C674.584947,206.995881 674.255874,206.920377 674.167866,207.133725 C673.701043,208.276743 672.905147,209.291985 672.109251,210.216234 C672.021243,210.326199 672.170473,210.484952 672.26996,210.377697 C672.962543,209.648984 673.509722,208.842444 674.037768,208.008799 C674.033942,208.338308 674.068379,208.668203 674.156387,209.003907 C674.240568,209.341934 674.416584,209.656728 674.596426,209.947129 C674.707392,210.114787 674.994374,210.320004 675.132125,210.508571 L675.124472,210.514766 L675.112993,210.552325 C675.086208,210.632475 675.135952,210.718047 675.197174,210.761414 C675.281356,210.818719 675.342578,210.832659 675.438239,210.793164 C675.541552,210.750185 675.591296,210.66926 675.572164,210.555035 Z" id="Fill-320" fill="#000000"></path>
341
- <path d="M121.542011,99.0995272 C121.576449,97.5739541 121.359491,96.0661922 120.672265,94.6587155 C119.947923,93.1757345 118.595665,92.0160666 117.017265,91.6118284 C118.215701,90.9218357 119.272177,90.05102 120.18937,88.9947348 L120.190901,88.99125 C121.075953,88.1301143 121.44635,86.9708336 121.739454,85.7724455 C122.021462,84.6178113 122.287016,83.4581434 122.550274,82.2980883 C122.57438,86.5340705 124.192575,90.6759629 127.060096,93.7944822 C124.043727,93.6485073 122.448873,96.4053805 121.542011,99.0995272 Z M127.715563,93.9032857 C124.135561,90.2775327 122.423619,85.1300786 123.05804,80.0511591 C123.084825,79.8370368 122.735855,79.7948318 122.689555,80.0008229 L121.638437,84.6727938 C121.323905,86.0709778 121.066004,87.5624772 120.123556,88.6632905 C120.055445,88.6253448 119.970881,88.6261192 119.902771,88.704721 C118.889534,89.874069 117.703726,90.8118705 116.33731,91.5247081 C116.193436,91.599438 116.21142,91.8704789 116.38514,91.8948726 C120.697137,92.5089738 121.509104,97.4345616 120.985649,101.033598 C120.949681,101.280632 121.301712,101.395244 121.365995,101.139691 C122.115974,98.1609513 123.603305,93.6299216 127.518884,94.2459589 C127.70791,94.2757734 127.870915,94.0608766 127.715563,93.9032857 Z" id="Fill-321" fill="#000000"></path>
342
- <path d="M124.895871,74.7151379 C124.532744,72.9738937 124.347545,71.2446526 124.385044,69.4646882 C124.390018,69.2401115 124.077399,69.2555995 124.050614,69.4646882 C123.939648,70.3281472 123.733404,71.1524987 123.442596,71.9706551 C123.167093,72.7469937 122.520427,74.561419 121.554256,74.6384721 C121.407321,74.6504753 121.403494,74.8785369 121.554256,74.8731161 C122.415583,74.8425272 122.809705,73.959321 123.181633,73.2848163 C123.565806,72.587854 123.85011,71.8393938 124.058267,71.0704121 C124.111072,72.3280419 124.279434,73.5787021 124.5844,74.801871 C124.635674,75.0074749 124.938344,74.9199674 124.895871,74.7151379 Z" id="Fill-322" fill="#000000"></path>
343
- <path d="M121.402347,107.069292 C121.172761,107.613309 120.886927,108.105055 120.537957,108.571633 C120.063098,107.341494 119.603927,106.10516 119.117589,104.880055 C119.062106,104.740276 118.837877,104.79642 118.889917,104.943556 C119.359419,106.278627 119.862976,107.601693 120.342427,108.932892 C120.379161,109.035113 120.521121,109.100937 120.603772,109.002975 C121.066387,108.453536 121.419948,107.858795 121.694685,107.19397 C121.764326,107.025151 121.473135,106.901246 121.402347,107.069292 Z" id="Fill-323" fill="#000000"></path>
344
- <path d="M107.987288,86.4457886 C105.593478,85.5633568 103.24061,84.6061952 100.906874,83.5719805 C100.293499,83.3001652 99.7589473,84.2147347 100.377297,84.4888732 C102.783352,85.5548384 105.260962,86.4546942 107.788314,87.1764375 C108.259347,87.3111835 108.434215,86.6103492 107.987288,86.4457886 Z" id="Fill-324" fill="#000000"></path>
345
- <path d="M107.125578,91.3465955 C104.78725,91.4732103 102.467673,91.9881881 100.258678,92.7618163 C99.616987,92.986393 99.8836887,94.0113149 100.541068,93.7987414 C102.743558,93.086291 104.962118,92.5418859 107.217795,92.0377498 C107.600054,91.9521784 107.517021,91.3256866 107.125578,91.3465955 Z" id="Fill-325" fill="#000000"></path>
346
- <path d="M108.498499,96.9141631 C106.524447,98.6488249 104.59172,100.45086 102.706059,102.283096 C102.23273,102.742704 102.944062,103.455542 103.422365,103.008324 C105.340934,101.214034 107.232335,99.3709553 109.059835,97.4821874 C109.421432,97.1081509 108.881524,96.5776851 108.498499,96.9141631 Z" id="Fill-326" fill="#000000"></path>
347
- <path d="M231.397864,98.2813709 C229.641536,99.6570971 228.093747,101.186929 226.177092,102.359762 C224.599457,103.324668 223.194012,104.382889 221.930144,105.748161 C221.560129,106.14814 222.105012,106.66273 222.510613,106.335545 C225.690753,103.766852 229.490775,102.264898 232.253835,99.1475402 C232.789152,98.5438933 232.002056,97.8078237 231.397864,98.2813709 Z" id="Fill-327" fill="#000000"></path>
348
- <path d="M235.874397,119.110865 C232.134451,115.609404 227.698095,112.490497 223.181385,110.11734 C222.805247,109.91948 222.524771,110.436007 222.855756,110.681493 C226.998242,113.756645 231.089454,116.877101 235.195207,120.001815 C235.70833,120.392501 236.335098,119.542207 235.874397,119.110865 Z" id="Fill-328" fill="#000000"></path>
349
- <path d="M227.68432,127.567341 C226.889189,126.056869 226.085258,124.551818 225.270995,123.0518 C224.806084,122.194923 224.342322,121.337272 223.870906,120.483881 C223.741191,120.249237 223.003074,119.21812 222.822466,118.751542 L222.846955,118.694624 C222.926545,118.50838 222.903969,118.29387 222.714561,118.183131 C222.677445,118.161447 222.640329,118.139764 222.603212,118.118081 C222.367505,117.980624 222.119552,118.118855 222.029249,118.354661 C221.671478,119.286267 222.974375,120.855594 223.37041,121.628835 C224.482369,123.799486 225.627617,125.953486 226.782049,128.101292 C227.104617,128.70068 228.000765,128.168665 227.68432,127.567341 Z" id="Fill-329" fill="#000000"></path>
350
- <path d="M548.917546,88.8398543 C548.163741,89.8667121 547.643347,91.0395449 547.268358,92.2677474 C546.713526,89.1399353 545.179131,86.2924569 542.102686,85.2919287 C542.603948,84.9651308 543.074598,84.5992256 543.514636,84.1853074 C543.656214,84.2550036 543.839882,84.2371924 543.943196,84.053659 C545.588558,81.1953389 546.81684,78.1108934 547.666306,74.9215162 C548.221137,79.5927127 549.430287,84.2844309 553.084522,87.321638 C551.496556,87.4149535 550.107564,87.2225144 548.917546,88.8398543 Z M554.68014,87.2240632 C549.560386,83.8720615 548.871629,77.4828528 548.347409,71.8668851 C548.297666,71.3495842 547.486464,71.1447547 547.383151,71.7348495 C546.705874,75.6161554 545.481418,79.2465548 543.797792,82.772797 C543.648561,82.7298177 543.472546,82.7615682 543.327142,82.9145127 C542.473849,83.813207 541.544028,84.5012637 540.438192,85.0514767 C539.925451,85.3050936 540.246871,85.9625614 540.694562,86.0179312 C545.642128,86.6269988 546.740311,92.1442302 546.468635,96.3089674 C546.426545,96.9846337 547.398456,96.9463008 547.482638,96.3089674 C547.75814,94.2080131 548.244096,92.0904092 549.238966,90.2101597 C550.471074,87.8648814 552.472294,88.6241831 554.557695,88.1746424 C555.016865,88.0755189 555.035998,87.4532864 554.68014,87.2240632 Z" id="Fill-330" fill="#000000"></path>
351
- <path d="M576.555803,72.0674554 C574.803301,71.0278199 573.096716,69.9672755 571.700072,68.4556417 C569.702679,66.2977688 569.672067,63.2621106 569.901653,60.4974933 C569.951396,59.8996544 569.063666,59.9252097 568.99479,60.4974933 C568.638933,63.3329684 568.091754,66.1150098 567.402998,68.8838863 C567.292032,69.321811 567.942524,69.5003108 568.068796,69.0697429 C568.47057,67.7373832 568.811122,66.3930203 569.10193,65.0378157 C569.304731,66.1142354 569.672067,67.1589045 570.288122,68.1594327 C571.233248,69.7152075 572.752338,70.870229 574.309693,71.8595283 C573.066105,71.8552691 571.791906,72.072489 570.957746,72.9502744 C570.004966,73.9492537 569.377433,75.1960419 568.872345,76.5005231 C568.42848,74.0499261 566.783118,72.0364793 564.429867,71.1219098 C565.463002,70.7579406 566.396649,70.1647482 567.184892,69.2993533 C567.571361,68.8773039 566.978265,68.2802395 566.565011,68.6705384 C565.321424,69.8325295 564.028093,70.5031621 562.321508,70.6270666 C561.732239,70.6700459 561.739891,71.4963335 562.321508,71.5489929 C566.26655,71.9063797 568.784337,75.4430764 567.919565,79.3313519 C567.785641,79.9226083 568.619801,80.1506698 568.811122,79.5803223 C569.388912,77.8425629 569.989661,76.1315203 570.896523,74.5366381 C572.036797,72.5382922 574.405353,72.7760338 576.310912,72.9878329 C576.808347,73.0435899 576.946098,72.2997762 576.555803,72.0674554 Z" id="Fill-331" fill="#000000"></path>
352
- </g>
353
- </g>
354
- </g>
355
- </g>
356
- </g>
357
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="750" height="500"><defs><path id="a" d="M0 0h396v360H0z"/><path id="c" d="M0 0h396v360H0z"/><path id="e" d="M0 0h396v360H0z"/></defs><g fill="none" fill-rule="evenodd"><path fill="#6B46C1" fill-rule="nonzero" d="M0 0h750v500H0z"/><g transform="translate(177 170)"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g fill-rule="nonzero" mask="url(#b)"><path fill="#38B2AD" d="M63.1 360.04c-4.78-23.34-14.06-89.39-14.06-143-2.61-.26-4.27-.65-4.96-1.16-1.9-1.38-3.52-3.14-5.43-4.5-2.19-1.58-4.67-2.55-7.06-3.75-5.18-2.6-9.94-5.9-14.67-9.22a10.38 10.38 0 01-2.5-2.17c-.14 1.6-.78 4.11-.96 5.71-.9 5.6-8.97 64.29-8.97 69.2 0 2.7-4.49 43.1 2.7 88.9H63.1z"/><path fill="#8A6D62" d="M62.46 78.68c-.21-.44-.5-1-.97-1.28-.71-.44-1.66-.2-2.3.25a7.22 7.22 0 00-1.74 2.1l-8.33 13a65.98 65.98 0 0111.6-4.96c.6-.2 1.21-.35 1.83-.46a10.63 10.63 0 00-.1-8.65z"/><path fill="#FFF" d="M14.48 188.83a5.61 5.61 0 01.1-.48v-.03c-.02.06-.04.12-.06.18l-.04.18a1.5 1.5 0 00-.03.23l.03-.08z"/><path fill="#E6E6E6" d="M95.43 64.72a2.45 2.45 0 00-2.24-1.69c-.88 0-1.76.56-2.14 1.36a5.4 5.4 0 00-.33 2.24l-.03 5.03c-.01 1.57-.02 3.19.55 4.64.36.92 1.18 1.9 2.13 1.9.09 0 .17 0 .26-.02.54-.1 1.04-.54 1.34-1.18.28-.6.37-1.3.45-2.03.3-3.02.36-6.08.17-9.1-.03-.43-.06-.8-.16-1.15z"/><path fill="#F6E05E" d="M82.99 42.7c.47-.5 1.13-.8 1.82-.8 1.33-.02 2.6-.03 3.85-.04 3.32-.02 6.46-.04 10.01-.2 1.39-.07 2.54 1 2.63 2.36.22 3.19.25 6.15.28 9.02.01.86.02 1.72.04 2.58a2.55 2.55 0 01-2.43 2.6c-4.77.17-9.34.3-13.96.4h-.05a2.49 2.49 0 01-2.48-2.4c-.08-1.97-.15-3.93-.2-5.9-.07-1.92-.14-3.85-.2-5.73-.04-.7.21-1.38.69-1.88zm13.19 32.35c-.09.8-.19 1.56-.53 2.28-.4.86-1.1 1.46-1.88 1.6-.13.03-.26.05-.4.05-1.32 0-2.38-1.2-2.84-2.4-.62-1.59-.61-3.36-.6-4.92l.02-5.03c0-.82.02-1.75.41-2.58a3.17 3.17 0 013.04-1.78c1.25.1 2.38 1 2.76 2.22.13.43.16.87.2 1.32.19 3.07.13 6.18-.19 9.24zM67.63 91.3c.08 2.12-1.05 4.34-3.06 6.1l.02 10.76c0 1.2 0 2.4 0 3.6a5.2 5.2 0 01.01 3.25l-.02.05c-.02 3.62 0 7.25.05 10.87.04 3.27.09 8.21 2.63 10.4 2.44 2.08 4.91 2.41 8.36 2.3.16-.02 1.07.08 1.3.23a42.77 42.77 0 004.74-2.47c2.05-1.18 4.17-2.4 6.3-3.02 6-1.79 14.96-2.4 20.52 1.78a9.4 9.4 0 011.85 1.94 5.8 5.8 0 011.4-.13c.19 0 .39 0 .59 0 1.58.02 3.54.04 4.9-.63 2.5-1.23 2.3-4.9 2.17-7.32l-.01-.21c-.23-4.44-.17-9-.12-13.4v-.08c0-.07.03-.14.07-.2-.14-4 .06-40.64.06-40.83v-.42c-.1-12.09-.18-24.59-1.1-36.79-.02-.1-.03-.2-.04-.29-.42-3.67-3.28-4.4-8.06-4.4-7.9-.03-15.93.3-23.7.63-4.6.2-9.35.4-14.03.52-2.2.06-5.02.6-6.4 1.71-2.47 1.99-2.35 4.9-2.24 7.73.02.42.03.84.04 1.25.09 4 .23 8.07.43 12.08.24 4.8.24 9.67.24 14.37v2.63l.02 14c.5.08.97.26 1.4.57a4.3 4.3 0 011.69 3.42z"/><path fill="#8A6D62" d="M62.14 99.12c-.8.46-1.6.88-2.4 1.3l-.58.3a9.44 9.44 0 00-1.79 2.09 37.44 37.44 0 00-3.83 7.29c1.8-.33 3.56-.6 5.24-.87.37-.06.78-.12 1.2-.16a21.9 21.9 0 012.16-9.95z"/><path fill="#FFF" d="M48.25 208.79v.02l.05-.03c-.04-.05-.09-.1-.14-.14v.05c.03.02.07.06.09.1z"/><path fill="#8A6D62" d="M57.11 101.84c-.13.08-.27.16-.4.24a83.43 83.43 0 00-11.67 9.2c-.36.34-.69.75-1.03 1.19l-.05.06a60.32 60.32 0 018.7-2.27 38.23 38.23 0 014.45-8.42z"/><path fill="#4B5668" d="M85.83 50.29c.05-.67.21-1.31.38-1.97a4.6 4.6 0 012.1-3.07 6.33 6.33 0 013.5-1.13c1.28 0 3.16.35 4.28 1.34a6 6 0 012.08 5.33c-.27 2.16-1.3 3.82-2.9 4.68-.86.46-2 .72-3.2.72-1.46 0-2.9-.37-3.94-1.02a5.36 5.36 0 01-2.3-4.88zm-.8 4.8c.02.82.69 1.46 1.5 1.47v.19l.04-.2c3.74-.07 7.43-.18 11.29-.32.83-.03 1.5-.74 1.48-1.59-.01-.7-.02-1.4-.03-2.1-.03-2.3-.05-4.7-.23-7.26a1.55 1.55 0 00-1.53-1.45h-.07c-2.89.13-5.43.16-8.13.17-1 .01-2.03.02-3.1.03a1.58 1.58 0 00-1.56 1.65c.06 1.52.12 3.08.17 4.63.05 1.6.1 3.21.17 4.78z"/><path fill="#FFF" d="M84.85 44.26c.36-.39.86-.6 1.4-.61 1.06-.02 2.1-.02 3.1-.03 2.69-.02 5.23-.04 8.11-.17a1.92 1.92 0 012 1.8c.18 2.57.2 4.97.23 7.3.01.69.02 1.38.03 2.08a1.95 1.95 0 01-1.85 1.98c-3.86.14-7.56.25-11.3.33h-.04a1.9 1.9 0 01-1.89-1.84c-.06-1.59-.11-3.18-.16-4.77a748 748 0 00-.17-4.63c-.02-.53.17-1.05.54-1.44zm-1.39 11.92c.03.93.79 1.67 1.72 1.67h.03c4.63-.1 9.19-.23 13.95-.4.95-.04 1.71-.85 1.7-1.82-.02-.86-.03-1.72-.04-2.58-.03-2.86-.07-5.81-.28-8.98a1.77 1.77 0 00-1.75-1.65h-.08c-3.57.17-6.71.2-10.04.22-1.25 0-2.52.01-3.85.03a1.82 1.82 0 00-1.77 1.89c.08 1.88.14 3.8.2 5.73.07 1.98.13 3.96.21 5.89zM63.85 87.23V85.9c-.12.45-.26.9-.43 1.34.14 0 .28 0 .43 0z"/><path fill="#8A6D62" d="M43.41 111.98l.1-.13c-.04 0-.08 0-.12 0-.93 0-1.85-.25-2.64-.74a.39.39 0 01.1-.7c.1-.03.2-.01.3.04.87.54 1.95.75 2.96.57.04 0 .07 0 .1 0a92.9 92.9 0 018.52-7.14 6.12 6.12 0 01-1.74-1.53.39.39 0 01.07-.55.38.38 0 01.53.07 5.35 5.35 0 001.83 1.51c.94-.68 1.9-1.33 2.88-1.95.79-.49 1.59-.94 2.41-1.36.07-.05.13-.1.2-.15a.37.37 0 01.24-.07l.25-.13a29.68 29.68 0 003.75-2.16c2.4-1.71 3.8-4.04 3.72-6.22a3.53 3.53 0 00-1.34-2.82c-.72-.5-1.6-.58-2.52-.48-.1.08-.23.1-.34.05-.58.1-1.17.26-1.72.44a67.88 67.88 0 00-26.65 16.1 20.98 20.98 0 00-3.89 4.75c-1.02 1.86-1.55 3.97-2.06 6.02-.6 2.38-1.4 4.83-2.18 7.2a132.3 132.3 0 00-1.77 5.66c.24-.27.49-.53.73-.8l4.25-4.65c1.68-1.85 3.42-3.75 5.41-5.35a29.62 29.62 0 017.66-4.36c.33-.33.64-.71.96-1.12z"/><path fill="#8A6D62" d="M25.4 144.63a.38.38 0 01.46-.29c3.97.97 8.15.63 11.92-.97a.38.38 0 01.5.2c.08.2 0 .43-.2.51a19.74 19.74 0 01-12.4 1.01.39.39 0 01-.28-.46zm-6.43 48.56c1.6.98 3.2 1.95 4.78 2.95 3.17 1.98 6.33 4.01 9.28 6.32 1.4 1.09 2.7 2.35 4.18 3.33 1.51 1 3.19 1.66 4.76 2.56a24.85 24.85 0 014.98 3.64c.18-1.46.37-2.93.59-4.38.5-3.43.82-7.07 2.2-10.28a21.37 21.37 0 015.58-7.6c4.7-4.13 8.6-8.07 11.94-12.06a141.18 141.18 0 0013.63-19.84c3.5-6.02 10.52-11.12 18.78-13.62a25.22 25.22 0 016.66-1.1c1.13-.05 2.3-.08 3.29-.57.8-.4 1.23-.96 1.3-1.72.16-1.75-1.58-4.05-2.9-5.04-5.33-4-14.02-3.4-19.85-1.66-2.04.6-4.12 1.8-6.13 2.95-4.55 2.61-9.25 5.31-14.3 2.02a12.79 12.79 0 01-3.44-3.31c0 .15-.08.3-.21.36a15.1 15.1 0 00-8.26 12.34.38.38 0 01-.38.36h-.03a.39.39 0 01-.35-.41 15.68 15.68 0 018.69-12.99c.1-.05.2-.05.3-.01a18.56 18.56 0 01-2.46-5.64 32.3 32.3 0 01-.81-10.58c-.14.08-.29.16-.44.24-2.02 1.08-4.29 1.7-6.48 2.31-.29.08-.58.16-.87.24.18.85.31 1.7.37 2.56.01.21-.14.4-.36.41H53a.38.38 0 01-.38-.36c-.06-.8-.17-1.6-.35-2.4-2.66.78-5.14 1.68-7.1 3.52-.82.77-1.54 1.7-2.24 2.61-1.23 1.6-2.5 3.25-4.39 4.1a.38.38 0 01-.5-.2c-.09-.2 0-.43.2-.51 1.7-.77 2.86-2.27 4.09-3.87.71-.93 1.45-1.89 2.32-2.7 2.15-2.01 4.92-2.97 7.7-3.77a.37.37 0 01.11-.05h.08c.38-.11.76-.22 1.14-.33 2.15-.6 4.38-1.2 6.33-2.24 1.4-.74 3.21-2.04 3.88-4 .56-1.67.03-3.94-1.66-4.68-1.03-.45-2.3-.25-3.33-.1-5.18.82-10.82 1.7-15.98 3.73l-.02.02a.38.38 0 01-.28.1 28.79 28.79 0 00-7.35 4.22c-1.94 1.56-3.66 3.45-5.32 5.27L25.69 128c-3.23 3.52-6.56 7.17-6.61 15.68.87 7.2 1.7 14.43 1.59 21.69a68.31 68.31 0 01-.66 8.6c-.4 2.76-.86 5.68-2.03 8.23-1.3 2.81-1.52 6.22-1.7 9.3a184.78 184.78 0 002.68 1.69z"/><path fill="#38B2AD" d="M46.58 212.7a36.87 36.87 0 00-7.42-4.9c-2.27-1.14-4.04-2.75-6.03-4.31-4.96-3.9-10.37-7.11-15.68-10.48-1.01-.64-2.59-1.54-3.29-2.78-.25 1.62-.3 3.4.17 4.6.83 2.16 3.4 3.38 5.19 4.6 3.43 2.37 6.9 4.67 10.6 6.6 3.33 1.76 7 3 9.92 5.46 1.47 1.23 2.84 2.64 4.44 3.7 1 .66 4.29 2.89 4.76-.01.1-.62.11-1.23.07-1.84-.84.4-2.16-.15-2.73-.63z"/><path fill="#4FD2C5" d="M35.46 209.5c-1.04 9.12-3.03 18.13-4.16 27.25.85 2.13 1.73 4.24 2.66 6.34.72-5.1 1.31-10.22 1.76-15.35.5-5.72.67-11.56 1.56-17.26-.6-.35-1.2-.68-1.82-.99zm5.28 3.56c-.7 5.33-.84 10.77-1.34 16.1a281.7 281.7 0 01-2.54 19.87 97 97 0 002.22 3.94c.07-1.27.13-2.55.22-3.82.32-4.96 1.11-9.7 2.06-14.56 1.23-6.38 1.38-12.88 1.9-19.34-.87-.7-1.69-1.45-2.52-2.19zm5.92 146.98c.01-.75-.76-3.59-.9-4.49-.3-1.93-.5-3.7-.76-7.18-.18-.6-.83-17.56-.26-35.01.44-13.35.66-28.2 1.02-34.12.05-.9.4-16.3.9-27.07.2-4.26.8-7.96.9-9.92.01-.33-.36-12.57 0-19.58.05-1.2.83-2.95.9-3.64.04-.51.36-1.81.4-1.92l-2.2.15a201.24 201.24 0 00-2.2 15.4c-.15 1.42 0 2.7 0 5.28 0 2.69-1.17 8.55-1.23 8.97-1.06 8.7-.07 10.16 0 19.83.05 5.54-.07 11.43-.16 12.5-.63 7.47-.95 20.08-1.45 25.81-1 11.75-.15 24.73 0 33.8 0 .8 0 1.6.03 2.41.15 6.28.24 12.52-.03 18.78h5.04z"/><path fill="#4FD2C5" d="M37.84 341.26c-.1-4.3-.8-18.17-.98-22.52 0-14.57 3.52-25.14 2.22-65.87l-2.22-3.85c-1.87 14.31-2.61 69.92-2.95 69.1-.07 6.1.38 12.28.48 18.3.07 4.73.4 9.4.82 14.1.28 3.27.19 6.57.55 9.83h2.12c.29-6.36.1-12.72-.04-19.09zm-6.44 9.25a150.4 150.4 0 01-.83-14.83c-.06-8.23.16-15.03.78-24.43.61-9.4.05-13.34.05-21.42 0-5.56 1.06-21.16 1.07-21.37.92-17.56 1.61-26.09 1.63-26.2.8-6.81 1.33-11.53 1.58-14.17.27-2.78.39-5.2.54-7.21.56-7.3.89-9.64 1.06-10.5l-1.8-1c-.31 2.79-2.06 13.21-3.18 20.48a136.6 136.6 0 00-.95 7.3c-.25 5.4-2.42 26.72-3.28 44.77-.58 12.18 0 24 0 24.17-.06 1.44-.14 2.88-.2 4.34-.26 6.63-.32 13.32.02 19.95.52 10.05 1.87 20 3.25 29.96h.83c-.3-3.26-.22-6.55-.57-9.84z"/><path fill="#4FD2C5" d="M24.05 329.63c-.3-6.87-.3-13.8.09-20.66.16-2.94.14-5.8.11-8.74 0-.64 0-1.28.02-1.91 0-.1-.36-14.24 0-22.67.37-8.7 1.48-11.86 2.45-23.34 1.9-22.62 5.14-44.7 5.16-44.9l-2.21-.9c-.02.4-2.88 16.79-4.58 35.74-1.14 12.69-2.78 26.03-3.34 36.35-.5 9.47.01 16.47 0 16.71-.36 10.3-.99 20.6-.48 30.87.56 11.46 3.2 22.73 3.82 34.17h2.23c-1.43-10.2-2.83-20.42-3.27-30.72z"/><path fill="#4FD2C5" d="M17.46 326.18c-.35-8.68-.32-19.36 0-28.05.17-4.4.12-7.33.17-11.74-.21-.27.1-9.34 1.43-22.18.77-7.42 2.35-17.04 3.37-25.22.87-6.94 1.18-13.4 1.8-18.92.88-7.86 1.9-13.72 1.93-15.63l-1.5-.9c-.22 1.04-3.26 20.86-5.6 40.8-.55 4.71-1.55 9.6-2 14.06-1.48 14.23-1.94 25.6-1.97 25.57-.08 13.23-.28 26.45.18 39.67.27 7.6 1.33 14.95 2.36 22.46.64 4.74 1.1 9.49 1.43 14.25h2.22c-.64-11.45-3.35-22.7-3.82-34.17z"/><path fill="#4FD2C5" d="M13.76 345.7c-1.07-7.37-2.05-14.6-2.3-22.06-.43-13.36-.24-26.71-.18-40.07 0-.24.16-13.52 1.88-25.5 2.91-20.35 6.58-45.27 6.45-45.78.98-6.02 1.47-9.7 1.47-11.03l-1.47-1.03c0 .13-2.01 12.74-4.35 28.88-2.6 17.99-4.59 28.35-5.62 44.74.03 2.44-.43 9.02-.44 11.47-.02 9.3-.94 18.58-.72 27.9.23 9.2 1.13 18.37 2.2 27.5.76 6.55 1.49 13.11 2.48 19.63h2.1c-.33-4.9-.8-9.8-1.5-14.65z"/><path fill="#4FD2C5" d="M6.87 340.72c-1.12-9.63-2.11-19.3-2.22-29-.1-9.2 1.1-18.44.72-27.63-.13-2.99.32-6 .51-9s4-37.9 4.9-43.81c.89-5.91 2.68-15 5.37-33.62.25-1.7-.22-2.05-1.42-1.04-.92 5.53-4.23 26.47-6.65 44.9C6 257.39 4.73 271.46 4.62 271.4c-.98 29.72-2.58 59.57 2.7 88.96h2c-.96-6.52-1.7-13.08-2.45-19.63z"/><path fill="#4FD2C5" d="M16.08 197.1c.1-1.59.19-3.17.33-4.75a6.9 6.9 0 01-2.25-2.12c-.25 1.62-.3 3.4.17 4.6.34.9.99 1.63 1.75 2.27zm3.9-2.5c-.12 1.65-.21 3.3-.3 4.95.48.33.97.66 1.46 1 .15-1.66.28-3.31.4-4.97l-1.56-.98zm5.19 3.3c-.13 1.67-.28 3.33-.44 5 .51.32 1.03.65 1.55.96.21-1.61.42-3.23.6-4.84-.56-.38-1.14-.75-1.71-1.12zm5.23 3.55c-.18 1.48-.38 2.95-.58 4.43a50.46 50.46 0 002.1 1.05c.13-1.37.22-2.75.3-4.14-.6-.45-1.2-.9-1.81-1.34zm5.44 4.2c-.08 1-.18 2-.28 3 .63.33 1.25.66 1.86 1.01.14-.86.3-1.72.49-2.57-.72-.45-1.4-.93-2.07-1.45zm5.55 3.37c-.2 1.05-.38 2.11-.53 3.17.82.73 1.62 1.48 2.48 2.16.1-1.28.24-2.56.4-3.83a36.23 36.23 0 00-2.35-1.5zm7.92 4.32c-.6.28-1.44.09-2.08-.23-.12 1.12-.22 2.25-.3 3.37 1.05.33 2.07.2 2.31-1.3.1-.62.11-1.23.07-1.84z"/><path fill="#FFF" d="M47.72 212.4zM49.2 210.2c-.05-.14-.1-.27-.17-.4.04.14.09.28.12.42l.05-.02z"/><path fill="#F7AE55" d="M88.53 54.51c.92.57 2.21.9 3.55.9 1.08 0 2.08-.22 2.84-.62 1.37-.74 2.25-2.2 2.49-4.1.04-.34.05-.69.03-1.03a5.56 5.56 0 00-1.85-3.62c-.9-.79-2.54-1.15-3.78-1.15a5.59 5.59 0 00-3.07 1 3.86 3.86 0 00-1.8 2.63c-.15.62-.3 1.22-.34 1.83a4.56 4.56 0 001.93 4.16z"/><path fill="#000" d="M23.63 130.05l-.1-.02a.39.39 0 01-.27-.47c.6-2.38 1.4-4.83 2.18-7.2.78-2.36 1.58-4.8 2.17-7.15.52-2.1 1.07-4.26 2.14-6.2a21.63 21.63 0 014.03-4.94 68.62 68.62 0 0126.94-16.28c1.73-.55 3.7-.96 5.24.1a4.3 4.3 0 011.68 3.42c.08 2.45-1.43 5.02-4.05 6.88a30.35 30.35 0 01-3.85 2.22c-1.01.52-2.06 1.06-3.03 1.67a83.43 83.43 0 00-11.67 9.2c-.36.34-.69.75-1.03 1.19-.35.44-.71.9-1.12 1.27a.38.38 0 01-.54-.02.39.39 0 01.03-.55c.36-.34.69-.75 1.03-1.19.35-.44.71-.89 1.12-1.27 4-3.72 8.07-6.93 11.77-9.28 1-.64 2.07-1.18 3.1-1.7a29.74 29.74 0 003.75-2.17c2.4-1.71 3.8-4.04 3.72-6.22a3.53 3.53 0 00-1.34-2.82c-1.26-.87-3.03-.49-4.58 0a67.88 67.88 0 00-26.65 16.1 20.98 20.98 0 00-3.89 4.76c-1.02 1.86-1.55 3.97-2.06 6.02-.6 2.39-1.4 4.83-2.18 7.2-.78 2.36-1.58 4.8-2.17 7.15-.04.17-.2.3-.37.3z"/><path fill="#000" d="M48 94.17a.38.38 0 01-.2-.07.39.39 0 01-.12-.53l9.13-14.24c.51-.8 1.1-1.7 1.95-2.31.83-.6 2.12-.9 3.13-.28.63.4 1 1.07 1.26 1.61a11.42 11.42 0 01-.01 9.55.38.38 0 01-.51.18.39.39 0 01-.18-.51c1.3-2.78 1.3-6.1 0-8.89-.2-.44-.5-1-.96-1.28-.71-.44-1.66-.2-2.3.25a7.22 7.22 0 00-1.74 2.1L48.32 94a.38.38 0 01-.32.18zm-29.3 49.91a.39.39 0 01-.38-.39c.04-8.83 3.48-12.6 6.81-16.23l4.25-4.65c1.68-1.85 3.42-3.75 5.41-5.35 6.89-5.55 16.37-7.03 23.99-8.23 1.12-.17 2.51-.4 3.74.15 2.08.9 2.76 3.65 2.08 5.64-.75 2.2-2.72 3.63-4.25 4.43-2.02 1.08-4.29 1.7-6.48 2.31-3.27.9-6.36 1.76-8.72 3.97-.81.77-1.54 1.7-2.23 2.61-1.24 1.6-2.5 3.25-4.39 4.1a.38.38 0 01-.5-.2c-.09-.2 0-.43.2-.51 1.7-.77 2.86-2.27 4.09-3.87.71-.93 1.45-1.89 2.32-2.7 2.5-2.33 5.82-3.25 9.03-4.15 2.15-.6 4.38-1.2 6.33-2.24 1.4-.74 3.21-2.04 3.88-4 .56-1.67.03-3.94-1.66-4.68-1.03-.45-2.3-.25-3.33-.1-7.92 1.25-16.9 2.65-23.63 8.07-1.94 1.56-3.66 3.45-5.32 5.27L25.69 128c-3.23 3.53-6.57 7.17-6.61 15.7 0 .22-.17.39-.38.4z"/><path fill="#000" d="M60.37 109.8a.38.38 0 01-.38-.37 22 22 0 012.6-11.21c.1-.19.33-.26.51-.16.2.1.26.33.16.52a21.25 21.25 0 00-2.5 10.82c0 .21-.16.4-.37.4h-.02zM53 124.97a.38.38 0 01-.38-.36c-.07-.94-.21-1.88-.44-2.8a.39.39 0 01.28-.47.38.38 0 01.46.28c.24.96.4 1.95.46 2.94.01.21-.15.4-.36.41H53zm2.46 23.87h-.03a.39.39 0 01-.35-.41 15.68 15.68 0 018.69-12.99.38.38 0 01.5.18c.1.2.02.43-.17.52a15.1 15.1 0 00-8.26 12.34.38.38 0 01-.38.36zm-2.5-37.9a.39.39 0 01-.35-.52 38.2 38.2 0 014.14-8.05c.6-.88 1.28-1.8 2.17-2.45a.38.38 0 01.53.08c.12.18.09.42-.08.54a8.79 8.79 0 00-1.99 2.27 37.44 37.44 0 00-4.06 7.88.38.38 0 01-.36.25zm-9.56.92c-.93 0-1.85-.26-2.64-.75a.39.39 0 01.1-.7c.1-.03.2-.01.3.04.87.54 1.95.75 2.96.57a.38.38 0 01.44.31c.04.21-.1.41-.3.45-.29.05-.58.08-.86.08zm9.86-7.75a.38.38 0 01-.17-.04c-.82-.4-1.53-1-2.09-1.72a.39.39 0 01.07-.55.38.38 0 01.53.07 5.35 5.35 0 001.83 1.51c.19.1.26.33.17.52a.38.38 0 01-.34.21zm-22.9 41.55c-1.58 0-3.15-.2-4.67-.57a.39.39 0 01-.28-.46.38.38 0 01.46-.29c3.97.97 8.15.63 11.92-.97a.38.38 0 01.5.2c.08.2 0 .43-.2.51a19.74 19.74 0 01-7.74 1.58zm45.27-7.03c-3.45.13-5.92-.2-8.36-2.3-2.54-2.18-2.6-7.12-2.63-10.4l-.01-.8c-.06-3.77-.05-7.6-.04-11.3 0-1.89.01-3.77.01-5.66l-.02-11.44c-.2.2-.45.38-.7.5l.01 10.95c0 1.14 0 2.3 0 3.44.7.96.7 2.42-.01 3.37-.01 3.34-.01 6.77.04 10.15l.01.8c.04 3.4.1 8.54 2.88 10.93 2.3 1.98 4.7 2.5 7.69 2.5.37 0 .76-.02 1.16-.03.2 0 1.32-.2 1.31-.4 0-.2-1.16-.32-1.34-.31zm44.48-9.65l-.01-.21a208.06 208.06 0 01-.11-13.61c0-.2.12-40.67.12-40.86v-.43c-.1-12.1-.18-24.6-1.11-36.83-.01-.1-.02-.21-.03-.32-.54-4.62-4.81-5.02-8.77-5.04-7.91-.02-15.95.32-23.73.64-4.6.2-9.35.4-14.02.52-2.14.06-5.22.58-6.82 1.87-2.75 2.21-2.63 5.31-2.5 8.31.01.41.03.83.03 1.23.09 4.02.23 8.09.43 12.1.24 4.8.24 9.65.24 14.34 0 .87 0 1.75 0 2.63l.03 14.28a2.3 2.3 0 01.7.17l-.02-14.45v-2.63c0-4.7 0-9.56-.24-14.37-.2-4.03-.34-8.06-.43-12.08 0-.41-.02-.83-.04-1.25-.11-2.82-.23-5.74 2.24-7.73 1.38-1.1 4.2-1.65 6.4-1.71 4.68-.12 9.43-.32 14.03-.52 7.77-.32 15.8-.66 23.7-.64 4.78.02 7.64.74 8.06 4.41.01.1.02.2.03.3.93 12.19 1.02 24.69 1.1 36.78l.01.42c0 .19-.2 36.84-.06 40.84a.35.35 0 00-.07.2v.06c-.06 4.41-.11 8.97.12 13.4l.01.22c.13 2.43.32 6.09-2.17 7.32-1.36.67-3.33.65-4.9.63-.2 0-.4 0-.59 0-.2 0-1.48.01-1.48.2 0 .2.19.51.38.51s1.48 0 1.68 0c.27 0 .55.01.83.01 1.48 0 3.12-.09 4.39-.71 2.92-1.44 2.7-5.39 2.57-8z"/><path fill="#000" d="M98.79 42.43h-.08c-3.57.16-6.71.18-10.04.2-1.25.02-2.52.02-3.85.04a1.81 1.81 0 00-1.77 1.89c.08 1.88.14 3.8.2 5.74.07 1.97.13 3.95.21 5.88.03.93.79 1.67 1.72 1.67h.03c4.63-.1 9.19-.23 13.95-.4.95-.04 1.71-.85 1.7-1.82-.02-.86-.03-1.72-.04-2.58a155.8 155.8 0 00-.28-8.97 1.77 1.77 0 00-1.75-1.65zm-13.61 16.2a2.49 2.49 0 01-2.48-2.42c-.08-1.96-.15-3.92-.2-5.89-.07-1.92-.14-3.85-.2-5.73a2.58 2.58 0 012.51-2.69c1.33-.02 2.6-.03 3.85-.04 3.32-.02 6.46-.04 10.01-.2 1.39-.07 2.54 1 2.63 2.36.22 3.19.25 6.15.28 9.02.01.86.02 1.72.04 2.58a2.55 2.55 0 01-2.43 2.6c-4.77.17-9.34.3-13.96.4h-.05z"/><path fill="#000" d="M97.55 43.83h-.07c-2.89.13-5.43.16-8.13.17-1 .01-2.03.02-3.1.03a1.58 1.58 0 00-1.56 1.65c.06 1.52.12 3.08.17 4.63.05 1.6.1 3.21.17 4.78.02.81.69 1.46 1.5 1.47v.19l.04-.2c3.74-.07 7.43-.18 11.29-.32.83-.03 1.5-.74 1.48-1.59-.01-.7-.02-1.4-.03-2.1-.03-2.3-.05-4.7-.23-7.26a1.55 1.55 0 00-1.53-1.45zM86.53 56.94a1.9 1.9 0 01-1.89-1.84c-.06-1.59-.11-3.18-.16-4.77a748 748 0 00-.17-4.63 1.97 1.97 0 011.93-2.05c1.07-.02 2.1-.02 3.1-.03 2.7-.02 5.24-.04 8.12-.17a1.93 1.93 0 012 1.8c.18 2.57.2 4.97.23 7.3 0 .69.02 1.38.03 2.08a1.95 1.95 0 01-1.85 1.98c-3.86.14-7.56.25-11.3.33h-.04z"/><path fill="#000" d="M91.81 44.7a5.79 5.79 0 00-3.18 1.04 4.03 4.03 0 00-1.87 2.73c-.16.63-.3 1.24-.35 1.86a4.77 4.77 0 002.02 4.34c.95.6 2.28.94 3.65.94 1.1 0 2.15-.23 2.93-.65 1.43-.77 2.34-2.27 2.59-4.24.04-.36.05-.72.03-1.07a5.75 5.75 0 00-1.92-3.75c-.93-.83-2.63-1.2-3.9-1.2zm.27 11.3a7.45 7.45 0 01-3.85-1 5.16 5.16 0 01-2.2-4.7c.04-.65.2-1.28.36-1.93.37-1.43.9-2.2 2.03-2.95a6.13 6.13 0 013.4-1.1c1.23 0 3.07.33 4.14 1.29a6.14 6.14 0 012.05 4c.03.39.02.77-.03 1.16-.26 2.1-1.25 3.7-2.8 4.53a6.7 6.7 0 01-3.1.7z"/><path fill="#000" d="M91.82 44.5c1.3 0 3.05.4 4.02 1.25-1.04-.91-2.81-1.24-4.02-1.24zm6 5.73a6.12 6.12 0 010 0zm-6-5.34a5.58 5.58 0 00-3.07 1 3.86 3.86 0 00-1.8 2.63c-.16.62-.31 1.22-.35 1.83a4.56 4.56 0 001.93 4.16c.92.57 2.21.9 3.55.9 1.08 0 2.08-.22 2.84-.62 1.37-.74 2.25-2.2 2.49-4.1.04-.34.05-.69.03-1.03a5.56 5.56 0 00-1.85-3.62c-.9-.79-2.54-1.15-3.78-1.15zm-4.71 8.76a4.22 4.22 0 010 0zm4.97 2.54c-1.47 0-2.91-.37-3.95-1.02a5.36 5.36 0 01-2.3-4.88c.05-.67.21-1.31.38-1.97a4.6 4.6 0 012.1-3.07 6.33 6.33 0 013.5-1.13c1.28 0 3.16.35 4.28 1.34a6 6 0 012.08 5.33c-.27 2.16-1.3 3.82-2.9 4.68-.86.46-2 .72-3.2.72zm16.4 78.97c-5.56-4.17-14.53-3.57-20.52-1.78-2.13.63-4.25 1.84-6.3 3.02-4.55 2.61-8.85 5.08-13.51 2.04-1.89-1.22-7.92-6.27-6.54-19.9a.38.38 0 00-.34-.42.38.38 0 00-.42.35c-.4 3.97-.14 7.99.74 11.32 1.13 4.26 3.2 7.39 6.14 9.3 5.06 3.29 9.76.6 14.31-2.02 2.01-1.15 4.1-2.34 6.13-2.95 5.83-1.74 14.52-2.34 19.85 1.66 1.32.99 3.06 3.29 2.9 5.03-.07.77-.5 1.34-1.3 1.73-.98.49-2.16.52-3.3.56a25.28 25.28 0 00-6.66 1.1c-8.25 2.51-15.27 7.6-18.77 13.63a141.18 141.18 0 01-13.63 19.83 110.27 110.27 0 01-11.94 12.06 21.36 21.36 0 00-5.59 7.61c-1.37 3.2-1.7 6.85-2.2 10.27-.23 1.62-.44 3.23-.64 4.85a.9.9 0 01.12.07l.38.3c.1.07.19.16.25.25.44-3.98.95-7.95 1.54-11.91v-.04c.33-1.02.63-1.9.95-2.72a20.07 20.07 0 015.69-8.1c4.72-4.14 8.65-8.12 12.02-12.14 4.68-5.6 9.16-12.12 13.71-19.94 3.4-5.86 10.26-10.82 18.33-13.27a24.45 24.45 0 016.47-1.08c1.22-.04 2.47-.08 3.6-.63a2.86 2.86 0 001.73-2.35c.2-2.12-1.8-4.68-3.2-5.73zm-89.4 8.49a.38.38 0 00-.43-.34.39.39 0 00-.33.43c1.46 12.2 3.12 26.02-1.01 38.6l-.01.08c-1.14 2.51-1.5 5.28-1.72 8.06-.02.22-.03.44-.05.66a.8.8 0 01.33.35c.02.04.04.08.06.13.13.03.24.1.34.18.18-3.17.38-6.7 1.72-9.61 1.17-2.55 1.64-5.47 2.03-8.23.41-2.85.61-5.73.66-8.6.11-7.27-.72-14.51-1.6-21.71zm74.11-80.62c-.88 0-1.76.56-2.14 1.36a5.4 5.4 0 00-.33 2.24l-.03 5.03c-.01 1.57-.02 3.19.55 4.64.36.92 1.18 1.9 2.13 1.9.09 0 .17 0 .26-.02.54-.1 1.04-.54 1.34-1.18.28-.6.37-1.3.45-2.03.3-3.02.36-6.08.17-9.1-.03-.43-.06-.8-.16-1.15a2.45 2.45 0 00-2.24-1.69zm.18 15.95c-1.32 0-2.38-1.2-2.84-2.4-.62-1.59-.61-3.36-.6-4.92l.02-5.03c0-.82.02-1.75.41-2.58a3.17 3.17 0 013.04-1.78c1.25.1 2.38 1 2.76 2.22.13.43.16.87.2 1.32.19 3.07.13 6.18-.19 9.24-.08.8-.18 1.56-.52 2.28-.4.86-1.1 1.46-1.88 1.6-.13.03-.26.05-.4.05z"/><path fill="#000" d="M48.68 207.97c-.4-.38-.98.22-.6.59a4.1 4.1 0 011.37 2.86c-1 1.18-1.9 1.3-2.68.39a24.9 24.9 0 00-4.8-3.45c-1.57-.91-3.25-1.57-4.76-2.57-1.48-.98-2.79-2.24-4.18-3.33a106.9 106.9 0 00-9.28-6.32c-1.59-1-3.19-1.97-4.79-2.95-.78-.49-1.57-.98-2.35-1.47a5.65 5.65 0 01-1.74-1.6c-.82-1.18-.44-2.25 1.14-3.22.27-.03.29-.46 0-.44-1.37.06-2.08.95-2.2 2.3-.17 2.02 2.27 3.38 3.64 4.25 5.3 3.37 10.72 6.57 15.68 10.48 1.99 1.56 3.76 3.17 6.03 4.31a36.87 36.87 0 017.42 4.9c.72.62 2.67 1.35 3.28.1.87-1.73.15-3.57-1.18-4.84z"/><path fill="#000" d="M49.6 210.37c-.05-.13-.2-.25-.34-.2-.04.02-.07.04-.1.05a4.6 4.6 0 00-.24-.7.22.22 0 00-.09-.1l-.12-.47c-.05-.23-.3-.26-.45-.15l-.01-.01c-.13-.26-.52-.13-.52.14v.39c0 .58 0 1.17 0 1.75-.43.29-.35.9-.02 1.2-.06.23.24.46.46.33.12-.07.23-.16.33-.24.23-.1.42-.26.55-.46.04.05.08.1.12.16.18.23.47.01.5-.2.01-.13.02-.28 0-.43.08-.36.05-.72-.07-1.06zm-33.72-23.74c-.03.07-.06.15-.08.23a.3.3 0 00-.3.05.7.7 0 00-.25.45.94.94 0 00-.2.16c-.05 0-.1.03-.14.06-.27.2-.38.51-.32.77a1.13 1.13 0 00-.15 1.19c.03.6.27 1.14.97 1.35h.04l.01.01c.15.21.5.16.5-.12a.25.25 0 00.1-.2V188.78l.34-2c.06-.36-.39-.47-.52-.15z"/><path fill="#000" d="M50.03 212.2c-.07-.53-.9-.53-.83 0 .13 1 .2 1.97.04 2.98-.47 2.9-3.76.67-4.76.01-1.6-1.06-2.97-2.47-4.44-3.7-2.92-2.46-6.59-3.7-9.93-5.45a104.85 104.85 0 01-10.6-6.6c-1.78-1.23-4.35-2.45-5.18-4.6-.74-1.9-.18-5.27.41-7.1.09-.26-.3-.36-.4-.11-.71 1.95-1.16 4.69-.73 6.76.4 1.97 1.75 2.92 3.3 4.02 4.74 3.33 9.5 6.63 14.68 9.22 2.4 1.2 4.87 2.17 7.06 3.74 1.91 1.37 3.52 3.13 5.43 4.51 1.04.76 3.42 2.3 4.76 1.31 1.57-1.17 1.42-3.2 1.19-4.99z"/><path fill="#000" d="M49.15 216.08C46.94 224.2 54.73 329.52 63 360.04c.05.2.75.18.7 0-7.47-30.52-15.9-135.35-14.13-143.84.06-.28-.35-.4-.42-.12zm-34.4-19.6l-.68-1.12c-4.2 23.72-10.24 64.95-10.61 76.96-1.66 29.19-2.42 59.07 2.69 88.03h1.17c-5.23-29.1-3.79-58.67-2.67-88.07 1.44-23.15 10.08-75.43 10.1-75.8zm74.8-178.04c-1.64-3.66-3.97-7-6.5-10.07-.53-.64-1.64.22-1.14.89a62.75 62.75 0 015.93 10.2c.57 1.16 2.22.14 1.7-1.02zm8.44-15.8c-.05-1-1.46-1-1.52 0-.24 4.14-.27 8.3-.1 12.46.06 1.12 1.67 1.12 1.72 0 .19-4.12.15-8.35-.1-12.47zm13.58.48c-1.78 3.52-3.51 7.38-4.29 11.27-.22 1.1 1.31 1.54 1.66.46 1.21-3.73 2.25-7.4 3.91-10.97.4-.87-.84-1.63-1.28-.76zm13.35 10.55a36.74 36.74 0 00-10.96 4.24c-.93.55-.11 1.94.83 1.45a53.92 53.92 0 0110.5-4.3c.9-.25.52-1.6-.37-1.4z"/><path fill="#4FD2C5" d="M55.1 309.76a159.2 159.2 0 000 17.96c.5 8.09.13 5.07 1.42 14.37.86 6.2 1.76 12.18 2.7 17.95h3.73c-2.48-10.77-5.1-27.53-7.85-50.28zm-4.86-51.12c-.25 6.1-.55 12.81-.9 20.15-.5 11-.63 14.28-.89 18.4-.25 4.1.31-.35 0 10.78-.3 11.12-.9 14.3-.9 21.55s-.3 3.17.9 13.46c.8 6.86 1.7 12.55 2.7 17.06h5.38a672.05 672.05 0 01-3.6-19.75 124.1 124.1 0 01-1.34-12.57c-.24-4.16 0-3.67 0-10.83v-41.25l-1.35-17z"/></g><mask id="d" fill="#fff"><use xlink:href="#c"/></mask><g fill-rule="nonzero" mask="url(#d)"><path fill="#FED7D8" d="M157.76 163.77c-.08-.34-.2-.66-.35-.97l-.02-.01v-.03a2.15 2.15 0 00-.45-.6c-.7-.64-1.81-.55-2.6-.19-.52.24-.97.6-1.4 1a.38.38 0 01-.22.22c-.24.24-.48.5-.7.74L140.3 176.6c4.48-1.5 9.09-2.56 13.77-3.17.7-.1 1.4-.15 2.1-.14a11.82 11.82 0 001.59-9.52z"/><path fill="#F7AE55" d="M176.1 109.24c.13.24.34.48.64.73.9.75 2.07 1.16 3.17 1.1a3.57 3.57 0 002.8-1.56c.34-.56.48-1.22.58-1.8.07-.37.1-.69.05-.98-.05-.3-.2-.6-.43-.92a4.02 4.02 0 00-4.39-1.32 3.93 3.93 0 00-2.68 3.6c0 .45.08.84.25 1.15z"/><path fill="#FFF" d="M177.02 114.27c1.67.03 3.4-.09 4.94-.2 1.42-.1 2.75-.2 3.8-.15.43.02.9.04 1.39.08.74.04 1.58.1 2.42.11 3.33.07 7.33-.36 8.62-4.32a5.2 5.2 0 00-.03.07c-1.38 3.8-5.65 4.17-8.75 4.1-.81-.01-1.62-.06-2.32-.1-.42-.03-.84-.05-1.25-.07h-.24c-.88-.02-1.98.04-3.15.11-1.4.08-3 .18-4.55.15-2.74-.06-6.56-.47-8.18-3.41a5.94 5.94 0 01-.69-3.33 5.1 5.1 0 01.4-1.62c1.2-2.73 4.28-3.35 6.5-3.58a80.24 80.24 0 0116.93.03 7.3 7.3 0 013.46 1.02c1.63 1.11 2.47 3.52 2.1 5.72.4-2.32-.35-4.95-1.84-6.08-.92-.7-2.02-.87-3.26-1.01a77.21 77.21 0 00-18.23.04c-2.33.28-5.16.96-6.25 3.74-.2.54-.33 1.1-.38 1.67-.1 1.2.14 2.47.64 3.5 1.13 2.33 3.65 3.45 7.92 3.53zm-19.82 58.82c-.04.08-.1.17-.15.26l.15.02v-.28z"/><path fill="#F687B3" d="M167.47 107.17c.05-.66.2-1.31.44-1.93 1.3-3.29 4.65-4.05 7.05-4.35a78.39 78.39 0 0118.48-.04c1.34.16 2.63.37 3.76 1.22 2.01 1.52 2.88 5.11 1.94 8-1.5 4.6-6.2 5.05-9.59 4.98-.82-.02-1.64-.06-2.47-.12-.48-.03-.94-.05-1.35-.07h-.23c-.97-.03-2.18.06-3.47.15-1.55.11-3.31.24-5.02.2-2.96-.06-7.09-.54-8.8-4.07a7.76 7.76 0 01-.74-3.97zm-7.73 67.39a4.75 4.75 0 011.16 4.04 8.04 8.04 0 01-2.88 4.85l-.13 6.89c-.04 2.5-.1 5-.15 7.52a721.76 721.76 0 00-.25 16.1c-.03 4.35-.08 10.92 3.42 13.89 1.89 1.6 3.8 2.45 5.97 2.89.85-.33 1.72-.66 2.57-.94 5.66-1.86 12.23-1.84 19 .04a23.1 23.1 0 015.65 2.39c.57-.6 1.24-1.1 1.98-1.46 4.83-2.35 11.8-1.38 16.9-.68h.07c.42-.23 9.85-.17 10.12-.16.26 0 .54.01.82.02 2.2.07 4.96.15 6.87-.7 3.53-1.57 3.36-6.45 3.24-9.67l-.01-.3c-.16-4.44-.09-8.98.04-13.46a88.18 88.18 0 00-8.74-2.96 3.56 3.56 0 01-2.18-1.88 8.58 8.58 0 01-.46-5.84.38.38 0 01.3-.26 2.95 2.95 0 011.97-1.67c1.07-.28 2.16-.06 3.13.14l6.4 1.3c0-1.22.03-2.45.06-3.68 0-.67-.06-1.45.05-2.14-2.7.75-5.43 1.06-7.94.03-2.24-.93-4.42-3.12-4.25-5.92.12-2.16 1.55-4.08 4.23-5.7 2.49-1.5 5.31-2.49 8.05-3.44l.32-.11.52-.18c-1.27-1.08-3.08-1.45-4.72-1.66l-.61-.07c-1.83-.23-3.72-.46-5.3-1.5a6.88 6.88 0 01-2.92-4.93c-.18-1.54.09-4.33 1.57-5.68 1.2-1.09 3.03-1 4.5-.93l.43.02c2.43.1 4.83.2 7.2.4-.23-1.42-.24-12.09-.24-12.33l.01-.57c.19-16.07.38-32.69-.6-48.93-.02-.13-.03-.26-.04-.39-.5-4.89-4.48-5.93-11.18-6.08-11.06-.26-22.31-.03-33.2.2-6.44.12-13.1.25-19.66.29-3.08.01-7.05.67-9 2.1-3.52 2.57-3.43 6.46-3.34 10.21.01.56.02 1.11.03 1.66.01 5.33.1 10.74.28 16.07.22 6.4.1 12.87-.03 19.11-.02 1.17-.04 2.33-.06 3.5l-.34 19.14a12.63 12.63 0 01-.13 7.68l-.05 2.78c.57.2 1.1.5 1.55.95z"/><path fill="#4B5668" d="M193.99 107.86c-.07.4-.19.93-.48 1.4a3.05 3.05 0 01-2.67 1.37 3.83 3.83 0 01-2.34-.9 2.44 2.44 0 01-.59-.68c-.17-.3-.25-.67-.25-1.09a3.28 3.28 0 013.33-3.16c1.04.02 2.04.51 2.62 1.28.22.3.36.6.4.9.06.3.02.6-.02.87zm1.75-3.93a6.48 6.48 0 00-2.98-.85 78.9 78.9 0 00-12.53-.35c1.66.14 3.21.94 4.13 2.17.37.5.6 1 .69 1.5.09.53.02 1.05-.06 1.49a6.85 6.85 0 01-.83 2.46 5.23 5.23 0 01-4.58 2.33 6.64 6.64 0 01-4.04-1.54 4.14 4.14 0 01-1-1.16 3.72 3.72 0 01-.42-1.83 5.66 5.66 0 014.42-5.32c-.84.06-1.67.13-2.5.22-2.14.22-4.71.76-5.7 3-.17.43-.28.88-.32 1.34a5.1 5.1 0 00.58 2.81c1.05 1.9 3.37 2.83 7.32 2.9 1.5.04 3.08-.06 4.47-.14 1.3-.08 2.52-.14 3.49-.11.39.02.81.04 1.27.07.7.04 1.49.09 2.28.1 3.02.06 6.64-.28 7.8-3.47.72-2.01.04-4.59-1.49-5.62z"/><path fill="#FFF" d="M192.8 106.62a2.35 2.35 0 00-2.57-.77 2.31 2.31 0 00-1.58 2.12c0 .26.04.48.14.65.07.13.2.27.37.41.53.45 1.23.7 1.88.65.67-.04 1.3-.4 1.62-.9.2-.33.29-.73.35-1.08.04-.22.06-.4.03-.57a1.23 1.23 0 00-.24-.5z"/><path fill="#FED7D8" d="M150.56 186.94c-.25.07-.5.15-.75.23-.81.45-1.53 1.1-2.33 1.93a41.33 41.33 0 00-5.63 7.27c2.06 0 4.06.05 5.96.1.43 0 .9.02 1.39.06a24.19 24.19 0 014.35-10.58c-1 .37-2 .69-3 .99zm141.39 59.19a173.62 173.62 0 01-4.76-11.25c-.88-2.23-1.8-4.53-2.75-6.78-2.23-5.24-5-9.95-7.92-14.94-.4-.68-.8-1.36-1.2-2.05-3.32-5.68-5.4-11.52-7.57-18.02-.16-.47-.32-.95-.48-1.43-1.67-5.08-3.4-10.33-7.44-13.6a25.57 25.57 0 00-15.51-5.64c-2.62-.06-5.2.7-7.71 1.55l-.02.02c-.08.08-.2.1-.3.1-.33.1-.65.21-.97.33l-.33.11c-2.7.94-5.48 1.9-7.9 3.37-2.45 1.49-3.75 3.2-3.86 5.08-.15 2.43 1.8 4.34 3.78 5.16 3.72 1.53 8.15-.17 12.06-1.67.54-.21 1.06-.4 1.56-.6a5.28 5.28 0 001.26-2.93.38.38 0 01.42-.33c.21.02.37.2.34.42-.1.9-.4 1.77-.87 2.54.1.05.18.13.21.23.03.08.02.17 0 .24 1.44.94 3.06 1.62 4.72 2l.28.05c.59.13 1.2.26 1.74.6.6.35 1.01.9 1.34 1.49.08-.06.19-.07.29-.05 2.13.53 4.48.09 6.29-1.17a.38.38 0 01.53.1c.12.17.07.41-.1.53a8.65 8.65 0 01-6.65 1.34 23.3 23.3 0 011.69 7.8 64.16 64.16 0 0113.61 6.32.39.39 0 01-.2.71.37.37 0 01-.2-.05 63.41 63.41 0 00-13.54-6.26h-.03a.37.37 0 01-.25-.1c-.87-.28-1.75-.54-2.63-.79a128.6 128.6 0 00-8.11-1.84L228 194.1c-.89-.18-1.9-.4-2.8-.16-.77.2-1.56.9-1.53 1.72 0 .2-.15.38-.36.4a7.72 7.72 0 00.58 4.54c.41.8.99 1.3 1.7 1.5 7.67 2.23 11.26 3.96 16.68 6.58 1.95.94 3.7 1.94 5.25 2.97a.37.37 0 01.18-.05 6.23 6.23 0 004.63-2.17.38.38 0 01.54-.04c.16.14.18.38.04.55a7.02 7.02 0 01-4.42 2.38c3.55 2.54 5.96 5.38 7.3 8.56.74 1.75 1.15 3.63 1.56 5.45.08.37.16.73.24 1.1a77.04 77.04 0 005.41 15.64c.1.2.01.43-.18.52a.38.38 0 01-.5-.18 77.84 77.84 0 01-5.47-15.81c-.09-.37-.17-.73-.25-1.1-.4-1.78-.8-3.63-1.51-5.32-1.97-4.66-6.14-8.42-13.15-11.8-1.87-.9-3.52-1.7-5.2-2.45.78 3.9 1.39 7.82 1.82 11.77a17.22 17.22 0 019.12 9.08c.09.2 0 .42-.2.5a.38.38 0 01-.5-.2 16.46 16.46 0 00-8.33-8.5c.1 1.04.2 2.09.29 3.13.21 2.75.17 5.81-1.76 7.72-1.45 1.43-3.58 1.8-5.28 1.95-5.1.47-10.2-.28-15.16-1-.99-.14-1.97-.28-2.96-.41l-.9-.13c-5-.69-11.84-1.63-16.47.62-.6.3-1.16.7-1.65 1.18 2.26 1.52 4.27 3.7 4.75 6.76.13.82.1 1.54-.1 2.16.22.11.43.23.63.34.73.4 1.36.75 2.25.87 15.71 2.1 20.01 3.79 28.76 9.41 2.8 1.8 5.55 3.94 8.21 6.01 5.03 3.92 10.23 7.97 16.12 10.04.56.2 1.13.39 1.7.58 3.3 1.08 6.71 2.2 8.62 5.13a15.5 15.5 0 011.51 3.37c.56 1.6 1.1 3.1 2.24 4.16.65.61 1.44 1.02 2.28 1.45l.26.14c.05-.02.1-.04.16-.04 2.86-.12 5.18-2.24 7.49-4.59a.38.38 0 01.54 0c.15.15.15.4 0 .55-2.1 2.13-4.36 4.21-7.08 4.7.06.04.12.07.17.11.98.64 1.8 1.46 2.54 2.34l.08-.01c1.75.06 3.54-.6 4.88-1.77.15-.14.4-.13.53.04.14.16.13.4-.03.54a7.95 7.95 0 01-4.87 1.95c.44.58.84 1.17 1.23 1.75 10.83 16.27 24.16 53.25 28.72 71.83h49.93c-1.74-13.48-19.7-43.99-52.72-95.85-.52-.68-1.05-1.36-1.57-2.05a95.78 95.78 0 01-10.04-16.45zM147.59 187.9c-.22.09-.45.17-.67.26a92 92 0 00-14.52 7.75c-.47.3-.9.68-1.37 1.1l-.18.15c3.38-.56 6.8-.75 10.1-.78a42.12 42.12 0 016.64-8.48z"/><path fill="#FED7D8" d="M130.74 196.23a5.58 5.58 0 01-2.96-1.35.39.39 0 01.23-.68c.1 0 .2.03.28.1.87.77 2 1.2 3.16 1.22.04 0 .09 0 .13.02a102.41 102.41 0 0110.75-6.15 6.79 6.79 0 01-1.66-2.05.39.39 0 01.16-.52.38.38 0 01.52.16c.41.8 1 1.49 1.71 2.03l.02.01a69.86 69.86 0 013.55-1.57c.95-.39 1.93-.7 2.9-1 .08-.05.16-.1.24-.14a.37.37 0 01.26-.02l.3-.1c1.52-.45 3.09-.93 4.53-1.61 2.97-1.4 4.95-3.68 5.29-6.1a3.97 3.97 0 00-.94-3.37c-.7-.7-1.66-.97-2.7-1.04a.37.37 0 01-.37-.01c-.65-.01-1.32.05-1.97.13a74.95 74.95 0 00-32.22 12.33 23.18 23.18 0 00-5.18 4.43c-1.48 1.83-2.46 4.04-3.42 6.17-1.1 2.49-2.46 5-3.77 7.44a142.91 142.91 0 00-3.1 6c.36-.29.73-.57 1.1-.85l5.53-4.24a54.84 54.84 0 016.94-4.77 32.69 32.69 0 019.2-3.25c.44-.29.85-.65 1.28-1.03l.2-.19h.01zm123.22-22.55c-1.36-4.42-4.85-8.5-9.9-11.52-.74-.45-1.73-1-2.78-1.36-1.19-.4-2.43-.56-3.7-.7-2.97-.31-5.99-.45-9.07-.57l-.44-.02c-1.32-.06-2.98-.14-3.95.74-1.12 1.01-1.52 3.34-1.32 5.01a6.1 6.1 0 002.58 4.37c1.43.94 3.23 1.16 4.97 1.38l.61.07c1.9.25 4.02.7 5.45 2.14 2.57-.87 5.2-1.63 7.92-1.58 3.33.07 6.6.78 9.63 2.04zm-18.67 16.81c.03 1.44.05 2.87.06 4.3v.03l5.57 1.14c1.05.21 2.11.44 3.18.67-.7-3.33-1.52-6.63-2.46-9.9-.13-.08-.26-.17-.39-.25-.61.22-1.24.45-1.9.7-1.32.51-2.7 1.04-4.1 1.47.19.53.04 1.43.04 1.84zm8.46.84c1.33.56 2.74.9 4.18 1.01.2.02.37.2.35.42a.38.38 0 01-.38.36h-.03c-1.37-.11-2.71-.42-4-.91.38 1.52.73 3.05 1.04 4.57v.02a85.06 85.06 0 016.43 1.68 22.51 22.51 0 00-1.46-6.87c-.33-.85-.77-1.8-1.54-2.27-.44-.26-.96-.37-1.5-.49l-.3-.06a15.3 15.3 0 01-3.95-1.5c.37 1.33.73 2.67 1.07 4.02l.1.02z"/><path fill="#FED7D8" d="M104.76 229a.39.39 0 01.02-.7c.1-.05.2-.04.3 0 4.15 1.84 8.8 2.3 13.23 1.3a.39.39 0 01.17.75c-4.6 1.04-9.4.57-13.72-1.34zm31.49 9.5a17.25 17.25 0 0111.97-12.43.39.39 0 01.2.75 16.7 16.7 0 00-11.43 11.87c-.04.17-.2.3-.37.3l-.1-.01a.39.39 0 01-.27-.47zm-20.8 63.19c6.3-13.98 8.62-15.36 14.25-18.7a84.75 84.75 0 006.2-3.94c8.96-6.32 17.55-14.3 25.55-23.73.22-.27.45-.54.68-.81 1.24-1.48 2.52-3.01 4.05-4.25a25.74 25.74 0 015.48-3.2c8.16-3.77 15.12-5.16 21.28-4.24 2.37.35 4.56.53 5.5-.97a.38.38 0 01-.01-.33c.05-.1.14-.19.26-.21a4 4 0 00.06-1.78c-.45-2.92-2.45-4.98-4.68-6.42a.37.37 0 01-.18-.08l-.05-.06a22.28 22.28 0 00-5.59-2.38c-6.63-1.85-13.05-1.86-18.56-.05-.98.32-2 .71-2.99 1.1-3.85 1.48-7.85 3.01-11.58 1.35-2.7-1.2-5.2-3.82-6.4-6.67-2.18-5.21-2.37-11.82-.57-18.67-.2.08-.4.14-.6.2-2.41.77-5 1.01-7.51 1.24l-1.04.1c.04.97.01 1.94-.09 2.9a.38.38 0 01-.38.34h-.04a.39.39 0 01-.34-.43 18 18 0 00.09-2.73c-3.09.32-5.99.8-8.5 2.44-1.05.68-2.02 1.56-2.96 2.41-1.65 1.5-3.36 3.05-5.56 3.6a.39.39 0 01-.18-.76c2.02-.5 3.58-1.91 5.23-3.41.96-.88 1.95-1.78 3.05-2.49 2.73-1.77 5.94-2.27 9.13-2.6a.38.38 0 01.12-.03l.09.02c.43-.05.87-.09 1.31-.13 2.47-.22 5.02-.46 7.35-1.2 1.68-.54 3.92-1.6 5.04-3.63.94-1.72.8-4.33-.93-5.49-1.05-.7-2.48-.74-3.64-.76-5.82-.14-12.15-.3-18.19.9l-.03.03a.37.37 0 01-.3.05 31.85 31.85 0 00-8.86 3.16 54.29 54.29 0 00-6.84 4.7l-5.54 4.25c-4.2 3.22-8.56 6.54-10.26 15.85-.75 13.64-1.61 29.08-8.51 42.05-6.55 12.3-14.9 24.44-25.54 37.09-2.12 2.52-4.34 4.99-6.57 7.4-18.88 22.95-29.3 38.97-31.24 48.06h63.63c4.86-11.97 12.6-29.93 24.9-56.87.5-1.1.85-1.86 1.01-2.22z"/><path fill="#000" d="M349.04 340.9c-7.1-14.52-22.1-40.15-45-76.9l-.7.3c36.83 59.32 45.42 77.71 45.41 77.76 5.68 11.54 7.44 16.69 7.55 18.74.01.2.18.36.38.36h.02c.21-.01.37-.2.36-.4-.14-2.74-2.83-9.38-8.02-19.87zM240.98 186.4a.38.38 0 01-.25-.09.39.39 0 01-.04-.55c.67-.8 1.1-1.78 1.2-2.82a.38.38 0 01.43-.34c.2.02.36.2.33.42a6.07 6.07 0 01-1.38 3.25.38.38 0 01-.3.13h.01z"/><path fill="#000" d="M251.75 199.45a.38.38 0 01-.38-.38 22.53 22.53 0 00-1.49-7.46c-.33-.85-.77-1.8-1.54-2.27-.44-.26-.96-.37-1.5-.49l-.3-.06c-2-.45-3.9-1.3-5.56-2.5a.39.39 0 01-.1-.54.38.38 0 01.54-.1 14.57 14.57 0 005.3 2.38l.27.06c.59.13 1.2.26 1.74.6.97.58 1.49 1.66 1.86 2.64a23.28 23.28 0 011.55 7.72c0 .21-.16.4-.37.4h-.02z"/><path fill="#000" d="M252.17 191.12c-.67 0-1.34-.08-2-.24a.39.39 0 01.19-.75c2.13.53 4.48.09 6.29-1.17a.38.38 0 01.53.1c.12.17.07.4-.1.53a8.65 8.65 0 01-4.91 1.53zm20 92.68a.38.38 0 01-.39-.37.38.38 0 01.37-.4c2.86-.12 5.18-2.24 7.49-4.59a.38.38 0 01.54 0c.15.15.15.4 0 .55-2.33 2.36-4.86 4.68-8 4.81h-.02zm-24.46-71.42a.38.38 0 01-.38-.38.38.38 0 01.38-.4 6.23 6.23 0 004.62-2.16.38.38 0 01.54-.04c.16.14.18.38.04.55a7 7 0 01-5.2 2.43zm28.36 74.53c-.07 0-.14 0-.2 0a.39.39 0 01-.38-.4.38.38 0 01.4-.38c1.76.06 3.54-.6 4.88-1.77.16-.14.4-.13.53.04.14.16.13.4-.03.54a7.95 7.95 0 01-5.2 1.97zm-31.53-89.66a.38.38 0 01-.37-.31c-.72-3.44-1.57-6.85-2.54-10.23a.39.39 0 01.26-.48.38.38 0 01.47.26c.98 3.4 1.83 6.83 2.55 10.29.05.2-.08.41-.29.46h-.08z"/><path fill="#000" d="M247.9 193.12h-.03c-1.52-.12-3-.49-4.41-1.08a.39.39 0 010-.71c.1-.04.2-.04.3 0 1.32.56 2.73.9 4.17 1.01.2.02.37.2.35.42a.38.38 0 01-.38.36zM97.42 225.75a.39.39 0 00-.4.36c-.76 13.56-1.61 28.93-8.43 41.75-6.52 12.26-14.85 24.35-25.45 36.96-1.94 2.3-4 4.55-6.03 6.75-17.6 20.94-28.36 37.34-32.24 49.2h1.04c7.8-21.04 28.77-44.73 31.2-48 2.25-2.43 4.47-4.91 6.61-7.45 10.64-12.65 19-24.78 25.54-37.1 6.9-12.97 7.76-28.42 8.52-42.06a.39.39 0 00-.37-.41zM198.37 109.1c-.02.09-.04.18-.06.26.02-.08.04-.17.06-.26zm-20.38-6.14a5.66 5.66 0 00-3.87 5.18c0 .7.14 1.32.42 1.83.22.4.54.77 1 1.16a6.64 6.64 0 004.5 1.53c1.72-.1 3.3-1 4.12-2.32.5-.81.7-1.74.83-2.46.07-.44.15-.96.06-1.48-.09-.5-.32-1.01-.7-1.51a5.77 5.77 0 00-4.12-2.17 78.93 78.93 0 0112.53.35c1.09.12 2.14.27 2.98.85 1.53 1.03 2.2 3.6 1.48 5.62-1.15 3.2-4.77 3.53-7.79 3.47-.8-.01-1.59-.06-2.28-.1-.46-.03-.88-.06-1.27-.07-.97-.04-2.2.03-3.5.11-1.38.08-2.95.18-4.46.15-3.95-.08-6.27-1-7.32-2.9a5.1 5.1 0 01-.58-2.82c.04-.48.15-.93.33-1.34.98-2.24 3.55-2.78 5.68-3a77.8 77.8 0 012.51-.22c-.19.04-.37.08-.55.14zm.53 1.52a4.02 4.02 0 014.38 1.32c.24.32.39.63.44.92.05.3.02.6-.05.99-.1.57-.24 1.23-.59 1.8a3.58 3.58 0 01-2.78 1.55 4.63 4.63 0 01-3.18-1.1c-.3-.25-.51-.49-.65-.73-.17-.31-.25-.7-.25-1.15 0-1.58 1.14-3.1 2.68-3.6zm11.05 9.62c-.84-.02-1.68-.07-2.42-.12-.46-.03-.92-.05-1.39-.07-1.05-.04-2.38.05-3.8.15-1.54.11-3.27.23-4.94.2-4.27-.08-6.79-1.2-7.92-3.53a6.95 6.95 0 01-.64-3.5c.05-.57.17-1.13.38-1.67 1.1-2.78 3.92-3.46 6.25-3.74a77.45 77.45 0 0118.23-.05c1.24.15 2.34.33 3.26 1.02 1.5 1.13 2.24 3.75 1.83 6.08.38-2.2-.46-4.6-2.1-5.72a7.3 7.3 0 00-3.45-1.02 80.24 80.24 0 00-16.94-.03c-2.21.23-5.3.85-6.49 3.58a5.13 5.13 0 00-.4 1.62c-.1 1.16.14 2.31.7 3.33 1.6 2.94 5.44 3.35 8.17 3.4 1.55.04 3.14-.06 4.55-.14 1.17-.07 2.27-.13 3.15-.12l.24.01c.38.02.8.04 1.25.07.7.04 1.5.09 2.32.1 3.1.06 7.37-.3 8.75-4.1.05-.13.09-.27.12-.4-.03.1-.05.22-.09.33-1.3 3.95-5.29 4.39-8.62 4.32zm9.57-4.04c.94-2.89.07-6.48-1.94-8-1.13-.85-2.42-1.06-3.76-1.22a78.39 78.39 0 00-18.48.04c-2.4.3-5.75 1.06-7.05 4.35a6.73 6.73 0 00-.44 1.93 7.76 7.76 0 00.73 3.97c1.72 3.53 5.85 4.01 8.8 4.07 1.72.04 3.48-.09 5.03-.2 1.29-.09 2.5-.18 3.47-.16l.23.01c.41.02.87.04 1.35.07.75.05 1.6.1 2.47.12 3.4.07 8.08-.37 9.59-4.98z"/><path fill="#000" d="M190.23 105.85c.23-.08.48-.11.74-.1.73 0 1.43.34 1.83.87.13.18.21.35.24.51.03.16 0 .35-.03.57-.06.35-.15.75-.35 1.08-.32.5-.95.86-1.62.9-.65.04-1.35-.2-1.88-.65a1.52 1.52 0 01-.37-.41c-.1-.17-.14-.4-.14-.65 0-.93.67-1.82 1.58-2.12zm-1.73 3.89a3.83 3.83 0 002.6.88c1-.06 1.93-.58 2.41-1.36.3-.47.4-1 .48-1.4.04-.28.08-.57.03-.87-.07-.34-.2-.65-.41-.91a3.38 3.38 0 00-3.7-1.12 3.28 3.28 0 00-2.25 3c0 .42.08.78.25 1.09.13.24.33.47.6.69zm-51.88 129.25c.18 0 .33-.13.37-.3a16.7 16.7 0 0111.43-11.87.39.39 0 00-.2-.75 17.25 17.25 0 00-11.97 12.44c-.05.2.07.41.28.47h.09zm-22.96-8.1c1.62 0 3.24-.18 4.82-.54a.39.39 0 00-.17-.75c-4.44 1-9.08.54-13.24-1.3a.38.38 0 00-.5.2c-.09.19 0 .42.2.5a21.87 21.87 0 008.9 1.89z"/><path fill="#000" d="M169.45 229.8c-.85.28-1.72.61-2.57.94a12.76 12.76 0 01-5.97-2.9c-3.5-2.96-3.45-9.53-3.42-13.88 0-.38.01-.74.01-1.08.01-5 .13-10.1.24-15.03.05-2.5.11-5 .15-7.51l.13-6.89a8.05 8.05 0 002.88-4.85 4.75 4.75 0 00-1.16-4.04 4.02 4.02 0 00-1.55-.96l.05-2.78a12.63 12.63 0 00.13-7.68l.34-19.14c.02-1.17.04-2.33.06-3.5.12-6.24.24-12.7.03-19.11-.17-5.36-.27-10.71-.28-16.07 0-.55-.02-1.1-.03-1.65-.09-3.76-.18-7.65 3.34-10.22 1.95-1.43 5.92-2.08 9-2.1 6.55-.03 13.21-.17 19.66-.3 10.89-.22 22.14-.45 33.2-.2 6.7.16 10.68 1.2 11.18 6.1.01.12.02.25.03.38.99 16.24.8 32.86.61 48.93v.57c-.01.24 0 10.9.23 12.33-2.37-.2-4.77-.3-7.2-.4l-.43-.02c-1.47-.07-3.3-.16-4.5.93-1.48 1.35-1.75 4.14-1.57 5.68a6.88 6.88 0 002.93 4.93c1.57 1.04 3.46 1.27 5.29 1.5l.6.07c1.65.21 3.46.58 4.73 1.66l-.52.18-.32.1c-2.74.96-5.56 1.94-8.05 3.45-2.68 1.62-4.1 3.54-4.23 5.7-.17 2.8 2.01 5 4.25 5.92 2.51 1.03 5.25.72 7.94-.03-.11.69-.04 1.47-.05 2.14-.03 1.23-.05 2.46-.07 3.69l-6.39-1.31c-.97-.2-2.06-.42-3.13-.15-.81.22-1.65.83-1.97 1.68a.38.38 0 00-.3.25 8.58 8.58 0 00.46 5.84 3.56 3.56 0 002.18 1.89 88.3 88.3 0 018.74 2.96c-.13 4.48-.2 9.01-.04 13.47v.28c.13 3.23.3 8.1-3.23 9.68-1.92.85-4.66.77-6.87.7-.28 0-.56-.02-.82-.02-.27 0-9.7-.07-10.12.17l-.07-.01c-5.1-.7-12.07-1.67-16.9.68-.74.37-1.4.86-1.98 1.46a23.2 23.2 0 00-5.65-2.4c-6.77-1.88-13.34-1.89-19-.03zm-14.02 2.48a12.41 12.41 0 01-6-6.26c-2.18-5.2-2.32-11.84-.4-18.73a8.35 8.35 0 004-3.42c1.1-2.02.9-5.12-1.18-6.51a4.97 4.97 0 00-1.9-.73c.62-4 2.23-7.7 4.78-10.98a.38.38 0 00.08-.2c.12-.06.25-.11.37-.17.66-.31 1.27-.67 1.83-1.05l-.1 6.1c-.05 2.5-.1 5-.16 7.5-.12 4.93-.23 10.03-.24 15.04 0 .35 0 .7 0 1.08-.04 4.52-.1 11.35 3.75 14.6a13.7 13.7 0 005.09 2.77c-3.37 1.28-6.8 2.35-9.92.96zm-13.58-35.9a41.33 41.33 0 015.63-7.28c.8-.83 1.52-1.48 2.33-1.94l.75-.23c.99-.3 2-.6 2.99-.98a24.21 24.21 0 00-4.35 10.58c-.46-.04-.93-.06-1.39-.07-1.9-.04-3.9-.1-5.96-.09zm-10.82.62c.46-.4.9-.8 1.36-1.1a92.08 92.08 0 0115.2-8c-.22.22-.44.44-.65.65-2.3 2.37-4.3 5-5.99 7.83-3.3.03-6.72.22-10.1.78l.18-.16zm-10.98 3.7a54.8 54.8 0 00-6.94 4.77l-5.54 4.24c-.36.28-.73.56-1.1.84a142.3 142.3 0 013.11-6c1.3-2.43 2.66-4.94 3.77-7.43.95-2.13 1.94-4.34 3.42-6.18a23.17 23.17 0 015.17-4.42 74.95 74.95 0 0132.23-12.33c.65-.09 1.31-.13 1.97-.13.12.07.26.07.38.01 1.03.07 1.99.34 2.68 1.04.78.77 1.13 2.03.94 3.38-.34 2.4-2.31 4.68-5.28 6.09-1.44.68-3 1.15-4.52 1.61l-.31.1a.37.37 0 00-.26.02c-.08.04-.17.09-.25.13-.96.3-1.94.62-2.89 1-1.2.5-2.38 1.02-3.55 1.58l-.02-.02a6.01 6.01 0 01-1.71-2.02.38.38 0 00-.52-.16.39.39 0 00-.16.52c.41.79.98 1.48 1.66 2.05a102.21 102.21 0 00-10.75 6.15.37.37 0 00-.13-.02 4.8 4.8 0 01-3.16-1.22.38.38 0 00-.54.03c-.14.16-.12.4.03.55.83.73 1.86 1.2 2.96 1.35-.07.07-.14.13-.21.19-.43.38-.85.74-1.28 1.03-3.2.65-6.31 1.67-9.2 3.25zM152 163.92c.23-.25.46-.5.7-.74.1-.04.19-.12.23-.22.43-.4.88-.76 1.4-1 .79-.37 1.9-.45 2.6.19.18.17.33.37.45.6v.03h.01c.17.33.28.67.36.98.86 3.22.26 6.76-1.58 9.52-.7-.02-1.42.05-2.1.14-4.7.6-9.3 1.67-13.78 3.17L152 163.93zm5.04 9.42c.06-.09.1-.18.15-.26v.28l-.15-.02zm84.23-12.55c1.05.36 2.04.91 2.78 1.36 5.05 3.02 8.54 7.1 9.9 11.52a26.6 26.6 0 00-9.63-2.04c-2.72-.05-5.36.71-7.92 1.58-1.43-1.44-3.55-1.9-5.45-2.14l-.61-.07c-1.74-.22-3.54-.44-4.97-1.38a6.1 6.1 0 01-2.58-4.37c-.2-1.67.2-4 1.32-5.01.97-.88 2.62-.8 3.95-.74l.43.02c3.09.12 6.1.26 9.08.58 1.27.13 2.51.29 3.7.7zm-5.38 45.8c.82 4.04 1.45 8.12 1.9 12.21a.38.38 0 00.03.35c.13 1.21.25 2.42.34 3.63.22 2.69.18 5.41-1.53 7.1-1.27 1.25-3.24 1.58-4.8 1.73-4.75.43-9.56-.2-14.22-.88.34.03.57.05.62.05.26 0 5.44.1 5.72.1.38.01.77.03 1.17.03 2.06.04 4.37-.02 6.15-.82 4.13-1.83 3.94-7.08 3.81-10.56l-.01-.28c-.15-4.3-.09-8.7.03-13.03.27.11.53.22.79.34v.04zm70.51 154.08c-4.44-18.4-17.85-55.62-28.78-72.04-1.18-1.78-2.5-3.62-4.36-4.84-.5-.32-1.03-.6-1.54-.87-.84-.43-1.63-.84-2.28-1.45-1.14-1.07-1.68-2.57-2.24-4.15-.4-1.16-.83-2.35-1.5-3.38-1.92-2.92-5.33-4.05-8.62-5.13-.57-.19-1.14-.38-1.7-.58-5.9-2.07-11.1-6.12-16.13-10.04a114.23 114.23 0 00-8.2-6c-8.76-5.63-13.06-7.32-28.77-9.42-.9-.12-1.52-.47-2.25-.87-.2-.12-.42-.23-.63-.34.2-.61.23-1.34.1-2.16-.48-3.06-2.49-5.24-4.75-6.76a6.26 6.26 0 011.65-1.18c4.63-2.25 11.47-1.3 16.47-.62l.9.13c.99.13 1.97.27 2.96.42 4.95.71 10.06 1.46 15.16.99 1.7-.16 3.83-.52 5.28-1.95 1.93-1.9 1.97-4.97 1.75-7.72-.08-1.04-.17-2.09-.28-3.13a16.46 16.46 0 018.33 8.5.38.38 0 10.7-.3 17.22 17.22 0 00-9.12-9.08c-.43-3.95-1.04-7.88-1.82-11.77 1.68.75 3.33 1.54 5.2 2.45 7 3.38 11.18 7.14 13.15 11.8a31.06 31.06 0 011.51 5.32 77.84 77.84 0 005.71 16.9.38.38 0 10.7-.33 77.04 77.04 0 01-5.42-15.64c-.08-.37-.16-.73-.24-1.1-.4-1.82-.82-3.7-1.56-5.45-2.01-4.78-6.44-8.77-13.52-12.2-5.42-2.62-9-4.35-16.67-6.57-.72-.21-1.3-.72-1.71-1.5a7.7 7.7 0 01-.58-4.55c.2-.02.36-.2.36-.4-.03-.82.76-1.51 1.54-1.72.9-.23 1.9-.02 2.79.16l12.77 2.6c2.67.56 5.44 1.12 8.1 1.85a63.4 63.4 0 0116.47 7.15.38.38 0 00.52-.13.39.39 0 00-.13-.53 64.12 64.12 0 00-16.65-7.23c-2.7-.74-5.47-1.3-8.16-1.86l-5.57-1.14v-.02c-.01-1.44-.03-2.87-.06-4.3 0-.42.15-1.32-.03-1.85 1.39-.43 2.77-.95 4.09-1.46.84-.33 1.64-.63 2.4-.9a.39.39 0 00.05-.71.38.38 0 00-.3-.02c-.77.27-1.57.58-2.42.9-3.92 1.5-8.35 3.21-12.07 1.68-1.99-.82-3.93-2.73-3.78-5.16.1-1.88 1.4-3.6 3.86-5.08 2.42-1.46 5.2-2.43 7.9-3.37l.33-.11.97-.34c.1.02.22-.02.3-.09l.02-.02c2.51-.85 5.09-1.61 7.7-1.55a25.57 25.57 0 0115.52 5.64c4.04 3.28 5.77 8.52 7.44 13.6.16.48.32.96.48 1.43 2.18 6.5 4.25 12.34 7.57 18.02.4.69.8 1.37 1.2 2.05 2.93 4.99 5.7 9.7 7.92 14.94.96 2.25 1.87 4.55 2.75 6.78 1.47 3.72 3 7.57 4.76 11.24a95.78 95.78 0 0010.04 16.45c.6.78 1.2 1.56 1.79 2.34.07-.3.18-.58.32-.85-.5-.65-1-1.3-1.5-1.96a94.94 94.94 0 01-9.96-16.31 173.45 173.45 0 01-4.74-11.2c-.88-2.23-1.8-4.54-2.75-6.8-2.25-5.28-5.16-10.23-7.98-15.03-.4-.68-.8-1.36-1.2-2.04-3.27-5.62-5.33-11.42-7.5-17.88-.16-.47-.31-.95-.47-1.43-1.71-5.18-3.48-10.54-7.69-13.96a25.68 25.68 0 00-5.45-3.38V174c-1.3-4.82-5-9.26-10.41-12.5-.78-.47-1.8-1.05-2.93-1.43-1.26-.43-2.6-.6-3.86-.73-.4-.05-.8-.08-1.2-.11.2-1.53.03-12.15.04-12.39v-.56c.19-16.1.38-32.73-.6-49-.02-.14-.03-.29-.04-.43-.63-6.16-6.6-6.8-12.15-6.94a783.7 783.7 0 00-33.24.2c-6.44.13-13.1.26-19.65.3-3 .01-7.32.62-9.6 2.3-3.91 2.86-3.81 6.98-3.72 10.97.01.55.02 1.1.02 1.64.02 5.34.12 10.76.3 16.1.2 6.38.08 12.83-.04 19.07l-.07 3.5-.3 17.56c-.97-.83-2.4-.75-3.39-.28l-1.42 1.18h-.01v.01l-1.13.94-12.7 13.73a77.3 77.3 0 00-17.24 8.74 23.83 23.83 0 00-5.34 4.59c-1.54 1.9-2.55 4.16-3.52 6.34a115.8 115.8 0 01-3.75 7.39c-1.3 2.43-2.66 4.95-3.77 7.43-3.48 2.9-6.7 6.63-8.12 14.45-.04.2.1.4.3.45h.08c.18 0 .34-.13.37-.32 1.7-9.32 6.05-12.65 10.26-15.87l5.54-4.24a54.3 54.3 0 016.84-4.71c2.8-1.54 5.8-2.53 8.86-3.16.1.02.21 0 .3-.05l.03-.02c6.04-1.2 12.37-1.05 18.2-.91 1.15.02 2.58.06 3.63.76 1.73 1.16 1.87 3.77.93 5.5-1.12 2.02-3.36 3.08-5.04 3.62-2.33.74-4.88.98-7.35 1.2-.44.04-.87.08-1.31.13l-.09-.02a.38.38 0 00-.12.04c-3.19.32-6.4.82-9.13 2.6-1.1.7-2.09 1.6-3.05 2.48-1.65 1.5-3.21 2.91-5.23 3.41a.39.39 0 00.18.76c2.2-.55 3.91-2.1 5.56-3.6.94-.85 1.9-1.73 2.95-2.4 2.52-1.64 5.42-2.13 8.5-2.45a18 18 0 01-.08 2.73c-.02.21.13.4.34.43h.04c.2 0 .36-.15.38-.34.1-.96.13-1.93.09-2.9l1.04-.1c2.5-.23 5.1-.47 7.51-1.23.2-.07.4-.13.6-.2-1.8 6.84-1.6 13.45.58 18.66a13.22 13.22 0 006.4 6.67c3.73 1.66 7.72.13 11.58-1.36.98-.38 2-.77 2.98-1.1 5.51-1.8 11.93-1.79 18.56.06 1.35.37 3.55 1.11 5.6 2.38l.04.06c.05.04.11.07.18.08 2.23 1.43 4.23 3.5 4.68 6.42.11.7.09 1.29-.06 1.78a.38.38 0 00-.26.2c-.05.12-.04.24.01.34-.94 1.5-3.13 1.32-5.5.97-6.16-.92-13.12.47-21.28 4.24-1.85.85-3.8 1.83-5.48 3.2-1.53 1.24-2.81 2.77-4.05 4.25-.23.27-.45.54-.68.8-8 9.44-16.6 17.42-25.55 23.74a84.77 84.77 0 01-6.2 3.95c-5.63 3.33-7.96 4.7-14.24 18.69-.17.36-.52 1.12-1.02 2.22-12.3 26.94-20.04 44.9-24.9 56.87h.83c4.85-11.95 12.57-29.82 24.76-56.54l1.02-2.23c6.19-13.76 8.46-15.1 13.94-18.34 1.74-1.04 3.72-2.2 6.25-3.99 9-6.35 17.65-14.38 25.69-23.86.23-.27.45-.54.68-.81a29.8 29.8 0 013.94-4.15 25.09 25.09 0 015.33-3.1c8.02-3.7 14.84-5.07 20.85-4.18 1.99.3 4.97.73 6.25-1.31.2.1.4.21.6.32.76.42 1.47.82 2.5.96 15.58 2.07 19.83 3.75 28.46 9.3 2.77 1.77 5.5 3.9 8.16 5.97 5.07 3.95 10.33 8.04 16.33 10.15.57.2 1.14.39 1.72.58 3.17 1.05 6.45 2.13 8.21 4.82.63.96 1.04 2.1 1.43 3.22.57 1.6 1.16 3.26 2.44 4.46.73.68 1.6 1.13 2.45 1.57.5.26 1.01.53 1.48.83 1.74 1.14 3 2.9 4.14 4.63 10.86 16.32 24.2 53.32 28.65 71.7.14 0 .28 0 .42.02.12 0 .23 0 .35 0 0-.04 0-.08 0-.12h-.01zm-161.2-259.77a9.47 9.47 0 00-.87-4.43 5.74 5.74 0 00-3.65-3.05c1.2-.68 2.27-1.57 3.17-2.61.88-.86 1.25-2.02 1.54-3.22a224 224 0 00.81-3.47 17.2 17.2 0 004.5 11.48c-3-.14-4.6 2.61-5.5 5.3zm6.16-5.19a16.8 16.8 0 01-4.65-13.83c.03-.22-.32-.26-.37-.05l-1.05 4.66c-.31 1.4-.57 2.89-1.5 3.99a.17.17 0 00-.23.04c-1 1.16-2.2 2.11-3.55 2.82-.15.07-.13.34.04.37 4.3.6 5.11 5.53 4.6 9.12-.04.25.3.36.37.1.75-2.97 2.23-7.5 6.14-6.88.19.03.35-.18.2-.34zm-2.82-19.16a23.1 23.1 0 01-.5-5.24c0-.23-.31-.21-.34 0-.11.85-.32 1.69-.6 2.5-.28.77-.93 2.59-1.9 2.66-.14.02-.14.24 0 .24.87-.03 1.26-.91 1.63-1.59.38-.7.67-1.44.88-2.2.05 1.25.22 2.5.52 3.72.05.2.35.11.31-.09zm-3.48 32.31a7.07 7.07 0 01-.87 1.5c-.47-1.23-.93-2.46-1.41-3.69-.06-.14-.28-.08-.23.07.47 1.33.97 2.65 1.45 3.98.04.1.18.17.26.07.46-.54.82-1.15 1.09-1.8.07-.17-.22-.3-.3-.13zm-13.39-20.6c-2.38-.88-4.74-1.84-7.06-2.87-.61-.27-1.14.64-.53.92a56.66 56.66 0 007.4 2.68c.47.14.64-.56.2-.73zm-.86 4.9c-2.33.12-4.64.64-6.85 1.41-.64.22-.37 1.25.29 1.04 2.2-.72 4.4-1.26 6.66-1.76.38-.09.3-.71-.1-.7zm1.37 5.56c-1.97 1.74-3.9 3.52-5.78 5.36-.47.46.24 1.17.72.72 1.91-1.79 3.8-3.63 5.62-5.52.36-.37-.17-.9-.56-.56zm122.6 1.36c-1.74 1.38-3.29 2.9-5.2 4.08a19.36 19.36 0 00-4.24 3.38c-.37.4.18.91.58.59 3.18-2.57 6.97-4.07 9.72-7.18.54-.6-.25-1.34-.85-.87zm4.47 20.8a58.97 58.97 0 00-12.66-8.98c-.37-.2-.65.32-.32.57 4.13 3.07 8.21 6.18 12.3 9.3.52.4 1.14-.46.68-.89z"/><path fill="#000" d="M251.1 129.34c-.8-1.5-1.6-3.01-2.41-4.51-.47-.85-.93-1.71-1.4-2.56-.13-.24-.86-1.27-1.05-1.73l.03-.06c.08-.19.06-.4-.13-.51l-.11-.07c-.24-.13-.49 0-.58.24-.35.93.95 2.5 1.34 3.27 1.11 2.17 2.25 4.32 3.4 6.46.33.6 1.22.07.9-.53z"/></g><mask id="f" fill="#fff"><use xlink:href="#e"/></mask><g fill-rule="nonzero" mask="url(#f)"><path fill="#FFF" d="M309.22 182.1c.6.55 1.28 1.02 2.01 1.4.63.3 1.1.38 1.42.2a.36.36 0 01.27-.03l.06-.08c-1.33-.28-2.6-.79-3.76-1.5z"/><path fill="#B3B3B3" d="M328.89 182.38c-.12.26-.21.5-.21.7.01.19.1.36.24.48.16.13.34.19.5.16.12-.01.24.03.33.11l5.3-8.25c.74-1.15 1.5-2.33 2.38-3.4 2.03-2.47 4.68-4.34 7.25-6.15a88.26 88.26 0 003.09-2.24 37.6 37.6 0 00-18.88 18.6z"/><path fill="#FFF" d="M383.68 290.66c-.05 0-.1.01-.14.01 0 .04 0 .08.02.11a.6.6 0 01.12-.12z"/><path fill="#FC8181" d="M371.6 294.45c-3.7.3-7.4.44-11.08.35.01.03.03.06.03.1.23 3.25.25 6.53.32 9.8.05 2.18.55 4.84-.4 6.9 1.72-.04 3.44-.1 5.13-.17 6.54-.27 13.22-.78 19.65-2.08 2.25-.46 1.47-3.29 1.28-4.87a60.54 60.54 0 00-2.55-11.68c-1.8.68-3.97.72-5.86.96-2.17.26-4.34.5-6.52.69z"/><path fill="#FFF" d="M350.5 87.8c.27.42.9.85 1.67.85h.05c.8-.02 1.46-.48 1.76-.93.32-.48.38-1.03.43-1.64.11-1.5.17-3.03.17-4.53 0-1.23-.36-3.08-.66-4.55l-.04-.22c-.13-.62-.16-.75-.84-1.19a2.84 2.84 0 00-1.46-.38c-.59 0-1.08.16-1.36.44-.31.3-.33.7-.33 1.2.02 3.07.1 6.2.23 9.3.03.56.05 1.15.37 1.64z"/><path fill="#4B5668" d="M331.45 82.86c.05-.65.2-1.28.37-1.93.37-1.43.9-2.2 2.04-2.95a6.16 6.16 0 013.4-1.1c1.24 0 3.09.33 4.16 1.29a6.14 6.14 0 012.05 4c.03.39.02.77-.03 1.16-.26 2.1-1.25 3.7-2.8 4.53-.84.45-1.94.7-3.12.7a7.52 7.52 0 01-3.86-1 5.15 5.15 0 01-2.2-4.7zm-1 4.8c.02.8.7 1.46 1.51 1.46v.2l.03-.2c3.75-.08 7.46-.19 11.33-.33.83-.03 1.5-.74 1.49-1.59-.02-.7-.02-1.4-.03-2.1-.03-2.3-.05-4.7-.23-7.26a1.56 1.56 0 00-1.54-1.45h-.07c-2.9.13-5.45.15-8.16.17-1 .01-2.04.02-3.11.03a1.58 1.58 0 00-1.55 1.65c.05 1.52.1 3.08.16 4.63.05 1.6.1 3.21.17 4.78z"/><path fill="#F7AE55" d="M333.87 87.24c.95.59 2.28.93 3.65.93 1.12 0 2.16-.23 2.94-.65 1.43-.77 2.36-2.27 2.6-4.24.05-.36.06-.71.03-1.07a5.76 5.76 0 00-1.92-3.75c-.94-.83-2.64-1.2-3.92-1.2a5.84 5.84 0 00-3.19 1.04 4.03 4.03 0 00-1.87 2.73c-.17.63-.31 1.24-.36 1.86a4.75 4.75 0 002.03 4.35z"/><path fill="#E9D8FD" d="M328.4 75.27c.48-.51 1.14-.8 1.83-.81 1.34-.02 2.61-.03 3.86-.04 3.34-.02 6.49-.04 10.05-.2 1.39-.07 2.54 1 2.64 2.36.21 3.19.25 6.15.28 9.03 0 .85.02 1.7.03 2.57a2.55 2.55 0 01-2.43 2.6c-4.67.17-9.34.3-14 .4h-.06a2.5 2.5 0 01-2.49-2.4c-.08-1.97-.14-3.93-.2-5.9-.07-1.92-.14-3.85-.2-5.73-.04-.7.21-1.38.7-1.88zm21.42-.04c.4-.38 1.02-.6 1.76-.6.66 0 1.3.18 1.77.48.84.54.94.82 1.08 1.56l.05.22c.3 1.49.67 3.37.67 4.66 0 1.53-.05 3.05-.17 4.57-.05.7-.13 1.33-.53 1.92a2.82 2.82 0 01-2.22 1.2h-.06a2.6 2.6 0 01-2.16-1.13c-.4-.63-.43-1.33-.46-1.94-.13-3.1-.21-6.22-.23-9.32 0-.44-.01-1.11.5-1.62zm-43.38 102.4c.14.34.28.69.43 1.03.4.7.89 1.3 1.49 1.8a11.26 11.26 0 005.18 2.4c1.68-2.28 3-4.9 3.95-7.82.21-.65.41-1.33.6-1.99.78-2.65 1.57-5.4 3.51-7.4a16.52 16.52 0 014.25-2.87c7.12-3.82 14.48-7.76 22.57-9.42 1.22-.26 2.64-.49 3.98-.08 1.12.34 2.23 1.29 2.49 2.53.7-.67 1.5-1.13 2.51-1.13 1.27 0 2.5.83 3.15 2.12a6.4 6.4 0 01.48 3.74c-.54 4.3-3.45 7.6-6.27 10.8-1.53 1.75-3.12 3.55-4.31 5.49a39.59 39.59 0 00-1.99 3.89c-.3.65-.6 1.3-.93 1.96 1.93-.16 15.82.06 16.04.06.23 0 .48 0 .73.01 1.95.02 4.38.05 6.07-.74 3.09-1.44 2.85-5.74 2.69-8.58v-.26c-.3-5.2-.23-10.55-.16-15.71v-.09a.4.4 0 01.17-.31c.43-16.51.35-33.04-.24-49.55 0-.1.03-.2.1-.27v-.02c-.11-14.17-.22-28.83-1.37-43.13l-.04-.34c-.52-4.3-4.06-5.16-10-5.17-9.77-.04-19.72.36-29.34.75-5.7.22-11.59.46-17.38.6-2.72.07-6.22.72-7.93 2.01-3.06 2.33-2.92 5.76-2.77 9.07.02.49.04.97.05 1.45.1 4.7.28 9.47.53 14.17.3 5.64.3 11.34.3 16.85 0 1.03 0 2.05 0 3.08l.07 40.87c0 2.21 0 4.42-.01 6.63v.96c4.64-2.03 8.41-2.26 14.37-2.47.65-.03 1.34.33 1.8.92.42.55.44 1.3.42 1.8a8.9 8.9 0 01-4.73 7.46c-.61.31-1.26.55-1.88.78a16.57 16.57 0 00-2.64 1.17c-1.01.5-1.87.91-2.7 1.69-1.11 1.03-2.23 2.23-3.31 3.4-.4.42-.8.85-1.2 1.28.08 1.77.27 3.68.77 5.38l.5 1.2z"/><path fill="#FFF" d="M330.27 76.82c.36-.39.86-.61 1.4-.61 1.07-.02 2.1-.03 3.11-.03 2.7-.02 5.26-.04 8.15-.17a1.93 1.93 0 012 1.8c.18 2.57.2 4.97.23 7.3.01.69.02 1.38.03 2.09a1.95 1.95 0 01-1.86 1.98c-3.87.14-7.57.25-11.33.33h-.04a1.9 1.9 0 01-1.9-1.84 820.4 820.4 0 01-.33-9.41c-.02-.53.17-1.05.54-1.44zm-1.4 11.92c.04.93.8 1.67 1.73 1.68h.04c4.63-.1 9.2-.24 13.99-.41a1.78 1.78 0 001.7-1.81c-.01-.87-.03-1.73-.04-2.59-.03-2.86-.06-5.81-.28-8.98a1.77 1.77 0 00-1.76-1.65h-.08c-3.57.17-6.73.2-10.07.22-1.25 0-2.52.01-3.86.03-.49 0-.94.2-1.28.57-.34.35-.51.83-.5 1.32.08 1.88.14 3.81.21 5.74.07 1.97.13 3.95.2 5.88zm-24.53 83.17c-.05.06-.12.12-.17.17l.22.56c-.02-.24-.04-.49-.05-.73z"/><path fill="#FC8181" d="M357.48 305.57c-.11.82-.2 2.08-.98 2.6-1.66 1.12-3.58-.47-3.71-2.25-.06-.9 0-3.18.9-3.84.39-1.56 2.78-1.53 3.45.03.48 1.1.5 2.27.34 3.46zm2.1 5.65c1.07-2.22.4-5.7.36-8.03-.03-2.76-.13-5.53-.03-8.29a.3.3 0 01.02-.12 67.45 67.45 0 01-15.38-2.16c-.15 1.4.08 3.6.08 4.15 0 1.48 0 2.96 0 4.44l-.01 5.2c-.01 1.9-.05 4.22 2.33 4.56 3.97.57 8.09.7 12.18.65.03-.25.23-.39.45-.4z"/><path fill="#FED7D8" d="M355.95 323.03a52.24 52.24 0 00-.2 5.83c.04.97.07 1.95.16 2.92.03.53.1 1.04.26 1.55l2.43.41a84.2 84.2 0 00.6-21.15c-.6 0-1.2 0-1.8-.02.23 3.44-1.16 7.03-1.45 10.46z"/><path fill="#E6E6E6" d="M356 302.18l-1.1.32a.25.25 0 01-.3.08l-.02.01c-.02.4-.4.54-.68.4-.36.75-.37 2.2-.34 2.54.1.93.83 2.59 2.11 2.06.91-.37.93-2.19.94-2.98 0-.46.04-.98-.09-1.42a1.86 1.86 0 00-.51-1z"/><path fill="#DBBBAB" d="M348.68 292.5c1.85.32 3.7.59 5.56.75 3.37.3 6.73.4 10.1.3 3.4-.1 6.79-.33 10.16-.7 1.87-.22 3.74-.44 5.6-.7.72-.1 1.44-.2 2.15-.31.22-.03.44-.08.66-.13-2.64-19.12-4.63-37.66-4.16-49.52.03-.58.06-1.17.08-1.76.35-7.97.7-16.2-3.05-23.05-.97-1.78-2.22-3.43-3.42-5.03l-12.54-16.67c-1.5-1.98-3.09-3.66-4.63-5.27-.79-.83-1.57-1.65-2.32-2.5.02 0-2.27-3.26-3-4.3h-2.76l-.05-.02c-.54 1-1.14 1.97-1.84 2.83l1.97 2.42c.22.28.47.59.64.96.23.5.27 1.04.31 1.52l.25 3a32.75 32.75 0 006.35 5.29c.67.43 1.37.84 2.04 1.24 1.24.72 2.51 1.47 3.68 2.36 3.86 2.92 6.47 7.28 8.78 11.13a.39.39 0 01-.33.59.38.38 0 01-.33-.19c-2.27-3.79-4.84-8.08-8.58-10.92a36.17 36.17 0 00-3.6-2.3c-.68-.4-1.4-.82-2.07-1.26a33.38 33.38 0 01-6.39-5.3.37.37 0 01-.28-.3.37.37 0 01-.05-.43l-.23-2.84a3.8 3.8 0 00-.24-1.27c-.13-.28-.34-.54-.54-.79l-2.18-2.67a.4.4 0 01.01-.5c1.41-1.63 2.4-3.74 3.34-5.77a39 39 0 012.03-3.97c1.23-2 2.83-3.82 4.39-5.6 2.86-3.25 5.57-6.32 6.08-10.38.17-1.3.03-2.42-.4-3.29-.52-1.01-1.5-1.7-2.47-1.7-1.65 0-2.7 1.65-3.75 3.25-.13.2-.25.39-.38.58-2.07 3.1-5.17 5.28-8.15 7.39-2.53 1.78-5.14 3.62-7.1 6-.86 1.04-1.6 2.2-2.33 3.33l-7.03 10.95a.38.38 0 01-.53.11.39.39 0 01-.12-.53l1.31-2.03a1.42 1.42 0 01-.89-.35c-.31-.26-.5-.64-.52-1.05 0-.38.13-.7.29-1.04a37.7 37.7 0 0121.43-19.85h.04a18.37 18.37 0 002.97-3.36c.12-.19.25-.38.38-.58.37-.57.76-1.17 1.2-1.71a.34.34 0 01-.03-.16c.03-1.14-1.01-2.08-2.01-2.38-1.17-.36-2.48-.14-3.6.1-7.98 1.64-15.3 5.55-22.37 9.34a15.94 15.94 0 00-4.06 2.74c-1.8 1.86-2.58 4.51-3.32 7.07-.2.67-.4 1.34-.61 2a27.68 27.68 0 01-4.97 9.22.37.37 0 01-.3.14.37.37 0 01-.24-.09l-.02-.03c-.14.04-.29.06-.44.06-.4 0-.85-.13-1.36-.39a9.8 9.8 0 01-4.39-4.49 10.95 10.95 0 01-1.6-3.79l-1.32-3.23c-.19.18-.37.36-.56.53a.38.38 0 01-.54-.02.39.39 0 01.03-.55c1.1-1.03 2.22-2.23 3.3-3.4 1.1-1.17 2.22-2.38 3.34-3.43.92-.85 1.88-1.32 2.9-1.81.26-.14.54-.27.83-.42.6-.31 1.26-.55 1.88-.78.6-.23 1.22-.46 1.8-.75 2.46-1.27 4.2-4 4.3-6.8.03-.62-.05-1.02-.26-1.3a1.5 1.5 0 00-1.17-.62c-6.3.22-10.12.47-15.15 2.9-5.17 2.49-8.63 7.63-11.4 11.77-1.5 2.23-2.75 4.26-2.81 6.57-.06 1.91.73 3.73 1.6 5.57a123.3 123.3 0 005.12 9.58c.1.18.05.41-.13.53a.4.4 0 01-.2.05.39.39 0 01-.33-.19 120.98 120.98 0 01-5.14-9.63c-.89-1.86-1.74-3.85-1.69-5.94.08-2.5 1.43-4.73 2.94-6.97a69.63 69.63 0 014.29-5.92.39.39 0 01-.23-.5c.53-1.46.58-3.98-.27-5.48a2.44 2.44 0 00-1.71-1.29c-.86-.16-1.69.48-2.18 1.13-.3.4-.55.86-.8 1.34-.23.41-.45.83-.72 1.23a22.42 22.42 0 01-2.6 2.96c-.7.7-1.4 1.4-2 2.16-1.55 1.94-2.03 4.35-2.51 6.68-1.4 6.87-2.24 14.9-.74 16.29l1.77 1.63a1399.9 1399.9 0 0115.91 14.9c3.87 3.71 8.33 6.73 12.57 9.5.82.55 1.63 1.08 2.44 1.6 8.48 5.52 16.48 10.73 23.29 19 3.96 4.8 7.03 11.21 8.64 18.05 1.33 5.61.88 10.94.4 16.58-.07.8-.13 1.61-.2 2.43a671.34 671.34 0 00-1.34 22.14c.1.02.2.05.31.07.7.15 1.41.3 2.12.43z"/><path fill="#FC8181" d="M386.62 310.23c-1.53.74-3.77.7-5.43.93a150.72 150.72 0 01-20.87 1.44c.41 4.93.47 9.9.05 14.84-.17 2.07-.15 4.58-.8 6.57-.36 1.1-.96 1.67-2.14 1.62-3.4-.15-2.65-6.96-2.58-8.96.07-2.22.24-4.45.6-6.65.4-2.46 1.28-4.95 1.3-7.46-1.97-.05-3.94-.13-5.9-.26-1.4-.1-4.13.05-5.76-.9.1 2.63.09 5.26.1 7.89-.1 2.28-3.4 40.27-3.2 40.9h52.2c-2.08-16.91-6.07-33.37-6.95-50.4-.18.18-.4.33-.62.44z"/><path fill="#FED7D8" d="M366.18 318.35a2.25 2.25 0 00-2.23 2.25 2.25 2.25 0 002.23 2.24 2.25 2.25 0 002.22-2.24 2.25 2.25 0 00-2.22-2.25zm12.43 10.48c-1.57 0-1.57 2.46 0 2.46s1.57-2.46 0-2.46zm3.44-12.35c-1.8 0-1.8 2.82 0 2.82 1.81 0 1.81-2.82 0-2.82zm-15.68-18.31c-1.75 0-1.75 2.73 0 2.73 1.74 0 1.74-2.73 0-2.73zm13.58 4.87c-1.13 0-2.08.95-2.08 2.1 0 1.14.95 2.1 2.08 2.1a2.1 2.1 0 002.08-2.1c0-1.15-.94-2.1-2.08-2.1zM348.2 319.5c-1.63 0-1.63 2.56 0 2.56s1.63-2.56 0-2.56zm1.72-23.11c-1.18 0-2.16.99-2.16 2.17 0 1.19.98 2.17 2.16 2.17 1.17 0 2.15-.98 2.15-2.17 0-1.18-.98-2.17-2.15-2.17zm21.8 13.18c-1.73 0-1.73 2.71 0 2.71 1.74 0 1.74-2.71 0-2.71z"/><path fill="#000" d="M305.17 170.98c-.23.27-.53.49-.85.63.2 3.5.9 7.38 3.47 9.47a12.19 12.19 0 005.55 2.6c.16-.28.38-.53.63-.74a11.34 11.34 0 01-5.61-2.49c-2.47-2-3.04-6-3.2-9.47zm68.64-63.76c-.11-14.2-.23-28.86-1.38-43.2-.01-.12-.02-.24-.04-.37-.66-5.42-5.95-5.89-10.86-5.9-9.8-.03-19.75.36-29.39.75-5.69.22-11.58.46-17.36.6-2.66.07-6.47.68-8.45 2.2-3.41 2.59-3.26 6.22-3.1 9.74.01.48.03.97.04 1.44.1 4.71.29 9.48.54 14.19.29 5.62.29 11.31.29 16.81 0 1.03 0 2.06 0 3.09l.07 40.87c0 2.2 0 4.41 0 6.62 0 .59-.01 1.18-.01 1.77.28-.2.58-.31.87-.36 0-.47 0-.94 0-1.4.02-2.22.02-4.43.02-6.64l-.07-40.87c0-1.03 0-2.05 0-3.08 0-5.5 0-11.2-.3-16.85-.25-4.72-.42-9.44-.53-14.17 0-.48-.03-.96-.05-1.45-.14-3.31-.29-6.74 2.78-9.07 1.7-1.3 5.2-1.94 7.92-2 5.8-.15 11.68-.39 17.38-.61 9.62-.39 19.57-.78 29.35-.75 5.93.01 9.47.87 10 5.17l.03.34c1.15 14.3 1.26 28.96 1.37 43.13v.5c.01.23.2.42.44.41.25 0 .45-.19.45-.42l-.01-.5zm-25.78 87.76a.39.39 0 01-.39-.35l-.26-3.24a3.8 3.8 0 00-.24-1.27c-.13-.28-.34-.54-.55-.79l-2.17-2.67a.4.4 0 01.01-.5c1.41-1.63 2.4-3.74 3.34-5.77a39 39 0 012.03-3.97c1.23-2 2.83-3.82 4.39-5.6 2.86-3.25 5.57-6.32 6.09-10.38.16-1.3.02-2.42-.42-3.3-.5-1-1.49-1.69-2.46-1.69-1.65 0-2.7 1.65-3.75 3.25-.13.2-.25.39-.38.58-2.07 3.1-5.17 5.28-8.16 7.39-2.52 1.78-5.13 3.62-7.1 6-.85 1.04-1.6 2.2-2.32 3.33l-7.03 10.95a.38.38 0 01-.53.11.39.39 0 01-.12-.53l7.04-10.95c.73-1.15 1.5-2.33 2.38-3.4 2.03-2.47 4.68-4.34 7.25-6.15 2.93-2.06 5.96-4.2 7.96-7.18.12-.2.24-.38.38-.58 1.09-1.68 2.32-3.58 4.38-3.59h.01c1.26 0 2.5.83 3.13 2.12a6.4 6.4 0 01.5 3.74c-.55 4.3-3.47 7.6-6.28 10.8-1.53 1.74-3.12 3.54-4.31 5.49a39.59 39.59 0 00-1.99 3.88c-.92 1.99-1.87 4.04-3.24 5.71l1.96 2.42c.23.28.48.59.65.96.23.5.27 1.04.31 1.52l.27 3.24c.02.21-.14.4-.35.42h-.03z"/><path fill="#000" d="M312.96 184.63a.39.39 0 01-.3-.63 26.98 26.98 0 004.83-8.96c.21-.65.41-1.33.6-1.99.78-2.65 1.57-5.4 3.51-7.4a16.48 16.48 0 014.25-2.87c7.12-3.82 14.5-7.76 22.58-9.42 1.22-.26 2.63-.49 3.97-.08 1.3.4 2.6 1.6 2.55 3.15 0 .2-.18.37-.4.37a.39.39 0 01-.36-.4c.03-1.14-1.01-2.08-2.01-2.38-1.17-.36-2.47-.14-3.6.1-7.98 1.64-15.3 5.55-22.37 9.34a15.94 15.94 0 00-4.06 2.74c-1.8 1.86-2.58 4.51-3.32 7.07-.2.67-.4 1.34-.61 2a27.68 27.68 0 01-4.97 9.22.37.37 0 01-.3.14zm16.39-.13c-.34 0-.66-.13-.92-.35-.31-.26-.5-.64-.51-1.05 0-.38.12-.7.28-1.04a37.7 37.7 0 0121.43-19.84.38.38 0 01.49.23c.07.2-.04.42-.24.5a37.48 37.48 0 00-21 19.43c-.1.26-.2.5-.2.7 0 .17.1.35.25.48.14.13.33.19.5.16a.38.38 0 01.43.33.38.38 0 01-.32.44c-.06 0-.12.01-.19.01zm-32.9 5.8a.39.39 0 01-.32-.2 120.98 120.98 0 01-5.14-9.63c-.89-1.86-1.74-3.85-1.69-5.94.08-2.5 1.43-4.73 2.94-6.97 2.83-4.22 6.35-9.46 11.71-12.04 5.17-2.5 9.04-2.74 15.46-2.97.65-.03 1.34.33 1.8.92.42.56.44 1.3.42 1.8a8.9 8.9 0 01-4.73 7.46c-.61.31-1.26.55-1.88.78-.6.23-1.22.46-1.79.75-.3.15-.58.29-.85.42-1 .5-1.87.91-2.7 1.69-1.11 1.03-2.23 2.23-3.31 3.4-1.1 1.17-2.22 2.38-3.35 3.43a.38.38 0 01-.54-.02.39.39 0 01.03-.55c1.1-1.03 2.22-2.23 3.3-3.4 1.1-1.17 2.22-2.38 3.34-3.43.92-.85 1.88-1.32 2.9-1.81.26-.14.54-.27.83-.42.6-.31 1.26-.55 1.88-.78.6-.23 1.22-.46 1.8-.75 2.46-1.27 4.2-4 4.3-6.8.03-.62-.05-1.02-.26-1.3a1.5 1.5 0 00-1.17-.62c-6.3.22-10.12.47-15.15 2.9-5.17 2.48-8.63 7.63-11.4 11.77-1.5 2.23-2.75 4.26-2.81 6.56-.06 1.92.73 3.73 1.6 5.58a123.3 123.3 0 005.12 9.58c.1.18.05.41-.13.53a.39.39 0 01-.2.05z"/><path fill="#000" d="M312.25 184.57c-.4 0-.84-.13-1.36-.39a9.8 9.8 0 01-3.96-3.69c-.49-.82-.85-1.7-1.2-2.57l-2.3-5.6a.39.39 0 01.21-.5.38.38 0 01.5.2l2.3 5.6c.34.84.69 1.7 1.15 2.47a8.98 8.98 0 003.64 3.4c.63.32 1.1.38 1.43.21a.38.38 0 01.5.17.4.4 0 01-.15.52c-.23.12-.5.18-.76.18z"/><path fill="#000" d="M347.4 250.84c-1.62-6.84-4.69-13.25-8.65-18.05-6.81-8.27-14.81-13.48-23.29-19-.8-.52-1.62-1.05-2.44-1.6-4.24-2.77-8.7-5.79-12.57-9.5a1399.9 1399.9 0 00-15.91-14.9l-1.77-1.63c-1.5-1.39-.67-9.42.74-16.29.48-2.33.97-4.74 2.52-6.68.6-.75 1.3-1.46 1.99-2.16.9-.92 1.85-1.87 2.6-2.96.27-.4.5-.82.71-1.23.26-.48.5-.93.81-1.34.5-.65 1.32-1.29 2.18-1.13.73.14 1.3.57 1.71 1.3.85 1.5.8 4 .27 5.48-.07.2.03.42.23.5.2.07.42-.04.49-.24.6-1.66.65-4.41-.32-6.13a3.21 3.21 0 00-2.24-1.67c-1.2-.22-2.3.59-2.92 1.42-.35.46-.62.96-.88 1.44-.2.4-.43.79-.67 1.16a21.61 21.61 0 01-2.52 2.86c-.7.7-1.41 1.43-2.04 2.21-1.66 2.1-2.17 4.6-2.67 7.01-.5 2.46-2.89 14.81-.5 17.02l1.76 1.63c5.13 4.76 10.95 10.15 15.9 14.9 3.93 3.75 8.6 6.91 12.69 9.59.81.53 1.63 1.06 2.44 1.6 8.42 5.48 16.37 10.66 23.11 18.83 3.89 4.71 6.9 11.01 8.5 17.74 1.29 5.49.84 10.76.37 16.34-.07.8-.13 1.61-.2 2.43a638.6 638.6 0 00-1.36 22.16c.1.05.2.12.28.21.15.18.31.35.47.53.33-7.62.78-15.23 1.37-22.84.07-.82.14-1.62.2-2.43.48-5.64.93-10.97-.4-16.58zm21.51-35.91a.38.38 0 01-.33-.19c-2.27-3.79-4.84-8.08-8.57-10.91-1.14-.87-2.4-1.6-3.6-2.32a33.64 33.64 0 01-8.74-6.84.39.39 0 01.01-.54c.16-.14.4-.14.55.02a32.64 32.64 0 006.5 5.46c.68.43 1.38.84 2.05 1.24 1.24.72 2.51 1.47 3.68 2.36 3.86 2.92 6.47 7.28 8.78 11.13a.39.39 0 01-.33.59z"/><path fill="#000" d="M378.76 242.2c-.48 12 1.56 30.9 4.26 50.28.23-.2.46-.4.69-.6-2.66-19.18-4.66-37.8-4.19-49.66.02-.58.05-1.17.07-1.76.35-8.07.7-16.42-3.14-23.45-1-1.83-2.26-3.5-3.48-5.13l-12.54-16.66a43.18 43.18 0 00-4.69-5.35c-.68-.65-4.06-5.57-4.67-6.45-.28.06-1.13-.19-1.4-.12l3.2 4.62c.76.84 1.54 1.66 2.32 2.49 1.54 1.61 3.14 3.29 4.63 5.27l12.54 16.67a42.3 42.3 0 013.42 5.03c3.74 6.85 3.4 15.08 3.05 23.05-.02.59-.05 1.18-.07 1.76zm-34.5-167.22h-.09c-3.57.17-6.73.2-10.07.22-1.25 0-2.52.01-3.86.03-.49 0-.94.2-1.28.57-.34.35-.51.83-.5 1.32.08 1.88.14 3.81.21 5.74.06 1.97.13 3.95.2 5.88.04.93.8 1.67 1.73 1.68h.04c4.63-.1 9.2-.23 13.99-.41a1.78 1.78 0 001.7-1.81c-.01-.87-.03-1.73-.04-2.59-.03-2.86-.06-5.81-.28-8.98a1.77 1.77 0 00-1.76-1.65zm-13.66 16.2a2.5 2.5 0 01-2.49-2.4c-.08-1.97-.14-3.93-.2-5.9-.07-1.92-.14-3.85-.2-5.73a2.59 2.59 0 012.52-2.7c1.33 0 2.61-.02 3.86-.03 3.33-.02 6.49-.04 10.05-.2 1.38-.07 2.54 1 2.64 2.36.21 3.19.25 6.16.28 9.03 0 .85.02 1.71.03 2.58a2.55 2.55 0 01-2.43 2.6c-4.67.16-9.34.3-14.01.4h-.05z"/><path fill="#000" d="M343 76.4h-.06c-2.9.12-5.45.14-8.16.16-1 .01-2.04.02-3.11.03a1.58 1.58 0 00-1.55 1.65c.05 1.52.1 3.08.16 4.63.05 1.6.1 3.21.17 4.78.02.82.7 1.47 1.51 1.47v.2l.03-.2c3.75-.08 7.46-.19 11.33-.33.83-.03 1.5-.74 1.49-1.59-.02-.7-.02-1.4-.03-2.1-.03-2.3-.05-4.7-.23-7.26a1.56 1.56 0 00-1.54-1.45zm-11.04 13.1a1.9 1.9 0 01-1.9-1.83 820.4 820.4 0 01-.33-9.41 1.95 1.95 0 011.94-2.06c1.07 0 2.1-.02 3.11-.02 2.7-.02 5.26-.04 8.15-.17a1.93 1.93 0 012 1.8c.18 2.57.2 4.97.23 7.3.01.69.02 1.38.03 2.09a1.95 1.95 0 01-1.86 1.98c-3.87.14-7.57.25-11.33.33h-.04zm19.62-14.29c-.59 0-1.08.16-1.36.44-.31.3-.33.7-.33 1.2.02 3.07.1 6.2.23 9.3.03.56.05 1.15.37 1.64.28.43.9.86 1.68.86h.05c.8-.02 1.46-.48 1.76-.93.32-.48.38-1.03.43-1.64.11-1.5.17-3.03.17-4.53 0-1.23-.36-3.08-.66-4.55l-.04-.22c-.13-.62-.16-.75-.84-1.19a2.84 2.84 0 00-1.46-.38zm.6 14.02a2.6 2.6 0 01-2.17-1.12c-.4-.63-.43-1.33-.46-1.94-.13-3.1-.21-6.22-.23-9.32 0-.44-.01-1.11.5-1.62.4-.38 1.02-.6 1.76-.6.66 0 1.3.18 1.77.48.84.54.94.82 1.08 1.56l.05.22c.3 1.49.67 3.37.67 4.66 0 1.53-.05 3.05-.17 4.57-.05.7-.13 1.33-.53 1.92a2.82 2.82 0 01-2.22 1.2h-.06z"/><path fill="#000" d="M337.25 77.26a5.84 5.84 0 00-3.19 1.04 4.03 4.03 0 00-1.87 2.73c-.17.63-.31 1.24-.36 1.86a4.75 4.75 0 002.03 4.35c.96.59 2.29.93 3.66.93 1.11 0 2.16-.23 2.94-.65 1.43-.77 2.36-2.27 2.6-4.24.05-.36.06-.71.03-1.07a5.76 5.76 0 00-1.92-3.75c-.94-.83-2.64-1.2-3.92-1.2zm.27 11.3a7.52 7.52 0 01-3.86-1 5.15 5.15 0 01-2.2-4.7c.04-.65.19-1.28.36-1.93.37-1.43.9-2.2 2.04-2.95a6.16 6.16 0 013.4-1.1c1.24 0 3.09.33 4.16 1.29a6.14 6.14 0 012.05 4c.03.39.02.77-.03 1.16-.26 2.1-1.25 3.7-2.8 4.53-.84.45-1.94.7-3.12.7zm36.4 84.57c-.28-5.16-.22-10.47-.15-15.6a.39.39 0 00.05-.18c.44-16.55.37-33.33-.22-49.87a.38.38 0 00-.4-.37.39.39 0 00-.37.4c.59 16.43.66 33.1.24 49.55a.4.4 0 00-.17.31v.09c-.07 5.17-.14 10.5.15 15.71v.26c.17 2.84.41 7.14-2.68 8.58-1.69.79-4.12.76-6.07.74-.24 0-.48 0-.72 0-.25 0-16.28-.26-16.28-.03s-.43.9-.19.9c.23 0 16.93-.04 17.18-.04.33 0 .68 0 1.03 0 1.82 0 3.87-.1 5.44-.82 3.6-1.7 3.35-6.32 3.18-9.38l-.02-.25zm9.45 116.18c-.86.2-.5 1.55.37 1.34-.16.33-.33.65-.5.98-.32.1-.65.16-.99.2-.71.13-1.43.21-2.15.31-1.86.27-3.73.5-5.6.7-3.37.38-6.76.62-10.15.71-3.37.1-6.75 0-10.11-.3a63.03 63.03 0 01-9.09-1.52c-.18-.88.07-1.2.76-.98.43.03.53-.68.1-.76a41.8 41.8 0 01-1.13-.2c-.2-.04-.41.02-.52.21-.36.7-.5 1.25-.54 2.04a.5.5 0 00.36.48c8.96 2.46 18.22 2.68 27.42 1.93 2.18-.18 4.35-.43 6.52-.7 1.92-.23 4.13-.27 5.94-.98 1.97-.77 1.52-3.98-.7-3.46z"/><path fill="#000" d="M345.85 291.13a.36.36 0 00-.09-.13c.01-.15 0-.3-.04-.46a.39.39 0 00-.36-.29.82.82 0 00-.08-.2c-.2-.35-.76-.2-.76.22 0 .16 0 .33 0 .5v.04c-.02.08-.01.18 0 .27 0 .18 0 .37.01.56 0 .23.18.4.4.43.06.29.47.5.68.22.28-.34.4-.74.24-1.16z"/><path fill="#000" d="M387.55 302.88a65.1 65.1 0 00-2.87-11.92c-.25-.75-1.45-.43-1.19.33a60.06 60.06 0 013.04 13.2c.19 1.57.97 4.4-1.28 4.86-6.43 1.3-13.1 1.8-19.65 2.08-6.13.25-12.57.41-18.65-.46-2.38-.34-2.34-2.66-2.33-4.57v-5.19c.01-1.48.01-2.96.01-4.44 0-.8-.5-5.05.41-5.36.42-.14.25-.74-.18-.66-.6.1-.95.49-1.03 1.13-.26 2.08-.1 4.28-.12 6.37-.01 1.98-.03 3.95-.04 5.93-.02 1.84-.22 3.8.18 5.6.6 2.72 5.06 2.39 7 2.52a149.02 149.02 0 0030.33-1.14c1.66-.22 3.91-.2 5.44-.93 2.47-1.2 1.23-5.24.93-7.35z"/><path fill="#000" d="M360.87 304.7c-.07-3.27-.09-6.55-.32-9.8-.03-.41-.63-.42-.64 0-.1 2.76 0 5.53.03 8.29.04 2.47.8 6.23-.56 8.41-.34.53.5 1.03.83.5 1.3-2.13.72-5.04.66-7.4zm-4.26-.09c0 .79-.02 2.61-.94 2.98-1.28.53-2.01-1.13-2.11-2.06a6.59 6.59 0 01.34-2.53c.27.13.66 0 .68-.41h.02c.1.03.23 0 .3-.09l1.1-.32c.28.28.46.62.52 1 .13.45.1.97.09 1.43zm.53-2.5c-.67-1.56-3.06-1.6-3.44-.03-.92.66-.97 2.94-.91 3.84.13 1.78 2.05 3.37 3.7 2.25.78-.52.88-1.78.99-2.6a6.43 6.43 0 00-.34-3.46zm-11.95 17.42v.1c0 .03 0 .06 0 .08-.34 10.72-1.4 24.2-3.2 40.48h-1.22c2.14-24.05 3.54-37.65 3.54-40.68.02-3.05-.01-6.1.14-9.15.02-.4.58-.4.6 0 .16 3.04.12 6.1.14 9.15v.02z"/><path fill="#000" d="M360.24 311.75c-.07-.71-1.18-.72-1.11 0 .69 7.27.68 14.77-.53 22l-2.43-.42a6.28 6.28 0 01-.26-1.55c-.1-.97-.12-1.95-.15-2.92-.06-1.94.03-3.89.2-5.83.28-3.48 1.72-7.13 1.42-10.62-.03-.4-.63-.42-.63 0 .01 2.56-.9 5.1-1.3 7.61-.36 2.2-.53 4.43-.6 6.65-.07 2-.82 8.81 2.58 8.96 1.18.05 1.78-.51 2.14-1.62.65-1.99.63-4.5.8-6.57.45-5.22.36-10.47-.13-15.69zm31.49 25.42a525.44 525.44 0 01-3.85-28.08c-.05-.42-.7-.44-.67 0 .8 17.27 4.9 34.26 7 51.4h1.02c-.94-7.8-2.23-15.56-3.5-23.32zm-97.6-285.5c-1.08-.42-1.69-1.88-2.3-2.78-.61-.93-1.23-1.85-1.84-2.77a88.36 88.36 0 00-3.86-5.43c-1.02-1.3-2.92.22-2 1.55 1.54 2.18 3.25 4.23 4.94 6.28 1.23 1.5 2.56 3.9 4.51 4.5.88.29 1.44-1.02.55-1.36zm-2.88 5.35a40.13 40.13 0 00-11.8-5.08c-1.39-.36-1.98 2.02-.62 2.46 3.91 1.27 7.82 2.57 11.74 3.83.7.22 1.39-.76.68-1.21zm-2.11 5.56c-3.5-.89-7.52-.97-11.1-.51-1.4.17-1.42 2.47.03 2.53 3.62.14 7.5.07 11.08-.5.92-.15.77-1.32-.01-1.52zm10.64-12.47c-.3-3.87-.12-7.71-.15-11.58-.01-1.4-2.05-1.74-2.2-.26-.42 4.02.19 8.12 1.14 12.02.19.76 1.27.62 1.2-.18zm9.3-7.79a22.88 22.88 0 00-5.2 8.33c-.25.7.67 1.27 1.14.66 1.87-2.46 3.8-4.93 5.58-7.46.68-.97-.62-2.43-1.53-1.53zm-19.76 27.8a21.59 21.59 0 00-7.93 4.17c-1.01.82.18 2.36 1.23 1.6a61.6 61.6 0 017.13-4.25c.73-.4.5-1.76-.43-1.52z"/></g></g><path fill="#FFF" fill-rule="nonzero" d="M269.84 69.2h10.24V114h-10.24V69.2zm53.44 11.9c7.36 0 12.16 5.25 12.16 13.25V114h-9.6V95.18c0-3.2-1.54-5.24-4.6-5.24-3.2 0-5 2.24-5 6.01V114h-9.6V95.18c0-3.2-1.54-5.24-4.6-5.24-3.2 0-5 2.24-5 6.01V114h-9.6V82h9.6v2.94c1.47-2.17 4.29-3.84 8.58-3.84 3.77 0 6.59 1.54 8.38 4.23 1.8-2.56 4.74-4.23 9.28-4.23zm41.98.9h9.6v32h-9.6v-3c-2.1 2.42-5.24 3.9-9.53 3.9-8.39 0-15.3-7.36-15.3-16.9s6.91-16.9 15.3-16.9c4.29 0 7.42 1.48 9.53 3.9v-3zm-7.61 23.8c4.41 0 7.61-3 7.61-7.8s-3.2-7.8-7.61-7.8c-4.42 0-7.62 3-7.62 7.8s3.2 7.8 7.62 7.8zM405.39 82h9.35v30.4c0 10.75-8.39 15.3-16.9 15.3-6.66 0-12.22-2.5-15.17-7.75l8.2-4.73c1.21 2.24 3.07 4.03 7.29 4.03 4.48 0 7.23-2.3 7.23-6.85v-2.94c-2.11 2.62-5.18 4.16-9.34 4.16-9.09 0-15.75-7.43-15.75-16.26 0-8.83 6.66-16.26 15.75-16.26 4.16 0 7.23 1.54 9.34 4.16V82zm-7.74 22.78c4.54 0 7.74-3 7.74-7.42s-3.2-7.42-7.74-7.42c-4.55 0-7.75 3-7.75 7.42s3.2 7.42 7.75 7.42zm32.7-2.94c1.22 3.33 4.16 4.48 7.68 4.48 2.63 0 4.87-1.02 6.15-2.43l7.68 4.41c-3.14 4.36-7.88 6.6-13.96 6.6-10.94 0-17.72-7.36-17.72-16.9s6.9-16.9 17.02-16.9c9.34 0 16.26 7.24 16.26 16.9 0 1.34-.13 2.62-.39 3.84h-22.72zm-.19-7.17h13.76c-1.02-3.71-3.9-5.05-6.78-5.05-3.65 0-6.08 1.79-6.98 5.05zm36.54-3.33c0 3.65 15.75 1.22 15.75 13.06 0 7.36-6.4 10.5-13.31 10.5-6.4 0-11.27-2.44-13.76-7.62l8.32-4.74c.83 2.44 2.62 3.78 5.44 3.78 2.3 0 3.45-.7 3.45-1.98 0-3.52-15.74-1.67-15.74-12.74 0-6.98 5.89-10.5 12.54-10.5 5.19 0 9.8 2.3 12.48 6.85l-8.19 4.42c-.9-1.67-2.18-2.82-4.29-2.82-1.66 0-2.69.64-2.69 1.8z"/><path fill="#FFF" fill-rule="nonzero" d="M263.4 156l-1.64-4.27h-8.42L251.7 156h-1.34l6.53-16.8h1.34l6.5 16.8h-1.34zm-9.58-5.47h7.48l-3.74-9.77-3.74 9.77zm24.9 5.73c-3.14 0-5.37-1.58-6.14-3.96l1.1-.64c.58 2.01 2.29 3.38 5.05 3.38 2.8 0 4.22-1.44 4.22-3.36 0-2.02-1.77-2.78-4.34-3.6-2.81-.91-5.33-1.7-5.33-4.63 0-2.76 2.23-4.51 5.09-4.51a5.64 5.64 0 015.4 3.52l-1.08.6a4.42 4.42 0 00-4.32-2.9c-2.33 0-3.8 1.37-3.8 3.24 0 2.02 1.71 2.64 4.11 3.43 2.98.99 5.57 1.92 5.57 4.83 0 2.78-2.19 4.6-5.52 4.6zm9-15.16a.96.96 0 01-.95-.96c0-.5.43-.94.96-.94s.96.43.96.94c0 .52-.43.96-.96.96zm-.6 14.9v-12h1.2v12h-1.2zm11.05-10.82h-3.58v7.8c0 2.1 1.13 2.16 3.58 1.94V156c-3.15.48-4.8-.29-4.8-3.02v-7.8h-2.64V144h2.64v-3l1.22-.36V144h3.58v1.18zm7.56-1.44c3.65 0 5.93 3.02 5.93 6.3 0 .2-.03.4-.03.58h-10.87a4.88 4.88 0 005.09 4.5c1.97 0 3.45-.92 4.15-2.2l1.06.63a5.91 5.91 0 01-5.24 2.71 6.06 6.06 0 01-6.3-6.26 6.05 6.05 0 016.2-6.26zm0 1.15a4.84 4.84 0 00-4.97 4.56h9.65c-.27-2.93-2.33-4.56-4.68-4.56zM331.72 156l-4.03-6.89h-5.3V156h-1.28v-16.8h6.63a4.96 4.96 0 011.27 9.74l4.17 7.06h-1.46zm-9.34-15.6v7.51h5.36c2.04 0 3.7-1.68 3.7-3.74a3.73 3.73 0 00-3.7-3.77h-5.36zm18 3.34c3.65 0 5.93 3.02 5.93 6.3 0 .2-.02.4-.02.58h-10.87a4.88 4.88 0 005.08 4.5c1.97 0 3.46-.92 4.16-2.2l1.05.63a5.91 5.91 0 01-5.23 2.71 6.06 6.06 0 01-6.31-6.26 6.05 6.05 0 016.21-6.26zm0 1.15a4.84 4.84 0 00-4.96 4.56h9.64c-.26-2.93-2.32-4.56-4.68-4.56zm17.07-.89h1.27l-5.06 12h-1.47l-5.09-12h1.3l4.51 10.75 4.54-10.75zm4.05-2.9a.96.96 0 01-.96-.96.96.96 0 011.92 0c0 .52-.43.96-.96.96zm-.6 14.9v-12h1.2v12h-1.2zm10.3-12.26c3.65 0 5.93 3.02 5.93 6.3 0 .2-.03.4-.03.58h-10.87a4.88 4.88 0 005.09 4.5c1.97 0 3.46-.92 4.15-2.2l1.06.63a5.91 5.91 0 01-5.23 2.71 6.06 6.06 0 01-6.32-6.26 6.05 6.05 0 016.22-6.26zm0 1.15a4.84 4.84 0 00-4.97 4.56h9.65c-.26-2.93-2.33-4.56-4.68-4.56zm22.82-.89h1.28l-3.8 12h-1.32l-3.33-10.22L383.5 156h-1.32l-3.79-12h1.27l3.2 10.44 3.35-10.44h1.25l3.36 10.44 3.2-10.44zm4.01 3.14c0 3.22 7.27 1.32 7.27 5.72 0 1.96-1.72 3.4-4.3 3.4-2.4 0-3.98-1.12-4.55-2.66l1.03-.6c.43 1.3 1.73 2.11 3.53 2.11 1.68 0 3.1-.74 3.1-2.25 0-3.27-7.28-1.4-7.28-5.72 0-1.9 1.63-3.4 4.08-3.4 1.95 0 3.43.93 4.08 2.4l-1 .57c-.51-1.25-1.76-1.82-3.08-1.82-1.56 0-2.88.81-2.88 2.25zm27.15-3.14h1.22v12h-1.22v-2.71a5.77 5.77 0 01-5.16 2.97 6.2 6.2 0 01-6.22-6.26 6.2 6.2 0 016.22-6.26c2.3 0 4.15 1.17 5.16 2.97V144zm-5.07 11.11a5.03 5.03 0 005.07-5.11c0-2.86-2.21-5.11-5.07-5.11a5.05 5.05 0 00-5.09 5.11 5.05 5.05 0 005.1 5.11zm20.57-15.91h1.2V156h-1.2v-2.78a5.69 5.69 0 01-5.16 3.04 6.18 6.18 0 01-6.22-6.26 6.18 6.18 0 016.22-6.26c2.33 0 4.18 1.2 5.16 3.04v-7.58zm-5.09 15.91a5.05 5.05 0 005.09-5.11 5.05 5.05 0 00-5.09-5.11 5.05 5.05 0 00-5.09 5.11 5.05 5.05 0 005.1 5.11zm20.57-15.91h1.2V156h-1.2v-2.78a5.69 5.69 0 01-5.16 3.04 6.18 6.18 0 01-6.22-6.26 6.18 6.18 0 016.22-6.26c2.33 0 4.18 1.2 5.16 3.04v-7.58zm-5.09 15.91a5.05 5.05 0 005.09-5.11 5.05 5.05 0 00-5.09-5.11 5.05 5.05 0 00-5.09 5.11 5.05 5.05 0 005.1 5.11zm10.23-5.95v-1.15h8.64v1.15h-8.64zm18.04 7.1a6.22 6.22 0 01-6.3-6.26c0-3.55 2.8-6.26 6.3-6.26a6.21 6.21 0 016.3 6.26c0 3.55-2.82 6.26-6.3 6.26zm0-1.15a5.03 5.03 0 005.07-5.11c0-2.86-2.21-5.11-5.07-5.11a5.05 5.05 0 00-5.08 5.11 5.05 5.05 0 005.08 5.11zm14.67-11.37c2.85 0 4.65 1.9 4.65 4.8V156h-1.22v-7.46c0-2.21-1.27-3.65-3.53-3.65-2.35 0-4.2 1.53-4.2 4.77V156h-1.2v-12h1.2v2.28a4.52 4.52 0 014.3-2.54z" opacity=".75"/></g></svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/images/addon-tripadvisor.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="2200" height="1100"><title>tripadvisor</title><desc>Created with Sketch.</desc><g fill="none"><path fill="#00A680" d="M0 0h2200v1100H0z"/><path id="Shape" fill="#00AF87" d="M1471.44 1148.7c-5.22-19.06 4.76-39.34 23.6-46.57 11.17-4.3 23.1-3.08 32.82 2.3l9.1 61.06c-3.5 3.6-7.74 6.6-12.62 8.67l-52.9-25.5zm-121.63-58.62c-2.42-17.52 7.4-35.05 24.6-41.66 20.08-7.7 42.58 2.32 50.28 22.38 6.9 17.98-.43 37.93-16.48 47.4l-58.4-28.12zm-120.96-58.3c-.3-15.9 9.25-31.03 24.96-37.06 20.05-7.7 42.55 2.32 50.25 22.38 6.33 16.48.7 34.6-12.65 44.83l-62.57-30.15zm277.9-69.37c-6.06-4.26-10.97-10.33-13.83-17.8-5.04-13.15-2.46-27.36 5.57-37.76l8.27 55.58zM682.6 1170.9c-3.2-3.5-5.8-7.64-7.6-12.33-7.7-20.06 2.3-42.56 22.37-50.26 20.05-7.7 42.56 2.34 50.25 22.4 1.02 2.65 1.73 5.34 2.15 8.04l-67.17 32.17zm82.6-39.57c-1.18-1.94-2.2-4.02-3.05-6.22-7.7-20.04 2.32-42.54 22.38-50.24 20.06-7.7 42.56 2.32 50.26 22.38.06.22.14.43.22.65l-69.83 33.44zm83.92-40.2c-7.33-19.92 2.68-42.1 22.57-49.74 17.9-6.9 37.74.36 47.27 16.26l-69.86 33.47zm85.24-40.82c-2.82-17.74 7.03-35.65 24.5-42.36 15.4-5.9 32.27-1.36 42.74 10.17l-67.24 32.2zm86.74-41.53c.78-14.87 10.12-28.6 24.9-34.28 12.73-4.9 26.43-2.65 36.72 4.75l-61.62 29.52zm87.27-35.03c1.34-14.26 10.53-27.23 24.8-32.7 20.06-7.7 42.56 2.3 50.26 22.36 5.78 15.05 1.58 31.47-9.35 42l-65.7-31.67zm386.46-91.33c-15.3-.36-29.57-9.8-35.4-24.95-7.7-20.05 2.33-42.56 22.4-50.25.56-.23 1.14-.44 1.72-.63l11.28 75.83zm-820.4 213.83l12.38-76.6c12.1 2.86 22.6 11.44 27.38 23.9 7.7 20.06-2.32 42.56-22.38 50.26-5.73 2.2-11.64 2.94-17.36 2.43zM1470.4 718.3l10.75 72.08c-1.56.86-3.2 1.62-4.9 2.28-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.3-42.56 22.37-50.26 7.3-2.8 14.93-3.25 22.05-1.73zM697.24 955.14l7.5-46.5c3.62-3.43 7.95-6.23 12.9-8.12 20.05-7.7 42.55 2.32 50.25 22.37 7.7 20.05-2.32 42.55-22.38 50.25-18.55 7.12-39.18-.9-48.28-18zm795.36-288.36c-5.64-4.25-10.2-10.07-12.9-17.14-7.7-20.05 2.32-42.56 22.37-50.26 16.6-6.37 34.87-.6 45.04 12.94l-54.5 54.45zM1642 517.56c-9.5-3.94-17.46-11.63-21.44-22-7.7-20.05 2.32-42.55 22.38-50.25 19.75-7.57 41.87 2.03 49.9 21.48L1642 517.56zM728.7 760.34l10-61.9-4.2-4.23c1.1-.53 2.2-1.03 3.37-1.47 20.05-7.7 42.56 2.32 50.26 22.37 7.7 20.06-2.32 42.56-22.38 50.26-12.86 4.94-26.73 2.6-37.06-5.02zm977.06-437.94l20.87 3.17c9 4.06 16.45 11.54 20.27 21.48 7.7 20.06-2.33 42.56-22.4 50.26-20.04 7.7-42.55-2.3-50.24-22.36-7.7-20.06 2.3-42.56 22.37-50.26 3-1.15 6.06-1.9 9.12-2.28zm87.75 43.83c-14-1.55-26.67-10.68-32.07-24.74-1.4-3.63-2.2-7.33-2.5-11l61.08 9.27-26.5 26.47zM721.1 680.73l-41.55-41.9c1.16-14.47 10.4-27.7 24.85-33.24 20.06-7.7 42.56 2.3 50.26 22.35 7.7 20.06-2.32 42.56-22.38 50.26-3.68 1.4-7.45 2.24-11.2 2.5zm830.84-381.7l76.78 11.68c-1.27 14.36-10.48 27.44-24.83 32.95-20.07 7.7-42.57-2.32-50.27-22.38-2.83-7.36-3.27-15.05-1.7-22.22zm-203.7-30.95l72 10.94c3.9 18.4-6 37.42-24.13 44.37-20.03 7.7-42.54-2.33-50.23-22.4-4.3-11.2-3.07-23.2 2.37-32.93zm95.05 14.44l42.3 6.44c-.77.34-1.54.67-2.34.98-14.12 5.42-29.46 2.05-39.98-7.42zM528.26 486.25c3.93-9.55 11.63-17.53 22.04-21.53 20.07-7.7 42.57 2.32 50.27 22.38 7.63 19.88-2.14 42.15-21.84 50.04l-50.46-50.9zm753.46-286.13l18.1 40.15c-2.34 12.93-11.18 24.37-24.35 29.42-20.06 7.7-42.56-2.34-50.26-22.4-7.7-20.05 2.3-42.55 22.37-50.25 11.7-4.5 24.2-2.96 34.13 3.06zm-499.4 75.77l8.4-1.3c16.2-.63 31.73 8.98 37.87 24.95 7.7 20.06-2.3 42.56-22.37 50.26-20.06 7.7-42.56-2.3-50.26-22.37-7.7-20.05 2.32-42.56 22.38-50.25 1.32-.52 2.65-.95 3.98-1.3zm60.55-9.17l47.36-7.16 6.58-14.33c8.4 4.2 15.3 11.4 18.93 20.85 7.7 20.05-2.32 42.55-22.38 50.25-20.07 7.7-42.57-2.32-50.27-22.37-3.5-9.13-3.34-18.75-.24-27.26zm397.96-157.28l23.23 51.5c-3.94 9.58-11.65 17.57-22.06 21.57-20.05 7.7-42.55-2.32-50.25-22.38-7.7-20.05 2.32-42.56 22.37-50.26 8.93-3.43 18.34-3.35 26.7-.44zm-807.8 219.23c5.9 4.27 10.66 10.25 13.46 17.55 6.32 16.47.7 34.6-12.62 44.8L380 336.7l53.03-8.02zm25.44-3.84l75.43-11.4c7.25 19.88-2.77 41.98-22.6 49.6-20.06 7.7-42.56-2.33-50.26-22.38-2-5.2-2.8-10.6-2.55-15.82zm91.4-13.82L622.84 300c-2.3 13-11.16 24.5-24.38 29.57-18.74 7.2-39.6-1.07-48.56-18.55zm369.64-115.16l32.4-70.52c7.76 4.28 14.12 11.2 17.55 20.14 7.7 20.06-2.32 42.56-22.38 50.26-9.25 3.55-19 3.34-27.6.12zm281.3-175.22l26.7 59.22c-4.33 6.83-10.8 12.4-18.94 15.5-20.06 7.7-42.56-2.3-50.26-22.37-7.7-20.08 2.32-42.58 22.38-50.28 6.64-2.55 13.55-3.15 20.1-2.1zm-226.14 55.1l32.27-70.25c7.16 4.3 13 10.94 16.22 19.35 7.7 20.06-2.32 42.56-22.37 50.26-8.72 3.36-17.9 3.36-26.12.64zM1161.28-67l29.13 64.6c-4 4.58-9.2 8.3-15.27 10.63-20.06 7.7-42.56-2.3-50.26-22.37-7.7-20.06 2.32-42.56 22.38-50.26 4.62-1.77 9.37-2.6 14.04-2.6zm-131.4 22.6l32.08-69.88c6.57 4.32 11.9 10.65 14.92 18.55 7.7 20.05-2.32 42.55-22.38 50.25-8.2 3.15-16.8 3.34-24.63 1.1zm92.28-109.36l30.74 68.17c-3.25 2.77-7.02 5.04-11.24 6.66-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.38-50.26 2.76-1.05 5.57-1.77 8.38-2.18zm-37.08-10.85l16.24-35.38 13.73 30.45c-2.12 1.35-4.4 2.5-6.85 3.43-7.67 2.95-15.7 3.3-23.12 1.5zm404.38 1252.22c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.05 2.32-42.55 22.37-50.25 20.06-7.7 42.56 2.3 50.26 22.36 7.7 20.06-2.32 42.56-22.37 50.26zm-120.62-53.7c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.3 42.56-22.35 50.26zm87.16-33.46c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.05 2.32-42.56 22.38-50.25 20.05-7.7 42.55 2.32 50.25 22.38 7.7 20.07-2.32 42.57-22.37 50.27zm-207.78-20.25c-20.06 7.7-42.56-2.3-50.26-22.37-7.7-20.06 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.34 42.56-22.4 50.25zm87.16-33.45c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.05-7.7 42.55 2.33 50.25 22.4 7.7 20.05-2.3 42.55-22.37 50.25zm87.16-33.46c-20.06 7.7-42.56-2.33-50.26-22.4-7.7-20.05 2.32-42.55 22.38-50.25 20.05-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.32 42.56-22.38 50.26zm-643.6 147.03c-20.05 7.7-42.55-2.32-50.25-22.37-7.7-20.06 2.3-42.56 22.36-50.26 20.06-7.7 42.56 2.3 50.26 22.37 7.7 20.05-2.32 42.55-22.38 50.25zm87.17-33.45c-20.03 7.7-42.54-2.32-50.23-22.38-7.7-20.07 2.3-42.57 22.37-50.27 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.07-2.33 42.58-22.4 50.28zm87.18-33.46c-20.05 7.7-42.55-2.3-50.25-22.37-7.7-20.06 2.32-42.56 22.37-50.26 20.05-7.7 42.55 2.3 50.25 22.37 7.7 20.06-2.32 42.56-22.38 50.26zm87.17-33.45c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.3-42.57 22.36-50.27 20.06-7.68 42.56 2.33 50.26 22.4 7.7 20.05-2.3 42.55-22.36 50.25zm87.16-33.46c-20.05 7.7-42.55-2.32-50.25-22.4-7.7-20.03 2.32-42.53 22.38-50.23 20.05-7.7 42.55 2.32 50.25 22.37 7.7 20.06-2.32 42.56-22.37 50.26zm87.17-33.46c-20.06 7.7-42.56-2.32-50.26-22.37-7.7-20.06 2.33-42.56 22.4-50.26 20.04-7.7 42.55 2.33 50.24 22.38 7.7 20.06-2.3 42.56-22.37 50.26zm87.16-33.46c-20.06 7.7-42.56-2.3-50.26-22.37-7.7-20.05 2.32-42.55 22.38-50.25 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.3 42.56-22.37 50.25zm87.16-33.45c-20.07 7.7-42.57-2.32-50.27-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.07-7.7 42.57 2.3 50.27 22.37 7.7 20.06-2.32 42.56-22.38 50.26zM832.65 939.7c-20.06 7.7-42.56-2.3-50.26-22.37-7.7-20.06 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.32 42.55-22.37 50.25zm87.16-33.45c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.34 50.26 22.4 7.7 20.06-2.34 42.56-22.4 50.26zm87.16-33.46c-20.06 7.7-42.56-2.34-50.26-22.4-7.7-20.06 2.32-42.56 22.38-50.26 20.05-7.7 42.55 2.32 50.25 22.38 7.7 20.06-2.3 42.56-22.37 50.26zm87.16-33.48c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.05 2.32-42.56 22.38-50.25 20.05-7.7 42.56 2.3 50.26 22.36 7.7 20.06-2.32 42.56-22.38 50.26zm87.16-33.46c-20.06 7.7-42.56-2.32-50.26-22.37-7.7-20.07 2.32-42.57 22.38-50.27 20.06-7.7 42.56 2.32 50.26 22.37 7.7 20.07-2.32 42.57-22.38 50.27zm87.16-33.46c-20.06 7.7-42.56-2.3-50.26-22.36-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.32 42.55-22.38 50.25zm87.16-33.44c-20.05 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.32 42.56-22.38 50.26zm87.16-33.46c-20.05 7.7-42.55-2.32-50.25-22.38-7.7-20.06 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.32 42.56-22.38 50.26zM799.2 852.54c-20.06 7.7-42.56-2.32-50.26-22.37-7.7-20.06 2.32-42.56 22.38-50.26 20.05-7.7 42.55 2.34 50.25 22.4 7.7 20.05-2.32 42.55-22.37 50.25zm87.16-33.46c-20.06 7.7-42.56-2.3-50.26-22.37-7.7-20.04 2.32-42.54 22.38-50.24 20.05-7.7 42.56 2.32 50.25 22.38 7.7 20.05-2.3 42.56-22.37 50.25zm87.16-33.45c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.3 50.26 22.36 7.7 20.06-2.32 42.56-22.38 50.26zm87.16-33.46c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.08 2.32-42.58 22.38-50.28 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.07-2.32 42.57-22.38 50.27zm87.16-33.46c-20.06 7.7-42.56-2.3-50.26-22.36-7.7-20.05 2.32-42.55 22.38-50.25 20.06-7.7 42.56 2.3 50.26 22.36 7.7 20.06-2.32 42.56-22.38 50.26zm87.16-33.44c-20.05 7.7-42.56-2.32-50.25-22.37-7.7-20.07 2.3-42.57 22.37-50.27 20.06-7.7 42.56 2.32 50.26 22.37 7.7 20.05-2.32 42.55-22.38 50.25zm87.16-33.46c-20.05 7.7-42.55-2.32-50.25-22.38-7.7-20.06 2.34-42.56 22.4-50.26 20.05-7.7 42.55 2.32 50.25 22.38 7.7 20.05-2.32 42.55-22.38 50.25zm87.17-33.46c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.32 42.56-22.37 50.26zm87.16-33.46c-20.08 7.7-42.58-2.32-50.28-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.3 42.56-22.37 50.26zm87.14-33.46c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.05 2.3-42.56 22.37-50.25 20.05-7.7 42.56 2.3 50.26 22.35 7.7 20.06-2.3 42.56-22.37 50.26zM852.9 731.92c-20.06 7.7-42.56-2.32-50.26-22.37-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.3 50.26 22.36 7.7 20.05-2.32 42.55-22.38 50.25zm87.16-33.45c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.08 2.32-42.58 22.38-50.28 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.32 42.57-22.38 50.27zm87.16-33.46c-20.05 7.7-42.56-2.3-50.26-22.36-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.32 42.56-22.38 50.26zm87.16-33.44c-20.05 7.7-42.55-2.32-50.25-22.38-7.7-20.05 2.3-42.56 22.37-50.26 20.06-7.68 42.56 2.33 50.26 22.4 7.7 20.05-2.32 42.55-22.38 50.25zm87.17-33.46c-20.06 7.7-42.56-2.33-50.26-22.4-7.7-20.04 2.3-42.54 22.35-50.24 20.06-7.7 42.56 2.32 50.26 22.37 7.7 20.06-2.3 42.56-22.36 50.26zm87.16-33.47c-20.04 7.7-42.54-2.32-50.24-22.37-7.7-20.06 2.32-42.56 22.38-50.26 20.05-7.7 42.55 2.32 50.25 22.37 7.7 20.06-2.33 42.56-22.38 50.26zm87.18-33.46c-20.06 7.7-42.56-2.3-50.26-22.37-7.7-20.06 2.33-42.56 22.4-50.26 20.04-7.7 42.55 2.32 50.24 22.38 7.7 20.05-2.3 42.56-22.37 50.25zm87.16-33.45c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.3 42.56-22.37 50.26zm87.16-33.46c-20.07 7.7-42.57-2.32-50.27-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.08-7.7 42.58 2.32 50.28 22.38 7.7 20.06-2.32 42.56-22.38 50.26zm87.15-33.46c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.05 2.3-42.55 22.36-50.25 20.06-7.7 42.56 2.3 50.26 22.37 7.7 20.06-2.32 42.56-22.38 50.26zm-817.9 213.96c-20.07 7.7-42.57-2.32-50.27-22.37-7.7-20.08 2.32-42.58 22.38-50.28 20.06-7.7 42.56 2.32 50.26 22.37 7.7 20.05-2.32 42.55-22.38 50.25zm87.15-33.46c-20.05 7.7-42.56-2.3-50.25-22.37-7.7-20.06 2.3-42.56 22.37-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.32 42.55-22.38 50.25zm87.16-33.45c-20.05 7.7-42.55-2.32-50.25-22.38-7.7-20.06 2.34-42.56 22.4-50.26 20.05-7.7 42.55 2.34 50.25 22.4 7.7 20.06-2.32 42.56-22.38 50.26zm87.17-33.46c-20.06 7.7-42.56-2.34-50.26-22.4-7.7-20.06 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.32 42.56-22.37 50.26zm87.16-33.48c-20.08 7.7-42.58-2.32-50.28-22.38-7.7-20.05 2.32-42.56 22.38-50.25 20.06-7.7 42.56 2.3 50.26 22.36 7.7 20.06-2.32 42.56-22.37 50.26zm87.14-33.46c-20.06 7.7-42.56-2.32-50.26-22.37-7.7-20.07 2.3-42.57 22.37-50.27 20.05-7.7 42.56 2.32 50.26 22.37 7.7 20.07-2.3 42.57-22.37 50.27zM1342.4 444c-20.05 7.7-42.55-2.3-50.25-22.36-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.34 42.55-22.4 50.25zm87.17-33.44c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.34-42.56 22.4-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.32 42.56-22.38 50.26zm87.16-33.46c-20.05 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.3 42.56-22.36 50.26zm-817.9 213.96c-20.06 7.7-42.57-2.32-50.27-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.32 42.56-22.38 50.26zm87.15-33.46c-20.05 7.7-42.55-2.32-50.25-22.38-7.7-20.05 2.3-42.55 22.37-50.25 20.06-7.7 42.56 2.32 50.26 22.37 7.7 20.06-2.32 42.56-22.38 50.26zm87.17-33.46c-20.06 7.7-42.56-2.32-50.26-22.37-7.7-20.06 2.3-42.56 22.35-50.26 20.06-7.7 42.56 2.34 50.26 22.4 7.7 20.05-2.3 42.55-22.36 50.25zm87.16-33.46c-20.04 7.7-42.54-2.3-50.24-22.37-7.7-20.04 2.32-42.54 22.37-50.24 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.33 42.56-22.38 50.25zm87.18-33.45c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.33-42.56 22.4-50.26 20.04-7.7 42.54 2.3 50.24 22.36 7.7 20.06-2.3 42.56-22.37 50.26zm87.16-33.46c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.08 2.32-42.58 22.38-50.28 20.05-7.7 42.56 2.32 50.26 22.38 7.7 20.07-2.3 42.57-22.37 50.27zm87.16-33.46c-20.07 7.7-42.57-2.3-50.27-22.36-7.7-20.05 2.32-42.55 22.38-50.25 20.08-7.7 42.58 2.3 50.28 22.36 7.7 20.06-2.32 42.56-22.38 50.26zm87.15-33.44c-20.06 7.7-42.56-2.32-50.26-22.37-7.7-20.07 2.3-42.57 22.36-50.27 20.06-7.7 42.56 2.32 50.26 22.37 7.7 20.05-2.32 42.55-22.38 50.25zM665.35 503.9c-20.04 7.7-42.54-2.32-50.24-22.38-7.7-20.06 2.34-42.56 22.4-50.26 20.05-7.7 42.55 2.32 50.25 22.38 7.7 20.06-2.32 42.56-22.38 50.26zm87.18-33.46c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.05 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.32 42.56-22.37 50.26zm87.16-33.46c-20.08 7.7-42.58-2.32-50.28-22.38-7.7-20.05 2.32-42.55 22.38-50.25 20.06-7.7 42.56 2.32 50.26 22.37 7.7 20.06-2.32 42.56-22.37 50.26zm87.14-33.46c-20.06 7.7-42.56-2.32-50.26-22.37-7.7-20.06 2.3-42.56 22.37-50.26 20.05-7.7 42.56 2.3 50.25 22.36 7.7 20.05-2.3 42.55-22.37 50.25zm87.16-33.45c-20.05 7.7-42.55-2.32-50.25-22.38-7.7-20.08 2.32-42.58 22.38-50.28 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.34 42.57-22.4 50.27zm87.17-33.46c-20.06 7.7-42.56-2.3-50.26-22.36-7.7-20.06 2.34-42.56 22.4-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.32 42.56-22.38 50.26zm87.16-33.44c-20.05 7.7-42.56-2.32-50.26-22.38-7.7-20.05 2.32-42.56 22.38-50.26 20.06-7.68 42.56 2.33 50.26 22.4 7.7 20.05-2.3 42.55-22.36 50.25zM544.75 450.2c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.3-42.56 22.35-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.3 42.55-22.36 50.25zm87.16-33.46c-20.04 7.7-42.54-2.32-50.24-22.38-7.7-20.06 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.06-2.33 42.56-22.38 50.26zm87.18-33.46c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.33-42.56 22.4-50.26 20.04-7.7 42.54 2.32 50.24 22.38 7.7 20.06-2.3 42.56-22.37 50.26zM980.55 282.9c-20.06 7.7-42.56-2.32-50.26-22.37-7.7-20.06 2.3-42.56 22.36-50.26 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.32 42.55-22.38 50.25zm87.16-33.45c-20.03 7.7-42.54-2.32-50.24-22.38-7.7-20.06 2.32-42.56 22.38-50.26 20.06-7.7 42.56 2.34 50.26 22.4 7.7 20.05-2.33 42.56-22.4 50.26zM1154.9 216c-20.05 7.7-42.55-2.34-50.25-22.4-7.7-20.06 2.32-42.56 22.37-50.26 20.05-7.7 42.55 2.32 50.25 22.38 7.7 20.06-2.32 42.56-22.38 50.26zm-120.62-53.73c-20.05 7.7-42.55-2.3-50.25-22.37-7.7-20.05 2.33-42.55 22.38-50.25 20.06-7.7 42.56 2.32 50.26 22.38 7.7 20.05-2.32 42.55-22.38 50.25zm87.17-33.45c-20.06 7.7-42.56-2.32-50.26-22.38-7.7-20.06 2.32-42.56 22.37-50.26 20.06-7.7 42.56 2.3 50.26 22.37 7.7 20.06-2.33 42.56-22.38 50.26zm-33.46-87.17c-20.06 7.7-42.56-2.3-50.26-22.37C1030-.8 1040.04-23.3 1060.1-31c20.04-7.7 42.55 2.33 50.24 22.4 7.7 20.05-2.3 42.56-22.37 50.25z"/><g transform="translate(578.928 275)"><path fill="#fff" d="M395.26 459.93c0 18.63-11.2 30.65-28.56 30.65-10.55 0-17.94-6.97-17.94-16.96 0-13.13 12.53-20.34 35.3-20.34h11.24v6.68l-.04-.03zm-19.28-65.03c-13.4 0-25.15 2.52-35.92 7.7l-.67.3.2 18.7 1.74-.93c10.3-5.78 20.03-8.68 28.93-8.68 15.87 0 24.98 9.06 24.98 24.96v.93h-12.53c-36.06 0-55.92 13.05-55.92 36.8 0 19.03 14.37 32.34 34.9 32.34 15.1 0 26.8-5.92 35.12-17.14v15.66h19.8v-65.43c0-30.05-13.62-45.23-40.55-45.23h-.1zm105.2 94.2c-16.7 0-27.1-14.57-27.1-38.02 0-23.5 10.47-38.7 26.67-38.7 18.14 0 28.98 14.48 28.98 38.7 0 23.1-11.22 38.05-28.55 38.05v-.04zm28.55-143.3v66.33c-8.08-11.26-19.36-17.23-33.83-17.23-26.8 0-44.8 22.03-44.8 54.9 0 33.84 18.25 57.43 44.38 57.43 15.5 0 27.53-6.8 35.94-20.2v18.53h20.26v-159.8h-21.95v.04zm119.93 51.64l-31.12 62.4-28.7-62.42-24.72.1 52.98 108.1 54.46-108.1h-22.92v-.06l.02-.02zm315.9 17.5V397.4l-20.02.03v108.12h21.92v-54.3c0-22.7 9.57-35.28 26.9-35.28 2.57 0 5 .38 7.96 1.22l1.42.44.74-21.37-9.42-.76c-12.73 0-23 6.9-29.42 19.4h-.08zm-94.14-19.97c-33 0-53.42 21.68-53.42 56.6 0 34.94 20.43 56.6 53.42 56.6 33.08 0 53.64-21.7 53.64-56.58 0-34.9-20.56-56.6-53.64-56.6v-.04zm.27 95.25c-18.28 0-30.5-15.64-30.5-38.94 0-23.37 12.22-39.1 30.5-39.1 18.45 0 30.4 15.37 30.4 39.12 0 23.7-11.95 38.95-30.45 38.95l.03-.03zm-140.34-65.05c0 15.22 10.46 23.2 29.74 32.65 12.18 6 18.55 9.5 18.55 17.94 0 8.63-7.84 14.24-19.92 14.24-8.6 0-18.1-2.45-27.54-7.08l-1.6-.78-.7 19.06.8.3c9 3.57 18.47 5.35 28.26 5.35 26.82 0 44.14-12.8 44.14-32.58 0-16.47-10.96-24.86-29.95-33.72-13.9-6.52-19.74-10.35-19.74-17.3 0-6.52 6.47-10.77 16.53-10.77 9.06 0 17.9 2 26.27 6l1.54.77 1-18.7-.88-.22c-9.13-2.74-18.08-4.1-26.67-4.1-23.8 0-39.77 11.65-39.77 28.98h-.05l-.03-.02zm-49.77-59.42c0 7.18 5.87 13.04 13.06 13.04 7.2 0 13.04-5.88 13.04-13.06 0-7.2-5.84-13.05-13.03-13.05-7.2 0-13.05 5.9-13.05 13.13v-.07l-.02-.02zm22.92 31.7h-20.8v108.1h21.93v-108.1h-1.12zm335.58 7.16h2.1c2.68 0 3.95-.9 3.95-2.8 0-2.06-1.34-2.93-4.2-2.93h-1.77v5.75h-.07zm2.75-9.44c6.2 0 9.3 2.13 9.3 6.23 0 2.73-1.66 4.9-4.56 5.77l4.75 9.4h-6.5l-4-8.53h-1.75v8.53h-5.88v-21.4h8.63zm-11.48-.45c-3.2 3.2-4.83 7.27-4.83 11.58 0 4.23 1.56 8.02 4.56 11.13 3.07 3.13 7.08 4.9 11.35 4.9 4.23 0 8.24-1.64 11.35-4.67 3.08-2.9 4.74-6.96 4.74-11.35 0-4.3-1.55-8.23-4.5-11.23-3.13-3.17-7.14-4.86-11.5-4.86s-8.17 1.55-11.17 4.5zm25.24-2.13c3.6 3.65 5.5 8.46 5.5 13.7 0 5.42-2 10.3-5.8 13.9-3.9 3.7-8.76 5.7-13.8 5.7-5.27 0-10.17-2.07-13.93-5.94-3.65-3.8-5.63-8.55-5.63-13.65 0-5.16 2.1-10.23 5.97-14.02 3.66-3.6 8.33-5.56 13.58-5.56 5.44 0 10.38 2.06 14.14 5.93v-.08z"/><path fill="#0A0A08" d="M42.24 364.8l-19.76 6.82v25.82H.58v17.27h21.27v55.57c0 26.42 9.02 37.17 31.1 37.17 5.63 0 10.97-.67 16.3-2.12l.9-.2-.22-18.04-1.56.58c-4.32 1.52-7.72 2.23-10.35 2.23-10.37 0-14.24-5.84-14.24-21.6v-53.64h25.3V397.4H43.8v-33.1l-1.56.53m68.4 50.08v-17.5l-20.03.05v108.12h21.9v-54.3c0-22.7 9.57-35.28 26.9-35.28 2.5 0 4.93.37 7.9 1.2l1.4.46.75-21.37-9.42-.77c-12.68 0-23 6.9-29.38 19.4m54.98-49.17c0 7.16 5.85 13.02 13.04 13.02 7.2 0 13.07-5.86 13.07-13.05 0-7.18-5.86-13.04-13.07-13.04-7.2 0-13.04 5.9-13.04 13.12m22.88 31.66h-20.76v108.1h21.95V397.44h-1.17m78.57-2.54c-15.07 0-27.72 7.12-36.17 20.1v-17.5H210.9v152.2h21.96v-59.05c7.88 10.75 19.25 16.64 33.4 16.64 27.7 0 45.62-22.7 45.62-57.88 0-32.58-18.03-54.48-44.8-54.48m-6.02 94.58c-17.36 0-28.15-14.82-28.15-38.68 0-23 11.37-37.83 28.95-37.83 16.92 0 27.05 14.07 27.05 37.6 0 24.06-10.7 38.9-27.93 38.9"/><path fill="#000" d="M292.07 97.8c-6.13-25-24.8-49.8-24.8-49.8l79.27-.06C393.77 17.18 453.7.66 520.04.66c64.05 0 121.98 16.08 169.5 46.7l84.15.06s-18.96 25.14-24.98 50.33c7.08 9.42 12.9 20.04 17.2 31.6 24.24 65.26-9.4 138.02-75.04 162.18-31.76 11.64-66.18 10.3-96.98-3.82-18.52-8.5-34.36-21-46.6-36.5l-27.17 40.48-27-40.1c-23.3 28.82-59 47.25-98.96 47.25-69.9 0-126.84-56.6-126.84-126.18 0-28 9.2-53.88 24.73-74.84"/><path fill="#FAC415" d="M396.16 46.42C432.56 30.9 474.62 22.67 520 22.67c45.46 0 86.54 8.2 122.82 24.33-13.28.42-26.73 2.94-39.82 7.76-31.75 11.64-57.1 34.98-71.3 65.6-6.12 13.3-9.85 27.28-11.13 41.4C515 97.9 461.53 47.46 396.17 46.5v-.06z"/><ellipse id="Oval" cx="394.132" cy="173.079" fill="#fff" rx="101.231" ry="100.745"/><ellipse id="Oval" cx="646.945" cy="173.079" fill="#fff" rx="101.231" ry="100.745"/><ellipse id="Oval" cx="394.16" cy="173.079" fill="#0A0A08" rx="62.66" ry="62.36"/><ellipse id="Oval" cx="646.89" cy="173.079" fill="#0A0A08" rx="62.66" ry="62.36"/><ellipse id="Oval" cx="394.16" cy="173.079" fill="#fff" rx="41.077" ry="40.88"/><ellipse id="Oval" cx="646.89" cy="173.079" fill="#fff" rx="41.077" ry="40.88"/><ellipse cx="394.16" cy="173.079" fill="#EE6946" rx="20.887" ry="20.787"/><ellipse cx="646.89" cy="173.079" fill="#00AF87" rx="20.887" ry="20.787"/></g></g></svg>
 
assets/images/addon-trustalyze.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="750" height="500"><defs><path id="a" d="M0 0h396v360H0z"/><path id="c" d="M0 0h396v360H0z"/><path id="e" d="M0 0h396v360H0z"/></defs><g fill="none" fill-rule="evenodd"><path fill="#6B46C1" fill-rule="nonzero" d="M0 0h750v500H0z"/><g transform="translate(177 170)"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g fill-rule="nonzero" mask="url(#b)"><path fill="#38B2AD" d="M63.1 360.04c-4.78-23.34-14.06-89.39-14.06-143-2.61-.26-4.27-.65-4.96-1.16-1.9-1.38-3.52-3.14-5.43-4.5-2.19-1.58-4.67-2.55-7.06-3.75-5.18-2.6-9.94-5.9-14.67-9.22a10.38 10.38 0 01-2.5-2.17c-.14 1.6-.78 4.11-.96 5.71-.9 5.6-8.97 64.29-8.97 69.2 0 2.7-4.49 43.1 2.7 88.9H63.1z"/><path fill="#8A6D62" d="M62.46 78.68c-.21-.44-.5-1-.97-1.28-.71-.44-1.66-.2-2.3.25a7.22 7.22 0 00-1.74 2.1l-8.33 13a65.98 65.98 0 0111.6-4.96c.6-.2 1.21-.35 1.83-.46a10.63 10.63 0 00-.1-8.65z"/><path fill="#FFF" d="M14.48 188.83a5.61 5.61 0 01.1-.48v-.03c-.02.06-.04.12-.06.18l-.04.18a1.5 1.5 0 00-.03.23l.03-.08z"/><path fill="#E6E6E6" d="M95.43 64.72a2.45 2.45 0 00-2.24-1.69c-.88 0-1.76.56-2.14 1.36a5.4 5.4 0 00-.33 2.24l-.03 5.03c-.01 1.57-.02 3.19.55 4.64.36.92 1.18 1.9 2.13 1.9.09 0 .17 0 .26-.02.54-.1 1.04-.54 1.34-1.18.28-.6.37-1.3.45-2.03.3-3.02.36-6.08.17-9.1-.03-.43-.06-.8-.16-1.15z"/><path fill="#F6E05E" d="M82.99 42.7c.47-.5 1.13-.8 1.82-.8 1.33-.02 2.6-.03 3.85-.04 3.32-.02 6.46-.04 10.01-.2 1.39-.07 2.54 1 2.63 2.36.22 3.19.25 6.15.28 9.02.01.86.02 1.72.04 2.58a2.55 2.55 0 01-2.43 2.6c-4.77.17-9.34.3-13.96.4h-.05a2.49 2.49 0 01-2.48-2.4c-.08-1.97-.15-3.93-.2-5.9-.07-1.92-.14-3.85-.2-5.73-.04-.7.21-1.38.69-1.88zm13.19 32.35c-.09.8-.19 1.56-.53 2.28-.4.86-1.1 1.46-1.88 1.6-.13.03-.26.05-.4.05-1.32 0-2.38-1.2-2.84-2.4-.62-1.59-.61-3.36-.6-4.92l.02-5.03c0-.82.02-1.75.41-2.58a3.17 3.17 0 013.04-1.78c1.25.1 2.38 1 2.76 2.22.13.43.16.87.2 1.32.19 3.07.13 6.18-.19 9.24zM67.63 91.3c.08 2.12-1.05 4.34-3.06 6.1l.02 10.76c0 1.2 0 2.4 0 3.6a5.2 5.2 0 01.01 3.25l-.02.05c-.02 3.62 0 7.25.05 10.87.04 3.27.09 8.21 2.63 10.4 2.44 2.08 4.91 2.41 8.36 2.3.16-.02 1.07.08 1.3.23a42.77 42.77 0 004.74-2.47c2.05-1.18 4.17-2.4 6.3-3.02 6-1.79 14.96-2.4 20.52 1.78a9.4 9.4 0 011.85 1.94 5.8 5.8 0 011.4-.13c.19 0 .39 0 .59 0 1.58.02 3.54.04 4.9-.63 2.5-1.23 2.3-4.9 2.17-7.32l-.01-.21c-.23-4.44-.17-9-.12-13.4v-.08c0-.07.03-.14.07-.2-.14-4 .06-40.64.06-40.83v-.42c-.1-12.09-.18-24.59-1.1-36.79-.02-.1-.03-.2-.04-.29-.42-3.67-3.28-4.4-8.06-4.4-7.9-.03-15.93.3-23.7.63-4.6.2-9.35.4-14.03.52-2.2.06-5.02.6-6.4 1.71-2.47 1.99-2.35 4.9-2.24 7.73.02.42.03.84.04 1.25.09 4 .23 8.07.43 12.08.24 4.8.24 9.67.24 14.37v2.63l.02 14c.5.08.97.26 1.4.57a4.3 4.3 0 011.69 3.42z"/><path fill="#8A6D62" d="M62.14 99.12c-.8.46-1.6.88-2.4 1.3l-.58.3a9.44 9.44 0 00-1.79 2.09 37.44 37.44 0 00-3.83 7.29c1.8-.33 3.56-.6 5.24-.87.37-.06.78-.12 1.2-.16a21.9 21.9 0 012.16-9.95z"/><path fill="#FFF" d="M48.25 208.79v.02l.05-.03c-.04-.05-.09-.1-.14-.14v.05c.03.02.07.06.09.1z"/><path fill="#8A6D62" d="M57.11 101.84c-.13.08-.27.16-.4.24a83.43 83.43 0 00-11.67 9.2c-.36.34-.69.75-1.03 1.19l-.05.06a60.32 60.32 0 018.7-2.27 38.23 38.23 0 014.45-8.42z"/><path fill="#4B5668" d="M85.83 50.29c.05-.67.21-1.31.38-1.97a4.6 4.6 0 012.1-3.07 6.33 6.33 0 013.5-1.13c1.28 0 3.16.35 4.28 1.34a6 6 0 012.08 5.33c-.27 2.16-1.3 3.82-2.9 4.68-.86.46-2 .72-3.2.72-1.46 0-2.9-.37-3.94-1.02a5.36 5.36 0 01-2.3-4.88zm-.8 4.8c.02.82.69 1.46 1.5 1.47v.19l.04-.2c3.74-.07 7.43-.18 11.29-.32.83-.03 1.5-.74 1.48-1.59-.01-.7-.02-1.4-.03-2.1-.03-2.3-.05-4.7-.23-7.26a1.55 1.55 0 00-1.53-1.45h-.07c-2.89.13-5.43.16-8.13.17-1 .01-2.03.02-3.1.03a1.58 1.58 0 00-1.56 1.65c.06 1.52.12 3.08.17 4.63.05 1.6.1 3.21.17 4.78z"/><path fill="#FFF" d="M84.85 44.26c.36-.39.86-.6 1.4-.61 1.06-.02 2.1-.02 3.1-.03 2.69-.02 5.23-.04 8.11-.17a1.92 1.92 0 012 1.8c.18 2.57.2 4.97.23 7.3.01.69.02 1.38.03 2.08a1.95 1.95 0 01-1.85 1.98c-3.86.14-7.56.25-11.3.33h-.04a1.9 1.9 0 01-1.89-1.84c-.06-1.59-.11-3.18-.16-4.77a748 748 0 00-.17-4.63c-.02-.53.17-1.05.54-1.44zm-1.39 11.92c.03.93.79 1.67 1.72 1.67h.03c4.63-.1 9.19-.23 13.95-.4.95-.04 1.71-.85 1.7-1.82-.02-.86-.03-1.72-.04-2.58-.03-2.86-.07-5.81-.28-8.98a1.77 1.77 0 00-1.75-1.65h-.08c-3.57.17-6.71.2-10.04.22-1.25 0-2.52.01-3.85.03a1.82 1.82 0 00-1.77 1.89c.08 1.88.14 3.8.2 5.73.07 1.98.13 3.96.21 5.89zM63.85 87.23V85.9c-.12.45-.26.9-.43 1.34.14 0 .28 0 .43 0z"/><path fill="#8A6D62" d="M43.41 111.98l.1-.13c-.04 0-.08 0-.12 0-.93 0-1.85-.25-2.64-.74a.39.39 0 01.1-.7c.1-.03.2-.01.3.04.87.54 1.95.75 2.96.57.04 0 .07 0 .1 0a92.9 92.9 0 018.52-7.14 6.12 6.12 0 01-1.74-1.53.39.39 0 01.07-.55.38.38 0 01.53.07 5.35 5.35 0 001.83 1.51c.94-.68 1.9-1.33 2.88-1.95.79-.49 1.59-.94 2.41-1.36.07-.05.13-.1.2-.15a.37.37 0 01.24-.07l.25-.13a29.68 29.68 0 003.75-2.16c2.4-1.71 3.8-4.04 3.72-6.22a3.53 3.53 0 00-1.34-2.82c-.72-.5-1.6-.58-2.52-.48-.1.08-.23.1-.34.05-.58.1-1.17.26-1.72.44a67.88 67.88 0 00-26.65 16.1 20.98 20.98 0 00-3.89 4.75c-1.02 1.86-1.55 3.97-2.06 6.02-.6 2.38-1.4 4.83-2.18 7.2a132.3 132.3 0 00-1.77 5.66c.24-.27.49-.53.73-.8l4.25-4.65c1.68-1.85 3.42-3.75 5.41-5.35a29.62 29.62 0 017.66-4.36c.33-.33.64-.71.96-1.12z"/><path fill="#8A6D62" d="M25.4 144.63a.38.38 0 01.46-.29c3.97.97 8.15.63 11.92-.97a.38.38 0 01.5.2c.08.2 0 .43-.2.51a19.74 19.74 0 01-12.4 1.01.39.39 0 01-.28-.46zm-6.43 48.56c1.6.98 3.2 1.95 4.78 2.95 3.17 1.98 6.33 4.01 9.28 6.32 1.4 1.09 2.7 2.35 4.18 3.33 1.51 1 3.19 1.66 4.76 2.56a24.85 24.85 0 014.98 3.64c.18-1.46.37-2.93.59-4.38.5-3.43.82-7.07 2.2-10.28a21.37 21.37 0 015.58-7.6c4.7-4.13 8.6-8.07 11.94-12.06a141.18 141.18 0 0013.63-19.84c3.5-6.02 10.52-11.12 18.78-13.62a25.22 25.22 0 016.66-1.1c1.13-.05 2.3-.08 3.29-.57.8-.4 1.23-.96 1.3-1.72.16-1.75-1.58-4.05-2.9-5.04-5.33-4-14.02-3.4-19.85-1.66-2.04.6-4.12 1.8-6.13 2.95-4.55 2.61-9.25 5.31-14.3 2.02a12.79 12.79 0 01-3.44-3.31c0 .15-.08.3-.21.36a15.1 15.1 0 00-8.26 12.34.38.38 0 01-.38.36h-.03a.39.39 0 01-.35-.41 15.68 15.68 0 018.69-12.99c.1-.05.2-.05.3-.01a18.56 18.56 0 01-2.46-5.64 32.3 32.3 0 01-.81-10.58c-.14.08-.29.16-.44.24-2.02 1.08-4.29 1.7-6.48 2.31-.29.08-.58.16-.87.24.18.85.31 1.7.37 2.56.01.21-.14.4-.36.41H53a.38.38 0 01-.38-.36c-.06-.8-.17-1.6-.35-2.4-2.66.78-5.14 1.68-7.1 3.52-.82.77-1.54 1.7-2.24 2.61-1.23 1.6-2.5 3.25-4.39 4.1a.38.38 0 01-.5-.2c-.09-.2 0-.43.2-.51 1.7-.77 2.86-2.27 4.09-3.87.71-.93 1.45-1.89 2.32-2.7 2.15-2.01 4.92-2.97 7.7-3.77a.37.37 0 01.11-.05h.08c.38-.11.76-.22 1.14-.33 2.15-.6 4.38-1.2 6.33-2.24 1.4-.74 3.21-2.04 3.88-4 .56-1.67.03-3.94-1.66-4.68-1.03-.45-2.3-.25-3.33-.1-5.18.82-10.82 1.7-15.98 3.73l-.02.02a.38.38 0 01-.28.1 28.79 28.79 0 00-7.35 4.22c-1.94 1.56-3.66 3.45-5.32 5.27L25.69 128c-3.23 3.52-6.56 7.17-6.61 15.68.87 7.2 1.7 14.43 1.59 21.69a68.31 68.31 0 01-.66 8.6c-.4 2.76-.86 5.68-2.03 8.23-1.3 2.81-1.52 6.22-1.7 9.3a184.78 184.78 0 002.68 1.69z"/><path fill="#38B2AD" d="M46.58 212.7a36.87 36.87 0 00-7.42-4.9c-2.27-1.14-4.04-2.75-6.03-4.31-4.96-3.9-10.37-7.11-15.68-10.48-1.01-.64-2.59-1.54-3.29-2.78-.25 1.62-.3 3.4.17 4.6.83 2.16 3.4 3.38 5.19 4.6 3.43 2.37 6.9 4.67 10.6 6.6 3.33 1.76 7 3 9.92 5.46 1.47 1.23 2.84 2.64 4.44 3.7 1 .66 4.29 2.89 4.76-.01.1-.62.11-1.23.07-1.84-.84.4-2.16-.15-2.73-.63z"/><path fill="#4FD2C5" d="M35.46 209.5c-1.04 9.12-3.03 18.13-4.16 27.25.85 2.13 1.73 4.24 2.66 6.34.72-5.1 1.31-10.22 1.76-15.35.5-5.72.67-11.56 1.56-17.26-.6-.35-1.2-.68-1.82-.99zm5.28 3.56c-.7 5.33-.84 10.77-1.34 16.1a281.7 281.7 0 01-2.54 19.87 97 97 0 002.22 3.94c.07-1.27.13-2.55.22-3.82.32-4.96 1.11-9.7 2.06-14.56 1.23-6.38 1.38-12.88 1.9-19.34-.87-.7-1.69-1.45-2.52-2.19zm5.92 146.98c.01-.75-.76-3.59-.9-4.49-.3-1.93-.5-3.7-.76-7.18-.18-.6-.83-17.56-.26-35.01.44-13.35.66-28.2 1.02-34.12.05-.9.4-16.3.9-27.07.2-4.26.8-7.96.9-9.92.01-.33-.36-12.57 0-19.58.05-1.2.83-2.95.9-3.64.04-.51.36-1.81.4-1.92l-2.2.15a201.24 201.24 0 00-2.2 15.4c-.15 1.42 0 2.7 0 5.28 0 2.69-1.17 8.55-1.23 8.97-1.06 8.7-.07 10.16 0 19.83.05 5.54-.07 11.43-.16 12.5-.63 7.47-.95 20.08-1.45 25.81-1 11.75-.15 24.73 0 33.8 0 .8 0 1.6.03 2.41.15 6.28.24 12.52-.03 18.78h5.04z"/><path fill="#4FD2C5" d="M37.84 341.26c-.1-4.3-.8-18.17-.98-22.52 0-14.57 3.52-25.14 2.22-65.87l-2.22-3.85c-1.87 14.31-2.61 69.92-2.95 69.1-.07 6.1.38 12.28.48 18.3.07 4.73.4 9.4.82 14.1.28 3.27.19 6.57.55 9.83h2.12c.29-6.36.1-12.72-.04-19.09zm-6.44 9.25a150.4 150.4 0 01-.83-14.83c-.06-8.23.16-15.03.78-24.43.61-9.4.05-13.34.05-21.42 0-5.56 1.06-21.16 1.07-21.37.92-17.56 1.61-26.09 1.63-26.2.8-6.81 1.33-11.53 1.58-14.17.27-2.78.39-5.2.54-7.21.56-7.3.89-9.64 1.06-10.5l-1.8-1c-.31 2.79-2.06 13.21-3.18 20.48a136.6 136.6 0 00-.95 7.3c-.25 5.4-2.42 26.72-3.28 44.77-.58 12.18 0 24 0 24.17-.06 1.44-.14 2.88-.2 4.34-.26 6.63-.32 13.32.02 19.95.52 10.05 1.87 20 3.25 29.96h.83c-.3-3.26-.22-6.55-.57-9.84z"/><path fill="#4FD2C5" d="M24.05 329.63c-.3-6.87-.3-13.8.09-20.66.16-2.94.14-5.8.11-8.74 0-.64 0-1.28.02-1.91 0-.1-.36-14.24 0-22.67.37-8.7 1.48-11.86 2.45-23.34 1.9-22.62 5.14-44.7 5.16-44.9l-2.21-.9c-.02.4-2.88 16.79-4.58 35.74-1.14 12.69-2.78 26.03-3.34 36.35-.5 9.47.01 16.47 0 16.71-.36 10.3-.99 20.6-.48 30.87.56 11.46 3.2 22.73 3.82 34.17h2.23c-1.43-10.2-2.83-20.42-3.27-30.72z"/><path fill="#4FD2C5" d="M17.46 326.18c-.35-8.68-.32-19.36 0-28.05.17-4.4.12-7.33.17-11.74-.21-.27.1-9.34 1.43-22.18.77-7.42 2.35-17.04 3.37-25.22.87-6.94 1.18-13.4 1.8-18.92.88-7.86 1.9-13.72 1.93-15.63l-1.5-.9c-.22 1.04-3.26 20.86-5.6 40.8-.55 4.71-1.55 9.6-2 14.06-1.48 14.23-1.94 25.6-1.97 25.57-.08 13.23-.28 26.45.18 39.67.27 7.6 1.33 14.95 2.36 22.46.64 4.74 1.1 9.49 1.43 14.25h2.22c-.64-11.45-3.35-22.7-3.82-34.17z"/><path fill="#4FD2C5" d="M13.76 345.7c-1.07-7.37-2.05-14.6-2.3-22.06-.43-13.36-.24-26.71-.18-40.07 0-.24.16-13.52 1.88-25.5 2.91-20.35 6.58-45.27 6.45-45.78.98-6.02 1.47-9.7 1.47-11.03l-1.47-1.03c0 .13-2.01 12.74-4.35 28.88-2.6 17.99-4.59 28.35-5.62 44.74.03 2.44-.43 9.02-.44 11.47-.02 9.3-.94 18.58-.72 27.9.23 9.2 1.13 18.37 2.2 27.5.76 6.55 1.49 13.11 2.48 19.63h2.1c-.33-4.9-.8-9.8-1.5-14.65z"/><path fill="#4FD2C5" d="M6.87 340.72c-1.12-9.63-2.11-19.3-2.22-29-.1-9.2 1.1-18.44.72-27.63-.13-2.99.32-6 .51-9s4-37.9 4.9-43.81c.89-5.91 2.68-15 5.37-33.62.25-1.7-.22-2.05-1.42-1.04-.92 5.53-4.23 26.47-6.65 44.9C6 257.39 4.73 271.46 4.62 271.4c-.98 29.72-2.58 59.57 2.7 88.96h2c-.96-6.52-1.7-13.08-2.45-19.63z"/><path fill="#4FD2C5" d="M16.08 197.1c.1-1.59.19-3.17.33-4.75a6.9 6.9 0 01-2.25-2.12c-.25 1.62-.3 3.4.17 4.6.34.9.99 1.63 1.75 2.27zm3.9-2.5c-.12 1.65-.21 3.3-.3 4.95.48.33.97.66 1.46 1 .15-1.66.28-3.31.4-4.97l-1.56-.98zm5.19 3.3c-.13 1.67-.28 3.33-.44 5 .51.32 1.03.65 1.55.96.21-1.61.42-3.23.6-4.84-.56-.38-1.14-.75-1.71-1.12zm5.23 3.55c-.18 1.48-.38 2.95-.58 4.43a50.46 50.46 0 002.1 1.05c.13-1.37.22-2.75.3-4.14-.6-.45-1.2-.9-1.81-1.34zm5.44 4.2c-.08 1-.18 2-.28 3 .63.33 1.25.66 1.86 1.01.14-.86.3-1.72.49-2.57-.72-.45-1.4-.93-2.07-1.45zm5.55 3.37c-.2 1.05-.38 2.11-.53 3.17.82.73 1.62 1.48 2.48 2.16.1-1.28.24-2.56.4-3.83a36.23 36.23 0 00-2.35-1.5zm7.92 4.32c-.6.28-1.44.09-2.08-.23-.12 1.12-.22 2.25-.3 3.37 1.05.33 2.07.2 2.31-1.3.1-.62.11-1.23.07-1.84z"/><path fill="#FFF" d="M47.72 212.4zM49.2 210.2c-.05-.14-.1-.27-.17-.4.04.14.09.28.12.42l.05-.02z"/><path fill="#F7AE55" d="M88.53 54.51c.92.57 2.21.9 3.55.9 1.08 0 2.08-.22 2.84-.62 1.37-.74 2.25-2.2 2.49-4.1.04-.34.05-.69.03-1.03a5.56 5.56 0 00-1.85-3.62c-.9-.79-2.54-1.15-3.78-1.15a5.59 5.59 0 00-3.07 1 3.86 3.86 0 00-1.8 2.63c-.15.62-.3 1.22-.34 1.83a4.56 4.56 0 001.93 4.16z"/><path fill="#000" d="M23.63 130.05l-.1-.02a.39.39 0 01-.27-.47c.6-2.38 1.4-4.83 2.18-7.2.78-2.36 1.58-4.8 2.17-7.15.52-2.1 1.07-4.26 2.14-6.2a21.63 21.63 0 014.03-4.94 68.62 68.62 0 0126.94-16.28c1.73-.55 3.7-.96 5.24.1a4.3 4.3 0 011.68 3.42c.08 2.45-1.43 5.02-4.05 6.88a30.35 30.35 0 01-3.85 2.22c-1.01.52-2.06 1.06-3.03 1.67a83.43 83.43 0 00-11.67 9.2c-.36.34-.69.75-1.03 1.19-.35.44-.71.9-1.12 1.27a.38.38 0 01-.54-.02.39.39 0 01.03-.55c.36-.34.69-.75 1.03-1.19.35-.44.71-.89 1.12-1.27 4-3.72 8.07-6.93 11.77-9.28 1-.64 2.07-1.18 3.1-1.7a29.74 29.74 0 003.75-2.17c2.4-1.71 3.8-4.04 3.72-6.22a3.53 3.53 0 00-1.34-2.82c-1.26-.87-3.03-.49-4.58 0a67.88 67.88 0 00-26.65 16.1 20.98 20.98 0 00-3.89 4.76c-1.02 1.86-1.55 3.97-2.06 6.02-.6 2.39-1.4 4.83-2.18 7.2-.78 2.36-1.58 4.8-2.17 7.15-.04.17-.2.3-.37.3z"/><path fill="#000" d="M48 94.17a.38.38 0 01-.2-.07.39.39 0 01-.12-.53l9.13-14.24c.51-.8 1.1-1.7 1.95-2.31.83-.6 2.12-.9 3.13-.28.63.4 1 1.07 1.26 1.61a11.42 11.42 0 01-.01 9.55.38.38 0 01-.51.18.39.39 0 01-.18-.51c1.3-2.78 1.3-6.1 0-8.89-.2-.44-.5-1-.96-1.28-.71-.44-1.66-.2-2.3.25a7.22 7.22 0 00-1.74 2.1L48.32 94a.38.38 0 01-.32.18zm-29.3 49.91a.39.39 0 01-.38-.39c.04-8.83 3.48-12.6 6.81-16.23l4.25-4.65c1.68-1.85 3.42-3.75 5.41-5.35 6.89-5.55 16.37-7.03 23.99-8.23 1.12-.17 2.51-.4 3.74.15 2.08.9 2.76 3.65 2.08 5.64-.75 2.2-2.72 3.63-4.25 4.43-2.02 1.08-4.29 1.7-6.48 2.31-3.27.9-6.36 1.76-8.72 3.97-.81.77-1.54 1.7-2.23 2.61-1.24 1.6-2.5 3.25-4.39 4.1a.38.38 0 01-.5-.2c-.09-.2 0-.43.2-.51 1.7-.77 2.86-2.27 4.09-3.87.71-.93 1.45-1.89 2.32-2.7 2.5-2.33 5.82-3.25 9.03-4.15 2.15-.6 4.38-1.2 6.33-2.24 1.4-.74 3.21-2.04 3.88-4 .56-1.67.03-3.94-1.66-4.68-1.03-.45-2.3-.25-3.33-.1-7.92 1.25-16.9 2.65-23.63 8.07-1.94 1.56-3.66 3.45-5.32 5.27L25.69 128c-3.23 3.53-6.57 7.17-6.61 15.7 0 .22-.17.39-.38.4z"/><path fill="#000" d="M60.37 109.8a.38.38 0 01-.38-.37 22 22 0 012.6-11.21c.1-.19.33-.26.51-.16.2.1.26.33.16.52a21.25 21.25 0 00-2.5 10.82c0 .21-.16.4-.37.4h-.02zM53 124.97a.38.38 0 01-.38-.36c-.07-.94-.21-1.88-.44-2.8a.39.39 0 01.28-.47.38.38 0 01.46.28c.24.96.4 1.95.46 2.94.01.21-.15.4-.36.41H53zm2.46 23.87h-.03a.39.39 0 01-.35-.41 15.68 15.68 0 018.69-12.99.38.38 0 01.5.18c.1.2.02.43-.17.52a15.1 15.1 0 00-8.26 12.34.38.38 0 01-.38.36zm-2.5-37.9a.39.39 0 01-.35-.52 38.2 38.2 0 014.14-8.05c.6-.88 1.28-1.8 2.17-2.45a.38.38 0 01.53.08c.12.18.09.42-.08.54a8.79 8.79 0 00-1.99 2.27 37.44 37.44 0 00-4.06 7.88.38.38 0 01-.36.25zm-9.56.92c-.93 0-1.85-.26-2.64-.75a.39.39 0 01.1-.7c.1-.03.2-.01.3.04.87.54 1.95.75 2.96.57a.38.38 0 01.44.31c.04.21-.1.41-.3.45-.29.05-.58.08-.86.08zm9.86-7.75a.38.38 0 01-.17-.04c-.82-.4-1.53-1-2.09-1.72a.39.39 0 01.07-.55.38.38 0 01.53.07 5.35 5.35 0 001.83 1.51c.19.1.26.33.17.52a.38.38 0 01-.34.21zm-22.9 41.55c-1.58 0-3.15-.2-4.67-.57a.39.39 0 01-.28-.46.38.38 0 01.46-.29c3.97.97 8.15.63 11.92-.97a.38.38 0 01.5.2c.08.2 0 .43-.2.51a19.74 19.74 0 01-7.74 1.58zm45.27-7.03c-3.45.13-5.92-.2-8.36-2.3-2.54-2.18-2.6-7.12-2.63-10.4l-.01-.8c-.06-3.77-.05-7.6-.04-11.3 0-1.89.01-3.77.01-5.66l-.02-11.44c-.2.2-.45.38-.7.5l.01 10.95c0 1.14 0 2.3 0 3.44.7.96.7 2.42-.01 3.37-.01 3.34-.01 6.77.04 10.15l.01.8c.04 3.4.1 8.54 2.88 10.93 2.3 1.98 4.7 2.5 7.69 2.5.37 0 .76-.02 1.16-.03.2 0 1.32-.2 1.31-.4 0-.2-1.16-.32-1.34-.31zm44.48-9.65l-.01-.21a208.06 208.06 0 01-.11-13.61c0-.2.12-40.67.12-40.86v-.43c-.1-12.1-.18-24.6-1.11-36.83-.01-.1-.02-.21-.03-.32-.54-4.62-4.81-5.02-8.77-5.04-7.91-.02-15.95.32-23.73.64-4.6.2-9.35.4-14.02.52-2.14.06-5.22.58-6.82 1.87-2.75 2.21-2.63 5.31-2.5 8.31.01.41.03.83.03 1.23.09 4.02.23 8.09.43 12.1.24 4.8.24 9.65.24 14.34 0 .87 0 1.75 0 2.63l.03 14.28a2.3 2.3 0 01.7.17l-.02-14.45v-2.63c0-4.7 0-9.56-.24-14.37-.2-4.03-.34-8.06-.43-12.08 0-.41-.02-.83-.04-1.25-.11-2.82-.23-5.74 2.24-7.73 1.38-1.1 4.2-1.65 6.4-1.71 4.68-.12 9.43-.32 14.03-.52 7.77-.32 15.8-.66 23.7-.64 4.78.02 7.64.74 8.06 4.41.01.1.02.2.03.3.93 12.19 1.02 24.69 1.1 36.78l.01.42c0 .19-.2 36.84-.06 40.84a.35.35 0 00-.07.2v.06c-.06 4.41-.11 8.97.12 13.4l.01.22c.13 2.43.32 6.09-2.17 7.32-1.36.67-3.33.65-4.9.63-.2 0-.4 0-.59 0-.2 0-1.48.01-1.48.2 0 .2.19.51.38.51s1.48 0 1.68 0c.27 0 .55.01.83.01 1.48 0 3.12-.09 4.39-.71 2.92-1.44 2.7-5.39 2.57-8z"/><path fill="#000" d="M98.79 42.43h-.08c-3.57.16-6.71.18-10.04.2-1.25.02-2.52.02-3.85.04a1.81 1.81 0 00-1.77 1.89c.08 1.88.14 3.8.2 5.74.07 1.97.13 3.95.21 5.88.03.93.79 1.67 1.72 1.67h.03c4.63-.1 9.19-.23 13.95-.4.95-.04 1.71-.85 1.7-1.82-.02-.86-.03-1.72-.04-2.58a155.8 155.8 0 00-.28-8.97 1.77 1.77 0 00-1.75-1.65zm-13.61 16.2a2.49 2.49 0 01-2.48-2.42c-.08-1.96-.15-3.92-.2-5.89-.07-1.92-.14-3.85-.2-5.73a2.58 2.58 0 012.51-2.69c1.33-.02 2.6-.03 3.85-.04 3.32-.02 6.46-.04 10.01-.2 1.39-.07 2.54 1 2.63 2.36.22 3.19.25 6.15.28 9.02.01.86.02 1.72.04 2.58a2.55 2.55 0 01-2.43 2.6c-4.77.17-9.34.3-13.96.4h-.05z"/><path fill="#000" d="M97.55 43.83h-.07c-2.89.13-5.43.16-8.13.17-1 .01-2.03.02-3.1.03a1.58 1.58 0 00-1.56 1.65c.06 1.52.12 3.08.17 4.63.05 1.6.1 3.21.17 4.78.02.81.69 1.46 1.5 1.47v.19l.04-.2c3.74-.07 7.43-.18 11.29-.32.83-.03 1.5-.74 1.48-1.59-.01-.7-.02-1.4-.03-2.1-.03-2.3-.05-4.7-.23-7.26a1.55 1.55 0 00-1.53-1.45zM86.53 56.94a1.9 1.9 0 01-1.89-1.84c-.06-1.59-.11-3.18-.16-4.77a748 748 0 00-.17-4.63 1.97 1.97 0 011.93-2.05c1.07-.02 2.1-.02 3.1-.03 2.7-.02 5.24-.04 8.12-.17a1.93 1.93 0 012 1.8c.18 2.57.2 4.97.23 7.3 0 .69.02 1.38.03 2.08a1.95 1.95 0 01-1.85 1.98c-3.86.14-7.56.25-11.3.33h-.04z"/><path fill="#000" d="M91.81 44.7a5.79 5.79 0 00-3.18 1.04 4.03 4.03 0 00-1.87 2.73c-.16.63-.3 1.24-.35 1.86a4.77 4.77 0 002.02 4.34c.95.6 2.28.94 3.65.94 1.1 0 2.15-.23 2.93-.65 1.43-.77 2.34-2.27 2.59-4.24.04-.36.05-.72.03-1.07a5.75 5.75 0 00-1.92-3.75c-.93-.83-2.63-1.2-3.9-1.2zm.27 11.3a7.45 7.45 0 01-3.85-1 5.16 5.16 0 01-2.2-4.7c.04-.65.2-1.28.36-1.93.37-1.43.9-2.2 2.03-2.95a6.13 6.13 0 013.4-1.1c1.23 0 3.07.33 4.14 1.29a6.14 6.14 0 012.05 4c.03.39.02.77-.03 1.16-.26 2.1-1.25 3.7-2.8 4.53a6.7 6.7 0 01-3.1.7z"/><path fill="#000" d="M91.82 44.5c1.3 0 3.05.4 4.02 1.25-1.04-.91-2.81-1.24-4.02-1.24zm6 5.73a6.12 6.12 0 010 0zm-6-5.34a5.58 5.58 0 00-3.07 1 3.86 3.86 0 00-1.8 2.63c-.16.62-.31 1.22-.35 1.83a4.56 4.56 0 001.93 4.16c.92.57 2.21.9 3.55.9 1.08 0 2.08-.22 2.84-.62 1.37-.74 2.25-2.2 2.49-4.1.04-.34.05-.69.03-1.03a5.56 5.56 0 00-1.85-3.62c-.9-.79-2.54-1.15-3.78-1.15zm-4.71 8.76a4.22 4.22 0 010 0zm4.97 2.54c-1.47 0-2.91-.37-3.95-1.02a5.36 5.36 0 01-2.3-4.88c.05-.67.21-1.31.38-1.97a4.6 4.6 0 012.1-3.07 6.33 6.33 0 013.5-1.13c1.28 0 3.16.35 4.28 1.34a6 6 0 012.08 5.33c-.27 2.16-1.3 3.82-2.9 4.68-.86.46-2 .72-3.2.72zm16.4 78.97c-5.56-4.17-14.53-3.57-20.52-1.78-2.13.63-4.25 1.84-6.3 3.02-4.55 2.61-8.85 5.08-13.51 2.04-1.89-1.22-7.92-6.27-6.54-19.9a.38.38 0 00-.34-.42.38.38 0 00-.42.35c-.4 3.97-.14 7.99.74 11.32 1.13 4.26 3.2 7.39 6.14 9.3 5.06 3.29 9.76.6 14.31-2.02 2.01-1.15 4.1-2.34 6.13-2.95 5.83-1.74 14.52-2.34 19.85 1.66 1.32.99 3.06 3.29 2.9 5.03-.07.77-.5 1.34-1.3 1.73-.98.49-2.16.52-3.3.56a25.28 25.28 0 00-6.66 1.1c-8.25 2.51-15.27 7.6-18.77 13.63a141.18 141.18 0 01-13.63 19.83 110.27 110.27 0 01-11.94 12.06 21.36 21.36 0 00-5.59 7.61c-1.37 3.2-1.7 6.85-2.2 10.27-.23 1.62-.44 3.23-.64 4.85a.9.9 0 01.12.07l.38.3c.1.07.19.16.25.25.44-3.98.95-7.95 1.54-11.91v-.04c.33-1.02.63-1.9.95-2.72a20.07 20.07 0 015.69-8.1c4.72-4.14 8.65-8.12 12.02-12.14 4.68-5.6 9.16-12.12 13.71-19.94 3.4-5.86 10.26-10.82 18.33-13.27a24.45 24.45 0 016.47-1.08c1.22-.04 2.47-.08 3.6-.63a2.86 2.86 0 001.73-2.35c.2-2.12-1.8-4.68-3.2-5.73zm-89.4 8.49a.38.38 0 00-.43-.34.39.39 0 00-.33.43c1.46 12.2 3.12 26.02-1.01 38.6l-.01.08c-1.14 2.51-1.5 5.28-1.72 8.06-.02.22-.03.44-.05.66a.8.8 0 01.33.35c.02.04.04.08.06.13.13.03.24.1.34.18.18-3.17.38-6.7 1.72-9.61 1.17-2.55 1.64-5.47 2.03-8.23.41-2.85.61-5.73.66-8.6.11-7.27-.72-14.51-1.6-21.71zm74.11-80.62c-.88 0-1.76.56-2.14 1.36a5.4 5.4 0 00-.33 2.24l-.03 5.03c-.01 1.57-.02 3.19.55 4.64.36.92 1.18 1.9 2.13 1.9.09 0 .17 0 .26-.02.54-.1 1.04-.54 1.34-1.18.28-.6.37-1.3.45-2.03.3-3.02.36-6.08.17-9.1-.03-.43-.06-.8-.16-1.15a2.45 2.45 0 00-2.24-1.69zm.18 15.95c-1.32 0-2.38-1.2-2.84-2.4-.62-1.59-.61-3.36-.6-4.92l.02-5.03c0-.82.02-1.75.41-2.58a3.17 3.17 0 013.04-1.78c1.25.1 2.38 1 2.76 2.22.13.43.16.87.2 1.32.19 3.07.13 6.18-.19 9.24-.08.8-.18 1.56-.52 2.28-.4.86-1.1 1.46-1.88 1.6-.13.03-.26.05-.4.05z"/><path fill="#000" d="M48.68 207.97c-.4-.38-.98.22-.6.59a4.1 4.1 0 011.37 2.86c-1 1.18-1.9 1.3-2.68.39a24.9 24.9 0 00-4.8-3.45c-1.57-.91-3.25-1.57-4.76-2.57-1.48-.98-2.79-2.24-4.18-3.33a106.9 106.9 0 00-9.28-6.32c-1.59-1-3.19-1.97-4.79-2.95-.78-.49-1.57-.98-2.35-1.47a5.65 5.65 0 01-1.74-1.6c-.82-1.18-.44-2.25 1.14-3.22.27-.03.29-.46 0-.44-1.37.06-2.08.95-2.2 2.3-.17 2.02 2.27 3.38 3.64 4.25 5.3 3.37 10.72 6.57 15.68 10.48 1.99 1.56 3.76 3.17 6.03 4.31a36.87 36.87 0 017.42 4.9c.72.62 2.67 1.35 3.28.1.87-1.73.15-3.57-1.18-4.84z"/><path fill="#000" d="M49.6 210.37c-.05-.13-.2-.25-.34-.2-.04.02-.07.04-.1.05a4.6 4.6 0 00-.24-.7.22.22 0 00-.09-.1l-.12-.47c-.05-.23-.3-.26-.45-.15l-.01-.01c-.13-.26-.52-.13-.52.14v.39c0 .58 0 1.17 0 1.75-.43.29-.35.9-.02 1.2-.06.23.24.46.46.33.12-.07.23-.16.33-.24.23-.1.42-.26.55-.46.04.05.08.1.12.16.18.23.47.01.5-.2.01-.13.02-.28 0-.43.08-.36.05-.72-.07-1.06zm-33.72-23.74c-.03.07-.06.15-.08.23a.3.3 0 00-.3.05.7.7 0 00-.25.45.94.94 0 00-.2.16c-.05 0-.1.03-.14.06-.27.2-.38.51-.32.77a1.13 1.13 0 00-.15 1.19c.03.6.27 1.14.97 1.35h.04l.01.01c.15.21.5.16.5-.12a.25.25 0 00.1-.2V188.78l.34-2c.06-.36-.39-.47-.52-.15z"/><path fill="#000" d="M50.03 212.2c-.07-.53-.9-.53-.83 0 .13 1 .2 1.97.04 2.98-.47 2.9-3.76.67-4.76.01-1.6-1.06-2.97-2.47-4.44-3.7-2.92-2.46-6.59-3.7-9.93-5.45a104.85 104.85 0 01-10.6-6.6c-1.78-1.23-4.35-2.45-5.18-4.6-.74-1.9-.18-5.27.41-7.1.09-.26-.3-.36-.4-.11-.71 1.95-1.16 4.69-.73 6.76.4 1.97 1.75 2.92 3.3 4.02 4.74 3.33 9.5 6.63 14.68 9.22 2.4 1.2 4.87 2.17 7.06 3.74 1.91 1.37 3.52 3.13 5.43 4.51 1.04.76 3.42 2.3 4.76 1.31 1.57-1.17 1.42-3.2 1.19-4.99z"/><path fill="#000" d="M49.15 216.08C46.94 224.2 54.73 329.52 63 360.04c.05.2.75.18.7 0-7.47-30.52-15.9-135.35-14.13-143.84.06-.28-.35-.4-.42-.12zm-34.4-19.6l-.68-1.12c-4.2 23.72-10.24 64.95-10.61 76.96-1.66 29.19-2.42 59.07 2.69 88.03h1.17c-5.23-29.1-3.79-58.67-2.67-88.07 1.44-23.15 10.08-75.43 10.1-75.8zm74.8-178.04c-1.64-3.66-3.97-7-6.5-10.07-.53-.64-1.64.22-1.14.89a62.75 62.75 0 015.93 10.2c.57 1.16 2.22.14 1.7-1.02zm8.44-15.8c-.05-1-1.46-1-1.52 0-.24 4.14-.27 8.3-.1 12.46.06 1.12 1.67 1.12 1.72 0 .19-4.12.15-8.35-.1-12.47zm13.58.48c-1.78 3.52-3.51 7.38-4.29 11.27-.22 1.1 1.31 1.54 1.66.46 1.21-3.73 2.25-7.4 3.91-10.97.4-.87-.84-1.63-1.28-.76zm13.35 10.55a36.74 36.74 0 00-10.96 4.24c-.93.55-.11 1.94.83 1.45a53.92 53.92 0 0110.5-4.3c.9-.25.52-1.6-.37-1.4z"/><path fill="#4FD2C5" d="M55.1 309.76a159.2 159.2 0 000 17.96c.5 8.09.13 5.07 1.42 14.37.86 6.2 1.76 12.18 2.7 17.95h3.73c-2.48-10.77-5.1-27.53-7.85-50.28zm-4.86-51.12c-.25 6.1-.55 12.81-.9 20.15-.5 11-.63 14.28-.89 18.4-.25 4.1.31-.35 0 10.78-.3 11.12-.9 14.3-.9 21.55s-.3 3.17.9 13.46c.8 6.86 1.7 12.55 2.7 17.06h5.38a672.05 672.05 0 01-3.6-19.75 124.1 124.1 0 01-1.34-12.57c-.24-4.16 0-3.67 0-10.83v-41.25l-1.35-17z"/></g><mask id="d" fill="#fff"><use xlink:href="#c"/></mask><g fill-rule="nonzero" mask="url(#d)"><path fill="#FED7D8" d="M157.76 163.77c-.08-.34-.2-.66-.35-.97l-.02-.01v-.03a2.15 2.15 0 00-.45-.6c-.7-.64-1.81-.55-2.6-.19-.52.24-.97.6-1.4 1a.38.38 0 01-.22.22c-.24.24-.48.5-.7.74L140.3 176.6c4.48-1.5 9.09-2.56 13.77-3.17.7-.1 1.4-.15 2.1-.14a11.82 11.82 0 001.59-9.52z"/><path fill="#F7AE55" d="M176.1 109.24c.13.24.34.48.64.73.9.75 2.07 1.16 3.17 1.1a3.57 3.57 0 002.8-1.56c.34-.56.48-1.22.58-1.8.07-.37.1-.69.05-.98-.05-.3-.2-.6-.43-.92a4.02 4.02 0 00-4.39-1.32 3.93 3.93 0 00-2.68 3.6c0 .45.08.84.25 1.15z"/><path fill="#FFF" d="M177.02 114.27c1.67.03 3.4-.09 4.94-.2 1.42-.1 2.75-.2 3.8-.15.43.02.9.04 1.39.08.74.04 1.58.1 2.42.11 3.33.07 7.33-.36 8.62-4.32a5.2 5.2 0 00-.03.07c-1.38 3.8-5.65 4.17-8.75 4.1-.81-.01-1.62-.06-2.32-.1-.42-.03-.84-.05-1.25-.07h-.24c-.88-.02-1.98.04-3.15.11-1.4.08-3 .18-4.55.15-2.74-.06-6.56-.47-8.18-3.41a5.94 5.94 0 01-.69-3.33 5.1 5.1 0 01.4-1.62c1.2-2.73 4.28-3.35 6.5-3.58a80.24 80.24 0 0116.93.03 7.3 7.3 0 013.46 1.02c1.63 1.11 2.47 3.52 2.1 5.72.4-2.32-.35-4.95-1.84-6.08-.92-.7-2.02-.87-3.26-1.01a77.21 77.21 0 00-18.23.04c-2.33.28-5.16.96-6.25 3.74-.2.54-.33 1.1-.38 1.67-.1 1.2.14 2.47.64 3.5 1.13 2.33 3.65 3.45 7.92 3.53zm-19.82 58.82c-.04.08-.1.17-.15.26l.15.02v-.28z"/><path fill="#F687B3" d="M167.47 107.17c.05-.66.2-1.31.44-1.93 1.3-3.29 4.65-4.05 7.05-4.35a78.39 78.39 0 0118.48-.04c1.34.16 2.63.37 3.76 1.22 2.01 1.52 2.88 5.11 1.94 8-1.5 4.6-6.2 5.05-9.59 4.98-.82-.02-1.64-.06-2.47-.12-.48-.03-.94-.05-1.35-.07h-.23c-.97-.03-2.18.06-3.47.15-1.55.11-3.31.24-5.02.2-2.96-.06-7.09-.54-8.8-4.07a7.76 7.76 0 01-.74-3.97zm-7.73 67.39a4.75 4.75 0 011.16 4.04 8.04 8.04 0 01-2.88 4.85l-.13 6.89c-.04 2.5-.1 5-.15 7.52a721.76 721.76 0 00-.25 16.1c-.03 4.35-.08 10.92 3.42 13.89 1.89 1.6 3.8 2.45 5.97 2.89.85-.33 1.72-.66 2.57-.94 5.66-1.86 12.23-1.84 19 .04a23.1 23.1 0 015.65 2.39c.57-.6 1.24-1.1 1.98-1.46 4.83-2.35 11.8-1.38 16.9-.68h.07c.42-.23 9.85-.17 10.12-.16.26 0 .54.01.82.02 2.2.07 4.96.15 6.87-.7 3.53-1.57 3.36-6.45 3.24-9.67l-.01-.3c-.16-4.44-.09-8.98.04-13.46a88.18 88.18 0 00-8.74-2.96 3.56 3.56 0 01-2.18-1.88 8.58 8.58 0 01-.46-5.84.38.38 0 01.3-.26 2.95 2.95 0 011.97-1.67c1.07-.28 2.16-.06 3.13.14l6.4 1.3c0-1.22.03-2.45.06-3.68 0-.67-.06-1.45.05-2.14-2.7.75-5.43 1.06-7.94.03-2.24-.93-4.42-3.12-4.25-5.92.12-2.16 1.55-4.08 4.23-5.7 2.49-1.5 5.31-2.49 8.05-3.44l.32-.11.52-.18c-1.27-1.08-3.08-1.45-4.72-1.66l-.61-.07c-1.83-.23-3.72-.46-5.3-1.5a6.88 6.88 0 01-2.92-4.93c-.18-1.54.09-4.33 1.57-5.68 1.2-1.09 3.03-1 4.5-.93l.43.02c2.43.1 4.83.2 7.2.4-.23-1.42-.24-12.09-.24-12.33l.01-.57c.19-16.07.38-32.69-.6-48.93-.02-.13-.03-.26-.04-.39-.5-4.89-4.48-5.93-11.18-6.08-11.06-.26-22.31-.03-33.2.2-6.44.12-13.1.25-19.66.29-3.08.01-7.05.67-9 2.1-3.52 2.57-3.43 6.46-3.34 10.21.01.56.02 1.11.03 1.66.01 5.33.1 10.74.28 16.07.22 6.4.1 12.87-.03 19.11-.02 1.17-.04 2.33-.06 3.5l-.34 19.14a12.63 12.63 0 01-.13 7.68l-.05 2.78c.57.2 1.1.5 1.55.95z"/><path fill="#4B5668" d="M193.99 107.86c-.07.4-.19.93-.48 1.4a3.05 3.05 0 01-2.67 1.37 3.83 3.83 0 01-2.34-.9 2.44 2.44 0 01-.59-.68c-.17-.3-.25-.67-.25-1.09a3.28 3.28 0 013.33-3.16c1.04.02 2.04.51 2.62 1.28.22.3.36.6.4.9.06.3.02.6-.02.87zm1.75-3.93a6.48 6.48 0 00-2.98-.85 78.9 78.9 0 00-12.53-.35c1.66.14 3.21.94 4.13 2.17.37.5.6 1 .69 1.5.09.53.02 1.05-.06 1.49a6.85 6.85 0 01-.83 2.46 5.23 5.23 0 01-4.58 2.33 6.64 6.64 0 01-4.04-1.54 4.14 4.14 0 01-1-1.16 3.72 3.72 0 01-.42-1.83 5.66 5.66 0 014.42-5.32c-.84.06-1.67.13-2.5.22-2.14.22-4.71.76-5.7 3-.17.43-.28.88-.32 1.34a5.1 5.1 0 00.58 2.81c1.05 1.9 3.37 2.83 7.32 2.9 1.5.04 3.08-.06 4.47-.14 1.3-.08 2.52-.14 3.49-.11.39.02.81.04 1.27.07.7.04 1.49.09 2.28.1 3.02.06 6.64-.28 7.8-3.47.72-2.01.04-4.59-1.49-5.62z"/><path fill="#FFF" d="M192.8 106.62a2.35 2.35 0 00-2.57-.77 2.31 2.31 0 00-1.58 2.12c0 .26.04.48.14.65.07.13.2.27.37.41.53.45 1.23.7 1.88.65.67-.04 1.3-.4 1.62-.9.2-.33.29-.73.35-1.08.04-.22.06-.4.03-.57a1.23 1.23 0 00-.24-.5z"/><path fill="#FED7D8" d="M150.56 186.94c-.25.07-.5.15-.75.23-.81.45-1.53 1.1-2.33 1.93a41.33 41.33 0 00-5.63 7.27c2.06 0 4.06.05 5.96.1.43 0 .9.02 1.39.06a24.19 24.19 0 014.35-10.58c-1 .37-2 .69-3 .99zm141.39 59.19a173.62 173.62 0 01-4.76-11.25c-.88-2.23-1.8-4.53-2.75-6.78-2.23-5.24-5-9.95-7.92-14.94-.4-.68-.8-1.36-1.2-2.05-3.32-5.68-5.4-11.52-7.57-18.02-.16-.47-.32-.95-.48-1.43-1.67-5.08-3.4-10.33-7.44-13.6a25.57 25.57 0 00-15.51-5.64c-2.62-.06-5.2.7-7.71 1.55l-.02.02c-.08.08-.2.1-.3.1-.33.1-.65.21-.97.33l-.33.11c-2.7.94-5.48 1.9-7.9 3.37-2.45 1.49-3.75 3.2-3.86 5.08-.15 2.43 1.8 4.34 3.78 5.16 3.72 1.53 8.15-.17 12.06-1.67.54-.21 1.06-.4 1.56-.6a5.28 5.28 0 001.26-2.93.38.38 0 01.42-.33c.21.02.37.2.34.42-.1.9-.4 1.77-.87 2.54.1.05.18.13.21.23.03.08.02.17 0 .24 1.44.94 3.06 1.62 4.72 2l.28.05c.59.13 1.2.26 1.74.6.6.35 1.01.9 1.34 1.49.08-.06.19-.07.29-.05 2.13.53 4.48.09 6.29-1.17a.38.38 0 01.53.1c.12.17.07.41-.1.53a8.65 8.65 0 01-6.65 1.34 23.3 23.3 0 011.69 7.8 64.16 64.16 0 0113.61 6.32.39.39 0 01-.2.71.37.37 0 01-.2-.05 63.41 63.41 0 00-13.54-6.26h-.03a.37.37 0 01-.25-.1c-.87-.28-1.75-.54-2.63-.79a128.6 128.6 0 00-8.11-1.84L228 194.1c-.89-.18-1.9-.4-2.8-.16-.77.2-1.56.9-1.53 1.72 0 .2-.15.38-.36.4a7.72 7.72 0 00.58 4.54c.41.8.99 1.3 1.7 1.5 7.67 2.23 11.26 3.96 16.68 6.58 1.95.94 3.7 1.94 5.25 2.97a.37.37 0 01.18-.05 6.23 6.23 0 004.63-2.17.38.38 0 01.54-.04c.16.14.18.38.04.55a7.02 7.02 0 01-4.42 2.38c3.55 2.54 5.96 5.38 7.3 8.56.74 1.75 1.15 3.63 1.56 5.45.08.37.16.73.24 1.1a77.04 77.04 0 005.41 15.64c.1.2.01.43-.18.52a.38.38 0 01-.5-.18 77.84 77.84 0 01-5.47-15.81c-.09-.37-.17-.73-.25-1.1-.4-1.78-.8-3.63-1.51-5.32-1.97-4.66-6.14-8.42-13.15-11.8-1.87-.9-3.52-1.7-5.2-2.45.78 3.9 1.39 7.82 1.82 11.77a17.22 17.22 0 019.12 9.08c.09.2 0 .42-.2.5a.38.38 0 01-.5-.2 16.46 16.46 0 00-8.33-8.5c.1 1.04.2 2.09.29 3.13.21 2.75.17 5.81-1.76 7.72-1.45 1.43-3.58 1.8-5.28 1.95-5.1.47-10.2-.28-15.16-1-.99-.14-1.97-.28-2.96-.41l-.9-.13c-5-.69-11.84-1.63-16.47.62-.6.3-1.16.7-1.65 1.18 2.26 1.52 4.27 3.7 4.75 6.76.13.82.1 1.54-.1 2.16.22.11.43.23.63.34.73.4 1.36.75 2.25.87 15.71 2.1 20.01 3.79 28.76 9.41 2.8 1.8 5.55 3.94 8.21 6.01 5.03 3.92 10.23 7.97 16.12 10.04.56.2 1.13.39 1.7.58 3.3 1.08 6.71 2.2 8.62 5.13a15.5 15.5 0 011.51 3.37c.56 1.6 1.1 3.1 2.24 4.16.65.61 1.44 1.02 2.28 1.45l.26.14c.05-.02.1-.04.16-.04 2.86-.12 5.18-2.24 7.49-4.59a.38.38 0 01.54 0c.15.15.15.4 0 .55-2.1 2.13-4.36 4.21-7.08 4.7.06.04.12.07.17.11.98.64 1.8 1.46 2.54 2.34l.08-.01c1.75.06 3.54-.6 4.88-1.77.15-.14.4-.13.53.04.14.16.13.4-.03.54a7.95 7.95 0 01-4.87 1.95c.44.58.84 1.17 1.23 1.75 10.83 16.27 24.16 53.25 28.72 71.83h49.93c-1.74-13.48-19.7-43.99-52.72-95.85-.52-.68-1.05-1.36-1.57-2.05a95.78 95.78 0 01-10.04-16.45zM147.59 187.9c-.22.09-.45.17-.67.26a92 92 0 00-14.52 7.75c-.47.3-.9.68-1.37 1.1l-.18.15c3.38-.56 6.8-.75 10.1-.78a42.12 42.12 0 016.64-8.48z"/><path fill="#FED7D8" d="M130.74 196.23a5.58 5.58 0 01-2.96-1.35.39.39 0 01.23-.68c.1 0 .2.03.28.1.87.77 2 1.2 3.16 1.22.04 0 .09 0 .13.02a102.41 102.41 0 0110.75-6.15 6.79 6.79 0 01-1.66-2.05.39.39 0 01.16-.52.38.38 0 01.52.16c.41.8 1 1.49 1.71 2.03l.02.01a69.86 69.86 0 013.55-1.57c.95-.39 1.93-.7 2.9-1 .08-.05.16-.1.24-.14a.37.37 0 01.26-.02l.3-.1c1.52-.45 3.09-.93 4.53-1.61 2.97-1.4 4.95-3.68 5.29-6.1a3.97 3.97 0 00-.94-3.37c-.7-.7-1.66-.97-2.7-1.04a.37.37 0 01-.37-.01c-.65-.01-1.32.05-1.97.13a74.95 74.95 0 00-32.22 12.33 23.18 23.18 0 00-5.18 4.43c-1.48 1.83-2.46 4.04-3.42 6.17-1.1 2.49-2.46 5-3.77 7.44a142.91 142.91 0 00-3.1 6c.36-.29.73-.57 1.1-.85l5.53-4.24a54.84 54.84 0 016.94-4.77 32.69 32.69 0 019.2-3.25c.44-.29.85-.65 1.28-1.03l.2-.19h.01zm123.22-22.55c-1.36-4.42-4.85-8.5-9.9-11.52-.74-.45-1.73-1-2.78-1.36-1.19-.4-2.43-.56-3.7-.7-2.97-.31-5.99-.45-9.07-.57l-.44-.02c-1.32-.06-2.98-.14-3.95.74-1.12 1.01-1.52 3.34-1.32 5.01a6.1 6.1 0 002.58 4.37c1.43.94 3.23 1.16 4.97 1.38l.61.07c1.9.25 4.02.7 5.45 2.14 2.57-.87 5.2-1.63 7.92-1.58 3.33.07 6.6.78 9.63 2.04zm-18.67 16.81c.03 1.44.05 2.87.06 4.3v.03l5.57 1.14c1.05.21 2.11.44 3.18.67-.7-3.33-1.52-6.63-2.46-9.9-.13-.08-.26-.17-.39-.25-.61.22-1.24.45-1.9.7-1.32.51-2.7 1.04-4.1 1.47.19.53.04 1.43.04 1.84zm8.46.84c1.33.56 2.74.9 4.18 1.01.2.02.37.2.35.42a.38.38 0 01-.38.36h-.03c-1.37-.11-2.71-.42-4-.91.38 1.52.73 3.05 1.04 4.57v.02a85.06 85.06 0 016.43 1.68 22.51 22.51 0 00-1.46-6.87c-.33-.85-.77-1.8-1.54-2.27-.44-.26-.96-.37-1.5-.49l-.3-.06a15.3 15.3 0 01-3.95-1.5c.37 1.33.73 2.67 1.07 4.02l.1.02z"/><path fill="#FED7D8" d="M104.76 229a.39.39 0 01.02-.7c.1-.05.2-.04.3 0 4.15 1.84 8.8 2.3 13.23 1.3a.39.39 0 01.17.75c-4.6 1.04-9.4.57-13.72-1.34zm31.49 9.5a17.25 17.25 0 0111.97-12.43.39.39 0 01.2.75 16.7 16.7 0 00-11.43 11.87c-.04.17-.2.3-.37.3l-.1-.01a.39.39 0 01-.27-.47zm-20.8 63.19c6.3-13.98 8.62-15.36 14.25-18.7a84.75 84.75 0 006.2-3.94c8.96-6.32 17.55-14.3 25.55-23.73.22-.27.45-.54.68-.81 1.24-1.48 2.52-3.01 4.05-4.25a25.74 25.74 0 015.48-3.2c8.16-3.77 15.12-5.16 21.28-4.24 2.37.35 4.56.53 5.5-.97a.38.38 0 01-.01-.33c.05-.1.14-.19.26-.21a4 4 0 00.06-1.78c-.45-2.92-2.45-4.98-4.68-6.42a.37.37 0 01-.18-.08l-.05-.06a22.28 22.28 0 00-5.59-2.38c-6.63-1.85-13.05-1.86-18.56-.05-.98.32-2 .71-2.99 1.1-3.85 1.48-7.85 3.01-11.58 1.35-2.7-1.2-5.2-3.82-6.4-6.67-2.18-5.21-2.37-11.82-.57-18.67-.2.08-.4.14-.6.2-2.41.77-5 1.01-7.51 1.24l-1.04.1c.04.97.01 1.94-.09 2.9a.38.38 0 01-.38.34h-.04a.39.39 0 01-.34-.43 18 18 0 00.09-2.73c-3.09.32-5.99.8-8.5 2.44-1.05.68-2.02 1.56-2.96 2.41-1.65 1.5-3.36 3.05-5.56 3.6a.39.39 0 01-.18-.76c2.02-.5 3.58-1.91 5.23-3.41.96-.88 1.95-1.78 3.05-2.49 2.73-1.77 5.94-2.27 9.13-2.6a.38.38 0 01.12-.03l.09.02c.43-.05.87-.09 1.31-.13 2.47-.22 5.02-.46 7.35-1.2 1.68-.54 3.92-1.6 5.04-3.63.94-1.72.8-4.33-.93-5.49-1.05-.7-2.48-.74-3.64-.76-5.82-.14-12.15-.3-18.19.9l-.03.03a.37.37 0 01-.3.05 31.85 31.85 0 00-8.86 3.16 54.29 54.29 0 00-6.84 4.7l-5.54 4.25c-4.2 3.22-8.56 6.54-10.26 15.85-.75 13.64-1.61 29.08-8.51 42.05-6.55 12.3-14.9 24.44-25.54 37.09-2.12 2.52-4.34 4.99-6.57 7.4-18.88 22.95-29.3 38.97-31.24 48.06h63.63c4.86-11.97 12.6-29.93 24.9-56.87.5-1.1.85-1.86 1.01-2.22z"/><path fill="#000" d="M349.04 340.9c-7.1-14.52-22.1-40.15-45-76.9l-.7.3c36.83 59.32 45.42 77.71 45.41 77.76 5.68 11.54 7.44 16.69 7.55 18.74.01.2.18.36.38.36h.02c.21-.01.37-.2.36-.4-.14-2.74-2.83-9.38-8.02-19.87zM240.98 186.4a.38.38 0 01-.25-.09.39.39 0 01-.04-.55c.67-.8 1.1-1.78 1.2-2.82a.38.38 0 01.43-.34c.2.02.36.2.33.42a6.07 6.07 0 01-1.38 3.25.38.38 0 01-.3.13h.01z"/><path fill="#000" d="M251.75 199.45a.38.38 0 01-.38-.38 22.53 22.53 0 00-1.49-7.46c-.33-.85-.77-1.8-1.54-2.27-.44-.26-.96-.37-1.5-.49l-.3-.06c-2-.45-3.9-1.3-5.56-2.5a.39.39 0 01-.1-.54.38.38 0 01.54-.1 14.57 14.57 0 005.3 2.38l.27.06c.59.13 1.2.26 1.74.6.97.58 1.49 1.66 1.86 2.64a23.28 23.28 0 011.55 7.72c0 .21-.16.4-.37.4h-.02z"/><path fill="#000" d="M252.17 191.12c-.67 0-1.34-.08-2-.24a.39.39 0 01.19-.75c2.13.53 4.48.09 6.29-1.17a.38.38 0 01.53.1c.12.17.07.4-.1.53a8.65 8.65 0 01-4.91 1.53zm20 92.68a.38.38 0 01-.39-.37.38.38 0 01.37-.4c2.86-.12 5.18-2.24 7.49-4.59a.38.38 0 01.54 0c.15.15.15.4 0 .55-2.33 2.36-4.86 4.68-8 4.81h-.02zm-24.46-71.42a.38.38 0 01-.38-.38.38.38 0 01.38-.4 6.23 6.23 0 004.62-2.16.38.38 0 01.54-.04c.16.14.18.38.04.55a7 7 0 01-5.2 2.43zm28.36 74.53c-.07 0-.14 0-.2 0a.39.39 0 01-.38-.4.38.38 0 01.4-.38c1.76.06 3.54-.6 4.88-1.77.16-.14.4-.13.53.04.14.16.13.4-.03.54a7.95 7.95 0 01-5.2 1.97zm-31.53-89.66a.38.38 0 01-.37-.31c-.72-3.44-1.57-6.85-2.54-10.23a.39.39 0 01.26-.48.38.38 0 01.47.26c.98 3.4 1.83 6.83 2.55 10.29.05.2-.08.41-.29.46h-.08z"/><path fill="#000" d="M247.9 193.12h-.03c-1.52-.12-3-.49-4.41-1.08a.39.39 0 010-.71c.1-.04.2-.04.3 0 1.32.56 2.73.9 4.17 1.01.2.02.37.2.35.42a.38.38 0 01-.38.36zM97.42 225.75a.39.39 0 00-.4.36c-.76 13.56-1.61 28.93-8.43 41.75-6.52 12.26-14.85 24.35-25.45 36.96-1.94 2.3-4 4.55-6.03 6.75-17.6 20.94-28.36 37.34-32.24 49.2h1.04c7.8-21.04 28.77-44.73 31.2-48 2.25-2.43 4.47-4.91 6.61-7.45 10.64-12.65 19-24.78 25.54-37.1 6.9-12.97 7.76-28.42 8.52-42.06a.39.39 0 00-.37-.41zM198.37 109.1c-.02.09-.04.18-.06.26.02-.08.04-.17.06-.26zm-20.38-6.14a5.66 5.66 0 00-3.87 5.18c0 .7.14 1.32.42 1.83.22.4.54.77 1 1.16a6.64 6.64 0 004.5 1.53c1.72-.1 3.3-1 4.12-2.32.5-.81.7-1.74.83-2.46.07-.44.15-.96.06-1.48-.09-.5-.32-1.01-.7-1.51a5.77 5.77 0 00-4.12-2.17 78.93 78.93 0 0112.53.35c1.09.12 2.14.27 2.98.85 1.53 1.03 2.2 3.6 1.48 5.62-1.15 3.2-4.77 3.53-7.79 3.47-.8-.01-1.59-.06-2.28-.1-.46-.03-.88-.06-1.27-.07-.97-.04-2.2.03-3.5.11-1.38.08-2.95.18-4.46.15-3.95-.08-6.27-1-7.32-2.9a5.1 5.1 0 01-.58-2.82c.04-.48.15-.93.33-1.34.98-2.24 3.55-2.78 5.68-3a77.8 77.8 0 012.51-.22c-.19.04-.37.08-.55.14zm.53 1.52a4.02 4.02 0 014.38 1.32c.24.32.39.63.44.92.05.3.02.6-.05.99-.1.57-.24 1.23-.59 1.8a3.58 3.58 0 01-2.78 1.55 4.63 4.63 0 01-3.18-1.1c-.3-.25-.51-.49-.65-.73-.17-.31-.25-.7-.25-1.15 0-1.58 1.14-3.1 2.68-3.6zm11.05 9.62c-.84-.02-1.68-.07-2.42-.12-.46-.03-.92-.05-1.39-.07-1.05-.04-2.38.05-3.8.15-1.54.11-3.27.23-4.94.2-4.27-.08-6.79-1.2-7.92-3.53a6.95 6.95 0 01-.64-3.5c.05-.57.17-1.13.38-1.67 1.1-2.78 3.92-3.46 6.25-3.74a77.45 77.45 0 0118.23-.05c1.24.15 2.34.33 3.26 1.02 1.5 1.13 2.24 3.75 1.83 6.08.38-2.2-.46-4.6-2.1-5.72a7.3 7.3 0 00-3.45-1.02 80.24 80.24 0 00-16.94-.03c-2.21.23-5.3.85-6.49 3.58a5.13 5.13 0 00-.4 1.62c-.1 1.16.14 2.31.7 3.33 1.6 2.94 5.44 3.35 8.17 3.4 1.55.04 3.14-.06 4.55-.14 1.17-.07 2.27-.13 3.15-.12l.24.01c.38.02.8.04 1.25.07.7.04 1.5.09 2.32.1 3.1.06 7.37-.3 8.75-4.1.05-.13.09-.27.12-.4-.03.1-.05.22-.09.33-1.3 3.95-5.29 4.39-8.62 4.32zm9.57-4.04c.94-2.89.07-6.48-1.94-8-1.13-.85-2.42-1.06-3.76-1.22a78.39 78.39 0 00-18.48.04c-2.4.3-5.75 1.06-7.05 4.35a6.73 6.73 0 00-.44 1.93 7.76 7.76 0 00.73 3.97c1.72 3.53 5.85 4.01 8.8 4.07 1.72.04 3.48-.09 5.03-.2 1.29-.09 2.5-.18 3.47-.16l.23.01c.41.02.87.04 1.35.07.75.05 1.6.1 2.47.12 3.4.07 8.08-.37 9.59-4.98z"/><path fill="#000" d="M190.23 105.85c.23-.08.48-.11.74-.1.73 0 1.43.34 1.83.87.13.18.21.35.24.51.03.16 0 .35-.03.57-.06.35-.15.75-.35 1.08-.32.5-.95.86-1.62.9-.65.04-1.35-.2-1.88-.65a1.52 1.52 0 01-.37-.41c-.1-.17-.14-.4-.14-.65 0-.93.67-1.82 1.58-2.12zm-1.73 3.89a3.83 3.83 0 002.6.88c1-.06 1.93-.58 2.41-1.36.3-.47.4-1 .48-1.4.04-.28.08-.57.03-.87-.07-.34-.2-.65-.41-.91a3.38 3.38 0 00-3.7-1.12 3.28 3.28 0 00-2.25 3c0 .42.08.78.25 1.09.13.24.33.47.6.69zm-51.88 129.25c.18 0 .33-.13.37-.3a16.7 16.7 0 0111.43-11.87.39.39 0 00-.2-.75 17.25 17.25 0 00-11.97 12.44c-.05.2.07.41.28.47h.09zm-22.96-8.1c1.62 0 3.24-.18 4.82-.54a.39.39 0 00-.17-.75c-4.44 1-9.08.54-13.24-1.3a.38.38 0 00-.5.2c-.09.19 0 .42.2.5a21.87 21.87 0 008.9 1.89z"/><path fill="#000" d="M169.45 229.8c-.85.28-1.72.61-2.57.94a12.76 12.76 0 01-5.97-2.9c-3.5-2.96-3.45-9.53-3.42-13.88 0-.38.01-.74.01-1.08.01-5 .13-10.1.24-15.03.05-2.5.11-5 .15-7.51l.13-6.89a8.05 8.05 0 002.88-4.85 4.75 4.75 0 00-1.16-4.04 4.02 4.02 0 00-1.55-.96l.05-2.78a12.63 12.63 0 00.13-7.68l.34-19.14c.02-1.17.04-2.33.06-3.5.12-6.24.24-12.7.03-19.11-.17-5.36-.27-10.71-.28-16.07 0-.55-.02-1.1-.03-1.65-.09-3.76-.18-7.65 3.34-10.22 1.95-1.43 5.92-2.08 9-2.1 6.55-.03 13.21-.17 19.66-.3 10.89-.22 22.14-.45 33.2-.2 6.7.16 10.68 1.2 11.18 6.1.01.12.02.25.03.38.99 16.24.8 32.86.61 48.93v.57c-.01.24 0 10.9.23 12.33-2.37-.2-4.77-.3-7.2-.4l-.43-.02c-1.47-.07-3.3-.16-4.5.93-1.48 1.35-1.75 4.14-1.57 5.68a6.88 6.88 0 002.93 4.93c1.57 1.04 3.46 1.27 5.29 1.5l.6.07c1.65.21 3.46.58 4.73 1.66l-.52.18-.32.1c-2.74.96-5.56 1.94-8.05 3.45-2.68 1.62-4.1 3.54-4.23 5.7-.17 2.8 2.01 5 4.25 5.92 2.51 1.03 5.25.72 7.94-.03-.11.69-.04 1.47-.05 2.14-.03 1.23-.05 2.46-.07 3.69l-6.39-1.31c-.97-.2-2.06-.42-3.13-.15-.81.22-1.65.83-1.97 1.68a.38.38 0 00-.3.25 8.58 8.58 0 00.46 5.84 3.56 3.56 0 002.18 1.89 88.3 88.3 0 018.74 2.96c-.13 4.48-.2 9.01-.04 13.47v.28c.13 3.23.3 8.1-3.23 9.68-1.92.85-4.66.77-6.87.7-.28 0-.56-.02-.82-.02-.27 0-9.7-.07-10.12.17l-.07-.01c-5.1-.7-12.07-1.67-16.9.68-.74.37-1.4.86-1.98 1.46a23.2 23.2 0 00-5.65-2.4c-6.77-1.88-13.34-1.89-19-.03zm-14.02 2.48a12.41 12.41 0 01-6-6.26c-2.18-5.2-2.32-11.84-.4-18.73a8.35 8.35 0 004-3.42c1.1-2.02.9-5.12-1.18-6.51a4.97 4.97 0 00-1.9-.73c.62-4 2.23-7.7 4.78-10.98a.38.38 0 00.08-.2c.12-.06.25-.11.37-.17.66-.31 1.27-.67 1.83-1.05l-.1 6.1c-.05 2.5-.1 5-.16 7.5-.12 4.93-.23 10.03-.24 15.04 0 .35 0 .7 0 1.08-.04 4.52-.1 11.35 3.75 14.6a13.7 13.7 0 005.09 2.77c-3.37 1.28-6.8 2.35-9.92.96zm-13.58-35.9a41.33 41.33 0 015.63-7.28c.8-.83 1.52-1.48 2.33-1.94l.75-.23c.99-.3 2-.6 2.99-.98a24.21 24.21 0 00-4.35 10.58c-.46-.04-.93-.06-1.39-.07-1.9-.04-3.9-.1-5.96-.09zm-10.82.62c.46-.4.9-.8 1.36-1.1a92.08 92.08 0 0115.2-8c-.22.22-.44.44-.65.65-2.3 2.37-4.3 5-5.99 7.83-3.3.03-6.72.22-10.1.78l.18-.16zm-10.98 3.7a54.8 54.8 0 00-6.94 4.77l-5.54 4.24c-.36.28-.73.56-1.1.84a142.3 142.3 0 013.11-6c1.3-2.43 2.66-4.94 3.77-7.43.95-2.13 1.94-4.34 3.42-6.18a23.17 23.17 0 015.17-4.42 74.95 74.95 0 0132.23-12.33c.65-.09 1.31-.13 1.97-.13.12.07.26.07.38.01 1.03.07 1.99.34 2.68 1.04.78.77 1.13 2.03.94 3.38-.34 2.4-2.31 4.68-5.28 6.09-1.44.68-3 1.15-4.52 1.61l-.31.1a.37.37 0 00-.26.02c-.08.04-.17.09-.25.13-.96.3-1.94.62-2.89 1-1.2.5-2.38 1.02-3.55 1.58l-.02-.02a6.01 6.01 0 01-1.71-2.02.38.38 0 00-.52-.16.39.39 0 00-.16.52c.41.79.98 1.48 1.66 2.05a102.21 102.21 0 00-10.75 6.15.37.37 0 00-.13-.02 4.8 4.8 0 01-3.16-1.22.38.38 0 00-.54.03c-.14.16-.12.4.03.55.83.73 1.86 1.2 2.96 1.35-.07.07-.14.13-.21.19-.43.38-.85.74-1.28 1.03-3.2.65-6.31 1.67-9.2 3.25zM152 163.92c.23-.25.46-.5.7-.74.1-.04.19-.12.23-.22.43-.4.88-.76 1.4-1 .79-.37 1.9-.45 2.6.19.18.17.33.37.45.6v.03h.01c.17.33.28.67.36.98.86 3.22.26 6.76-1.58 9.52-.7-.02-1.42.05-2.1.14-4.7.6-9.3 1.67-13.78 3.17L152 163.93zm5.04 9.42c.06-.09.1-.18.15-.26v.28l-.15-.02zm84.23-12.55c1.05.36 2.04.91 2.78 1.36 5.05 3.02 8.54 7.1 9.9 11.52a26.6 26.6 0 00-9.63-2.04c-2.72-.05-5.36.71-7.92 1.58-1.43-1.44-3.55-1.9-5.45-2.14l-.61-.07c-1.74-.22-3.54-.44-4.97-1.38a6.1 6.1 0 01-2.58-4.37c-.2-1.67.2-4 1.32-5.01.97-.88 2.62-.8 3.95-.74l.43.02c3.09.12 6.1.26 9.08.58 1.27.13 2.51.29 3.7.7zm-5.38 45.8c.82 4.04 1.45 8.12 1.9 12.21a.38.38 0 00.03.35c.13 1.21.25 2.42.34 3.63.22 2.69.18 5.41-1.53 7.1-1.27 1.25-3.24 1.58-4.8 1.73-4.75.43-9.56-.2-14.22-.88.34.03.57.05.62.05.26 0 5.44.1 5.72.1.38.01.77.03 1.17.03 2.06.04 4.37-.02 6.15-.82 4.13-1.83 3.94-7.08 3.81-10.56l-.01-.28c-.15-4.3-.09-8.7.03-13.03.27.11.53.22.79.34v.04zm70.51 154.08c-4.44-18.4-17.85-55.62-28.78-72.04-1.18-1.78-2.5-3.62-4.36-4.84-.5-.32-1.03-.6-1.54-.87-.84-.43-1.63-.84-2.28-1.45-1.14-1.07-1.68-2.57-2.24-4.15-.4-1.16-.83-2.35-1.5-3.38-1.92-2.92-5.33-4.05-8.62-5.13-.57-.19-1.14-.38-1.7-.58-5.9-2.07-11.1-6.12-16.13-10.04a114.23 114.23 0 00-8.2-6c-8.76-5.63-13.06-7.32-28.77-9.42-.9-.12-1.52-.47-2.25-.87-.2-.12-.42-.23-.63-.34.2-.61.23-1.34.1-2.16-.48-3.06-2.49-5.24-4.75-6.76a6.26 6.26 0 011.65-1.18c4.63-2.25 11.47-1.3 16.47-.62l.9.13c.99.13 1.97.27 2.96.42 4.95.71 10.06 1.46 15.16.99 1.7-.16 3.83-.52 5.28-1.95 1.93-1.9 1.97-4.97 1.75-7.72-.08-1.04-.17-2.09-.28-3.13a16.46 16.46 0 018.33 8.5.38.38 0 10.7-.3 17.22 17.22 0 00-9.12-9.08c-.43-3.95-1.04-7.88-1.82-11.77 1.68.75 3.33 1.54 5.2 2.45 7 3.38 11.18 7.14 13.15 11.8a31.06 31.06 0 011.51 5.32 77.84 77.84 0 005.71 16.9.38.38 0 10.7-.33 77.04 77.04 0 01-5.42-15.64c-.08-.37-.16-.73-.24-1.1-.4-1.82-.82-3.7-1.56-5.45-2.01-4.78-6.44-8.77-13.52-12.2-5.42-2.62-9-4.35-16.67-6.57-.72-.21-1.3-.72-1.71-1.5a7.7 7.7 0 01-.58-4.55c.2-.02.36-.2.36-.4-.03-.82.76-1.51 1.54-1.72.9-.23 1.9-.02 2.79.16l12.77 2.6c2.67.56 5.44 1.12 8.1 1.85a63.4 63.4 0 0116.47 7.15.38.38 0 00.52-.13.39.39 0 00-.13-.53 64.12 64.12 0 00-16.65-7.23c-2.7-.74-5.47-1.3-8.16-1.86l-5.57-1.14v-.02c-.01-1.44-.03-2.87-.06-4.3 0-.42.15-1.32-.03-1.85 1.39-.43 2.77-.95 4.09-1.46.84-.33 1.64-.63 2.4-.9a.39.39 0 00.05-.71.38.38 0 00-.3-.02c-.77.27-1.57.58-2.42.9-3.92 1.5-8.35 3.21-12.07 1.68-1.99-.82-3.93-2.73-3.78-5.16.1-1.88 1.4-3.6 3.86-5.08 2.42-1.46 5.2-2.43 7.9-3.37l.33-.11.97-.34c.1.02.22-.02.3-.09l.02-.02c2.51-.85 5.09-1.61 7.7-1.55a25.57 25.57 0 0115.52 5.64c4.04 3.28 5.77 8.52 7.44 13.6.16.48.32.96.48 1.43 2.18 6.5 4.25 12.34 7.57 18.02.4.69.8 1.37 1.2 2.05 2.93 4.99 5.7 9.7 7.92 14.94.96 2.25 1.87 4.55 2.75 6.78 1.47 3.72 3 7.57 4.76 11.24a95.78 95.78 0 0010.04 16.45c.6.78 1.2 1.56 1.79 2.34.07-.3.18-.58.32-.85-.5-.65-1-1.3-1.5-1.96a94.94 94.94 0 01-9.96-16.31 173.45 173.45 0 01-4.74-11.2c-.88-2.23-1.8-4.54-2.75-6.8-2.25-5.28-5.16-10.23-7.98-15.03-.4-.68-.8-1.36-1.2-2.04-3.27-5.62-5.33-11.42-7.5-17.88-.16-.47-.31-.95-.47-1.43-1.71-5.18-3.48-10.54-7.69-13.96a25.68 25.68 0 00-5.45-3.38V174c-1.3-4.82-5-9.26-10.41-12.5-.78-.47-1.8-1.05-2.93-1.43-1.26-.43-2.6-.6-3.86-.73-.4-.05-.8-.08-1.2-.11.2-1.53.03-12.15.04-12.39v-.56c.19-16.1.38-32.73-.6-49-.02-.14-.03-.29-.04-.43-.63-6.16-6.6-6.8-12.15-6.94a783.7 783.7 0 00-33.24.2c-6.44.13-13.1.26-19.65.3-3 .01-7.32.62-9.6 2.3-3.91 2.86-3.81 6.98-3.72 10.97.01.55.02 1.1.02 1.64.02 5.34.12 10.76.3 16.1.2 6.38.08 12.83-.04 19.07l-.07 3.5-.3 17.56c-.97-.83-2.4-.75-3.39-.28l-1.42 1.18h-.01v.01l-1.13.94-12.7 13.73a77.3 77.3 0 00-17.24 8.74 23.83 23.83 0 00-5.34 4.59c-1.54 1.9-2.55 4.16-3.52 6.34a115.8 115.8 0 01-3.75 7.39c-1.3 2.43-2.66 4.95-3.77 7.43-3.48 2.9-6.7 6.63-8.12 14.45-.04.2.1.4.3.45h.08c.18 0 .34-.13.37-.32 1.7-9.32 6.05-12.65 10.26-15.87l5.54-4.24a54.3 54.3 0 016.84-4.71c2.8-1.54 5.8-2.53 8.86-3.16.1.02.21 0 .3-.05l.03-.02c6.04-1.2 12.37-1.05 18.2-.91 1.15.02 2.58.06 3.63.76 1.73 1.16 1.87 3.77.93 5.5-1.12 2.02-3.36 3.08-5.04 3.62-2.33.74-4.88.98-7.35 1.2-.44.04-.87.08-1.31.13l-.09-.02a.38.38 0 00-.12.04c-3.19.32-6.4.82-9.13 2.6-1.1.7-2.09 1.6-3.05 2.48-1.65 1.5-3.21 2.91-5.23 3.41a.39.39 0 00.18.76c2.2-.55 3.91-2.1 5.56-3.6.94-.85 1.9-1.73 2.95-2.4 2.52-1.64 5.42-2.13 8.5-2.45a18 18 0 01-.08 2.73c-.02.21.13.4.34.43h.04c.2 0 .36-.15.38-.34.1-.96.13-1.93.09-2.9l1.04-.1c2.5-.23 5.1-.47 7.51-1.23.2-.07.4-.13.6-.2-1.8 6.84-1.6 13.45.58 18.66a13.22 13.22 0 006.4 6.67c3.73 1.66 7.72.13 11.58-1.36.98-.38 2-.77 2.98-1.1 5.51-1.8 11.93-1.79 18.56.06 1.35.37 3.55 1.11 5.6 2.38l.04.06c.05.04.11.07.18.08 2.23 1.43 4.23 3.5 4.68 6.42.11.7.09 1.29-.06 1.78a.38.38 0 00-.26.2c-.05.12-.04.24.01.34-.94 1.5-3.13 1.32-5.5.97-6.16-.92-13.12.47-21.28 4.24-1.85.85-3.8 1.83-5.48 3.2-1.53 1.24-2.81 2.77-4.05 4.25-.23.27-.45.54-.68.8-8 9.44-16.6 17.42-25.55 23.74a84.77 84.77 0 01-6.2 3.95c-5.63 3.33-7.96 4.7-14.24 18.69-.17.36-.52 1.12-1.02 2.22-12.3 26.94-20.04 44.9-24.9 56.87h.83c4.85-11.95 12.57-29.82 24.76-56.54l1.02-2.23c6.19-13.76 8.46-15.1 13.94-18.34 1.74-1.04 3.72-2.2 6.25-3.99 9-6.35 17.65-14.38 25.69-23.86.23-.27.45-.54.68-.81a29.8 29.8 0 013.94-4.15 25.09 25.09 0 015.33-3.1c8.02-3.7 14.84-5.07 20.85-4.18 1.99.3 4.97.73 6.25-1.31.2.1.4.21.6.32.76.42 1.47.82 2.5.96 15.58 2.07 19.83 3.75 28.46 9.3 2.77 1.77 5.5 3.9 8.16 5.97 5.07 3.95 10.33 8.04 16.33 10.15.57.2 1.14.39 1.72.58 3.17 1.05 6.45 2.13 8.21 4.82.63.96 1.04 2.1 1.43 3.22.57 1.6 1.16 3.26 2.44 4.46.73.68 1.6 1.13 2.45 1.57.5.26 1.01.53 1.48.83 1.74 1.14 3 2.9 4.14 4.63 10.86 16.32 24.2 53.32 28.65 71.7.14 0 .28 0 .42.02.12 0 .23 0 .35 0 0-.04 0-.08 0-.12h-.01zm-161.2-259.77a9.47 9.47 0 00-.87-4.43 5.74 5.74 0 00-3.65-3.05c1.2-.68 2.27-1.57 3.17-2.61.88-.86 1.25-2.02 1.54-3.22a224 224 0 00.81-3.47 17.2 17.2 0 004.5 11.48c-3-.14-4.6 2.61-5.5 5.3zm6.16-5.19a16.8 16.8 0 01-4.65-13.83c.03-.22-.32-.26-.37-.05l-1.05 4.66c-.31 1.4-.57 2.89-1.5 3.99a.17.17 0 00-.23.04c-1 1.16-2.2 2.11-3.55 2.82-.15.07-.13.34.04.37 4.3.6 5.11 5.53 4.6 9.12-.04.25.3.36.37.1.75-2.97 2.23-7.5 6.14-6.88.19.03.35-.18.2-.34zm-2.82-19.16a23.1 23.1 0 01-.5-5.24c0-.23-.31-.21-.34 0-.11.85-.32 1.69-.6 2.5-.28.77-.93 2.59-1.9 2.66-.14.02-.14.24 0 .24.87-.03 1.26-.91 1.63-1.59.38-.7.67-1.44.88-2.2.05 1.25.22 2.5.52 3.72.05.2.35.11.31-.09zm-3.48 32.31a7.07 7.07 0 01-.87 1.5c-.47-1.23-.93-2.46-1.41-3.69-.06-.14-.28-.08-.23.07.47 1.33.97 2.65 1.45 3.98.04.1.18.17.26.07.46-.54.82-1.15 1.09-1.8.07-.17-.22-.3-.3-.13zm-13.39-20.6c-2.38-.88-4.74-1.84-7.06-2.87-.61-.27-1.14.64-.53.92a56.66 56.66 0 007.4 2.68c.47.14.64-.56.2-.73zm-.86 4.9c-2.33.12-4.64.64-6.85 1.41-.64.22-.37 1.25.29 1.04 2.2-.72 4.4-1.26 6.66-1.76.38-.09.3-.71-.1-.7zm1.37 5.56c-1.97 1.74-3.9 3.52-5.78 5.36-.47.46.24 1.17.72.72 1.91-1.79 3.8-3.63 5.62-5.52.36-.37-.17-.9-.56-.56zm122.6 1.36c-1.74 1.38-3.29 2.9-5.2 4.08a19.36 19.36 0 00-4.24 3.38c-.37.4.18.91.58.59 3.18-2.57 6.97-4.07 9.72-7.18.54-.6-.25-1.34-.85-.87zm4.47 20.8a58.97 58.97 0 00-12.66-8.98c-.37-.2-.65.32-.32.57 4.13 3.07 8.21 6.18 12.3 9.3.52.4 1.14-.46.68-.89z"/><path fill="#000" d="M251.1 129.34c-.8-1.5-1.6-3.01-2.41-4.51-.47-.85-.93-1.71-1.4-2.56-.13-.24-.86-1.27-1.05-1.73l.03-.06c.08-.19.06-.4-.13-.51l-.11-.07c-.24-.13-.49 0-.58.24-.35.93.95 2.5 1.34 3.27 1.11 2.17 2.25 4.32 3.4 6.46.33.6 1.22.07.9-.53z"/></g><mask id="f" fill="#fff"><use xlink:href="#e"/></mask><g fill-rule="nonzero" mask="url(#f)"><path fill="#FFF" d="M309.22 182.1c.6.55 1.28 1.02 2.01 1.4.63.3 1.1.38 1.42.2a.36.36 0 01.27-.03l.06-.08c-1.33-.28-2.6-.79-3.76-1.5z"/><path fill="#B3B3B3" d="M328.89 182.38c-.12.26-.21.5-.21.7.01.19.1.36.24.48.16.13.34.19.5.16.12-.01.24.03.33.11l5.3-8.25c.74-1.15 1.5-2.33 2.38-3.4 2.03-2.47 4.68-4.34 7.25-6.15a88.26 88.26 0 003.09-2.24 37.6 37.6 0 00-18.88 18.6z"/><path fill="#FFF" d="M383.68 290.66c-.05 0-.1.01-.14.01 0 .04 0 .08.02.11a.6.6 0 01.12-.12z"/><path fill="#FC8181" d="M371.6 294.45c-3.7.3-7.4.44-11.08.35.01.03.03.06.03.1.23 3.25.25 6.53.32 9.8.05 2.18.55 4.84-.4 6.9 1.72-.04 3.44-.1 5.13-.17 6.54-.27 13.22-.78 19.65-2.08 2.25-.46 1.47-3.29 1.28-4.87a60.54 60.54 0 00-2.55-11.68c-1.8.68-3.97.72-5.86.96-2.17.26-4.34.5-6.52.69z"/><path fill="#FFF" d="M350.5 87.8c.27.42.9.85 1.67.85h.05c.8-.02 1.46-.48 1.76-.93.32-.48.38-1.03.43-1.64.11-1.5.17-3.03.17-4.53 0-1.23-.36-3.08-.66-4.55l-.04-.22c-.13-.62-.16-.75-.84-1.19a2.84 2.84 0 00-1.46-.38c-.59 0-1.08.16-1.36.44-.31.3-.33.7-.33 1.2.02 3.07.1 6.2.23 9.3.03.56.05 1.15.37 1.64z"/><path fill="#4B5668" d="M331.45 82.86c.05-.65.2-1.28.37-1.93.37-1.43.9-2.2 2.04-2.95a6.16 6.16 0 013.4-1.1c1.24 0 3.09.33 4.16 1.29a6.14 6.14 0 012.05 4c.03.39.02.77-.03 1.16-.26 2.1-1.25 3.7-2.8 4.53-.84.45-1.94.7-3.12.7a7.52 7.52 0 01-3.86-1 5.15 5.15 0 01-2.2-4.7zm-1 4.8c.02.8.7 1.46 1.51 1.46v.2l.03-.2c3.75-.08 7.46-.19 11.33-.33.83-.03 1.5-.74 1.49-1.59-.02-.7-.02-1.4-.03-2.1-.03-2.3-.05-4.7-.23-7.26a1.56 1.56 0 00-1.54-1.45h-.07c-2.9.13-5.45.15-8.16.17-1 .01-2.04.02-3.11.03a1.58 1.58 0 00-1.55 1.65c.05 1.52.1 3.08.16 4.63.05 1.6.1 3.21.17 4.78z"/><path fill="#F7AE55" d="M333.87 87.24c.95.59 2.28.93 3.65.93 1.12 0 2.16-.23 2.94-.65 1.43-.77 2.36-2.27 2.6-4.24.05-.36.06-.71.03-1.07a5.76 5.76 0 00-1.92-3.75c-.94-.83-2.64-1.2-3.92-1.2a5.84 5.84 0 00-3.19 1.04 4.03 4.03 0 00-1.87 2.73c-.17.63-.31 1.24-.36 1.86a4.75 4.75 0 002.03 4.35z"/><path fill="#E9D8FD" d="M328.4 75.27c.48-.51 1.14-.8 1.83-.81 1.34-.02 2.61-.03 3.86-.04 3.34-.02 6.49-.04 10.05-.2 1.39-.07 2.54 1 2.64 2.36.21 3.19.25 6.15.28 9.03 0 .85.02 1.7.03 2.57a2.55 2.55 0 01-2.43 2.6c-4.67.17-9.34.3-14 .4h-.06a2.5 2.5 0 01-2.49-2.4c-.08-1.97-.14-3.93-.2-5.9-.07-1.92-.14-3.85-.2-5.73-.04-.7.21-1.38.7-1.88zm21.42-.04c.4-.38 1.02-.6 1.76-.6.66 0 1.3.18 1.77.48.84.54.94.82 1.08 1.56l.05.22c.3 1.49.67 3.37.67 4.66 0 1.53-.05 3.05-.17 4.57-.05.7-.13 1.33-.53 1.92a2.82 2.82 0 01-2.22 1.2h-.06a2.6 2.6 0 01-2.16-1.13c-.4-.63-.43-1.33-.46-1.94-.13-3.1-.21-6.22-.23-9.32 0-.44-.01-1.11.5-1.62zm-43.38 102.4c.14.34.28.69.43 1.03.4.7.89 1.3 1.49 1.8a11.26 11.26 0 005.18 2.4c1.68-2.28 3-4.9 3.95-7.82.21-.65.41-1.33.6-1.99.78-2.65 1.57-5.4 3.51-7.4a16.52 16.52 0 014.25-2.87c7.12-3.82 14.48-7.76 22.57-9.42 1.22-.26 2.64-.49 3.98-.08 1.12.34 2.23 1.29 2.49 2.53.7-.67 1.5-1.13 2.51-1.13 1.27 0 2.5.83 3.15 2.12a6.4 6.4 0 01.48 3.74c-.54 4.3-3.45 7.6-6.27 10.8-1.53 1.75-3.12 3.55-4.31 5.49a39.59 39.59 0 00-1.99 3.89c-.3.65-.6 1.3-.93 1.96 1.93-.16 15.82.06 16.04.06.23 0 .48 0 .73.01 1.95.02 4.38.05 6.07-.74 3.09-1.44 2.85-5.74 2.69-8.58v-.26c-.3-5.2-.23-10.55-.16-15.71v-.09a.4.4 0 01.17-.31c.43-16.51.35-33.04-.24-49.55 0-.1.03-.2.1-.27v-.02c-.11-14.17-.22-28.83-1.37-43.13l-.04-.34c-.52-4.3-4.06-5.16-10-5.17-9.77-.04-19.72.36-29.34.75-5.7.22-11.59.46-17.38.6-2.72.07-6.22.72-7.93 2.01-3.06 2.33-2.92 5.76-2.77 9.07.02.49.04.97.05 1.45.1 4.7.28 9.47.53 14.17.3 5.64.3 11.34.3 16.85 0 1.03 0 2.05 0 3.08l.07 40.87c0 2.21 0 4.42-.01 6.63v.96c4.64-2.03 8.41-2.26 14.37-2.47.65-.03 1.34.33 1.8.92.42.55.44 1.3.42 1.8a8.9 8.9 0 01-4.73 7.46c-.61.31-1.26.55-1.88.78a16.57 16.57 0 00-2.64 1.17c-1.01.5-1.87.91-2.7 1.69-1.11 1.03-2.23 2.23-3.31 3.4-.4.42-.8.85-1.2 1.28.08 1.77.27 3.68.77 5.38l.5 1.2z"/><path fill="#FFF" d="M330.27 76.82c.36-.39.86-.61 1.4-.61 1.07-.02 2.1-.03 3.11-.03 2.7-.02 5.26-.04 8.15-.17a1.93 1.93 0 012 1.8c.18 2.57.2 4.97.23 7.3.01.69.02 1.38.03 2.09a1.95 1.95 0 01-1.86 1.98c-3.87.14-7.57.25-11.33.33h-.04a1.9 1.9 0 01-1.9-1.84 820.4 820.4 0 01-.33-9.41c-.02-.53.17-1.05.54-1.44zm-1.4 11.92c.04.93.8 1.67 1.73 1.68h.04c4.63-.1 9.2-.24 13.99-.41a1.78 1.78 0 001.7-1.81c-.01-.87-.03-1.73-.04-2.59-.03-2.86-.06-5.81-.28-8.98a1.77 1.77 0 00-1.76-1.65h-.08c-3.57.17-6.73.2-10.07.22-1.25 0-2.52.01-3.86.03-.49 0-.94.2-1.28.57-.34.35-.51.83-.5 1.32.08 1.88.14 3.81.21 5.74.07 1.97.13 3.95.2 5.88zm-24.53 83.17c-.05.06-.12.12-.17.17l.22.56c-.02-.24-.04-.49-.05-.73z"/><path fill="#FC8181" d="M357.48 305.57c-.11.82-.2 2.08-.98 2.6-1.66 1.12-3.58-.47-3.71-2.25-.06-.9 0-3.18.9-3.84.39-1.56 2.78-1.53 3.45.03.48 1.1.5 2.27.34 3.46zm2.1 5.65c1.07-2.22.4-5.7.36-8.03-.03-2.76-.13-5.53-.03-8.29a.3.3 0 01.02-.12 67.45 67.45 0 01-15.38-2.16c-.15 1.4.08 3.6.08 4.15 0 1.48 0 2.96 0 4.44l-.01 5.2c-.01 1.9-.05 4.22 2.33 4.56 3.97.57 8.09.7 12.18.65.03-.25.23-.39.45-.4z"/><path fill="#FED7D8" d="M355.95 323.03a52.24 52.24 0 00-.2 5.83c.04.97.07 1.95.16 2.92.03.53.1 1.04.26 1.55l2.43.41a84.2 84.2 0 00.6-21.15c-.6 0-1.2 0-1.8-.02.23 3.44-1.16 7.03-1.45 10.46z"/><path fill="#E6E6E6" d="M356 302.18l-1.1.32a.25.25 0 01-.3.08l-.02.01c-.02.4-.4.54-.68.4-.36.75-.37 2.2-.34 2.54.1.93.83 2.59 2.11 2.06.91-.37.93-2.19.94-2.98 0-.46.04-.98-.09-1.42a1.86 1.86 0 00-.51-1z"/><path fill="#DBBBAB" d="M348.68 292.5c1.85.32 3.7.59 5.56.75 3.37.3 6.73.4 10.1.3 3.4-.1 6.79-.33 10.16-.7 1.87-.22 3.74-.44 5.6-.7.72-.1 1.44-.2 2.15-.31.22-.03.44-.08.66-.13-2.64-19.12-4.63-37.66-4.16-49.52.03-.58.06-1.17.08-1.76.35-7.97.7-16.2-3.05-23.05-.97-1.78-2.22-3.43-3.42-5.03l-12.54-16.67c-1.5-1.98-3.09-3.66-4.63-5.27-.79-.83-1.57-1.65-2.32-2.5.02 0-2.27-3.26-3-4.3h-2.76l-.05-.02c-.54 1-1.14 1.97-1.84 2.83l1.97 2.42c.22.28.47.59.64.96.23.5.27 1.04.31 1.52l.25 3a32.75 32.75 0 006.35 5.29c.67.43 1.37.84 2.04 1.24 1.24.72 2.51 1.47 3.68 2.36 3.86 2.92 6.47 7.28 8.78 11.13a.39.39 0 01-.33.59.38.38 0 01-.33-.19c-2.27-3.79-4.84-8.08-8.58-10.92a36.17 36.17 0 00-3.6-2.3c-.68-.4-1.4-.82-2.07-1.26a33.38 33.38 0 01-6.39-5.3.37.37 0 01-.28-.3.37.37 0 01-.05-.43l-.23-2.84a3.8 3.8 0 00-.24-1.27c-.13-.28-.34-.54-.54-.79l-2.18-2.67a.4.4 0 01.01-.5c1.41-1.63 2.4-3.74 3.34-5.77a39 39 0 012.03-3.97c1.23-2 2.83-3.82 4.39-5.6 2.86-3.25 5.57-6.32 6.08-10.38.17-1.3.03-2.42-.4-3.29-.52-1.01-1.5-1.7-2.47-1.7-1.65 0-2.7 1.65-3.75 3.25-.13.2-.25.39-.38.58-2.07 3.1-5.17 5.28-8.15 7.39-2.53 1.78-5.14 3.62-7.1 6-.86 1.04-1.6 2.2-2.33 3.33l-7.03 10.95a.38.38 0 01-.53.11.39.39 0 01-.12-.53l1.31-2.03a1.42 1.42 0 01-.89-.35c-.31-.26-.5-.64-.52-1.05 0-.38.13-.7.29-1.04a37.7 37.7 0 0121.43-19.85h.04a18.37 18.37 0 002.97-3.36c.12-.19.25-.38.38-.58.37-.57.76-1.17 1.2-1.71a.34.34 0 01-.03-.16c.03-1.14-1.01-2.08-2.01-2.38-1.17-.36-2.48-.14-3.6.1-7.98 1.64-15.3 5.55-22.37 9.34a15.94 15.94 0 00-4.06 2.74c-1.8 1.86-2.58 4.51-3.32 7.07-.2.67-.4 1.34-.61 2a27.68 27.68 0 01-4.97 9.22.37.37 0 01-.3.14.37.37 0 01-.24-.09l-.02-.03c-.14.04-.29.06-.44.06-.4 0-.85-.13-1.36-.39a9.8 9.8 0 01-4.39-4.49 10.95 10.95 0 01-1.6-3.79l-1.32-3.23c-.19.18-.37.36-.56.53a.38.38 0 01-.54-.02.39.39 0 01.03-.55c1.1-1.03 2.22-2.23 3.3-3.4 1.1-1.17 2.22-2.38 3.34-3.43.92-.85 1.88-1.32 2.9-1.81.26-.14.54-.27.83-.42.6-.31 1.26-.55 1.88-.78.6-.23 1.22-.46 1.8-.75 2.46-1.27 4.2-4 4.3-6.8.03-.62-.05-1.02-.26-1.3a1.5 1.5 0 00-1.17-.62c-6.3.22-10.12.47-15.15 2.9-5.17 2.49-8.63 7.63-11.4 11.77-1.5 2.23-2.75 4.26-2.81 6.57-.06 1.91.73 3.73 1.6 5.57a123.3 123.3 0 005.12 9.58c.1.18.05.41-.13.53a.4.4 0 01-.2.05.39.39 0 01-.33-.19 120.98 120.98 0 01-5.14-9.63c-.89-1.86-1.74-3.85-1.69-5.94.08-2.5 1.43-4.73 2.94-6.97a69.63 69.63 0 014.29-5.92.39.39 0 01-.23-.5c.53-1.46.58-3.98-.27-5.48a2.44 2.44 0 00-1.71-1.29c-.86-.16-1.69.48-2.18 1.13-.3.4-.55.86-.8 1.34-.23.41-.45.83-.72 1.23a22.42 22.42 0 01-2.6 2.96c-.7.7-1.4 1.4-2 2.16-1.55 1.94-2.03 4.35-2.51 6.68-1.4 6.87-2.24 14.9-.74 16.29l1.77 1.63a1399.9 1399.9 0 0115.91 14.9c3.87 3.71 8.33 6.73 12.57 9.5.82.55 1.63 1.08 2.44 1.6 8.48 5.52 16.48 10.73 23.29 19 3.96 4.8 7.03 11.21 8.64 18.05 1.33 5.61.88 10.94.4 16.58-.07.8-.13 1.61-.2 2.43a671.34 671.34 0 00-1.34 22.14c.1.02.2.05.31.07.7.15 1.41.3 2.12.43z"/><path fill="#FC8181" d="M386.62 310.23c-1.53.74-3.77.7-5.43.93a150.72 150.72 0 01-20.87 1.44c.41 4.93.47 9.9.05 14.84-.17 2.07-.15 4.58-.8 6.57-.36 1.1-.96 1.67-2.14 1.62-3.4-.15-2.65-6.96-2.58-8.96.07-2.22.24-4.45.6-6.65.4-2.46 1.28-4.95 1.3-7.46-1.97-.05-3.94-.13-5.9-.26-1.4-.1-4.13.05-5.76-.9.1 2.63.09 5.26.1 7.89-.1 2.28-3.4 40.27-3.2 40.9h52.2c-2.08-16.91-6.07-33.37-6.95-50.4-.18.18-.4.33-.62.44z"/><path fill="#FED7D8" d="M366.18 318.35a2.25 2.25 0 00-2.23 2.25 2.25 2.25 0 002.23 2.24 2.25 2.25 0 002.22-2.24 2.25 2.25 0 00-2.22-2.25zm12.43 10.48c-1.57 0-1.57 2.46 0 2.46s1.57-2.46 0-2.46zm3.44-12.35c-1.8 0-1.8 2.82 0 2.82 1.81 0 1.81-2.82 0-2.82zm-15.68-18.31c-1.75 0-1.75 2.73 0 2.73 1.74 0 1.74-2.73 0-2.73zm13.58 4.87c-1.13 0-2.08.95-2.08 2.1 0 1.14.95 2.1 2.08 2.1a2.1 2.1 0 002.08-2.1c0-1.15-.94-2.1-2.08-2.1zM348.2 319.5c-1.63 0-1.63 2.56 0 2.56s1.63-2.56 0-2.56zm1.72-23.11c-1.18 0-2.16.99-2.16 2.17 0 1.19.98 2.17 2.16 2.17 1.17 0 2.15-.98 2.15-2.17 0-1.18-.98-2.17-2.15-2.17zm21.8 13.18c-1.73 0-1.73 2.71 0 2.71 1.74 0 1.74-2.71 0-2.71z"/><path fill="#000" d="M305.17 170.98c-.23.27-.53.49-.85.63.2 3.5.9 7.38 3.47 9.47a12.19 12.19 0 005.55 2.6c.16-.28.38-.53.63-.74a11.34 11.34 0 01-5.61-2.49c-2.47-2-3.04-6-3.2-9.47zm68.64-63.76c-.11-14.2-.23-28.86-1.38-43.2-.01-.12-.02-.24-.04-.37-.66-5.42-5.95-5.89-10.86-5.9-9.8-.03-19.75.36-29.39.75-5.69.22-11.58.46-17.36.6-2.66.07-6.47.68-8.45 2.2-3.41 2.59-3.26 6.22-3.1 9.74.01.48.03.97.04 1.44.1 4.71.29 9.48.54 14.19.29 5.62.29 11.31.29 16.81 0 1.03 0 2.06 0 3.09l.07 40.87c0 2.2 0 4.41 0 6.62 0 .59-.01 1.18-.01 1.77.28-.2.58-.31.87-.36 0-.47 0-.94 0-1.4.02-2.22.02-4.43.02-6.64l-.07-40.87c0-1.03 0-2.05 0-3.08 0-5.5 0-11.2-.3-16.85-.25-4.72-.42-9.44-.53-14.17 0-.48-.03-.96-.05-1.45-.14-3.31-.29-6.74 2.78-9.07 1.7-1.3 5.2-1.94 7.92-2 5.8-.15 11.68-.39 17.38-.61 9.62-.39 19.57-.78 29.35-.75 5.93.01 9.47.87 10 5.17l.03.34c1.15 14.3 1.26 28.96 1.37 43.13v.5c.01.23.2.42.44.41.25 0 .45-.19.45-.42l-.01-.5zm-25.78 87.76a.39.39 0 01-.39-.35l-.26-3.24a3.8 3.8 0 00-.24-1.27c-.13-.28-.34-.54-.55-.79l-2.17-2.67a.4.4 0 01.01-.5c1.41-1.63 2.4-3.74 3.34-5.77a39 39 0 012.03-3.97c1.23-2 2.83-3.82 4.39-5.6 2.86-3.25 5.57-6.32 6.09-10.38.16-1.3.02-2.42-.42-3.3-.5-1-1.49-1.69-2.46-1.69-1.65 0-2.7 1.65-3.75 3.25-.13.2-.25.39-.38.58-2.07 3.1-5.17 5.28-8.16 7.39-2.52 1.78-5.13 3.62-7.1 6-.85 1.04-1.6 2.2-2.32 3.33l-7.03 10.95a.38.38 0 01-.53.11.39.39 0 01-.12-.53l7.04-10.95c.73-1.15 1.5-2.33 2.38-3.4 2.03-2.47 4.68-4.34 7.25-6.15 2.93-2.06 5.96-4.2 7.96-7.18.12-.2.24-.38.38-.58 1.09-1.68 2.32-3.58 4.38-3.59h.01c1.26 0 2.5.83 3.13 2.12a6.4 6.4 0 01.5 3.74c-.55 4.3-3.47 7.6-6.28 10.8-1.53 1.74-3.12 3.54-4.31 5.49a39.59 39.59 0 00-1.99 3.88c-.92 1.99-1.87 4.04-3.24 5.71l1.96 2.42c.23.28.48.59.65.96.23.5.27 1.04.31 1.52l.27 3.24c.02.21-.14.4-.35.42h-.03z"/><path fill="#000" d="M312.96 184.63a.39.39 0 01-.3-.63 26.98 26.98 0 004.83-8.96c.21-.65.41-1.33.6-1.99.78-2.65 1.57-5.4 3.51-7.4a16.48 16.48 0 014.25-2.87c7.12-3.82 14.5-7.76 22.58-9.42 1.22-.26 2.63-.49 3.97-.08 1.3.4 2.6 1.6 2.55 3.15 0 .2-.18.37-.4.37a.39.39 0 01-.36-.4c.03-1.14-1.01-2.08-2.01-2.38-1.17-.36-2.47-.14-3.6.1-7.98 1.64-15.3 5.55-22.37 9.34a15.94 15.94 0 00-4.06 2.74c-1.8 1.86-2.58 4.51-3.32 7.07-.2.67-.4 1.34-.61 2a27.68 27.68 0 01-4.97 9.22.37.37 0 01-.3.14zm16.39-.13c-.34 0-.66-.13-.92-.35-.31-.26-.5-.64-.51-1.05 0-.38.12-.7.28-1.04a37.7 37.7 0 0121.43-19.84.38.38 0 01.49.23c.07.2-.04.42-.24.5a37.48 37.48 0 00-21 19.43c-.1.26-.2.5-.2.7 0 .17.1.35.25.48.14.13.33.19.5.16a.38.38 0 01.43.33.38.38 0 01-.32.44c-.06 0-.12.01-.19.01zm-32.9 5.8a.39.39 0 01-.32-.2 120.98 120.98 0 01-5.14-9.63c-.89-1.86-1.74-3.85-1.69-5.94.08-2.5 1.43-4.73 2.94-6.97 2.83-4.22 6.35-9.46 11.71-12.04 5.17-2.5 9.04-2.74 15.46-2.97.65-.03 1.34.33 1.8.92.42.56.44 1.3.42 1.8a8.9 8.9 0 01-4.73 7.46c-.61.31-1.26.55-1.88.78-.6.23-1.22.46-1.79.75-.3.15-.58.29-.85.42-1 .5-1.87.91-2.7 1.69-1.11 1.03-2.23 2.23-3.31 3.4-1.1 1.17-2.22 2.38-3.35 3.43a.38.38 0 01-.54-.02.39.39 0 01.03-.55c1.1-1.03 2.22-2.23 3.3-3.4 1.1-1.17 2.22-2.38 3.34-3.43.92-.85 1.88-1.32 2.9-1.81.26-.14.54-.27.83-.42.6-.31 1.26-.55 1.88-.78.6-.23 1.22-.46 1.8-.75 2.46-1.27 4.2-4 4.3-6.8.03-.62-.05-1.02-.26-1.3a1.5 1.5 0 00-1.17-.62c-6.3.22-10.12.47-15.15 2.9-5.17 2.48-8.63 7.63-11.4 11.77-1.5 2.23-2.75 4.26-2.81 6.56-.06 1.92.73 3.73 1.6 5.58a123.3 123.3 0 005.12 9.58c.1.18.05.41-.13.53a.39.39 0 01-.2.05z"/><path fill="#000" d="M312.25 184.57c-.4 0-.84-.13-1.36-.39a9.8 9.8 0 01-3.96-3.69c-.49-.82-.85-1.7-1.2-2.57l-2.3-5.6a.39.39 0 01.21-.5.38.38 0 01.5.2l2.3 5.6c.34.84.69 1.7 1.15 2.47a8.98 8.98 0 003.64 3.4c.63.32 1.1.38 1.43.21a.38.38 0 01.5.17.4.4 0 01-.15.52c-.23.12-.5.18-.76.18z"/><path fill="#000" d="M347.4 250.84c-1.62-6.84-4.69-13.25-8.65-18.05-6.81-8.27-14.81-13.48-23.29-19-.8-.52-1.62-1.05-2.44-1.6-4.24-2.77-8.7-5.79-12.57-9.5a1399.9 1399.9 0 00-15.91-14.9l-1.77-1.63c-1.5-1.39-.67-9.42.74-16.29.48-2.33.97-4.74 2.52-6.68.6-.75 1.3-1.46 1.99-2.16.9-.92 1.85-1.87 2.6-2.96.27-.4.5-.82.71-1.23.26-.48.5-.93.81-1.34.5-.65 1.32-1.29 2.18-1.13.73.14 1.3.57 1.71 1.3.85 1.5.8 4 .27 5.48-.07.2.03.42.23.5.2.07.42-.04.49-.24.6-1.66.65-4.41-.32-6.13a3.21 3.21 0 00-2.24-1.67c-1.2-.22-2.3.59-2.92 1.42-.35.46-.62.96-.88 1.44-.2.4-.43.79-.67 1.16a21.61 21.61 0 01-2.52 2.86c-.7.7-1.41 1.43-2.04 2.21-1.66 2.1-2.17 4.6-2.67 7.01-.5 2.46-2.89 14.81-.5 17.02l1.76 1.63c5.13 4.76 10.95 10.15 15.9 14.9 3.93 3.75 8.6 6.91 12.69 9.59.81.53 1.63 1.06 2.44 1.6 8.42 5.48 16.37 10.66 23.11 18.83 3.89 4.71 6.9 11.01 8.5 17.74 1.29 5.49.84 10.76.37 16.34-.07.8-.13 1.61-.2 2.43a638.6 638.6 0 00-1.36 22.16c.1.05.2.12.28.21.15.18.31.35.47.53.33-7.62.78-15.23 1.37-22.84.07-.82.14-1.62.2-2.43.48-5.64.93-10.97-.4-16.58zm21.51-35.91a.38.38 0 01-.33-.19c-2.27-3.79-4.84-8.08-8.57-10.91-1.14-.87-2.4-1.6-3.6-2.32a33.64 33.64 0 01-8.74-6.84.39.39 0 01.01-.54c.16-.14.4-.14.55.02a32.64 32.64 0 006.5 5.46c.68.43 1.38.84 2.05 1.24 1.24.72 2.51 1.47 3.68 2.36 3.86 2.92 6.47 7.28 8.78 11.13a.39.39 0 01-.33.59z"/><path fill="#000" d="M378.76 242.2c-.48 12 1.56 30.9 4.26 50.28.23-.2.46-.4.69-.6-2.66-19.18-4.66-37.8-4.19-49.66.02-.58.05-1.17.07-1.76.35-8.07.7-16.42-3.14-23.45-1-1.83-2.26-3.5-3.48-5.13l-12.54-16.66a43.18 43.18 0 00-4.69-5.35c-.68-.65-4.06-5.57-4.67-6.45-.28.06-1.13-.19-1.4-.12l3.2 4.62c.76.84 1.54 1.66 2.32 2.49 1.54 1.61 3.14 3.29 4.63 5.27l12.54 16.67a42.3 42.3 0 013.42 5.03c3.74 6.85 3.4 15.08 3.05 23.05-.02.59-.05 1.18-.07 1.76zm-34.5-167.22h-.09c-3.57.17-6.73.2-10.07.22-1.25 0-2.52.01-3.86.03-.49 0-.94.2-1.28.57-.34.35-.51.83-.5 1.32.08 1.88.14 3.81.21 5.74.06 1.97.13 3.95.2 5.88.04.93.8 1.67 1.73 1.68h.04c4.63-.1 9.2-.23 13.99-.41a1.78 1.78 0 001.7-1.81c-.01-.87-.03-1.73-.04-2.59-.03-2.86-.06-5.81-.28-8.98a1.77 1.77 0 00-1.76-1.65zm-13.66 16.2a2.5 2.5 0 01-2.49-2.4c-.08-1.97-.14-3.93-.2-5.9-.07-1.92-.14-3.85-.2-5.73a2.59 2.59 0 012.52-2.7c1.33 0 2.61-.02 3.86-.03 3.33-.02 6.49-.04 10.05-.2 1.38-.07 2.54 1 2.64 2.36.21 3.19.25 6.16.28 9.03 0 .85.02 1.71.03 2.58a2.55 2.55 0 01-2.43 2.6c-4.67.16-9.34.3-14.01.4h-.05z"/><path fill="#000" d="M343 76.4h-.06c-2.9.12-5.45.14-8.16.16-1 .01-2.04.02-3.11.03a1.58 1.58 0 00-1.55 1.65c.05 1.52.1 3.08.16 4.63.05 1.6.1 3.21.17 4.78.02.82.7 1.47 1.51 1.47v.2l.03-.2c3.75-.08 7.46-.19 11.33-.33.83-.03 1.5-.74 1.49-1.59-.02-.7-.02-1.4-.03-2.1-.03-2.3-.05-4.7-.23-7.26a1.56 1.56 0 00-1.54-1.45zm-11.04 13.1a1.9 1.9 0 01-1.9-1.83 820.4 820.4 0 01-.33-9.41 1.95 1.95 0 011.94-2.06c1.07 0 2.1-.02 3.11-.02 2.7-.02 5.26-.04 8.15-.17a1.93 1.93 0 012 1.8c.18 2.57.2 4.97.23 7.3.01.69.02 1.38.03 2.09a1.95 1.95 0 01-1.86 1.98c-3.87.14-7.57.25-11.33.33h-.04zm19.62-14.29c-.59 0-1.08.16-1.36.44-.31.3-.33.7-.33 1.2.02 3.07.1 6.2.23 9.3.03.56.05 1.15.37 1.64.28.43.9.86 1.68.86h.05c.8-.02 1.46-.48 1.76-.93.32-.48.38-1.03.43-1.64.11-1.5.17-3.03.17-4.53 0-1.23-.36-3.08-.66-4.55l-.04-.22c-.13-.62-.16-.75-.84-1.19a2.84 2.84 0 00-1.46-.38zm.6 14.02a2.6 2.6 0 01-2.17-1.12c-.4-.63-.43-1.33-.46-1.94-.13-3.1-.21-6.22-.23-9.32 0-.44-.01-1.11.5-1.62.4-.38 1.02-.6 1.76-.6.66 0 1.3.18 1.77.48.84.54.94.82 1.08 1.56l.05.22c.3 1.49.67 3.37.67 4.66 0 1.53-.05 3.05-.17 4.57-.05.7-.13 1.33-.53 1.92a2.82 2.82 0 01-2.22 1.2h-.06z"/><path fill="#000" d="M337.25 77.26a5.84 5.84 0 00-3.19 1.04 4.03 4.03 0 00-1.87 2.73c-.17.63-.31 1.24-.36 1.86a4.75 4.75 0 002.03 4.35c.96.59 2.29.93 3.66.93 1.11 0 2.16-.23 2.94-.65 1.43-.77 2.36-2.27 2.6-4.24.05-.36.06-.71.03-1.07a5.76 5.76 0 00-1.92-3.75c-.94-.83-2.64-1.2-3.92-1.2zm.27 11.3a7.52 7.52 0 01-3.86-1 5.15 5.15 0 01-2.2-4.7c.04-.65.19-1.28.36-1.93.37-1.43.9-2.2 2.04-2.95a6.16 6.16 0 013.4-1.1c1.24 0 3.09.33 4.16 1.29a6.14 6.14 0 012.05 4c.03.39.02.77-.03 1.16-.26 2.1-1.25 3.7-2.8 4.53-.84.45-1.94.7-3.12.7zm36.4 84.57c-.28-5.16-.22-10.47-.15-15.6a.39.39 0 00.05-.18c.44-16.55.37-33.33-.22-49.87a.38.38 0 00-.4-.37.39.39 0 00-.37.4c.59 16.43.66 33.1.24 49.55a.4.4 0 00-.17.31v.09c-.07 5.17-.14 10.5.15 15.71v.26c.17 2.84.41 7.14-2.68 8.58-1.69.79-4.12.76-6.07.74-.24 0-.48 0-.72 0-.25 0-16.28-.26-16.28-.03s-.43.9-.19.9c.23 0 16.93-.04 17.18-.04.33 0 .68 0 1.03 0 1.82 0 3.87-.1 5.44-.82 3.6-1.7 3.35-6.32 3.18-9.38l-.02-.25zm9.45 116.18c-.86.2-.5 1.55.37 1.34-.16.33-.33.65-.5.98-.32.1-.65.16-.99.2-.71.13-1.43.21-2.15.31-1.86.27-3.73.5-5.6.7-3.37.38-6.76.62-10.15.71-3.37.1-6.75 0-10.11-.3a63.03 63.03 0 01-9.09-1.52c-.18-.88.07-1.2.76-.98.43.03.53-.68.1-.76a41.8 41.8 0 01-1.13-.2c-.2-.04-.41.02-.52.21-.36.7-.5 1.25-.54 2.04a.5.5 0 00.36.48c8.96 2.46 18.22 2.68 27.42 1.93 2.18-.18 4.35-.43 6.52-.7 1.92-.23 4.13-.27 5.94-.98 1.97-.77 1.52-3.98-.7-3.46z"/><path fill="#000" d="M345.85 291.13a.36.36 0 00-.09-.13c.01-.15 0-.3-.04-.46a.39.39 0 00-.36-.29.82.82 0 00-.08-.2c-.2-.35-.76-.2-.76.22 0 .16 0 .33 0 .5v.04c-.02.08-.01.18 0 .27 0 .18 0 .37.01.56 0 .23.18.4.4.43.06.29.47.5.68.22.28-.34.4-.74.24-1.16z"/><path fill="#000" d="M387.55 302.88a65.1 65.1 0 00-2.87-11.92c-.25-.75-1.45-.43-1.19.33a60.06 60.06 0 013.04 13.2c.19 1.57.97 4.4-1.28 4.86-6.43 1.3-13.1 1.8-19.65 2.08-6.13.25-12.57.41-18.65-.46-2.38-.34-2.34-2.66-2.33-4.57v-5.19c.01-1.48.01-2.96.01-4.44 0-.8-.5-5.05.41-5.36.42-.14.25-.74-.18-.66-.6.1-.95.49-1.03 1.13-.26 2.08-.1 4.28-.12 6.37-.01 1.98-.03 3.95-.04 5.93-.02 1.84-.22 3.8.18 5.6.6 2.72 5.06 2.39 7 2.52a149.02 149.02 0 0030.33-1.14c1.66-.22 3.91-.2 5.44-.93 2.47-1.2 1.23-5.24.93-7.35z"/><path fill="#000" d="M360.87 304.7c-.07-3.27-.09-6.55-.32-9.8-.03-.41-.63-.42-.64 0-.1 2.76 0 5.53.03 8.29.04 2.47.8 6.23-.56 8.41-.34.53.5 1.03.83.5 1.3-2.13.72-5.04.66-7.4zm-4.26-.09c0 .79-.02 2.61-.94 2.98-1.28.53-2.01-1.13-2.11-2.06a6.59 6.59 0 01.34-2.53c.27.13.66 0 .68-.41h.02c.1.03.23 0 .3-.09l1.1-.32c.28.28.46.62.52 1 .13.45.1.97.09 1.43zm.53-2.5c-.67-1.56-3.06-1.6-3.44-.03-.92.66-.97 2.94-.91 3.84.13 1.78 2.05 3.37 3.7 2.25.78-.52.88-1.78.99-2.6a6.43 6.43 0 00-.34-3.46zm-11.95 17.42v.1c0 .03 0 .06 0 .08-.34 10.72-1.4 24.2-3.2 40.48h-1.22c2.14-24.05 3.54-37.65 3.54-40.68.02-3.05-.01-6.1.14-9.15.02-.4.58-.4.6 0 .16 3.04.12 6.1.14 9.15v.02z"/><path fill="#000" d="M360.24 311.75c-.07-.71-1.18-.72-1.11 0 .69 7.27.68 14.77-.53 22l-2.43-.42a6.28 6.28 0 01-.26-1.55c-.1-.97-.12-1.95-.15-2.92-.06-1.94.03-3.89.2-5.83.28-3.48 1.72-7.13 1.42-10.62-.03-.4-.63-.42-.63 0 .01 2.56-.9 5.1-1.3 7.61-.36 2.2-.53 4.43-.6 6.65-.07 2-.82 8.81 2.58 8.96 1.18.05 1.78-.51 2.14-1.62.65-1.99.63-4.5.8-6.57.45-5.22.36-10.47-.13-15.69zm31.49 25.42a525.44 525.44 0 01-3.85-28.08c-.05-.42-.7-.44-.67 0 .8 17.27 4.9 34.26 7 51.4h1.02c-.94-7.8-2.23-15.56-3.5-23.32zm-97.6-285.5c-1.08-.42-1.69-1.88-2.3-2.78-.61-.93-1.23-1.85-1.84-2.77a88.36 88.36 0 00-3.86-5.43c-1.02-1.3-2.92.22-2 1.55 1.54 2.18 3.25 4.23 4.94 6.28 1.23 1.5 2.56 3.9 4.51 4.5.88.29 1.44-1.02.55-1.36zm-2.88 5.35a40.13 40.13 0 00-11.8-5.08c-1.39-.36-1.98 2.02-.62 2.46 3.91 1.27 7.82 2.57 11.74 3.83.7.22 1.39-.76.68-1.21zm-2.11 5.56c-3.5-.89-7.52-.97-11.1-.51-1.4.17-1.42 2.47.03 2.53 3.62.14 7.5.07 11.08-.5.92-.15.77-1.32-.01-1.52zm10.64-12.47c-.3-3.87-.12-7.71-.15-11.58-.01-1.4-2.05-1.74-2.2-.26-.42 4.02.19 8.12 1.14 12.02.19.76 1.27.62 1.2-.18zm9.3-7.79a22.88 22.88 0 00-5.2 8.33c-.25.7.67 1.27 1.14.66 1.87-2.46 3.8-4.93 5.58-7.46.68-.97-.62-2.43-1.53-1.53zm-19.76 27.8a21.59 21.59 0 00-7.93 4.17c-1.01.82.18 2.36 1.23 1.6a61.6 61.6 0 017.13-4.25c.73-.4.5-1.76-.43-1.52z"/></g></g><path fill="#FFF" fill-rule="nonzero" d="M269.84 69.2h10.24V114h-10.24V69.2zm53.44 11.9c7.36 0 12.16 5.25 12.16 13.25V114h-9.6V95.18c0-3.2-1.54-5.24-4.6-5.24-3.2 0-5 2.24-5 6.01V114h-9.6V95.18c0-3.2-1.54-5.24-4.6-5.24-3.2 0-5 2.24-5 6.01V114h-9.6V82h9.6v2.94c1.47-2.17 4.29-3.84 8.58-3.84 3.77 0 6.59 1.54 8.38 4.23 1.8-2.56 4.74-4.23 9.28-4.23zm41.98.9h9.6v32h-9.6v-3c-2.1 2.42-5.24 3.9-9.53 3.9-8.39 0-15.3-7.36-15.3-16.9s6.91-16.9 15.3-16.9c4.29 0 7.42 1.48 9.53 3.9v-3zm-7.61 23.8c4.41 0 7.61-3 7.61-7.8s-3.2-7.8-7.61-7.8c-4.42 0-7.62 3-7.62 7.8s3.2 7.8 7.62 7.8zM405.39 82h9.35v30.4c0 10.75-8.39 15.3-16.9 15.3-6.66 0-12.22-2.5-15.17-7.75l8.2-4.73c1.21 2.24 3.07 4.03 7.29 4.03 4.48 0 7.23-2.3 7.23-6.85v-2.94c-2.11 2.62-5.18 4.16-9.34 4.16-9.09 0-15.75-7.43-15.75-16.26 0-8.83 6.66-16.26 15.75-16.26 4.16 0 7.23 1.54 9.34 4.16V82zm-7.74 22.78c4.54 0 7.74-3 7.74-7.42s-3.2-7.42-7.74-7.42c-4.55 0-7.75 3-7.75 7.42s3.2 7.42 7.75 7.42zm32.7-2.94c1.22 3.33 4.16 4.48 7.68 4.48 2.63 0 4.87-1.02 6.15-2.43l7.68 4.41c-3.14 4.36-7.88 6.6-13.96 6.6-10.94 0-17.72-7.36-17.72-16.9s6.9-16.9 17.02-16.9c9.34 0 16.26 7.24 16.26 16.9 0 1.34-.13 2.62-.39 3.84h-22.72zm-.19-7.17h13.76c-1.02-3.71-3.9-5.05-6.78-5.05-3.65 0-6.08 1.79-6.98 5.05zm36.54-3.33c0 3.65 15.75 1.22 15.75 13.06 0 7.36-6.4 10.5-13.31 10.5-6.4 0-11.27-2.44-13.76-7.62l8.32-4.74c.83 2.44 2.62 3.78 5.44 3.78 2.3 0 3.45-.7 3.45-1.98 0-3.52-15.74-1.67-15.74-12.74 0-6.98 5.89-10.5 12.54-10.5 5.19 0 9.8 2.3 12.48 6.85l-8.19 4.42c-.9-1.67-2.18-2.82-4.29-2.82-1.66 0-2.69.64-2.69 1.8z"/><path fill="#FFF" fill-rule="nonzero" d="M263.4 156l-1.64-4.27h-8.42L251.7 156h-1.34l6.53-16.8h1.34l6.5 16.8h-1.34zm-9.58-5.47h7.48l-3.74-9.77-3.74 9.77zm24.9 5.73c-3.14 0-5.37-1.58-6.14-3.96l1.1-.64c.58 2.01 2.29 3.38 5.05 3.38 2.8 0 4.22-1.44 4.22-3.36 0-2.02-1.77-2.78-4.34-3.6-2.81-.91-5.33-1.7-5.33-4.63 0-2.76 2.23-4.51 5.09-4.51a5.64 5.64 0 015.4 3.52l-1.08.6a4.42 4.42 0 00-4.32-2.9c-2.33 0-3.8 1.37-3.8 3.24 0 2.02 1.71 2.64 4.11 3.43 2.98.99 5.57 1.92 5.57 4.83 0 2.78-2.19 4.6-5.52 4.6zm9-15.16a.96.96 0 01-.95-.96c0-.5.43-.94.96-.94s.96.43.96.94c0 .52-.43.96-.96.96zm-.6 14.9v-12h1.2v12h-1.2zm11.05-10.82h-3.58v7.8c0 2.1 1.13 2.16 3.58 1.94V156c-3.15.48-4.8-.29-4.8-3.02v-7.8h-2.64V144h2.64v-3l1.22-.36V144h3.58v1.18zm7.56-1.44c3.65 0 5.93 3.02 5.93 6.3 0 .2-.03.4-.03.58h-10.87a4.88 4.88 0 005.09 4.5c1.97 0 3.45-.92 4.15-2.2l1.06.63a5.91 5.91 0 01-5.24 2.71 6.06 6.06 0 01-6.3-6.26 6.05 6.05 0 016.2-6.26zm0 1.15a4.84 4.84 0 00-4.97 4.56h9.65c-.27-2.93-2.33-4.56-4.68-4.56zM331.72 156l-4.03-6.89h-5.3V156h-1.28v-16.8h6.63a4.96 4.96 0 011.27 9.74l4.17 7.06h-1.46zm-9.34-15.6v7.51h5.36c2.04 0 3.7-1.68 3.7-3.74a3.73 3.73 0 00-3.7-3.77h-5.36zm18 3.34c3.65 0 5.93 3.02 5.93 6.3 0 .2-.02.4-.02.58h-10.87a4.88 4.88 0 005.08 4.5c1.97 0 3.46-.92 4.16-2.2l1.05.63a5.91 5.91 0 01-5.23 2.71 6.06 6.06 0 01-6.31-6.26 6.05 6.05 0 016.21-6.26zm0 1.15a4.84 4.84 0 00-4.96 4.56h9.64c-.26-2.93-2.32-4.56-4.68-4.56zm17.07-.89h1.27l-5.06 12h-1.47l-5.09-12h1.3l4.51 10.75 4.54-10.75zm4.05-2.9a.96.96 0 01-.96-.96.96.96 0 011.92 0c0 .52-.43.96-.96.96zm-.6 14.9v-12h1.2v12h-1.2zm10.3-12.26c3.65 0 5.93 3.02 5.93 6.3 0 .2-.03.4-.03.58h-10.87a4.88 4.88 0 005.09 4.5c1.97 0 3.46-.92 4.15-2.2l1.06.63a5.91 5.91 0 01-5.23 2.71 6.06 6.06 0 01-6.32-6.26 6.05 6.05 0 016.22-6.26zm0 1.15a4.84 4.84 0 00-4.97 4.56h9.65c-.26-2.93-2.33-4.56-4.68-4.56zm22.82-.89h1.28l-3.8 12h-1.32l-3.33-10.22L383.5 156h-1.32l-3.79-12h1.27l3.2 10.44 3.35-10.44h1.25l3.36 10.44 3.2-10.44zm4.01 3.14c0 3.22 7.27 1.32 7.27 5.72 0 1.96-1.72 3.4-4.3 3.4-2.4 0-3.98-1.12-4.55-2.66l1.03-.6c.43 1.3 1.73 2.11 3.53 2.11 1.68 0 3.1-.74 3.1-2.25 0-3.27-7.28-1.4-7.28-5.72 0-1.9 1.63-3.4 4.08-3.4 1.95 0 3.43.93 4.08 2.4l-1 .57c-.51-1.25-1.76-1.82-3.08-1.82-1.56 0-2.88.81-2.88 2.25zm27.15-3.14h1.22v12h-1.22v-2.71a5.77 5.77 0 01-5.16 2.97 6.2 6.2 0 01-6.22-6.26 6.2 6.2 0 016.22-6.26c2.3 0 4.15 1.17 5.16 2.97V144zm-5.07 11.11a5.03 5.03 0 005.07-5.11c0-2.86-2.21-5.11-5.07-5.11a5.05 5.05 0 00-5.09 5.11 5.05 5.05 0 005.1 5.11zm20.57-15.91h1.2V156h-1.2v-2.78a5.69 5.69 0 01-5.16 3.04 6.18 6.18 0 01-6.22-6.26 6.18 6.18 0 016.22-6.26c2.33 0 4.18 1.2 5.16 3.04v-7.58zm-5.09 15.91a5.05 5.05 0 005.09-5.11 5.05 5.05 0 00-5.09-5.11 5.05 5.05 0 00-5.09 5.11 5.05 5.05 0 005.1 5.11zm20.57-15.91h1.2V156h-1.2v-2.78a5.69 5.69 0 01-5.16 3.04 6.18 6.18 0 01-6.22-6.26 6.18 6.18 0 016.22-6.26c2.33 0 4.18 1.2 5.16 3.04v-7.58zm-5.09 15.91a5.05 5.05 0 005.09-5.11 5.05 5.05 0 00-5.09-5.11 5.05 5.05 0 00-5.09 5.11 5.05 5.05 0 005.1 5.11zm10.23-5.95v-1.15h8.64v1.15h-8.64zm18.04 7.1a6.22 6.22 0 01-6.3-6.26c0-3.55 2.8-6.26 6.3-6.26a6.21 6.21 0 016.3 6.26c0 3.55-2.82 6.26-6.3 6.26zm0-1.15a5.03 5.03 0 005.07-5.11c0-2.86-2.21-5.11-5.07-5.11a5.05 5.05 0 00-5.08 5.11 5.05 5.05 0 005.08 5.11zm14.67-11.37c2.85 0 4.65 1.9 4.65 4.8V156h-1.22v-7.46c0-2.21-1.27-3.65-3.53-3.65-2.35 0-4.2 1.53-4.2 4.77V156h-1.2v-12h1.2v2.28a4.52 4.52 0 014.3-2.54z" opacity=".75"/><path fill="#2F3336" fill-rule="nonzero" d="M0 0h750v500H0z"/><path fill="#4282D6" d="M0 0h750v250H0z"/><path fill="#2F3336" d="M385.78 53.58l9.72-9.34a2.18 2.18 0 013.32.35l7.54 11.1 10.6-8.23a2.18 2.18 0 013.26.7l6.33 11.83 11.4-7.09a2.18 2.18 0 013.18 1.04l5.05 12.43 12.08-5.86a2.18 2.18 0 013.05 1.36l3.73 12.9 12.63-4.56a2.18 2.18 0 012.89 1.67l2.36 13.2 13.04-3.2a2.18 2.18 0 012.7 1.96l.97 13.38 13.3-1.83a2.18 2.18 0 012.47 2.23l-.43 13.42 13.41-.44a2.18 2.18 0 012.24 2.48l-1.84 13.3 13.39.97a2.18 2.18 0 011.96 2.7l-3.21 13.03 13.2 2.36a2.18 2.18 0 011.68 2.9l-4.56 12.62 12.9 3.73a2.18 2.18 0 011.35 3.05l-5.85 12.08 12.43 5.06a2.18 2.18 0 011.03 3.17l-7.08 11.4 11.83 6.34a2.18 2.18 0 01.7 3.26l-8.24 10.6 11.1 7.53a2.18 2.18 0 01.36 3.32l-9.26 9.64 9.71 8.2a2.18 2.18 0 010 3.33l-10.25 8.64 9.8 10.2a2.18 2.18 0 01-.35 3.31l-11.11 7.54 8.24 10.6a2.18 2.18 0 01-.7 3.26l-11.83 6.33 7.08 11.4a2.18 2.18 0 01-1.03 3.18l-12.43 5.05 5.85 12.08a2.18 2.18 0 01-1.36 3.05l-12.9 3.73 4.57 12.63a2.18 2.18 0 01-1.67 2.89l-13.21 2.36 3.21 13.04a2.18 2.18 0 01-1.96 2.7l-13.39.97 1.84 13.3a2.18 2.18 0 01-2.24 2.47l-13.41-.43.43 13.41a2.18 2.18 0 01-2.48 2.24l-13.3-1.84-.96 13.39a2.18 2.18 0 01-2.7 1.96l-13.04-3.21-2.36 13.2a2.18 2.18 0 01-2.9 1.68l-12.62-4.56-3.73 12.9a2.18 2.18 0 01-3.05 1.35l-12.08-5.85-5.05 12.43a2.18 2.18 0 01-3.18 1.03l-11.4-7.08-6.33 11.83a2.18 2.18 0 01-3.27.7l-10.6-8.24-7.53 11.1a2.18 2.18 0 01-3.32.36l-10.19-9.8-8.64 10.25a2.18 2.18 0 01-3.34 0l-8.2-9.71-9.63 9.26a2.18 2.18 0 01-3.32-.35l-7.53-11.11-10.6 8.24a2.18 2.18 0 01-3.26-.7l-6.34-11.83-11.4 7.08a2.18 2.18 0 01-3.17-1.03l-5.06-12.43-12.08 5.85a2.18 2.18 0 01-3.05-1.36l-3.73-12.9-12.62 4.57a2.18 2.18 0 01-2.9-1.67l-2.36-13.21-13.03 3.21a2.18 2.18 0 01-2.7-1.96l-.97-13.39-13.3 1.84a2.18 2.18 0 01-2.48-2.24l.44-13.41-13.42.43a2.18 2.18 0 01-2.23-2.48l1.83-13.3-13.38-.96a2.18 2.18 0 01-1.97-2.7l3.22-13.04-13.21-2.36a2.18 2.18 0 01-1.67-2.9l4.56-12.62-12.9-3.73a2.18 2.18 0 01-1.36-3.05l5.86-12.08-12.43-5.05a2.18 2.18 0 01-1.04-3.18l7.09-11.4-11.84-6.33a2.18 2.18 0 01-.69-3.27l8.24-10.6-11.11-7.53a2.18 2.18 0 01-.35-3.32l9.34-9.72-10.8-9.11a2.18 2.18 0 010-3.34l10.27-8.66-8.81-9.17a2.18 2.18 0 01.35-3.32l11.1-7.53-8.23-10.6a2.18 2.18 0 01.7-3.26l11.83-6.34-7.09-11.4a2.18 2.18 0 011.04-3.17l12.43-5.06-5.86-12.08a2.18 2.18 0 011.36-3.05l12.9-3.73-4.56-12.62a2.18 2.18 0 011.67-2.9l13.2-2.36-3.2-13.03a2.18 2.18 0 011.96-2.7l13.38-.97-1.83-13.3a2.18 2.18 0 012.23-2.48l13.42.44-.44-13.42a2.18 2.18 0 012.48-2.23l13.3 1.83.97-13.38a2.18 2.18 0 012.7-1.97l13.03 3.22 2.36-13.21a2.18 2.18 0 012.9-1.67l12.62 4.56 3.73-12.9a2.18 2.18 0 013.05-1.36l12.08 5.86 5.06-12.43a2.18 2.18 0 013.17-1.04l11.4 7.09 6.34-11.84a2.18 2.18 0 013.26-.69l10.6 8.24 7.53-11.11a2.18 2.18 0 013.32-.35l9.17 8.8 8.66-10.26a2.18 2.18 0 013.34 0l9.11 10.8z"/><circle cx="375" cy="250" r="208" fill="#2F3336"/><path fill="#D65742" d="M384.55 68.67l8.96-8.6a2.01 2.01 0 013.06.31l6.94 10.24 9.76-7.59a2.01 2.01 0 013 .64l5.84 10.9 10.5-6.52a2.01 2.01 0 012.93.95l4.66 11.45 11.13-5.4a2.01 2.01 0 012.8 1.26l3.44 11.88 11.63-4.2a2.01 2.01 0 012.67 1.53l2.18 12.18 12-2.97a2.01 2.01 0 012.49 1.81l.9 12.33 12.24-1.69a2.01 2.01 0 012.29 2.06l-.4 12.36 12.36-.4a2.01 2.01 0 012.05 2.29l-1.69 12.24 12.34.9a2.01 2.01 0 011.8 2.49l-2.96 12 12.17 2.18a2.01 2.01 0 011.54 2.66l-4.2 11.63 11.88 3.44a2.01 2.01 0 011.25 2.81l-5.4 11.13 11.46 4.66a2.01 2.01 0 01.95 2.92l-6.53 10.5 10.9 5.84a2.01 2.01 0 01.65 3l-7.6 9.77 10.24 6.94a2.01 2.01 0 01.32 3.06l-8.53 8.87 8.96 7.55a2.01 2.01 0 010 3.08l-9.45 7.96 9.02 9.39a2.01 2.01 0 01-.32 3.06l-10.23 6.94 7.59 9.76a2.01 2.01 0 01-.64 3l-10.9 5.84 6.52 10.5a2.01 2.01 0 01-.95 2.93l-11.45 4.66 5.39 11.13a2.01 2.01 0 01-1.25 2.8l-11.88 3.44 4.2 11.63a2.01 2.01 0 01-1.54 2.67l-12.17 2.18 2.96 12a2.01 2.01 0 01-1.8 2.49l-12.34.9 1.7 12.24a2.01 2.01 0 01-2.06 2.29l-12.36-.4.4 12.36a2.01 2.01 0 01-2.29 2.05l-12.25-1.69-.9 12.34a2.01 2.01 0 01-2.48 1.8l-12-2.96-2.18 12.17a2.01 2.01 0 01-2.67 1.54l-11.63-4.2-3.43 11.88a2.01 2.01 0 01-2.81 1.25l-11.13-5.4-4.66 11.46a2.01 2.01 0 01-2.93.95l-10.5-6.53-5.83 10.9a2.01 2.01 0 01-3 .65l-9.77-7.6-6.94 10.24a2.01 2.01 0 01-3.06.32l-9.39-9.02-7.96 9.45a2.01 2.01 0 01-3.08 0l-7.55-8.96-8.87 8.53a2.01 2.01 0 01-3.06-.32l-6.94-10.23-9.76 7.59a2.01 2.01 0 01-3.01-.64l-5.83-10.9-10.5 6.52a2.01 2.01 0 01-2.93-.95l-4.66-11.45-11.13 5.39a2.01 2.01 0 01-2.81-1.25l-3.44-11.88-11.63 4.2a2.01 2.01 0 01-2.66-1.54l-2.18-12.17-12 2.96a2.01 2.01 0 01-2.5-1.8l-.89-12.34-12.24 1.7a2.01 2.01 0 01-2.29-2.06l.4-12.36-12.36.4a2.01 2.01 0 01-2.06-2.29l1.7-12.25-12.34-.9a2.01 2.01 0 01-1.8-2.48l2.96-12-12.18-2.18a2.01 2.01 0 01-1.53-2.67l4.2-11.63-11.88-3.43a2.01 2.01 0 01-1.25-2.81l5.39-11.13-11.45-4.66a2.01 2.01 0 01-.95-2.93l6.52-10.5-10.9-5.83a2.01 2.01 0 01-.64-3l7.59-9.77-10.24-6.94a2.01 2.01 0 01-.32-3.06l8.6-8.96-9.95-8.4a2.01 2.01 0 010-3.07l9.47-7.98-8.12-8.44a2.01 2.01 0 01.32-3.06l10.24-6.94-7.59-9.76a2.01 2.01 0 01.64-3.01l10.9-5.83-6.52-10.5a2.01 2.01 0 01.95-2.93l11.45-4.66-5.4-11.13a2.01 2.01 0 011.26-2.81l11.88-3.44-4.2-11.63a2.01 2.01 0 011.53-2.66l12.18-2.18-2.97-12a2.01 2.01 0 011.81-2.5l12.33-.89-1.69-12.24a2.01 2.01 0 012.06-2.29l12.36.4-.4-12.36a2.01 2.01 0 012.29-2.06l12.24 1.7.9-12.34a2.01 2.01 0 012.49-1.8l12 2.96 2.18-12.18a2.01 2.01 0 012.66-1.53l11.63 4.2 3.44-11.88a2.01 2.01 0 012.81-1.25l11.13 5.39L314.63 69a2.01 2.01 0 012.92-.95l10.5 6.52 5.84-10.9a2.01 2.01 0 013-.64l9.77 7.59 6.94-10.24a2.01 2.01 0 013.06-.32l8.44 8.12 7.98-9.47a2.01 2.01 0 013.08 0l8.4 9.96z"/><path fill="#FFF" fill-rule="nonzero" d="M374.56 409.14c88.14 0 159.58-71.44 159.58-159.58 0-88.13-71.44-159.58-159.58-159.58-88.13 0-159.58 71.45-159.58 159.58 0 88.14 71.45 159.58 159.58 159.58zm.02 12.1c-94.8 0-171.65-76.85-171.65-171.66 0-94.8 76.85-171.65 171.65-171.65 94.8 0 171.66 76.85 171.66 171.65 0 94.8-76.85 171.66-171.66 171.66zm168.34-167.86l-19.61 68.73H225.8l-19.6-68.73h336.71zm-168.3-154a72.81 72.81 0 110 145.64 72.81 72.81 0 010-145.63z"/><path fill="#FFF" fill-rule="nonzero" d="M306.43 359.22c.25 0 .5.19.55.37l3.75 9.73 10.43.55c.24 0 .49.19.55.43.06.25 0 .5-.19.67l-8.1 6.55 2.7 10.04c.07.25 0 .5-.24.68-.18.12-.5.18-.68 0l-8.77-5.63-8.77 5.63c-.12.12-.19.12-.3.12a.87.87 0 01-.38-.12.68.68 0 01-.24-.68l2.7-10.04-8.1-6.55c-.25-.12-.3-.42-.25-.67.07-.24.31-.43.56-.43l10.43-.55 3.74-9.73c.12-.18.37-.37.61-.37zm33.73 0c.24 0 .49.19.55.37l3.74 9.73 10.43.55c.25 0 .5.19.55.43.06.25 0 .5-.18.67l-8.1 6.55 2.7 10.04c.06.25 0 .5-.25.68-.18.12-.49.18-.67 0l-8.77-5.63-8.78 5.63c-.12.12-.18.12-.3.12-.13 0-.25-.06-.37-.12a.68.68 0 01-.25-.68l2.7-10.04-8.1-6.55c-.24-.12-.3-.42-.24-.67.06-.24.3-.43.55-.43l10.43-.55 3.74-9.73c.13-.18.37-.37.62-.37zm33.72 0c.25 0 .5.19.55.37l3.75 9.73 10.42.55c.25 0 .5.19.56.43.06.25 0 .5-.19.67l-8.1 6.55 2.7 10.04c.07.25 0 .5-.24.68-.19.12-.5.18-.68 0l-8.77-5.63-8.77 5.63c-.13.12-.19.12-.3.12-.13 0-.25-.06-.38-.12a.68.68 0 01-.24-.68l2.7-10.04-8.1-6.55c-.25-.12-.3-.42-.25-.67.06-.24.31-.43.56-.43l10.42-.55 3.75-9.73c.12-.18.37-.37.61-.37zm33.73 0c.24 0 .49.19.55.37l3.74 9.73 10.43.55c.24 0 .49.19.55.43.06.25 0 .5-.18.67l-8.1 6.55 2.7 10.04c.06.25 0 .5-.25.68-.18.12-.49.18-.67 0l-8.77-5.63-8.78 5.63c-.12.12-.18.12-.3.12-.13 0-.25-.06-.37-.12a.68.68 0 01-.25-.68l2.7-10.04-8.1-6.55c-.24-.12-.3-.42-.24-.67.06-.24.3-.43.55-.43l10.43-.55 3.74-9.73c.12-.18.37-.37.62-.37zm33.72 0c.25 0 .49.19.55.37l3.74 9.73 10.43.55c.25 0 .5.19.56.43.06.25 0 .5-.19.67l-8.1 6.55 2.7 10.04c.06.25 0 .5-.24.68-.19.12-.5.18-.68 0l-8.77-5.63-8.77 5.63c-.13.12-.19.12-.31.12s-.25-.06-.37-.12a.68.68 0 01-.24-.68l2.7-10.04-8.1-6.55c-.25-.12-.3-.42-.25-.67.06-.24.3-.43.55-.43l10.43-.55 3.75-9.73c.12-.18.36-.37.61-.37z"/><path fill="#FFF" d="M263.24 348.59h-3.91l-5.65-14.67h3.54l4.07 11.26 4.07-11.26h3.54l-5.66 14.67zm10.84.26c-3.23 0-5.68-2.17-5.68-5.58a5.42 5.42 0 015.5-5.57c3.19 0 5.32 2.38 5.32 5.83v.66h-7.9c.2 1.3 1.26 2.38 3.07 2.38.9 0 2.13-.38 2.81-1.04l1.25 1.85a6.62 6.62 0 01-4.37 1.47zm2.46-6.6c-.09-1-.8-2.26-2.64-2.26a2.45 2.45 0 00-2.6 2.27h5.24zm7.71 6.34h-2.8v-10.62h2.8v1.43a4.66 4.66 0 013.39-1.7v2.73c-.2-.04-.44-.07-.77-.07-.92 0-2.16.53-2.62 1.21v7.02zm6.72-11.77c-.9 0-1.65-.74-1.65-1.67 0-.92.75-1.65 1.65-1.65.93 0 1.67.73 1.67 1.65 0 .93-.74 1.67-1.67 1.67zm1.41 11.77h-2.8v-10.62h2.8v10.62zm6.41 0H296v-8.18h-1.76v-2.44H296v-.44c0-2.49 1.52-3.83 3.56-3.83.82 0 1.52.18 2.03.44l-.57 2.07a1.57 1.57 0 00-.9-.22c-.8 0-1.33.5-1.33 1.54v.44h2.16v2.44h-2.16v8.18zm5.15-11.77c-.9 0-1.65-.74-1.65-1.67 0-.92.75-1.65 1.65-1.65.92 0 1.67.73 1.67 1.65 0 .93-.75 1.67-1.67 1.67zm1.4 11.77h-2.79v-10.62h2.8v10.62zm7.98.26c-3.23 0-5.67-2.17-5.67-5.58a5.42 5.42 0 015.5-5.57c3.19 0 5.32 2.38 5.32 5.83v.66h-7.9c.2 1.3 1.26 2.38 3.06 2.38.9 0 2.13-.38 2.82-1.04l1.25 1.85a6.62 6.62 0 01-4.38 1.47zm2.47-6.6c-.1-1-.8-2.26-2.64-2.26a2.45 2.45 0 00-2.6 2.27h5.24zm15.03 6.34H328v-1.36a4.1 4.1 0 01-3.27 1.62c-2.66 0-4.7-2.02-4.7-5.58 0-3.46 2-5.57 4.7-5.57 1.25 0 2.44.53 3.27 1.63v-5.4h2.82v14.66zm-5.21-2.22c.92 0 1.93-.5 2.4-1.21v-3.76a3.03 3.03 0 00-2.4-1.21c-1.6 0-2.7 1.25-2.7 3.08 0 1.84 1.1 3.1 2.7 3.1zm21.1 2.48c-4.45 0-7.68-3.16-7.68-7.58s3.23-7.59 7.67-7.59c4.42 0 7.66 3.17 7.66 7.59s-3.24 7.58-7.66 7.58zm0-2.77c2.7 0 4.44-2.09 4.44-4.81 0-2.75-1.74-4.82-4.45-4.82-2.72 0-4.46 2.07-4.46 4.82 0 2.72 1.74 4.81 4.46 4.81zm19.97 2.5h-2.81v-6.41c0-1.48-.77-1.98-1.96-1.98a3.1 3.1 0 00-2.42 1.23v7.17h-2.79v-10.62h2.8v1.36c.68-.8 2-1.63 3.71-1.63 2.35 0 3.47 1.32 3.47 3.39v7.5zm5.76 0h-2.8v-14.66h2.8v14.67zm4.37-11.76c-.9 0-1.65-.74-1.65-1.67 0-.92.75-1.65 1.65-1.65.92 0 1.67.73 1.67 1.65 0 .93-.75 1.67-1.67 1.67zm1.4 11.77h-2.79v-10.62h2.8v10.62zm12.97 0h-2.81v-6.42c0-1.48-.77-1.98-1.96-1.98a3.1 3.1 0 00-2.42 1.23v7.17h-2.8v-10.62h2.8v1.36c.68-.8 2-1.63 3.72-1.63 2.35 0 3.47 1.32 3.47 3.39v7.5zm7.95.26c-3.23 0-5.67-2.17-5.67-5.58a5.42 5.42 0 015.5-5.57c3.19 0 5.32 2.38 5.32 5.83v.66h-7.9c.2 1.3 1.26 2.38 3.06 2.38.9 0 2.14-.38 2.82-1.04l1.25 1.85a6.62 6.62 0 01-4.38 1.47zm2.47-6.6c-.09-1-.8-2.26-2.64-2.26a2.45 2.45 0 00-2.6 2.27h5.24zm22.74 6.34h-3.6l-2.88-5.21h-2.3v5.2h-3.11v-14.66h6.86c3.05 0 4.94 2 4.94 4.73a4.24 4.24 0 01-3.23 4.35l3.32 5.59zm-5.47-7.96c1.23 0 2.17-.75 2.17-2 0-1.21-.94-1.96-2.17-1.96h-3.3v3.96h3.3zm12.2 8.22c-3.24 0-5.68-2.17-5.68-5.58a5.42 5.42 0 015.5-5.57c3.19 0 5.32 2.38 5.32 5.83v.66h-7.9c.2 1.3 1.26 2.38 3.06 2.38.9 0 2.13-.38 2.82-1.04l1.25 1.85a6.62 6.62 0 01-4.38 1.47zm2.46-6.6c-.1-1-.8-2.26-2.64-2.26a2.45 2.45 0 00-2.6 2.27h5.24zm10.68 6.34h-3.02l-4.26-10.62h2.99l2.77 7.39 2.8-7.4h2.98l-4.26 10.63zm7.11-11.77c-.9 0-1.64-.74-1.64-1.67 0-.92.74-1.65 1.64-1.65.93 0 1.68.73 1.68 1.65 0 .93-.75 1.67-1.68 1.67zm1.41 11.77h-2.8v-10.62h2.8v10.62zm7.98.26c-3.24 0-5.68-2.17-5.68-5.58a5.42 5.42 0 015.5-5.57c3.19 0 5.32 2.38 5.32 5.83v.66h-7.9c.2 1.3 1.26 2.38 3.06 2.38.9 0 2.14-.38 2.82-1.04l1.25 1.85a6.62 6.62 0 01-4.37 1.47zm2.46-6.6c-.09-1-.8-2.26-2.64-2.26a2.45 2.45 0 00-2.6 2.27h5.24zm17.23 6.34h-2.99l-2.24-7.24-2.24 7.24h-3l-3.23-10.62h2.9l1.98 7.14 2.34-7.14h2.48l2.33 7.14 1.98-7.14h2.92l-3.23 10.62zm8.66.26a7.15 7.15 0 01-4.75-1.65l1.2-2.02c.8.75 2.36 1.47 3.68 1.47 1.21 0 1.78-.46 1.78-1.12 0-1.74-6.29-.3-6.29-4.48 0-1.79 1.54-3.35 4.36-3.35 1.78 0 3.2.62 4.26 1.46l-1.12 1.97a4.58 4.58 0 00-3.14-1.23c-1.01 0-1.67.44-1.67 1.04 0 1.56 6.3.24 6.3 4.53 0 1.95-1.66 3.38-4.61 3.38z"/><path fill="#D65742" fill-rule="nonzero" d="M243.19 304.8v-30.26h10.83v-5.52h-27.95v5.52h10.84v30.26h6.28zm20.9 0v-13.36h6.27l7.89 13.36h7.3l-8.8-14.05c4.34-.7 8.52-4.19 8.52-10.52 0-6.65-4.66-11.21-11.75-11.21H257.8v35.78h6.28zm8.63-18.88h-8.64v-11.38h8.64c3.54 0 6.12 2.2 6.12 5.64 0 3.48-2.58 5.74-6.12 5.74zm32.8 19.53c10.41 0 15.5-5.96 15.5-14.81v-21.62h-6.38v21.46c0 5.68-3.16 9.39-9.12 9.39-5.95 0-9.12-3.7-9.12-9.4v-21.45h-6.38v21.62c0 8.85 5.15 14.8 15.5 14.8zm33.88 0c9.6 0 13.84-5.15 13.84-11.11 0-13.3-20.81-9.17-20.81-15.88 0-2.63 2.36-4.45 6-4.45 3.76 0 7.57 1.28 10.41 4.13l3.55-4.67c-3.28-3.22-7.84-5.04-13.36-5.04-7.9 0-13.04 4.56-13.04 10.51 0 13.15 20.82 8.48 20.82 15.99 0 2.41-1.99 4.94-7.14 4.94-4.99 0-8.9-2.36-11.32-5l-3.54 4.89c3.22 3.33 8 5.69 14.6 5.69zm32.32-.65v-30.26h10.84v-5.52h-27.95v5.52h10.84v30.26h6.27zm14.57 0l2.63-6.92h16.41l2.63 6.92h7.14l-14.06-35.78h-7.83l-14.06 35.78h7.14zm17.27-12.45H390.7l6.43-17.06 6.44 17.06zm35.49 12.45v-5.52h-15.77v-30.26H417v35.78h22.05zm13.76 0v-14.86l13.84-20.92h-7.19l-9.82 15.29-9.82-15.3h-7.19l13.9 20.93v14.86h6.28zm41.6 0v-5.52H475.7l18.35-25.22v-5.04h-26.45v5.52h18.24l-18.24 25.17v5.1h26.82zm29.16 0v-5.52h-18.24v-9.98h17.86v-5.53h-17.86v-9.23h18.24v-5.52h-24.52v35.78h24.52z"/><path fill="#D65742" d="M364.65 146.14v82.78h19.93v-82.78h35.26v7.67h-27.6v82.78H357V153.8h-27.6v-7.67h35.26zm68.98-13.8v35.26h-35.25v-7.66h27.59v-19.93h-47.52v82.78h-7.67v-82.78h-47.52v19.93h27.6v7.66H315.6v-35.25h118.03z"/></g></svg>
assets/images/badge.png DELETED
Binary file
assets/images/banner.png ADDED
Binary file
assets/images/blocks.png CHANGED
Binary file
assets/images/icon.png CHANGED
Binary file
assets/images/star-empty.svg CHANGED
@@ -1 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800"><title>star-empty</title><path fill="#ffb900" d="M900 0l300 600 600 75-413 462 113 663-600-300-600 300 112-663L0 675l600-75L900 0zm0 224L666 693l-465 58 318 356-87 515 468-234 468 234-87-515 318-356-465-58-234-469z"/></svg>
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <path fill="#FFB900" d="M256.48 3c3.87 0 7.75 2.9 8.7 5.8l59.1 153.65 164.64 8.7c3.87 0 7.75 2.9 8.72 6.77.97 3.86 0 7.73-2.9 10.63l-127.85 103.4 42.6 158.5c.97 3.85 0 7.72-3.87 10.62-2.9 1.93-7.75 2.9-10.66 0l-138.5-88.9-138.5 88.9c-1.57 1.57-2.5 1.86-3.84 1.92h-.98c-1.6 0-3.2-.66-4.8-1.43l-1.02-.5c-2.9-1.94-4.85-6.77-3.88-10.63l42.62-158.5-127.85-103.4c-3.87-1.93-4.84-6.76-3.87-10.62.97-3.87 4.84-6.77 8.72-6.77l164.64-8.7L246.8 8.8c1.93-2.9 5.8-5.8 9.68-5.8zm49.58 178.97L256 51.74 205.9 181.97c-.85 2.2-2.92 3.7-5.28 3.83l-138.6 7.32 108.22 87.53c1.85 1.5 2.64 3.93 2.02 6.23l-36 133.93 116.96-75.08c1.97-1.27 4.5-1.27 6.48 0l116.96 75.08-36-133.92c-.63-2.3.17-4.74 2-6.23l108.17-87.48-139.5-7.37c-2.37-.12-4.44-1.62-5.3-3.83z"/>
3
+ </svg>
assets/images/star-error.svg CHANGED
@@ -1,5 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800">
2
- <g fill="#D32F2F">
3
- <path d="M900 0l300 600 600 75-413 462 113 663-600-300-600 300 112-663L0 675l600-75L900 0zm0 224L666 693l-465 58 318 356-87 515 468-234 468 234-87-515 318-356-465-58-234-469z"/>
4
- </g>
5
  </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <path fill="#D32F2F" d="M256.48 3c3.87 0 7.75 2.9 8.7 5.8l59.1 153.65 164.64 8.7c3.87 0 7.75 2.9 8.72 6.77.97 3.86 0 7.73-2.9 10.63l-127.85 103.4 42.6 158.5c.97 3.85 0 7.72-3.87 10.62-2.9 1.93-7.75 2.9-10.66 0l-138.5-88.9-138.5 88.9c-1.57 1.57-2.5 1.86-3.84 1.92h-.98c-1.6 0-3.2-.66-4.8-1.43l-1.02-.5c-2.9-1.94-4.85-6.77-3.88-10.63l42.62-158.5-127.85-103.4c-3.87-1.93-4.84-6.76-3.87-10.62.97-3.87 4.84-6.77 8.72-6.77l164.64-8.7L246.8 8.8c1.93-2.9 5.8-5.8 9.68-5.8zm49.58 178.97L256 51.74 205.9 181.97c-.85 2.2-2.92 3.7-5.28 3.83l-138.6 7.32 108.22 87.53c1.85 1.5 2.64 3.93 2.02 6.23l-36 133.93 116.96-75.08c1.97-1.27 4.5-1.27 6.48 0l116.96 75.08-36-133.92c-.63-2.3.17-4.74 2-6.23l108.17-87.48-139.5-7.37c-2.37-.12-4.44-1.62-5.3-3.83z"/>
 
 
3
  </svg>
assets/images/star-full.svg CHANGED
@@ -1 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800"><title>star-full</title><path fill="#ffb900" d="M900 0L600 600 0 675l412 462-112 663 600-300 600 300-113-663 413-462-600-75z"/></svg>
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <path fill="#FFB900" d="M113.14 463c-1.94 0-3.88-.97-5.81-1.93-2.9-1.94-4.85-6.77-3.88-10.63l42.62-158.49-127.85-103.4c-3.87-1.94-4.84-6.77-3.87-10.63a9.3 9.3 0 018.72-6.77l164.64-8.7L246.8 8.8c1.94-2.9 5.81-5.8 9.69-5.8 3.87 0 7.75 2.9 8.71 5.8l59.08 153.65 164.65 8.7a9.3 9.3 0 018.72 6.77c.97 3.86 0 7.73-2.9 10.63l-127.85 103.4 42.61 158.49c.97 3.86 0 7.73-3.87 10.63-2.9 1.93-7.75 2.9-10.66 0l-138.5-88.91-138.49 88.9c-1.94 1.94-2.9 1.94-4.84 1.94z"/>
3
+ </svg>
assets/images/star-half.svg CHANGED
@@ -1 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800"><title>star-half</title><path fill="#ffb900" d="M900 0L600 600 0 675l413 462-113 663 600-300 600 300-112-663 412-462-600-75L900 0zm0 224l234 469 465 58-318 356 87 515-468-234V224z"/></svg>
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <path fill="#FFB900" d="M256.48 3c3.87 0 7.75 2.9 8.7 5.8l59.1 153.65 164.64 8.7c3.87 0 7.75 2.9 8.72 6.77.97 3.86 0 7.73-2.9 10.63l-127.85 103.4 42.6 158.5c.97 3.85 0 7.72-3.87 10.62-2.9 1.93-7.75 2.9-10.66 0l-138.5-88.9-138.5 88.9c-1.57 1.57-2.5 1.86-3.84 1.92h-.98c-1.6 0-3.2-.66-4.8-1.43l-1.02-.5c-2.9-1.94-4.85-6.77-3.88-10.63l42.62-158.5-127.85-103.4c-3.87-1.93-4.84-6.76-3.87-10.62.97-3.87 4.84-6.77 8.72-6.77l164.64-8.7L246.8 8.8c1.93-2.9 5.8-5.8 9.68-5.8zm50.98 177.04L256 46.17v301c1.28-.1 2.6.2 3.72.93l120.24 77.18-37.02-137.67c-.62-2.28.18-4.72 2.02-6.2l111.2-89.95-143.4-7.57c-2.38-.13-4.45-1.63-5.3-3.84z"/>
3
+ </svg>
assets/images/stars-grad/star-empty.svg ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <defs>
3
+ <linearGradient id="star-empty-a" x1="13.728%" x2="84.096%" y1="8.62%" y2="98.377%">
4
+ <stop offset="0%" stop-color="#FFDA1C"/>
5
+ <stop offset="100%" stop-color="#FEB705"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <path fill="url(#star-empty-a)" d="M266.557862,12.8626611 L329.913503,154.979149 L484.636353,171.321157 C494.594222,172.373615 498.595874,184.713971 491.159277,191.410377 L375.585542,295.557429 L407.864767,447.770572 C409.946551,457.566524 399.445105,465.188168 390.771003,460.191886 L255.998588,382.437235 L121.226174,460.18032 C112.552072,465.176603 102.062191,457.554959 104.13241,447.759006 L136.411635,295.545864 L20.8378996,191.398812 C13.4013028,184.702405 17.4145207,172.362049 27.3608244,171.309592 L182.083674,154.967583 L245.439315,12.8510956 C249.51036,3.7143748 262.486817,3.7143748 266.557862,12.8626611 Z M312.160826,174.313318 L255.995578,48.3271693 L255.995578,48.3271693 L199.836339,174.301732 C198.964391,176.257658 197.116078,177.600586 194.986442,177.825518 L57.8317739,192.311815 L57.8317739,192.311815 L160.2856,284.635784 C161.876648,286.069522 162.582817,288.242639 162.138502,290.337782 L133.521415,425.279987 L133.521415,425.279987 L253.001227,356.359291 C254.856754,355.28895 257.142166,355.289031 258.997617,356.359505 L378.474759,425.290023 L378.474759,425.290023 L349.858645,290.349285 C349.414347,288.254175 350.120494,286.081097 351.711499,284.647364 L454.163396,192.322855 L454.163396,192.322855 L317.010722,177.837075 C314.881093,177.612148 313.032782,176.269233 312.160826,174.313318 Z"/>
9
+ </svg>
assets/images/stars-grad/star-error.svg ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <defs>
3
+ <linearGradient id="star-error-a" x1="13.728%" x2="84.096%" y1="8.62%" y2="98.377%">
4
+ <stop offset="0%" stop-color="#EF5350"/>
5
+ <stop offset="100%" stop-color="#D32F2F"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <path fill="url(#star-error-a)" d="M266.557862,12.8626611 L329.913503,154.979149 L484.636353,171.321157 C494.594222,172.373615 498.595874,184.713971 491.159277,191.410377 L375.585542,295.557429 L407.864767,447.770572 C409.946551,457.566524 399.445105,465.188168 390.771003,460.191886 L255.998588,382.437235 L121.226174,460.18032 C112.552072,465.176603 102.062191,457.554959 104.13241,447.759006 L136.411635,295.545864 L20.8378996,191.398812 C13.4013028,184.702405 17.4145207,172.362049 27.3608244,171.309592 L182.083674,154.967583 L245.439315,12.8510956 C249.51036,3.7143748 262.486817,3.7143748 266.557862,12.8626611 Z M312.160826,174.313318 L255.995578,48.3271693 L255.995578,48.3271693 L199.836339,174.301732 C198.964391,176.257658 197.116078,177.600586 194.986442,177.825518 L57.8317739,192.311815 L57.8317739,192.311815 L160.2856,284.635784 C161.876648,286.069522 162.582817,288.242639 162.138502,290.337782 L133.521415,425.279987 L133.521415,425.279987 L253.001227,356.359291 C254.856754,355.28895 257.142166,355.289031 258.997617,356.359505 L378.474759,425.290023 L378.474759,425.290023 L349.858645,290.349285 C349.414347,288.254175 350.120494,286.081097 351.711499,284.647364 L454.163396,192.322855 L454.163396,192.322855 L317.010722,177.837075 C314.881093,177.612148 313.032782,176.269233 312.160826,174.313318 Z"/>
9
+ </svg>
assets/images/stars-grad/star-full.svg ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <defs>
3
+ <linearGradient id="star-full-a" x1="13.728%" x2="84.096%" y1="8.62%" y2="98.377%">
4
+ <stop offset="0%" stop-color="#FFDA1C"/>
5
+ <stop offset="100%" stop-color="#FEB705"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <path fill="url(#star-full-a)" d="M266.557862,12.8626611 L329.913503,154.979149 L484.636353,171.321157 C494.594222,172.373615 498.595874,184.713971 491.159277,191.410377 L375.585542,295.557429 L407.864767,447.770572 C409.946551,457.566524 399.445105,465.188168 390.771003,460.191886 L255.998588,382.437235 L121.226174,460.18032 C112.552072,465.176603 102.062191,457.554959 104.13241,447.759006 L136.411635,295.545864 L20.8378996,191.398812 C13.4013028,184.702405 17.4145207,172.362049 27.3608244,171.309592 L182.083674,154.967583 L245.439315,12.8510956 C249.51036,3.7143748 262.486817,3.7143748 266.557862,12.8626611 Z"/>
9
+ </svg>
assets/images/stars-grad/star-half.svg ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <defs>
3
+ <linearGradient id="star-half-a" x1="13.728%" x2="84.096%" y1="8.62%" y2="98.377%">
4
+ <stop offset="0%" stop-color="#FFDA1C"/>
5
+ <stop offset="100%" stop-color="#FEB705"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <path fill="url(#star-half-a)" d="M266.557862,12.8626611 L329.913503,154.979149 L484.636353,171.321157 C494.594222,172.373615 498.595874,184.713971 491.159277,191.410377 L375.585542,295.557429 L407.864767,447.770572 C409.946551,457.566524 399.445105,465.188168 390.771003,460.191886 L255.998588,382.437235 L121.226174,460.18032 C112.552072,465.176603 102.062191,457.554959 104.13241,447.759006 L136.411635,295.545864 L20.8378996,191.398812 C13.4013028,184.702405 17.4145207,172.362049 27.3608244,171.309592 L182.083674,154.967583 L245.439315,12.8510956 C249.51036,3.7143748 262.486817,3.7143748 266.557862,12.8626611 Z M312.160826,174.313318 L255.995578,48.3271693 L255.995578,48.3271693 L255.999484,354.629778 L378.474759,425.290023 L349.858645,290.349285 C349.414347,288.254175 350.120494,286.081097 351.711499,284.647364 L454.163396,192.322855 L454.163396,192.322855 L317.010722,177.837075 C314.881093,177.612148 313.032782,176.269233 312.160826,174.313318 Z"/>
9
+ </svg>
assets/images/stars-rounded/star-empty.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <path fill="#FFB900" d="M256 2c6.23 0 11.54 2.24 15.94 6.73 4.28 4.37 7.77 10.68 10.5 18.95l.22.7 40.72 128.28c.8 2.5 3.13 4.2 5.77 4.18l134.1-1.06c9.17 0 16.54 1.37 22.13 4.12 5.6 2.75 9.4 7.06 11.4 12.92 2.03 6.05 1.52 11.87-1.5 17.46-2.94 5.42-7.9 10.64-14.9 15.63l-.63.46-109.37 78.5c-2.14 1.54-3.03 4.3-2.2 6.78l42.85 127.47c2.93 8.62 3.94 16 3.02 22.14-.9 6.13-3.85 11.13-8.8 14.98-4.94 3.84-10.53 5.17-16.76 3.98-6.07-1.16-12.64-4.35-19.74-9.58l-.6-.45-108.6-79.6c-2.12-1.53-5-1.53-7.1.02l-108.33 79.57c-7.33 5.5-14.1 8.84-20.34 10.03-6.25 1.2-11.93-.14-17.06-3.98-4.94-3.85-7.88-8.85-8.8-14.98-.88-5.98.05-13.12 2.8-21.44l43.07-128.16c.85-2.5-.04-5.24-2.18-6.78l-109.37-78.5c-7.33-5.14-12.5-10.5-15.53-16.08-3.02-5.6-3.53-11.4-1.5-17.46 2-5.86 5.85-10.17 11.53-12.92 5.52-2.67 12.6-4.04 21.23-4.12h.76l134.1 1.06c2.65.02 4.98-1.67 5.78-4.18L229.34 28.4c2.93-8.62 6.55-15.18 10.85-19.67C244.5 4.23 249.76 2 256 2zm.23 25.42l-.14-.22-.13.2c-1.13 1.78-2.35 4.34-3.55 7.7l-.3.8L207.5 176.6c-1.6 5.02-6.27 8.4-11.54 8.37L48.7 183.78h-.48c-3.78.03-6.73.4-8.84.95l-.2.06.06.05c1.36 1.6 3.45 3.48 6.37 5.56l.65.46 120.17 86.26c4.28 3.07 6.06 8.57 4.38 13.57l-47.1 140.14c-1.27 3.7-1.9 6.63-2.05 8.7l-.02.34.24-.1c2-.86 4.5-2.33 7.45-4.5l.6-.45 118.97-87.4c4.2-3.1 9.96-3.1 14.18 0l119.47 87.54c3 2.24 5.54 3.77 7.58 4.7l.24.1-.02-.22c-.07-1-.26-2.2-.57-3.58l-.18-.78c-.3-1.2-.68-2.52-1.16-3.98L341.2 290.7c-1.68-5 .1-10.5 4.38-13.58l120.3-86.34.1-.1c3.13-2.18 5.36-4.16 6.78-5.83l.1-.1-.26-.07c-1.22-.3-2.75-.56-4.6-.7l-.85-.08c-.9-.06-1.85-.1-2.87-.1l-.98-.02-147.24 1.17c-5.27.04-9.94-3.35-11.54-8.37L259.8 35.68c-1.18-3.7-2.42-6.43-3.57-8.26z"/>
3
+ </svg>
assets/images/stars-rounded/star-error.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <path fill="#D32F2F" d="M256 2c6.23 0 11.54 2.24 15.94 6.73 4.28 4.37 7.77 10.68 10.5 18.95l.22.7 40.72 128.28c.8 2.5 3.13 4.2 5.77 4.18l134.1-1.06c9.17 0 16.54 1.37 22.13 4.12 5.6 2.75 9.4 7.06 11.4 12.92 2.03 6.05 1.52 11.87-1.5 17.46-2.94 5.42-7.9 10.64-14.9 15.63l-.63.46-109.37 78.5c-2.14 1.54-3.03 4.3-2.2 6.78l42.85 127.47c2.93 8.62 3.94 16 3.02 22.14-.9 6.13-3.85 11.13-8.8 14.98-4.94 3.84-10.53 5.17-16.76 3.98-6.07-1.16-12.64-4.35-19.74-9.58l-.6-.45-108.6-79.6c-2.12-1.53-5-1.53-7.1.02l-108.33 79.57c-7.33 5.5-14.1 8.84-20.34 10.03-6.25 1.2-11.93-.14-17.06-3.98-4.94-3.85-7.88-8.85-8.8-14.98-.88-5.98.05-13.12 2.8-21.44l43.07-128.16c.85-2.5-.04-5.24-2.18-6.78l-109.37-78.5c-7.33-5.14-12.5-10.5-15.53-16.08-3.02-5.6-3.53-11.4-1.5-17.46 2-5.86 5.85-10.17 11.53-12.92 5.52-2.67 12.6-4.04 21.23-4.12h.76l134.1 1.06c2.65.02 4.98-1.67 5.78-4.18L229.34 28.4c2.93-8.62 6.55-15.18 10.85-19.67C244.5 4.23 249.76 2 256 2zm.23 25.42l-.14-.22-.13.2c-1.13 1.78-2.35 4.34-3.55 7.7l-.3.8L207.5 176.6c-1.6 5.02-6.27 8.4-11.54 8.37L48.7 183.78h-.48c-3.78.03-6.73.4-8.84.95l-.2.06.06.05c1.36 1.6 3.45 3.48 6.37 5.56l.65.46 120.17 86.26c4.28 3.07 6.06 8.57 4.38 13.57l-47.1 140.14c-1.27 3.7-1.9 6.63-2.05 8.7l-.02.34.24-.1c2-.86 4.5-2.33 7.45-4.5l.6-.45 118.97-87.4c4.2-3.1 9.96-3.1 14.18 0l119.47 87.54c3 2.24 5.54 3.77 7.58 4.7l.24.1-.02-.22c-.07-1-.26-2.2-.57-3.58l-.18-.78c-.3-1.2-.68-2.52-1.16-3.98L341.2 290.7c-1.68-5 .1-10.5 4.38-13.58l120.3-86.34.1-.1c3.13-2.18 5.36-4.16 6.78-5.83l.1-.1-.26-.07c-1.22-.3-2.75-.56-4.6-.7l-.85-.08c-.9-.06-1.85-.1-2.87-.1l-.98-.02-147.24 1.17c-5.27.04-9.94-3.35-11.54-8.37L259.8 35.68c-1.18-3.7-2.42-6.43-3.57-8.26z"/>
3
+ </svg>
assets/images/stars-rounded/star-full.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <path fill="#FFB900" d="M405.26 460.22c4.94-3.85 7.88-8.85 8.8-14.98.9-6.14-.1-13.52-3.03-22.13l-44.26-131.66 112.98-81.08c7.33-5.14 12.5-10.5 15.53-16.08 3.02-5.6 3.53-11.4 1.5-17.46-2-5.86-5.8-10.17-11.4-12.92-5.6-2.75-12.96-4.12-22.12-4.12l-138.54 1.1-42.06-132.5c-2.75-8.6-6.32-15.16-10.72-19.65C267.54 4.23 262.24 2 256 2c-6.23 0-11.5 2.24-15.8 6.73-4.3 4.5-7.93 11.05-10.86 19.66l-42.06 132.48-138.54-1.1c-8.98 0-16.3 1.37-22 4.12-5.67 2.75-9.5 7.06-11.53 12.92-2 6.05-1.5 11.87 1.52 17.46 3.02 5.58 8.2 10.94 15.53 16.08l112.98 81.08-44.26 131.67c-2.93 8.62-3.94 16-3.02 22.14.9 6.13 3.85 11.13 8.8 14.98 5.12 3.84 10.8 5.17 17.04 3.98 6.22-1.2 13-4.53 20.33-10.03L256 371.97l112.15 82.2c7.33 5.5 14.1 8.84 20.34 10.03 6.22 1.2 11.8-.14 16.76-3.98z"/>
3
+ </svg>
assets/images/stars-rounded/star-half.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <path fill="#FFB900" d="M256 2c6.23 0 11.54 2.24 15.94 6.73 4.28 4.37 7.77 10.68 10.5 18.95l.22.7 40.72 128.28c.8 2.5 3.13 4.2 5.77 4.18l134.1-1.06c9.17 0 16.54 1.37 22.13 4.12 5.6 2.75 9.4 7.06 11.4 12.92 2.03 6.05 1.52 11.87-1.5 17.46-2.94 5.42-7.9 10.64-14.9 15.63l-.63.46-109.37 78.5c-2.14 1.54-3.03 4.3-2.2 6.78l42.85 127.47c2.93 8.62 3.94 16 3.02 22.14-.9 6.13-3.85 11.13-8.8 14.98-4.94 3.84-10.53 5.17-16.76 3.98-6.07-1.16-12.64-4.35-19.74-9.58l-.6-.45-108.6-79.6c-2.12-1.53-5-1.53-7.1.02l-108.33 79.57c-7.33 5.5-14.1 8.84-20.34 10.03-6.25 1.2-11.93-.14-17.06-3.98-4.94-3.85-7.88-8.85-8.8-14.98-.88-5.98.05-13.12 2.8-21.44l43.07-128.16c.85-2.5-.04-5.24-2.18-6.78l-109.37-78.5c-7.33-5.14-12.5-10.5-15.53-16.08-3.02-5.6-3.53-11.4-1.5-17.46 2-5.86 5.85-10.17 11.53-12.92 5.52-2.67 12.6-4.04 21.23-4.12h.76l134.1 1.06c2.65.02 4.98-1.67 5.78-4.18L229.34 28.4c2.93-8.62 6.55-15.18 10.85-19.67C244.5 4.23 249.76 2 256 2zm.23 25.42l-.14-.22-.12 315 126.57 92.77c3 2.24 5.54 3.77 7.58 4.7l.24.1-.02-.22c-.07-1-.26-2.2-.57-3.58l-.18-.78c-.3-1.2-.68-2.52-1.16-3.98L341.2 290.7c-1.68-5 .1-10.5 4.38-13.58l120.3-86.34.1-.1c3.13-2.18 5.36-4.16 6.78-5.83l.1-.1-.26-.07c-1.22-.3-2.75-.56-4.6-.7l-.85-.08c-.9-.06-1.85-.1-2.87-.1l-.98-.02-147.24 1.17c-5.27.04-9.94-3.35-11.54-8.37L259.8 35.68c-1.18-3.7-2.42-6.43-3.57-8.26z"/>
3
+ </svg>
assets/images/stars-wp/star-empty.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800"><title>star-empty</title><path fill="#ffb900" d="M900 0l300 600 600 75-413 462 113 663-600-300-600 300 112-663L0 675l600-75L900 0zm0 224L666 693l-465 58 318 356-87 515 468-234 468 234-87-515 318-356-465-58-234-469z"/></svg>
assets/images/stars-wp/star-error.svg ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800">
2
+ <g fill="#D32F2F">
3
+ <path d="M900 0l300 600 600 75-413 462 113 663-600-300-600 300 112-663L0 675l600-75L900 0zm0 224L666 693l-465 58 318 356-87 515 468-234 468 234-87-515 318-356-465-58-234-469z"/>
4
+ </g>
5
+ </svg>
assets/images/stars-wp/star-full.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800"><title>star-full</title><path fill="#ffb900" d="M900 0L600 600 0 675l412 462-112 663 600-300 600 300-113-663 413-462-600-75z"/></svg>
assets/images/stars-wp/star-half.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800"><title>star-half</title><path fill="#ffb900" d="M900 0L600 600 0 675l413 462-113 663 600-300 600 300-112-663 412-462-600-75L900 0zm0 224l234 469 465 58-318 356 87 515-468-234V224z"/></svg>
assets/images/trustalyze-badge.png DELETED
Binary file
assets/scripts/mce-plugin.js CHANGED
@@ -1 +1 @@
1
- !function(o){"use strict";window.tinymce.PluginManager.add("glsr_shortcode",function(o){o.addCommand("GLSR_Shortcode",function(){GLSR.shortcode.create(o.id)})})}();
1
+ "use strict";window.tinymce.PluginManager.add("glsr_shortcode",function(o){o.addCommand("GLSR_Shortcode",function(){GLSR.shortcode.create(o.id)})});
assets/scripts/site-reviews-admin.js CHANGED
@@ -1 +1,2 @@
1
- !function(t){"use strict";GLSR.Ajax=function(t,i,s){this.event=i||null,this.form=s||null,this.notice=null,this.request=t||{}},GLSR.Ajax.prototype={post:function(t){this.event?this.t(t):this.i(t)},s:function(t){var i={action:GLSR.action,_ajax_request:!0};if(this.form){var s=new GLSR.Serializer(this.form);s[GLSR.nameprefix]&&(this.request=s[GLSR.nameprefix])}return this.o(t),i[GLSR.nameprefix]=this.request,i},o:function(t){this.request._nonce||(GLSR.nonce[this.request._action]?this.request._nonce=GLSR.nonce[this.request._action]:t&&(this.request._nonce=t.closest("form").find("#_wpnonce").val()))},i:function(i,s){t.post(GLSR.ajaxurl,this.s(s)).done(function(t){"function"==typeof i&&i(t.data,t.success),s&&s.prop("disabled",!1)}).always(function(t){t.data?t.data.notices&&GLSR.notices.add(t.data.notices):GLSR.notices.add('<div class="notice notice-error inline is-dismissible"><p>Unknown error.</p></div>')})},t:function(i){this.event.preventDefault();var s=t(this.event.currentTarget);s.is(":disabled")||(s.prop("disabled",!0),this.i(i,s))}}}(jQuery),function(t){"use strict";GLSR.Categories=function(){this.taxonomy="site-review-category",this.selector="#taxonomy-"+this.taxonomy+" input:checkbox",t("#bulk-edit").length&&(this.selector="#bulk-edit input:checkbox[id^=in-"+this.taxonomy+"-]"),this.categories=t(this.selector),this.checklist=t("#"+this.taxonomy+"checklist"),this.h()},GLSR.Categories.prototype={u:function(i,s){this.categories=t(this.selector);var n=s.parsed.responses[0].id;this.l("off"),this.p(null,n),this.l("on")},l:function(t){this.categories.length&&this.categories[t]("change",this.p.bind(this))},h:function(){this.l("on"),this.checklist.length&&this.checklist.wpList({addAfter:this.u.bind(this)})},p:function(i,s){s=s||i.target.value,t(this.selector).each(function(){this.checked=this.value===s&&i.target.checked})}}}(jQuery),function(t){"use strict";GLSR.ColorPicker=function(){"object"==typeof t.wp&&"function"==typeof t.wp.wpColorPicker&&t(document).find("input[type=text].color-picker-hex").each(function(){t(this).wpColorPicker(t(this).data("colorpicker")||{})})}}(jQuery),function(){"use strict";GLSR.Forms=function(t){this.el=document.querySelector(t),this.el&&(this.depends=this.el.querySelectorAll("[data-depends]"),this.depends.length&&this.h())},GLSR.Forms.prototype={v:function(t){var i=t.getAttribute("data-depends");if(i)try{return JSON.parse(i)}catch(t){return}},h:function(){for(var t=this.el.elements,i=0;i<t.length;i++)~["INPUT","SELECT"].indexOf(t[i].nodeName)&&t[i].addEventListener("change",this._.bind(this))},g:function(t,i){var s=!1;i=[].concat(i);var n=this.el.querySelectorAll('[name="'+t+'"]');return[].map.call(n,function(t){var n=~this.S(i).indexOf(this.m(t.value));~["checkbox","radio"].indexOf(t.type)?t.checked&&n&&(s=!0):n&&(s=!0)}.bind(this)),s},m:function(t){return!!~["true","on","yes","1"].indexOf(t)||!~["false","off","no","0"].indexOf(t)&&t},S:function(t){return t.map(this.m)},_:function(t){this.depends.forEach(function(i){var s=this.v(i);if(s&&~s.map(function(t){return t.name}).indexOf(t.currentTarget.name)){var n=!0;s.forEach(function(t){this.g(t.name,t.value)||(n=!1)}.bind(this)),this.R(i,n)}}.bind(this))},R:function(t,i){var s=t.closest(".glsr-field");s&&s.classList[i?"remove":"add"]("hidden")}}}(),function(t){"use strict";GLSR.Notices=function(){this.h()},GLSR.Notices.prototype={add:function(i){i&&(t("#glsr-notices").length||(t("#message.notice").remove(),t("form#post").before('<div id="glsr-notices" />')),t("#glsr-notices").html(i),t(document).trigger("wp-updates-notice-added"))},h:function(){t(".glsr-notice[data-dismiss]").on("click.wp-dismiss-notice",this.L.bind(this))},L:function(i){var s={};s[GLSR.nameprefix]={_action:"dismiss-notice",notice:t(i.currentTarget).data("dismiss")},wp.ajax.post(GLSR.action,s)}}}(jQuery),function(t){"use strict";GLSR.Pinned=function(){this.el=t("#pinned-status-select"),this.el&&(this.cancel=t("a.cancel-pinned-status"),this.cancel.on("click",this.G.bind(this)),this.edit=t("a.edit-pinned-status"),this.edit.on("click",this.k.bind(this)),this.save=t("a.save-pinned-status"),this.save.on("click",this.C.bind(this))),t("table td.pinned i.pin-review").on("click",this.j.bind(this))},GLSR.Pinned.prototype={T:function(){this.el.slideUp("fast"),this.edit.show().focus()},G:function(i){i.preventDefault(),this.T(),this.el.find("select").val("0"===t("#hidden-pinned-status").val()?1:0)},k:function(t){t.preventDefault(),this.el.is(":hidden")&&(this.el.slideDown("fast",function(){this.el.find("select").focus()}.bind(this)),this.edit.hide())},C:function(i){i.preventDefault(),this.T(),this.target=i.currentTarget;var s={_action:"toggle-pinned",id:t("#post_ID").val(),pinned:t("#pinned-status").val()};new GLSR.Ajax(s).post(this.D.bind(this))},j:function(t){t.preventDefault(),this.target=t.currentTarget;var i={_action:"toggle-pinned",id:t.currentTarget.getAttribute("data-id")};new GLSR.Ajax(i).post(this.P.bind(this))},D:function(i){t("#pinned-status").val(0|!i.pinned),t("#hidden-pinned-status").val(0|i.pinned),t("#pinned-status-text").text(i.pinned?this.target.dataset.yes:this.target.dataset.no),GLSR.notices.add(i.notices)},P:function(t){this.target.classList[t.pinned?"add":"remove"]("pinned")}}}(jQuery),function(t){"use strict";GLSR.Pointers=function(){t.each(GLSR.pointers,function(t,i){this.h(i)}.bind(this))},GLSR.Pointers.prototype={I:function(i){t.post(GLSR.ajaxurl,{action:"dismiss-wp-pointer",pointer:i})},h:function(i){t(i.target).pointer({content:i.options.content,position:i.options.position,close:this.I.bind(null,i.id)}).pointer("open").pointer("sendToTop"),t(document).on("wp-window-resized",function(){t(i.target).pointer("reposition")})}}}(jQuery),function(t,i,s){"use strict";GLSR.Search=function(t,i){this.el=s(t),this.options=i,this.searchTerm=null,this.h()},GLSR.Search.prototype={defaults:{action:null,exclude:[],onInit:null,onResultClick:null,results:{},selected:-1,selectedClass:"glsr-selected-result",selectorEntries:".glsr-strings-table tbody",selectorResults:".glsr-search-results",selectorSearch:".glsr-search-input"},h:function(){this.options=s.extend({},this.defaults,this.options),this.el.length&&(this.options.entriesEl=this.el.parent().find(this.options.selectorEntries),this.options.resultsEl=this.el.find(this.options.selectorResults),this.options.searchEl=this.el.find(this.options.selectorSearch),this.options.searchEl.attr("aria-describedby","live-search-desc"),"function"==typeof this.options.onInit&&this.options.onInit.call(this),this.A())},A:function(){this.options.searchEl.on("input",t.debounce(this.V.bind(this),500)),this.options.searchEl.on("keyup",this.N.bind(this)),this.options.searchEl.on("keydown keypress",function(t){GLSR.keys.ENTER===t.which&&t.preventDefault()}),s(document).on("click",this.$.bind(this)),s(document).on("keydown",this.F.bind(this))},O:function(){void 0!==this.searchRequest&&this.searchRequest.abort()},U:function(){this.O(),this.options.resultsEl.empty(),this.el.removeClass("is-active"),s("body").removeClass("glsr-focus")},H:function(t){var i=this.options.entriesEl.children("tr").eq(t),n=this;i.find("td").css({backgroundColor:"#faafaa"}),i.fadeOut(350,function(){s(this).remove(),n.options.results={},n.K(),n.W()})},q:function(t){s("body").addClass("glsr-focus"),this.options.resultsEl.append(t),this.options.resultsEl.children("span").on("click",this.B.bind(this))},J:function(){this.options.entriesEl.on("click","a.delete",this.M.bind(this)),this.options.entriesEl.sortable({items:"tr",tolerance:"pointer",start:function(t,i){i.placeholder.height(i.helper[0].scrollHeight)},sort:function(t,i){var n=t.pageY-s(this).offsetParent().offset().top-i.helper.outerHeight(!0)/2;i.helper.css({top:n+"px"})}})},X:function(t){this.options.selected+=t,this.options.results.removeClass(this.options.selectedClass),this.options.selected<0&&(this.options.selected=-1,this.options.searchEl.focus()),this.options.selected>=this.options.results.length&&(this.options.selected=this.options.results.length-1),this.options.selected>=0&&this.options.results.eq(this.options.selected).addClass(this.options.selectedClass).focus()},$:function(t){s(t.target).find(this.el).length&&s("body").hasClass("glsr-focus")&&this.U()},F:function(t){if(!s.isEmptyObject(this.options.results)){if(GLSR.keys.ESC===t.which&&this.U(),GLSR.keys.ENTER===t.which||GLSR.keys.SPACE===t.which){var i=this.options.resultsEl.find("."+this.options.selectedClass);i&&i.trigger("click")}GLSR.keys.UP===t.which&&(t.preventDefault(),this.X(-1)),GLSR.keys.DOWN===t.which&&(t.preventDefault(),this.X(1))}},M:function(t){t.preventDefault(),this.H(s(t.currentTarget).closest("tr").index())},B:function(t){t.preventDefault(),"function"==typeof this.options.onResultClick&&this.options.onResultClick.call(this,t),this.U()},V:function(t){if(this.O(),this.searchTerm===t.currentTarget.value&&this.options.results.length)return this.q(this.options.results);if(this.options.resultsEl.empty(),this.options.selected=-1,this.searchTerm=t.currentTarget.value,""===this.searchTerm)return this.Y();this.el.addClass("is-active");var s={};s[GLSR.nameprefix]={_action:this.options.action,_nonce:this.el.find("#_search_nonce").val(),exclude:this.options.exclude,search:this.searchTerm},this.searchRequest=i.ajax.post(GLSR.action,s).done(function(t){this.el.removeClass("is-active"),this.q(t.items?t.items:t.empty),this.options.results=this.options.resultsEl.children(),delete this.searchRequest}.bind(this))},N:function(t){GLSR.keys.ESC===t.which&&this.Y(),GLSR.keys.ENTER===t.which&&(this.V(t),t.preventDefault())},Z:function(t){t.preventDefault();var i=this.el.find(".description");this.el.find("input#assigned_to").val(""),i.find("a").css({color:"#c00"}),i.fadeOut("fast",function(){s(this).html("").show()})},K:function(){var t=this;this.options.exclude=[],this.options.entriesEl.children("tr").each(function(i){s(this).find(".glsr-string-td2").children().filter(":input").each(function(){var n=s(this),e=n.attr("name").replace(/\[\d+\]/i,"["+i+"]");n.attr("name",e),n.is("[data-id]")&&t.options.exclude.push({id:n.val()})})})},Y:function(){this.U(),this.options.results={},this.options.searchEl.val("")},W:function(){var t=this.options.entriesEl.children().length>0?"remove":"add";this.options.entriesEl.parent()[t+"Class"]("glsr-hidden")}}}(window._,window.wp,jQuery),function(t){"use strict";GLSR.Serializer=function(i){return this.data={},this.form=t(i),this.pushes={},this.init()},GLSR.Serializer.prototype={patterns:{validate:/^[a-z_-][a-z0-9_-]*(?:\[(?:\d*|[a-z0-9_-]+)\])*$/i,key:/[a-z0-9_-]+|(?=\[\])/gi,named:/^[a-z0-9_-]+$/i,push:/^$/,fixed:/^\d+$/},addPair:function(i){this.patterns.validate.test(i.name)&&(this.data=t.extend(!0,this.data,this.makeObject(i.name,this.encode(i))))},build:function(t,i,s){return t[i]=s,t},encode:function(i){switch(t('[name="'+i.name+'"]',this.form).attr("type")){case"checkbox":return"on"===i.value||i.value;default:return i.value}},incrementPush:function(t){return void 0===this.pushes[t]&&(this.pushes[t]=0),this.pushes[t]++},init:function(){var i=this.form.serializeArray();if(t.isArray(i))for(var s=0,n=i.length;s<n;s++)this.addPair(i[s]);return this.data},makeObject:function(t,i){for(var s,n=t.match(this.patterns.key);void 0!==(s=n.pop());)if(this.patterns.push.test(s)){var e=this.incrementPush(t.replace(/\[\]$/,""));i=this.build([],e,i)}else this.patterns.fixed.test(s)?i=this.build([],s,i):this.patterns.named.test(s)&&(i=this.build({},s,i));return i}}}(jQuery),function(t){"use strict";GLSR.Shortcode=function(t){this.current=null,this.editor=null,this.create=function(t){if(this.editor=tinymce.get(t),this.editor){var i={_action:"mce-shortcode",shortcode:this.current};new GLSR.Ajax(i).post(this.tt.bind(this))}};var i=document.querySelectorAll(t);i.length&&i.forEach(function(t){var i=t.querySelector("button"),s=t.querySelectorAll(".mce-menu-item");i&&s.length&&this.h(t,i,s)}.bind(this))},GLSR.Shortcode.prototype={it:{},st:[],h:function(t,i,s){document.addEventListener("click",this.nt.bind(this,t,i)),i.addEventListener("click",this.et.bind(this,t,i)),s.forEach(function(s){s.addEventListener("click",this.ot.bind(this,t,i))}.bind(this))},ht:function(){tinymce.execCommand("GLSR_Shortcode")},ct:function(){t("#scTemp").length?this.ht():(t("body").append('<textarea id="scTemp" style="display:none!important;"/>'),tinymce.init({elements:"scTemp",external_plugins:GLSR.tinymce,mode:"exact",plugins:["glsr_shortcode","wplink"]}),setTimeout(function(){this.ht()}.bind(this),200))},I:function(i,s){t(s).removeClass("active"),t(i).find(".glsr-mce-menu").hide()},rt:function(){var i=t("#scTemp");i.length&&(tinymce.get("scTemp").remove(),i.remove()),this.it={},this.st=[]},tt:function(t){if(t){if(0===t.body.length)return window.send_to_editor("["+t.shortcode+"]"),void this.rt();var i=this.at(t);t.ok.constructor===Array&&(i.buttons[0].text=t.ok[0],i.buttons[0].onclick="close",delete i.buttons[1]),this.editor.windowManager.open(i)}},ut:function(t){for(var i in this.it=t,this.st=[],t)t.hasOwnProperty(i)&&(this.lt(i),this.dt(i),this.ft(i));this.it.hide=this.st.join(",")},lt:function(i){"display"!==i||t.isNumeric(this.it[i])||(this.it[i]="")},dt:function(t){if(GLSR.hideoptions.hasOwnProperty(this.current)){var i=t.substring("hide_".length);-1!==Object.keys(GLSR.hideoptions[this.current]).indexOf(i)&&(this.it[t]&&this.st.push(i),delete this.it[t])}},ft:function(t){"id"===t&&(this.it[t]=(+new Date).toString(36))},nt:function(i,s,n){t(n.target).closest(t(i)).length||this.I(i,s)},et:function(t,i,s){s.preventDefault(),s.currentTarget.classList.contains("active")?this.I(t,i):this.pt(t,i)},ot:function(t,i,s){s.preventDefault(),this.current=s.currentTarget.dataset.shortcode,this.current&&(tinymce.get(window.wpActiveEditor)?this.ht():this.ct(),setTimeout(function(){this.I(t,i)}.bind(this),100))},pt:function(i,s){t(s).addClass("active"),t(i).find(".glsr-mce-menu").show()},vt:function(t){return[{classes:"btn glsr-btn primary",onclick:this._t.bind(this),text:t.ok},{onclick:"close",text:t.close}]},at:function(t){return{title:t.title,body:t.body,classes:"glsr-mce-popup",minWidth:320,buttons:this.vt(t),onsubmit:this.gt.bind(this,t),onclose:this.rt.bind(this)}},gt:function(t,i){var s="";for(var n in this.ut(i.data),this.it)this.it.hasOwnProperty(n)&&""!==this.it[n]&&(s+=" "+n+'="'+this.it[n]+'"');window.send_to_editor("["+t.shortcode+s+"]")},_t:function(){var t=this.editor.windowManager.getWindows()[0];this.St(t)&&t.submit()},St:function(t){var i,s=!0,n=GLSR.shortcodes[this.current];for(var e in n)if(n.hasOwnProperty(e)&&void 0!==(i=t.find("#"+e)[0])&&""===i.state.data.value){s=!1,alert(n[e]);break}return s}}}(jQuery),function(t){"use strict";GLSR.Status=function(t){var i=document.querySelectorAll(t);i.length&&i.forEach(function(t){t.addEventListener("click",this.L)}.bind(this))},GLSR.Status.prototype={L:function(i){var s=i.currentTarget.href.match(/post=([0-9]+)/),n=i.currentTarget.href.match(/action=([a-z]+)/);if(null!==s&&null!==n){var e={_action:"change-status",_nonce:GLSR.nonce["change-status"],post_id:s[1],status:n[1]};new GLSR.Ajax(e,i).post(function(s){if(s.class){var n=t(i.target);n.closest("tr").removeClass("status-pending status-publish").addClass(s.class),n.closest("td.column-title").find("strong").html(s.link),s.counts&&(n.closest(".wrap").find("ul.subsubsub").html(s.counts),t("#menu-posts-site-review").find(".awaiting-mod").removeClass().addClass("awaiting-mod count-"+s.pending).find(".unapproved-count").html(s.pending))}})}}}}(jQuery),function(t){"use strict";GLSR.Sync=function(){this.button=t("button#sync-reviews"),this.progressbar=t(".glsr-progress"),this.service=null,t("form.glsr-form-sync").on("click","#sync-reviews",this.Rt.bind(this)),t(document).on("wp-window-resized",this.wt),t(window).on("hashchange",this.wt),this.wt()},GLSR.Sync.prototype={Lt:function(i){t(".service-"+this.service+" td.column-last_sync").text(i.last_sync),t(".service-"+this.service+" td.column-total_fetched a").text(i.total),this.Gt(!1)},Rt:function(i){i.preventDefault(),this.service=t('[name="'+GLSR.nameprefix+'[service]"]').val(),this.service&&(this.Gt(!0),this.yt())},wt:function(){var i=t(".glsr-progress").width();i&&t(".glsr-progress span").width(i)},yt:function(){var t={_action:"sync-reviews",service:this.service,stage:"fetch"};new GLSR.Ajax(t).post(this.bt.bind(this))},bt:function(t){var i={_action:"sync-reviews",job_id:t.job_id,service:this.service,stage:"progress"},s=t.finished?this.kt.bind(this,t):this.bt.bind(this);this.xt(t.message),this.Ct(t.percent),setTimeout(function(){new GLSR.Ajax(i).post(s)},1500)},kt:function(t){var i=0;try{i=t.meta.pagination.current_page}catch(t){}var s={_action:"sync-reviews",page:i+1,service:this.service,stage:"reviews"};this.xt(t.message),t.percent_synced&&t.percent_synced>=100?this.Lt(t):new GLSR.Ajax(s).post(this.kt.bind(this))},xt:function(i){t(".glsr-progress-status",this.progressbar).text(i)},Ct:function(i){i=(i||0)+"%",t(".glsr-progress-bar",this.progressbar).outerWidth(i)},Gt:function(t){if(!0===t&&(this.xt(this.progressbar.data("active-text")),this.Ct(),this.button.prop("disabled",!0),window.requestAnimationFrame(function(){this.progressbar.addClass("active")}.bind(this))),!1===t)return this.service=null,this.button.prop("disabled",!1),void this.progressbar.removeClass("active");window.requestAnimationFrame(this.Gt.bind(this))}}}(jQuery),function(t){"use strict";GLSR.Tabs=function(i){this.options=t.extend({},this.defaults,i),this.active=document.querySelector("input[name=_active_tab]"),this.referrer=document.querySelector("input[name=_wp_http_referer]"),this.tabs=document.querySelectorAll(this.options.tabSelector),this.views=document.querySelectorAll(this.options.viewSelector),this.active&&this.referrer&&this.tabs&&this.views&&this.h()},GLSR.Tabs.prototype={defaults:{tabSelector:".glsr-nav-tab",viewSelector:".glsr-nav-view"},h:function(){var i=this;t(window).on("hashchange",i.jt.bind(i)),[].forEach.call(i.tabs,function(t,s){(location.hash?t.getAttribute("href").slice(1)===location.hash.slice(5):0===s)&&i.Tt(t),t.addEventListener("click",i.L.bind(i)),t.addEventListener("touchend",i.L.bind(i))}.bind(i)),t(i.options.viewSelector).on("click","a",function(){var s=t(this).data("expand");localStorage.setItem("glsr-expand",s),i.zt(t(s))}),t(window).on("load",function(){i.zt(t(localStorage.getItem("glsr-expand")))})},Et:function(t){return t?"add":"remove"},L:function(t){t.preventDefault();var i=t.currentTarget;i.blur(),this.Qt(i),this.Tt(i),location.hash="tab-"+i.getAttribute("href").slice(1)},jt:function(){for(var t=location.hash.split("#tab-")[1],i=0;i<this.views.length;i++)if(t===this.views[i].id){this.Tt(this.tabs[i]);break}},zt:function(t){if(t.length){var i=t.parent();i.removeClass("collapsed"),this.Dt(i),i.removeClass("collapsed"),t.removeClass("closed").find(".handlediv").attr("aria-expanded",!0),window.setTimeout(function(){t[0].scrollIntoView({behavior:"smooth",block:"center"}),localStorage.removeItem("glsr-expand")},10)}},Pt:function(t){var i=this.referrer.value.split("#")[0]+"#tab-"+this.views[t].id;this.referrer.value=i},Tt:function(t){[].forEach.call(this.tabs,function(i,s){var n=this.Et(i===t);"add"===n&&(this.active.value=this.views[s].id,this.Pt(s),this.It(s)),i.classList[n]("nav-tab-active")}.bind(this))},It:function(t){[].forEach.call(this.views,function(i,s){var n=this.Et(s!==t);i.classList[n]("ui-tabs-hide")}.bind(this))},Dt:function(t){var i=t.hasClass("collapsed")?"remove":"add";t[i+"Class"]("collapsed").find(".glsr-card.postbox")[i+"Class"]("closed").find(".handlediv").attr("aria-expanded","add"!==i)},Qt:function(i){if(i.classList.contains("nav-tab-active")){var s=t(i.getAttribute("href"));this.Dt(s)}}}}(jQuery),function(t){"use strict";GLSR.TextareaResize=function(){var i=document.querySelector("#contentdiv > textarea");i&&(this.At(i),t(document).on("wp-window-resized.editor-expand",function(){this.At(i)}.bind(this)))},GLSR.TextareaResize.prototype={At:function(t){var i=t.scrollHeight>320?t.scrollHeight:320;t.style.height="auto",t.style.height=i+"px"}}}(jQuery),function(t){"use strict";GLSR.Tools=function(){t("form").on("click","#clear-console",this.Vt,this.L.bind(this)),t("form").on("click","#fetch-console",this.Vt,this.L.bind(this)),t("form").on("click","#count-reviews",this.L.bind(this)),t("form").on("click","#migrate-reviews",this.L.bind(this)),t("form").on("click","#reset-permissions",this.L.bind(this))},GLSR.Tools.prototype={Vt:function(i,s){s&&t("#log-file").val(i.console)},L:function(t){new GLSR.Ajax({},t,t.currentTarget.closest("form")).post(function(i,s){"function"==typeof t.data&&t.data(i,s)})}}}(jQuery),GLSR.keys={DOWN:40,ENTER:13,ESC:27,SPACE:32,UP:38},jQuery(function(t){GLSR.notices=new GLSR.Notices,GLSR.shortcode=new GLSR.Shortcode(".glsr-mce"),GLSR.ColorPicker(),new GLSR.Categories,new GLSR.Forms("form.glsr-form"),new GLSR.Pinned,new GLSR.Pointers,new GLSR.Search("#glsr-search-posts",{action:"search-posts",onInit:function(){this.el.on("click",".glsr-remove-button",this.Z.bind(this))},onResultClick:function(i){var s=t(i.currentTarget),n=wp.template("glsr-assigned-post"),e={url:s.data("url"),title:s.text()};n&&(this.el.find("input#assigned_to").val(s.data("id")),this.el.find(".description").html(n(e)),this.el.on("click",".glsr-remove-button",this.Z.bind(this)),this.Y())}}),new GLSR.Search("#glsr-search-translations",{action:"search-translations",onInit:function(){this.J()},onResultClick:function(i){var s=t(i.currentTarget),n=s.data("entry"),e=wp.template("glsr-string-"+(n.p1?"plural":"single"));n.index=this.options.entriesEl.children().length,n.prefix=this.options.resultsEl.data("prefix"),e&&(this.options.entriesEl.append(e(n)),this.options.exclude.push({id:n.id}),this.options.results=this.options.results.filter(function(t,i){return i!==s.get(0)})),this.W()}}),new GLSR.Status("a.glsr-change-status"),new GLSR.Tabs,new GLSR.TextareaResize,new GLSR.Tools,new GLSR.Sync,t("a#revert").on("click",function(){t(this).parent().find(".spinner").addClass("is-active")}),t(".glsr-card.postbox").addClass("closed").find(".handlediv").attr("aria-expanded",!1).closest(".glsr-nav-view").addClass("collapsed"),t(".glsr-card.postbox .glsr-card-header").on("click",function(){var i=t(this).parent(),s=i.closest(".glsr-nav-view"),n=i.hasClass("closed")?"remove":"add";i[n+"Class"]("closed").find(".handlediv").attr("aria-expanded","add"!==n),n=s.find(".glsr-card.postbox").not(".closed").length>0?"remove":"add",s[n+"Class"]("collapsed")}),t(".glsr-support-step").not(":checked").length<1&&t(".glsr-card-result").removeClass("hidden"),t(".glsr-support-step").on("change",function(){var i=t(".glsr-support-step").not(":checked").length>0?"add":"remove";t(".glsr-card-result")[i+"Class"]("hidden")})});
 
1
+ /*! For license information please see site-reviews-admin.js.LICENSE.txt */
2
+ !function(t){var i={};function n(e){if(i[e])return i[e].exports;var s=i[e]={i:e,l:!1,exports:{}};return t[e].call(s.exports,s,s.exports,n),s.l=!0,s.exports}n.m=t,n.c=i,n.d=function(t,i,e){n.o(t,i)||Object.defineProperty(t,i,{enumerable:!0,get:e})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,i){if(1&i&&(t=n(t)),8&i)return t;if(4&i&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(n.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&i&&"string"!=typeof t)for(var s in t)n.d(e,s,function(i){return t[i]}.bind(null,s));return e},n.n=function(t){var i=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(i,"a",i),i},n.o=function(t,i){return Object.prototype.hasOwnProperty.call(t,i)},n.p="/",n(n.s=8)}([,function(t,i){function n(i){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?t.exports=n=function(t){return typeof t}:t.exports=n=function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(i)}t.exports=n},function(t,i,n){var e;!function(n,s,r){"use strict";var o=function(t,i){var n={}.toString.call(t);this.selects="[object String]"===n?s.querySelectorAll(t):"[object NodeList]"===n?t:[t],this.destroy=function(){this.widgets.forEach((function(t){t.u()}))},this.rebuild=function(){this.widgets.forEach((function(t){t.h()}))},this.widgets=[];for(var e=0;e<this.selects.length;e++)if("SELECT"===this.selects[e].tagName&&!this.selects[e]["star-rating"]){var r=new a(this.selects[e],i);void 0!==r.direction&&this.widgets.push(r)}},a=function(t,i){this.el=t,this.v=this.g({},this._,i||{},JSON.parse(t.getAttribute("data-options"))),this.j(),this.stars<1||this.stars>this.v.maxStars||this.h()};a.prototype={_:{classname:"gl-star-rating",clearable:!0,initialText:"Select a Rating",maxStars:10,showText:!0},k:function(){this.S(),this.current=this.selected=this.F(),this.P(),this.A(),this.R(),this.$(this.current),this.L("add"),this.el["star-rating"]=!0},C:function(){this.v.showText&&(this.textEl=this.G(this.widgetEl,{class:this.v.classname+"-text"},!0))},A:function(){var t=this.T(),i=this.G(this.el,{class:this.v.classname+"-stars"},!0);for(var n in t){var e=this.O({"data-value":n,"data-text":t[n]});i.innerHTML+=e.outerHTML}this.widgetEl=i,this.C()},D:function(t){(t<0||isNaN(t))&&(t=0),t>this.stars&&(t=this.stars),this.widgetEl.classList.remove("s"+10*this.current),this.widgetEl.classList.add("s"+10*t),this.v.showText&&(this.textEl.textContent=t<1?this.v.initialText:this.widgetEl.childNodes[t-1].dataset.text),this.current=t},O:function(t){var i=s.createElement("span");for(var n in t=t||{})i.setAttribute(n,t[n]);return i},u:function(){this.L("remove");var t=this.el.parentNode;t.parentNode.replaceChild(this.el,t),delete this.el["star-rating"]},I:function(t,i,n,e){e=e||!1,n.forEach(function(n){this.events&&t[i+"EventListener"](n,this.events[n],e)}.bind(this))},g:function(){var t=[].slice.call(arguments),i=t[0],n=t.slice(1);return Object.keys(n).forEach((function(t){for(var e in n[t])n[t].hasOwnProperty(e)&&(i[e]=n[t][e])})),i},N:function(){var t=!1;try{var i=Object.defineProperty({},"passive",{get:function(){t={passive:!1}}});n.addEventListener("test",null,i)}catch(t){}return t},M:function(t){var i={},n=t.pageX||t.changedTouches[0].pageX,e=this.widgetEl.offsetWidth;return i.ltr=Math.max(n-this.offsetLeft,1),i.rtl=e-i.ltr,Math.min(Math.ceil(i[this.direction]/Math.round(e/this.stars)),this.stars)},T:function(){for(var t=this.el,i={},n={},e=0;e<t.length;e++)this.V(t[e])||(i[t[e].value]=t[e].text);return Object.keys(i).sort().forEach((function(t){n[t]=i[t]})),n},F:function(){return parseInt(this.el.options[Math.max(this.el.selectedIndex,0)].value)||0},L:function(t){var i=this.el.closest("form");i&&"FORM"===i.tagName&&this.I(i,t,["reset"]),"add"===t&&this.el.disabled||(this.I(this.el,t,["change","keydown"]),this.I(this.widgetEl,t,["mousedown","mouseleave","mousemove","mouseover","touchend","touchmove","touchstart"],this.N()))},S:function(){this.events={change:this.Z.bind(this),keydown:this.W.bind(this),mousedown:this.q.bind(this),mouseleave:this.B.bind(this),mousemove:this.H.bind(this),mouseover:this.K.bind(this),reset:this.U.bind(this),touchend:this.q.bind(this),touchmove:this.H.bind(this),touchstart:this.K.bind(this)}},G:function(t,i,n){var e=this.O(i);return t.parentNode.insertBefore(e,!0===n?t.nextSibling:t),e},V:function(t){return null===t.getAttribute("value")||""===t.value},Z:function(){this.D(this.F())},W:function(t){if(~["ArrowLeft","ArrowRight"].indexOf(t.key)){var i="ArrowLeft"===t.key?-1:1;"rtl"===this.direction&&(i*=-1),this.$(Math.min(Math.max(this.F()+i,0),this.stars)),this.J()}},q:function(t){t.preventDefault();var i=this.M(t);0!==this.current&&parseFloat(this.selected)===i&&this.v.clearable&&(i=0),this.$(i),this.J()},B:function(t){t.preventDefault(),this.D(this.selected)},H:function(t){t.preventDefault(),this.D(this.M(t))},K:function(t){t.preventDefault();var i=this.widgetEl.getBoundingClientRect();this.offsetLeft=i.left+s.body.scrollLeft},U:function(){var t=this.el.querySelector("[selected]"),i=t?t.value:"";this.el.value=i,this.selected=parseInt(i)||0,this.D(i)},h:function(){this.el.parentNode.classList.contains(this.v.classname)&&this.u(),this.k()},R:function(){var t=this.el.parentNode;this.direction=n.getComputedStyle(t,null).getPropertyValue("direction"),t.classList.add(this.v.classname+"-"+this.direction)},$:function(t){this.el.value=this.selected=t,this.D(t)},j:function(){var t=this.el;this.stars=0;for(var i=0;i<t.length;i++)if(!this.V(t[i])){if(isNaN(parseFloat(t[i].value))||!isFinite(t[i].value))return void(this.stars=0);this.stars++}},J:function(){this.el.dispatchEvent(new Event("change"))},P:function(){this.G(this.el,{class:this.v.classname,"data-star-rating":""}).appendChild(this.el)}},void 0===(e=function(){return o}.apply(i,[]))||(t.exports=e)}(window,document)},function(t,i,n){(function(i){var n=function(t){var i=/\blang(?:uage)?-([\w-]+)\b/i,n=0,e={manual:t.Prism&&t.Prism.manual,disableWorkerMessageHandler:t.Prism&&t.Prism.disableWorkerMessageHandler,util:{encode:function t(i){return i instanceof s?new s(i.type,t(i.content),i.alias):Array.isArray(i)?i.map(t):i.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/\u00a0/g," ")},type:function(t){return Object.prototype.toString.call(t).slice(8,-1)},objId:function(t){return t.__id||Object.defineProperty(t,"__id",{value:++n}),t.__id},clone:function t(i,n){var s,r;switch(n=n||{},e.util.type(i)){case"Object":if(r=e.util.objId(i),n[r])return n[r];for(var o in s={},n[r]=s,i)i.hasOwnProperty(o)&&(s[o]=t(i[o],n));return s;case"Array":return r=e.util.objId(i),n[r]?n[r]:(s=[],n[r]=s,i.forEach((function(i,e){s[e]=t(i,n)})),s);default:return i}},getLanguage:function(t){for(;t&&!i.test(t.className);)t=t.parentElement;return t?(t.className.match(i)||[,"none"])[1].toLowerCase():"none"},currentScript:function(){if("undefined"==typeof document)return null;if("currentScript"in document)return document.currentScript;try{throw new Error}catch(e){var t=(/at [^(\r\n]*\((.*):.+:.+\)$/i.exec(e.stack)||[])[1];if(t){var i=document.getElementsByTagName("script");for(var n in i)if(i[n].src==t)return i[n]}return null}},isActive:function(t,i,n){for(var e="no-"+i;t;){var s=t.classList;if(s.contains(i))return!0;if(s.contains(e))return!1;t=t.parentElement}return!!n}},languages:{extend:function(t,i){var n=e.util.clone(e.languages[t]);for(var s in i)n[s]=i[s];return n},insertBefore:function(t,i,n,s){var r=(s=s||e.languages)[t],o={};for(var a in r)if(r.hasOwnProperty(a)){if(a==i)for(var u in n)n.hasOwnProperty(u)&&(o[u]=n[u]);n.hasOwnProperty(a)||(o[a]=r[a])}var c=s[t];return s[t]=o,e.languages.DFS(e.languages,(function(i,n){n===c&&i!=t&&(this[i]=o)})),o},DFS:function t(i,n,s,r){r=r||{};var o=e.util.objId;for(var a in i)if(i.hasOwnProperty(a)){n.call(i,a,i[a],s||a);var u=i[a],c=e.util.type(u);"Object"!==c||r[o(u)]?"Array"!==c||r[o(u)]||(r[o(u)]=!0,t(u,n,a,r)):(r[o(u)]=!0,t(u,n,null,r))}}},plugins:{},highlightAll:function(t,i){e.highlightAllUnder(document,t,i)},highlightAllUnder:function(t,i,n){var s={callback:n,container:t,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};e.hooks.run("before-highlightall",s),s.elements=Array.prototype.slice.apply(s.container.querySelectorAll(s.selector)),e.hooks.run("before-all-elements-highlight",s);for(var r,o=0;r=s.elements[o++];)e.highlightElement(r,!0===i,s.callback)},highlightElement:function(n,s,r){var o=e.util.getLanguage(n),a=e.languages[o];n.className=n.className.replace(i,"").replace(/\s+/g," ")+" language-"+o;var u=n.parentElement;u&&"pre"===u.nodeName.toLowerCase()&&(u.className=u.className.replace(i,"").replace(/\s+/g," ")+" language-"+o);var c={element:n,language:o,grammar:a,code:n.textContent};function h(t){c.highlightedCode=t,e.hooks.run("before-insert",c),c.element.innerHTML=c.highlightedCode,e.hooks.run("after-highlight",c),e.hooks.run("complete",c),r&&r.call(c.element)}if(e.hooks.run("before-sanity-check",c),!c.code)return e.hooks.run("complete",c),void(r&&r.call(c.element));if(e.hooks.run("before-highlight",c),c.grammar)if(s&&t.Worker){var l=new Worker(e.filename);l.onmessage=function(t){h(t.data)},l.postMessage(JSON.stringify({language:c.language,code:c.code,immediateClose:!0}))}else h(e.highlight(c.code,c.grammar,c.language));else h(e.util.encode(c.code))},highlight:function(t,i,n){var r={code:t,grammar:i,language:n};return e.hooks.run("before-tokenize",r),r.tokens=e.tokenize(r.code,r.grammar),e.hooks.run("after-tokenize",r),s.stringify(e.util.encode(r.tokens),r.language)},tokenize:function(t,i){var n=i.rest;if(n){for(var u in n)i[u]=n[u];delete i.rest}var c=new r;return o(c,c.head,t),function t(i,n,r,u,c,h){for(var l in r)if(r.hasOwnProperty(l)&&r[l]){var f=r[l];f=Array.isArray(f)?f:[f];for(var d=0;d<f.length;++d){if(h&&h.cause==l+","+d)return;var p=f[d],v=p.inside,g=!!p.lookbehind,m=!!p.greedy,y=0,b=p.alias;if(m&&!p.pattern.global){var w=p.pattern.toString().match(/[imsuy]*$/)[0];p.pattern=RegExp(p.pattern.source,w+"g")}for(var _=p.pattern||p,j=u.next,k=c;j!==n.tail&&!(h&&k>=h.reach);k+=j.value.length,j=j.next){var S=j.value;if(n.length>i.length)return;if(!(S instanceof s)){var Q=1;if(m&&j!=n.tail.prev){if(_.lastIndex=k,!(R=_.exec(i)))break;var x=R.index+(g&&R[1]?R[1].length:0),F=R.index+R[0].length,P=k;for(P+=j.value.length;x>=P;)j=j.next,P+=j.value.length;if(P-=j.value.length,k=P,j.value instanceof s)continue;for(var A=j;A!==n.tail&&(P<F||"string"==typeof A.value);A=A.next)Q++,P+=A.value.length;Q--,S=i.slice(k,P),R.index-=k}else{_.lastIndex=0;var R=_.exec(S)}if(R){g&&(y=R[1]?R[1].length:0);x=R.index+y;var $=R[0].slice(y),L=(F=x+$.length,S.slice(0,x)),C=S.slice(F),z=k+S.length;h&&z>h.reach&&(h.reach=z);var E=j.prev;L&&(E=o(n,E,L),k+=L.length),a(n,E,Q);var G=new s(l,v?e.tokenize($,v):$,b,$);j=o(n,E,G),C&&o(n,j,C),Q>1&&t(i,n,r,j.prev,k,{cause:l+","+d,reach:z})}}}}}}(t,c,i,c.head,0),function(t){var i=[],n=t.head.next;for(;n!==t.tail;)i.push(n.value),n=n.next;return i}(c)},hooks:{all:{},add:function(t,i){var n=e.hooks.all;n[t]=n[t]||[],n[t].push(i)},run:function(t,i){var n=e.hooks.all[t];if(n&&n.length)for(var s,r=0;s=n[r++];)s(i)}},Token:s};function s(t,i,n,e){this.type=t,this.content=i,this.alias=n,this.length=0|(e||"").length}function r(){var t={value:null,prev:null,next:null},i={value:null,prev:t,next:null};t.next=i,this.head=t,this.tail=i,this.length=0}function o(t,i,n){var e=i.next,s={value:n,prev:i,next:e};return i.next=s,e.prev=s,t.length++,s}function a(t,i,n){for(var e=i.next,s=0;s<n&&e!==t.tail;s++)e=e.next;i.next=e,e.prev=i,t.length-=s}if(t.Prism=e,s.stringify=function t(i,n){if("string"==typeof i)return i;if(Array.isArray(i)){var s="";return i.forEach((function(i){s+=t(i,n)})),s}var r={type:i.type,content:t(i.content,n),tag:"span",classes:["token",i.type],attributes:{},language:n},o=i.alias;o&&(Array.isArray(o)?Array.prototype.push.apply(r.classes,o):r.classes.push(o)),e.hooks.run("wrap",r);var a="";for(var u in r.attributes)a+=" "+u+'="'+(r.attributes[u]||"").replace(/"/g,"&quot;")+'"';return"<"+r.tag+' class="'+r.classes.join(" ")+'"'+a+">"+r.content+"</"+r.tag+">"},!t.document)return t.addEventListener?(e.disableWorkerMessageHandler||t.addEventListener("message",(function(i){var n=JSON.parse(i.data),s=n.language,r=n.code,o=n.immediateClose;t.postMessage(e.highlight(r,e.languages[s],s)),o&&t.close()}),!1),e):e;var u=e.util.currentScript();function c(){e.manual||e.highlightAll()}if(u&&(e.filename=u.src,u.hasAttribute("data-manual")&&(e.manual=!0)),!e.manual){var h=document.readyState;"loading"===h||"interactive"===h&&u&&u.defer?document.addEventListener("DOMContentLoaded",c):window.requestAnimationFrame?window.requestAnimationFrame(c):window.setTimeout(c,16)}return e}("undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{});t.exports&&(t.exports=n),void 0!==i&&(i.Prism=n)}).call(this,n(9))},,,,,function(t,i,n){t.exports=n(26)},function(t,i){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,i){Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|interface|extends|implements|trait|instanceof|new)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,boolean:/\b(?:true|false)\b/,function:/\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/}},function(t,i){Prism.languages.markup={comment:/<!--[\s\S]*?-->/,prolog:/<\?[\s\S]+?\?>/,doctype:{pattern:/<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^<!|>$|[[\]]/,"doctype-tag":/^DOCTYPE/,name:/[^\s<>'"]+/}},cdata:/<!\[CDATA\[[\s\S]*?]]>/i,tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},Prism.languages.markup.tag.inside["attr-value"].inside.entity=Prism.languages.markup.entity,Prism.languages.markup.doctype.inside["internal-subset"].inside=Prism.languages.markup,Prism.hooks.add("wrap",(function(t){"entity"===t.type&&(t.attributes.title=t.content.replace(/&amp;/,"&"))})),Object.defineProperty(Prism.languages.markup.tag,"addInlined",{value:function(t,i){var n={};n["language-"+i]={pattern:/(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,lookbehind:!0,inside:Prism.languages[i]},n.cdata=/^<!\[CDATA\[|\]\]>$/i;var e={"included-cdata":{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,inside:n}};e["language-"+i]={pattern:/[\s\S]+/,inside:Prism.languages[i]};var s={};s[t]={pattern:RegExp(/(<__[\s\S]*?>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g,(function(){return t})),"i"),lookbehind:!0,greedy:!0,inside:e},Prism.languages.insertBefore("markup","cdata",s)}}),Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup,Prism.languages.xml=Prism.languages.extend("markup",{}),Prism.languages.ssml=Prism.languages.xml,Prism.languages.atom=Prism.languages.xml,Prism.languages.rss=Prism.languages.xml},function(t,i){Prism.languages.javascript=Prism.languages.extend("clike",{"class-name":[Prism.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])[_$A-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\.(?:prototype|constructor))/,lookbehind:!0}],keyword:[{pattern:/((?:^|})\s*)(?:catch|finally)\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|for|from|function|(?:get|set)(?=\s*[\[$\w\xA0-\uFFFF])|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],number:/\b(?:(?:0[xX](?:[\dA-Fa-f](?:_[\dA-Fa-f])?)+|0[bB](?:[01](?:_[01])?)+|0[oO](?:[0-7](?:_[0-7])?)+)n?|(?:\d(?:_\d)?)+n|NaN|Infinity)\b|(?:\b(?:\d(?:_\d)?)+\.?(?:\d(?:_\d)?)*|\B\.(?:\d(?:_\d)?)+)(?:[Ee][+-]?(?:\d(?:_\d)?)+)?/,function:/#?[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),Prism.languages.javascript["class-name"][0].pattern=/(\b(?:class|interface|extends|implements|instanceof|new)\s+)[\w.\\]+/,Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*]|\\.|[^/\\\[\r\n])+\/[gimyus]{0,6}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:Prism.languages.regex},"regex-flags":/[a-z]+$/,"regex-delimiter":/^\/|\/$/}},"function-variable":{pattern:/#?[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+[_$A-Za-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)?\s*\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\))/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*=>)/i,inside:Prism.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\)\s*=>)/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:[_$A-Za-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\)\s*\{)/,lookbehind:!0,inside:Prism.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),Prism.languages.insertBefore("javascript","string",{"template-string":{pattern:/`(?:\\[\s\S]|\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}|(?!\${)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\${|}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&Prism.languages.markup.tag.addInlined("script","javascript"),Prism.languages.js=Prism.languages.javascript},function(t,i){!function(t){function i(t,i){return"___"+t.toUpperCase()+i+"___"}Object.defineProperties(t.languages["markup-templating"]={},{buildPlaceholders:{value:function(n,e,s,r){if(n.language===e){var o=n.tokenStack=[];n.code=n.code.replace(s,(function(t){if("function"==typeof r&&!r(t))return t;for(var s,a=o.length;-1!==n.code.indexOf(s=i(e,a));)++a;return o[a]=t,s})),n.grammar=t.languages.markup}}},tokenizePlaceholders:{value:function(n,e){if(n.language===e&&n.tokenStack){n.grammar=t.languages[e];var s=0,r=Object.keys(n.tokenStack);!function o(a){for(var u=0;u<a.length&&!(s>=r.length);u++){var c=a[u];if("string"==typeof c||c.content&&"string"==typeof c.content){var h=r[s],l=n.tokenStack[h],f="string"==typeof c?c:c.content,d=i(e,h),p=f.indexOf(d);if(p>-1){++s;var v=f.substring(0,p),g=new t.Token(e,t.tokenize(l,n.grammar),"language-"+e,l),m=f.substring(p+d.length),y=[];v&&y.push.apply(y,o([v])),y.push(g),m&&y.push.apply(y,o([m])),"string"==typeof c?a.splice.apply(a,[u,1].concat(y)):c.content=y}}else c.content&&o(c.content)}return a}(n.tokens)}}}})}(Prism)},function(t,i){!function(t){t.languages.php=t.languages.extend("clike",{keyword:/\b(?:__halt_compiler|abstract|and|array|as|break|callable|case|catch|class|clone|const|continue|declare|default|die|do|echo|else|elseif|empty|enddeclare|endfor|endforeach|endif|endswitch|endwhile|eval|exit|extends|final|finally|for|foreach|function|global|goto|if|implements|include|include_once|instanceof|insteadof|interface|isset|list|match|namespace|new|or|parent|print|private|protected|public|require|require_once|return|static|switch|throw|trait|try|unset|use|var|while|xor|yield)\b/i,boolean:{pattern:/\b(?:false|true)\b/i,alias:"constant"},constant:[/\b[A-Z_][A-Z0-9_]*\b/,/\b(?:null)\b/i],comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0}}),t.languages.insertBefore("php","string",{"shell-comment":{pattern:/(^|[^\\])#.*/,lookbehind:!0,alias:"comment"}}),t.languages.insertBefore("php","comment",{delimiter:{pattern:/\?>$|^<\?(?:php(?=\s)|=)?/i,alias:"important"}}),t.languages.insertBefore("php","keyword",{variable:/\$+(?:\w+\b|(?={))/i,package:{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),t.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}});var i={pattern:/{\$(?:{(?:{[^{}]+}|[^{}]+)}|[^{}])+}|(^|[^\\{])\$+(?:\w+(?:\[[^\r\n\[\]]+\]|->\w+)*)/,lookbehind:!0,inside:t.languages.php};t.languages.insertBefore("php","string",{"nowdoc-string":{pattern:/<<<'([^']+)'[\r\n](?:.*[\r\n])*?\1;/,greedy:!0,alias:"string",inside:{delimiter:{pattern:/^<<<'[^']+'|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<'?|[';]$/}}}},"heredoc-string":{pattern:/<<<(?:"([^"]+)"[\r\n](?:.*[\r\n])*?\1;|([a-z_]\w*)[\r\n](?:.*[\r\n])*?\2;)/i,greedy:!0,alias:"string",inside:{delimiter:{pattern:/^<<<(?:"[^"]+"|[a-z_]\w*)|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<"?|[";]$/}},interpolation:i}},"single-quoted-string":{pattern:/'(?:\\[\s\S]|[^\\'])*'/,greedy:!0,alias:"string"},"double-quoted-string":{pattern:/"(?:\\[\s\S]|[^\\"])*"/,greedy:!0,alias:"string",inside:{interpolation:i}}}),delete t.languages.php.string,t.hooks.add("before-tokenize",(function(i){if(/<\?/.test(i.code)){t.languages["markup-templating"].buildPlaceholders(i,"php",/<\?(?:[^"'/#]|\/(?![*/])|("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|(?:\/\/|#)(?:[^?\n\r]|\?(?!>))*(?=$|\?>|[\r\n])|\/\*[\s\S]*?(?:\*\/|$))*?(?:\?>|$)/gi)}})),t.hooks.add("after-tokenize",(function(i){t.languages["markup-templating"].tokenizePlaceholders(i,"php")}))}(Prism)},function(t,i){!function(t){var i=/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/;t.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-]+[\s\S]*?(?:;|(?=\s*\{))/,inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\((?!\s*\))\s*)(?:[^()]|\((?:[^()]|\([^()]*\))*\))+?(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+i.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+i.source+"$"),alias:"url"}}},selector:RegExp("[^{}\\s](?:[^{};\"']|"+i.source+")*?(?=\\s*\\{)"),string:{pattern:i,greedy:!0},property:/[-_a-z\xA0-\uFFFF][-\w\xA0-\uFFFF]*(?=\s*:)/i,important:/!important\b/i,function:/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:,]/},t.languages.css.atrule.inside.rest=t.languages.css;var n=t.languages.markup;n&&(n.tag.addInlined("style","css"),t.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:n.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:t.languages.css}},alias:"language-css"}},n.tag))}(Prism)},function(t,i){!function(){if("undefined"!=typeof self&&self.Prism&&self.document){var t=/\n(?!$)/g,i=Prism.plugins.lineNumbers={getLine:function(t,i){if("PRE"===t.tagName&&t.classList.contains("line-numbers")){var n=t.querySelector(".line-numbers-rows"),e=parseInt(t.getAttribute("data-start"),10)||1,s=e+(n.children.length-1);i<e&&(i=e),i>s&&(i=s);var r=i-e;return n.children[r]}},resize:function(t){s([t])},assumeViewportIndependence:!0},n=function(t){return t?window.getComputedStyle?getComputedStyle(t):t.currentStyle||null:null},e=void 0;window.addEventListener("resize",(function(){i.assumeViewportIndependence&&e===window.innerWidth||(e=window.innerWidth,s(Array.prototype.slice.call(document.querySelectorAll("pre.line-numbers"))))})),Prism.hooks.add("complete",(function(i){if(i.code){var n=i.element,e=n.parentNode;if(e&&/pre/i.test(e.nodeName)&&!n.querySelector(".line-numbers-rows")&&Prism.util.isActive(n,"line-numbers")){n.classList.remove("line-numbers"),e.classList.add("line-numbers");var r,o=i.code.match(t),a=o?o.length+1:1,u=new Array(a+1).join("<span></span>");(r=document.createElement("span")).setAttribute("aria-hidden","true"),r.className="line-numbers-rows",r.innerHTML=u,e.hasAttribute("data-start")&&(e.style.counterReset="linenumber "+(parseInt(e.getAttribute("data-start"),10)-1)),i.element.appendChild(r),s([e]),Prism.hooks.run("line-numbers",i)}}})),Prism.hooks.add("line-numbers",(function(t){t.plugins=t.plugins||{},t.plugins.lineNumbers=!0}))}function s(i){if(0!=(i=i.filter((function(t){var i=n(t)["white-space"];return"pre-wrap"===i||"pre-line"===i}))).length){var e=i.map((function(i){var n=i.querySelector("code"),e=i.querySelector(".line-numbers-rows");if(n&&e){var s=i.querySelector(".line-numbers-sizer"),r=n.textContent.split(t);s||((s=document.createElement("span")).className="line-numbers-sizer",n.appendChild(s)),s.innerHTML="0",s.style.display="block";var o=s.getBoundingClientRect().height;return s.innerHTML="",{element:i,lines:r,lineHeights:[],oneLinerHeight:o,sizer:s}}})).filter(Boolean);e.forEach((function(t){var i=t.sizer,n=t.lines,e=t.lineHeights,s=t.oneLinerHeight;e[n.length-1]=void 0,n.forEach((function(t,n){if(t&&t.length>1){var r=i.appendChild(document.createElement("span"));r.style.display="block",r.textContent=t}else e[n]=s}))})),e.forEach((function(t){for(var i=t.sizer,n=t.lineHeights,e=0,s=0;s<n.length;s++)void 0===n[s]&&(n[s]=i.children[e++].getBoundingClientRect().height)})),e.forEach((function(t){var i=t.sizer,n=t.element.querySelector(".line-numbers-rows");i.style.display="none",i.innerHTML="",t.lineHeights.forEach((function(t,i){n.children[i].style.height=t+"px"}))}))}}}()},,,,,,,,,,function(t,i,n){"use strict";n.r(i);var e=function(t){return this.data={},this.form=jQuery(t),this.pushes={},this.init()};e.prototype={patterns:{validate:/^[a-z_-][a-z0-9_-]*(?:\[(?:\d*|[a-z0-9_-]+)\])*$/i,key:/[a-z0-9_-]+|(?=\[\])/gi,named:/^[a-z0-9_-]+$/i,push:/^$/,fixed:/^\d+$/},addPair:function(t){this.patterns.validate.test(t.name)&&(this.data=jQuery.extend(!0,this.data,this.makeObject(t.name,this.encode(t))))},build:function(t,i,n){return t[i]=n,t},encode:function(t){switch(jQuery('[name="'+t.name+'"]',this.form).attr("type")){case"checkbox":return"on"===t.value||t.value;default:return t.value}},incrementPush:function(t){return void 0===this.pushes[t]&&(this.pushes[t]=0),this.pushes[t]++},init:function(){var t=this.form.serializeArray();if(jQuery.isArray(t))for(var i=0,n=t.length;i<n;i++)this.addPair(t[i]);return this.data},makeObject:function(t,i){for(var n,e=t.match(this.patterns.key);void 0!==(n=e.pop());)if(this.patterns.push.test(n)){var s=this.incrementPush(t.replace(/\[\]$/,""));i=this.build([],s,i)}else this.patterns.fixed.test(n)?i=this.build([],n,i):this.patterns.named.test(n)&&(i=this.build({},n,i));return i}};var s=e,r=function(t,i,n){this.event=i||null,this.form=n||null,this.notice=null,this.request=t||{}};r.prototype={post:function(t){this.event?this.Y(t):this.X(t)},tt:function(t){var i={action:GLSR.action,_ajax_request:!0};if(this.form){var n=new s(this.form);n[GLSR.nameprefix]&&(this.request=n[GLSR.nameprefix])}return this.it(t),i[GLSR.nameprefix]=this.request,i},it:function(t){this.request._nonce||(GLSR.nonce[this.request._action]?this.request._nonce=GLSR.nonce[this.request._action]:t&&(this.request._nonce=t.closest("form").find("#_wpnonce").val()))},X:function(t,i){jQuery.post(GLSR.ajaxurl,this.tt(i)).done((function(n){"function"==typeof t&&t(n.data,n.success),i&&i.prop("disabled",!1)})).always((function(t){t.data?t.data.notices&&GLSR.notices.add(t.data.notices):GLSR.notices.add('<div class="notice notice-error inline is-dismissible"><p>Unknown error.</p></div>')}))},Y:function(t){this.event.preventDefault();var i=jQuery(this.event.currentTarget);i.is(":disabled")||(i.prop("disabled",!0),this.X(t,i))}};var o=r,a=n(1),u=n.n(a),c=function(){"object"===u()(jQuery.wp)&&"function"==typeof jQuery.wp.wpColorPicker&&jQuery(document).find("input[type=text].color-picker-hex").each((function(){jQuery(this).wpColorPicker(jQuery(this).data("colorpicker")||{})}))},h=function(t){this.el=document.querySelector(t),this.el&&(this.depends=this.el.querySelectorAll("[data-depends]"),this.depends.length&&this.k())};h.prototype={nt:function(t){var i=t.getAttribute("data-depends");if(i)try{return JSON.parse(i)}catch(t){return}},k:function(){for(var t=this.el.elements,i=0;i<t.length;i++)~["INPUT","SELECT"].indexOf(t[i].nodeName)&&t[i].addEventListener("change",this.Z.bind(this))},et:function(t,i){var n=!1;i=[].concat(i);var e=this.el.querySelectorAll('[name="'+t+'"]');return[].map.call(e,function(t){var e=~this.st(i).indexOf(this.rt(t.value));~["checkbox","radio"].indexOf(t.type)?t.checked&&e&&(n=!0):e&&(n=!0)}.bind(this)),n},rt:function(t){return!!~["true","on","yes","1"].indexOf(t)||!~["false","off","no","0"].indexOf(t)&&t},st:function(t){return t.map(this.rt)},Z:function(t){this.depends.forEach(function(i){var n=this.nt(i);if(n&&~n.map((function(t){return t.name})).indexOf(t.currentTarget.name)){var e=!0;n.forEach(function(t){this.et(t.name,t.value)||(e=!1)}.bind(this)),this.ot(i,e)}}.bind(this))},ot:function(t,i){var n=t.closest(".glsr-setting-field");n&&n.classList[i?"remove":"add"]("hidden")}};var l=h,f=function(){jQuery(".glsr-metabox-field .glsr-toggle__input").on("change",this.at.bind(this)),jQuery(".glsr-metabox-field input[type=url]").on("change",this.ut.bind(this))};f.prototype={ut:function(t){var i=jQuery(t.currentTarget);this.ct(i.parent().find("img"),i.val())},at:function(t){var i=t.currentTarget.checked;jQuery(".glsr-input-value").each(function(t,n){if(i)jQuery(n).data("value",n.value);else{if(n.value=jQuery(n).data("value"),"url"!==n.type)return;this.ct(jQuery(n).parent().find("img"),n.value)}}.bind(this)),jQuery(".glsr-input-value").prop("disabled",!i),GLSR.stars.rebuild()},ct:function(t,i){if(t){var n=new Image;n.src=i,n.onerror=function(){t.attr("src",t.data("fallback"))},n.onload=function(){t.attr("src",n.src)}}}};var d=f,p=function(){this.k()};p.prototype={add:function(t){t&&(jQuery("#glsr-notices").length||(jQuery("#message.notice").remove(),jQuery("form#post").before('<div id="glsr-notices" />')),jQuery("#glsr-notices").html(t),jQuery(document).trigger("wp-updates-notice-added"))},k:function(){jQuery(".glsr-notice[data-dismiss]").on("click.wp-dismiss-notice",this.ht.bind(this))},ht:function(t){var i={};i[GLSR.nameprefix]={_action:"dismiss-notice",notice:jQuery(t.currentTarget).data("dismiss")},wp.ajax.post(GLSR.action,i)}};var v=p,g=function(){this.el=jQuery("#pinned-status-select"),this.el&&(this.cancel=jQuery("a.cancel-pinned-status"),this.cancel.on("click",this.lt.bind(this)),this.edit=jQuery("a.edit-pinned-status"),this.edit.on("click",this.ft.bind(this)),this.save=jQuery("a.save-pinned-status"),this.save.on("click",this.dt.bind(this))),jQuery("td.column-is_pinned i.pin-review").on("click",this.pt.bind(this))};g.prototype={vt:function(){this.el.slideUp("fast"),this.edit.show().focus()},lt:function(t){t.preventDefault(),this.vt(),this.el.find("select").val("0"===jQuery("#hidden-pinned-status").val()?1:0)},ft:function(t){t.preventDefault(),this.el.is(":hidden")&&(this.el.slideDown("fast",function(){this.el.find("select").focus()}.bind(this)),this.edit.hide())},dt:function(t){t.preventDefault(),this.vt(),this.target=t.currentTarget;var i={_action:"toggle-pinned",id:jQuery("#post_ID").val(),pinned:jQuery("#pinned-status").val()};new o(i).post(this.gt.bind(this))},pt:function(t){t.preventDefault(),this.target=t.currentTarget;var i={_action:"toggle-pinned",id:t.currentTarget.getAttribute("data-id")};jQuery(this.target).addClass("spinner is-active").removeClass("dashicons-sticky"),new o(i).post(this.yt.bind(this))},gt:function(t){jQuery("#pinned-status").val(0|!t.pinned),jQuery("#hidden-pinned-status").val(0|t.pinned),jQuery("#pinned-status-text").text(t.pinned?this.target.dataset.yes:this.target.dataset.no),GLSR.notices.add(t.notices)},yt:function(t){this.target.classList[t.pinned?"add":"remove"]("pinned"),jQuery(this.target).removeClass("spinner is-active").addClass("dashicons-sticky")}};var m=g,y=function(){jQuery.each(GLSR.pointers,function(t,i){this.k(i)}.bind(this))};y.prototype={bt:function(t){jQuery.post(GLSR.ajaxurl,{action:"dismiss-wp-pointer",pointer:t})},k:function(t){jQuery(t.target).pointer({content:t.options.content,position:t.options.position,close:this.bt.bind(null,t.id)}).pointer("open").pointer("sendToTop"),jQuery(document).on("wp-window-resized",(function(){jQuery(t.target).pointer("reposition")}))}};var b=y,w=n(3),j=n.n(w),k=(n(10),n(11),n(12),n(13),n(14),n(15),n(16),function(t,i){this.el=jQuery(t),this.options=i,this.searchTerm=null,this.k()});k.prototype={defaults:{action:null,exclude:[],onInit:null,onResultClick:null,results:{},selected:-1,selectedClass:"glsr-selected-result",selectorEntries:".glsr-strings-table tbody",selectorResults:".glsr-search-results",selectorSearch:".glsr-search-input"},k:function(){this.options=jQuery.extend({},this.defaults,this.options),this.el.length&&(this.options.entriesEl=this.el.parent().find(this.options.selectorEntries),this.options.resultsEl=this.el.find(this.options.selectorResults),this.options.searchEl=this.el.find(this.options.selectorSearch),this.options.searchEl.attr("aria-describedby","live-search-desc"),"function"==typeof this.options.onInit&&this.options.onInit.call(this),this.S())},S:function(){this.options.searchEl.on("input",_.debounce(this.wt.bind(this),500)),this.options.searchEl.on("keyup",this._t.bind(this)),this.options.searchEl.on("keydown keypress",(function(t){GLSR.keys.ENTER===t.which&&t.preventDefault()})),jQuery(document).on("click",this.jt.bind(this)),jQuery(document).on("keydown",this.kt.bind(this))},St:function(){void 0!==this.searchRequest&&this.searchRequest.abort()},Qt:function(){this.St(),this.options.resultsEl.empty(),this.options.resultsEl.removeClass("is-active"),this.el.removeClass("is-active"),jQuery("body").removeClass("glsr-focus")},xt:function(t){var i=this.options.entriesEl.children("tr").eq(t),n=this;i.find("td").css({backgroundColor:"#faafaa"}),i.fadeOut(350,(function(){jQuery(this).remove(),n.options.results={},n.Ft(),n.Pt()}))},At:function(t){jQuery("body").addClass("glsr-focus"),this.options.resultsEl.append(t),this.options.resultsEl.children("span").on("click",this.Rt.bind(this))},$t:function(){this.options.entriesEl.on("click","a.delete",this.Lt.bind(this)),this.options.entriesEl.sortable({items:"tr",tolerance:"pointer",start:function(t,i){i.placeholder.height(i.helper[0].scrollHeight)},sort:function(t,i){var n=t.pageY-jQuery(this).offsetParent().offset().top-i.helper.outerHeight(!0)/2;i.helper.css({top:n+"px"})}})},Ct:function(t){this.options.selected+=t,this.options.results.removeClass(this.options.selectedClass),this.options.selected<0&&(this.options.selected=-1,this.options.searchEl.focus()),this.options.selected>=this.options.results.length&&(this.options.selected=this.options.results.length-1),this.options.selected>=0&&this.options.results.eq(this.options.selected).addClass(this.options.selectedClass).focus()},jt:function(t){jQuery(t.target).find(this.el).length&&jQuery("body").hasClass("glsr-focus")&&this.Qt()},kt:function(t){if(!jQuery.isEmptyObject(this.options.results)){if(GLSR.keys.ESC===t.which&&this.Qt(),GLSR.keys.ENTER===t.which||GLSR.keys.SPACE===t.which){var i=this.options.resultsEl.find("."+this.options.selectedClass);i&&i.trigger("click")}GLSR.keys.UP===t.which&&(t.preventDefault(),this.Ct(-1)),GLSR.keys.DOWN===t.which&&(t.preventDefault(),this.Ct(1))}},Lt:function(t){t.preventDefault(),this.xt(jQuery(t.currentTarget).closest("tr").index())},Rt:function(t){t.preventDefault(),"function"==typeof this.options.onResultClick&&this.options.onResultClick.call(this,t),this.Qt()},wt:function(t){if(this.St(),this.searchTerm===t.currentTarget.value&&this.options.results.length)return this.At(this.options.results);if(this.options.resultsEl.empty(),this.options.selected=-1,this.searchTerm=t.currentTarget.value,""===this.searchTerm)return this.zt();this.el.addClass("is-active");var i={};i[GLSR.nameprefix]={_action:this.options.action,_nonce:this.el.find("#_search_nonce").val(),exclude:this.options.exclude,search:this.searchTerm},this.searchRequest=wp.ajax.post(GLSR.action,i).done(function(t){this.el.removeClass("is-active"),this.At(t.items?t.items:t.empty),this.options.results=this.options.resultsEl.children(),this.options.resultsEl.addClass("is-active"),delete this.searchRequest}.bind(this))},_t:function(t){GLSR.keys.ESC===t.which&&this.zt(),GLSR.keys.ENTER===t.which&&(this.wt(t),t.preventDefault())},Et:function(t){t.preventDefault();var i=jQuery(t.currentTarget).closest(".glsr-assigned-entry");i.find("a").css({color:"#c00"}),i.fadeOut("fast",(function(){i.remove()}))},Ft:function(){var t=this;this.options.exclude=[],this.options.entriesEl.children("tr").each((function(i){jQuery(this).find(".glsr-string-td2").children().filter(":input").each((function(){var n=jQuery(this),e=n.attr("name").replace(/\[\d+\]/i,"["+i+"]");n.attr("name",e),n.is("[data-id]")&&t.options.exclude.push({id:n.val()})}))}))},zt:function(){this.Qt(),this.options.results={},this.options.searchEl.val("")},Pt:function(){var t=this.options.entriesEl.children().length>0?"remove":"add";this.options.entriesEl.parent()[t+"Class"]("glsr-hidden")}};var S=k,Q=function(t){this.current=null,this.editor=null,this.create=function(t){if(this.editor=tinymce.get(t),this.editor){var i={_action:"mce-shortcode",shortcode:this.current};new o(i).post(this.Gt.bind(this))}};var i=document.querySelectorAll(t);i.length&&i.forEach(function(t){var i=t.querySelector("button"),n=t.querySelectorAll(".mce-menu-item");i&&n.length&&this.k(t,i,n)}.bind(this))};Q.prototype={Tt:{},Ot:[],k:function(t,i,n){document.addEventListener("click",this.Dt.bind(this,t,i)),i.addEventListener("click",this.It.bind(this,t,i)),n.forEach(function(n){n.addEventListener("click",this.Nt.bind(this,t,i))}.bind(this))},Mt:function(){tinymce.execCommand("GLSR_Shortcode")},Vt:function(){jQuery("#scTemp").length?this.Mt():(jQuery("body").append('<textarea id="scTemp" style="display:none!important;"/>'),tinymce.init({elements:"scTemp",external_plugins:GLSR.tinymce,mode:"exact",plugins:["glsr_shortcode","wplink"]}),setTimeout(function(){this.Mt()}.bind(this),200))},bt:function(t,i){jQuery(i).removeClass("active"),jQuery(t).find(".glsr-mce-menu").hide()},u:function(){var t=jQuery("#scTemp");t.length&&(tinymce.get("scTemp").remove(),t.remove()),this.Tt={},this.Ot=[]},Gt:function(t){if(t){if(0===t.body.length)return window.send_to_editor("["+t.shortcode+"]"),void this.u();var i=this.Zt(t);t.ok.constructor===Array&&(i.buttons[0].text=t.ok[0],i.buttons[0].onclick="close",delete i.buttons[1]),this.editor.windowManager.open(i)}},Wt:function(t){for(var i in this.Tt=t,this.Ot=[],t)t.hasOwnProperty(i)&&(this.qt(i),this.Bt(i),this.Ht(i));this.Tt.hide=this.Ot.join(",")},qt:function(t){"display"!==t||jQuery.isNumeric(this.Tt[t])||(this.Tt[t]="")},Bt:function(t){if(GLSR.hideoptions.hasOwnProperty(this.current)){var i=t.substring("hide_".length);-1!==Object.keys(GLSR.hideoptions[this.current]).indexOf(i)&&(this.Tt[t]&&this.Ot.push(i),delete this.Tt[t])}},Ht:function(t){"id"===t&&(this.Tt[t]=(+new Date).toString(36))},Dt:function(t,i,n){jQuery(n.target).closest(jQuery(t)).length||this.bt(t,i)},It:function(t,i,n){n.preventDefault(),n.currentTarget.classList.contains("active")?this.bt(t,i):this.Kt(t,i)},Nt:function(t,i,n){n.preventDefault(),this.current=n.currentTarget.dataset.shortcode,this.current&&(tinymce.get(window.wpActiveEditor)?this.Mt():this.Vt(),setTimeout(function(){this.bt(t,i)}.bind(this),100))},Kt:function(t,i){jQuery(i).addClass("active"),jQuery(t).find(".glsr-mce-menu").show()},Ut:function(t){return[{classes:"btn glsr-btn primary",onclick:this.Jt.bind(this),text:t.ok},{onclick:"close",text:t.close}]},Zt:function(t){return{title:t.title,body:t.body,classes:"glsr-mce-popup",minWidth:320,buttons:this.Ut(t),onsubmit:this.Yt.bind(this,t),onclose:this.u.bind(this)}},Yt:function(t,i){var n="";for(var e in this.Wt(i.data),this.Tt)this.Tt.hasOwnProperty(e)&&""!==this.Tt[e]&&(n+=" "+e+'="'+this.Tt[e]+'"');window.send_to_editor("["+t.shortcode+n+"]")},Jt:function(){var t=this.editor.windowManager.getWindows()[0];this.Xt(t)&&t.submit()},Xt:function(t){var i,n=!0,e=GLSR.shortcodes[this.current];for(var s in e)if(e.hasOwnProperty(s)&&void 0!==(i=t.find("#"+s)[0])&&""===i.state.data.value){n=!1,alert(e[s]);break}return n}};var x=Q,F=n(2),P=n.n(F),A=function(t){var i=document.querySelectorAll(t);i.length&&i.forEach(function(t){t.addEventListener("click",this.ht)}.bind(this))};A.prototype={ht:function(t){var i=t.currentTarget.href.match(/post=([0-9]+)/),n=t.currentTarget.href.match(/action=([a-z]+)/);if(null!==i&&null!==n){var e={_action:"toggle-status",_nonce:GLSR.nonce["toggle-status"],post_id:i[1],status:n[1]};new o(e,t).post((function(i){if(i.class){var n=jQuery(t.target);n.closest("tr").removeClass("status-pending status-publish").addClass(i.class),n.closest("td.column-title").find("strong").html(i.link),i.counts&&(n.closest(".wrap").find("ul.subsubsub").html(i.counts),jQuery("#menu-posts-site-review").find(".awaiting-mod").removeClass().addClass("awaiting-mod count-"+i.pending).find(".unapproved-count").html(i.pending))}}))}}};var R=A,$=function(){this.button=jQuery("button#sync-reviews"),this.progressbar=jQuery(".glsr-progress"),this.service=null,jQuery("form.glsr-form-sync").on("click","#sync-reviews",this.ti.bind(this)),jQuery(document).on("wp-window-resized",this.ii),jQuery(window).on("hashchange",this.ii),this.ii()};$.prototype={ni:function(t){jQuery(".service-"+this.service+" td.column-last_sync").text(t.last_sync),jQuery(".service-"+this.service+" td.column-total_fetched a").text(t.total),this.ei(!1)},ti:function(t){t.preventDefault(),this.service=jQuery('[name="'+GLSR.nameprefix+'[service]"]').val(),this.service&&(this.ei(!0),this.si())},ii:function(){var t=jQuery(".glsr-progress").width();t&&jQuery(".glsr-progress span").width(t)},si:function(){var t={_action:"sync-reviews",service:this.service,stage:"fetch"};new o(t).post(this.ri.bind(this))},ri:function(t){var i={_action:"sync-reviews",job_id:t.job_id,service:this.service,stage:"progress"},n=t.finished?this.oi.bind(this,t):this.ri.bind(this);this.ai(t.message),this.ui(t.percent),setTimeout((function(){new o(i).post(n)}),1500)},oi:function(t){var i=0;try{i=t.meta.pagination.current_page}catch(t){}var n={_action:"sync-reviews",page:i+1,service:this.service,stage:"reviews"};this.ai(t.message),t.percent_synced&&t.percent_synced>=100?this.ni(t):new o(n).post(this.oi.bind(this))},ai:function(t){jQuery(".glsr-progress-status",this.progressbar).text(t)},ui:function(t){t=(t||0)+"%",jQuery(".glsr-progress-bar",this.progressbar).outerWidth(t)},ei:function(t){if(!0===t&&(this.ai(this.progressbar.data("active-text")),this.ui(),this.button.prop("disabled",!0),window.requestAnimationFrame(function(){this.progressbar.addClass("active")}.bind(this))),!1===t)return this.service=null,this.button.prop("disabled",!1),void this.progressbar.removeClass("active");window.requestAnimationFrame(this.ei.bind(this))}};var L=$,C=function(t){this.options=jQuery.extend({},this.defaults,t),this.active=document.querySelector("input[name=_active_tab]"),this.referrer=document.querySelector("input[name=_wp_http_referer]"),this.tabs=document.querySelectorAll(this.options.tabSelector),this.views=document.querySelectorAll(this.options.viewSelector),this.active&&this.referrer&&this.tabs&&this.views&&this.k()};C.prototype={defaults:{tabSelector:".glsr-nav-tab",viewSelector:".glsr-nav-view"},k:function(){var t=this;jQuery(window).on("hashchange",t.ci.bind(t)),[].forEach.call(t.tabs,function(i,n){(location.hash?i.getAttribute("href").slice(1)===location.hash.slice(5):0===n)&&t.hi(i),i.addEventListener("click",t.ht.bind(t)),i.addEventListener("touchend",t.ht.bind(t))}.bind(t)),jQuery(t.options.viewSelector).on("click","a",(function(){var i=jQuery(this).data("expand");localStorage.setItem("glsr-expand",i),t.li(jQuery(i))})),jQuery(window).on("load",(function(){t.li(jQuery(localStorage.getItem("glsr-expand")))}))},fi:function(t){return t?"add":"remove"},ht:function(t){t.preventDefault();var i=t.currentTarget;i.blur(),this.di(i),this.hi(i),location.hash="tab-"+i.getAttribute("href").slice(1)},ci:function(){for(var t=location.hash.split("#tab-")[1],i=0;i<this.views.length;i++)if(t===this.views[i].id){this.hi(this.tabs[i]);break}},li:function(t){if(t.length){var i=t.parent().parent();i.removeClass("collapsed"),this.pi(i),i.removeClass("collapsed"),t.parent().removeClass("closed").find(".glsr-accordion-trigger").attr("aria-expanded",!0),window.setTimeout((function(){t.parent()[0].scrollIntoView({behavior:"smooth",block:"center"}),localStorage.removeItem("glsr-expand")}),10)}},vi:function(t){var i=this.referrer.value.split("#")[0]+"#tab-"+this.views[t].id;this.referrer.value=i},hi:function(t){[].forEach.call(this.tabs,function(i,n){var e=this.fi(i===t);"add"===e&&(this.active.value=this.views[n].id,this.vi(n),this.gi(n)),i.classList[e]("nav-tab-active")}.bind(this))},gi:function(t){[].forEach.call(this.views,function(i,n){var e=this.fi(n!==t);i.classList[e]("ui-tabs-hide")}.bind(this))},pi:function(t){var i=t.hasClass("collapsed")?"remove":"add";t[i+"Class"]("collapsed").find(".glsr-card.postbox")[i+"Class"]("closed").find(".glsr-accordion-trigger").attr("aria-expanded","add"!==i)},di:function(t){if(t.classList.contains("nav-tab-active")){var i=jQuery(t.getAttribute("href"));this.pi(i)}}};var z=C,E=function(){var t=document.querySelector("#contentdiv > textarea");t&&(this.mi(t),jQuery(document).on("wp-window-resized.editor-expand",function(){this.mi(t)}.bind(this)))};E.prototype={mi:function(t){var i=t.scrollHeight>320?t.scrollHeight:320;t.style.height="auto",t.style.height=i+"px"}};var G=E,T=function(){jQuery("form").on("click","#clear-console",this.yi,this.ht.bind(this)),jQuery("form").on("click","#fetch-console",this.yi,this.ht.bind(this)),jQuery("form").on("click","[data-ajax-click]",this.ht.bind(this));var t=jQuery("input[data-alt]");t.length&&(jQuery(document).on("keydown",this.bi.bind(this,t)),jQuery(document).on("keyup",this.wi.bind(this,t)))};T.prototype={yi:function(t,i){i&&jQuery("#log-file").val(t.console)},ht:function(t){new o({},t,t.currentTarget.closest("form")).post((function(i,n){"function"==typeof t.data&&t.data(i,n),jQuery("html, body").animate({scrollTop:0},500),jQuery("#glsr-notices").on("click","a",(function(){localStorage.setItem("glsr-expand",jQuery(this).data("expand"))})),jQuery('.glsr-notice[data-notice="'+jQuery(t.currentTarget).data("remove-notice")+'"]').remove()}))},bi:function(t,i){GLSR.keys.ALT!==i.keyCode||i.repeat||(t.closest("form").find("[data-alt-text]").addClass("alt"),t.val(1))},wi:function(t,i){GLSR.keys.ALT===i.keyCode&&(t.closest("form").find("[data-alt-text]").removeClass("alt"),t.val(0))}};var O=T;GLSR.keys={ALT:18,DOWN:40,ENTER:13,ESC:27,SPACE:32,UP:38},jQuery((function(t){j.a.highlightAll(),GLSR.notices=new v,GLSR.shortcode=new x(".glsr-mce"),GLSR.stars=new P.a(document.querySelectorAll("select.glsr-star-rating"),{showText:!1}),c(),new l("form.glsr-form"),new d,new m,new b,new S("#glsr-search-posts",{action:"search-posts",onInit:function(){this.el.find(".glsr-remove-button").on("click",this.Et.bind(this))},onResultClick:function(i){var n=t(i.currentTarget),e=wp.template("glsr-assigned-posts"),s={id:n.data("id"),name:"post_ids[]",url:n.data("url"),title:n.text()};if(e){var r=t(e(s));r.find(".glsr-remove-button").on("click",this.Et.bind(this)),this.el.find(".glsr-selected-entries").append(r),this.zt()}this.options.searchEl.focus()}}),new S("#glsr-search-users",{action:"search-users",onInit:function(){this.el.find(".glsr-remove-button").on("click",this.Et.bind(this))},onResultClick:function(i){var n=t(i.currentTarget),e=wp.template("glsr-assigned-users"),s={id:n.data("id"),name:"user_ids[]",url:n.data("url"),title:n.text()};if(e){var r=t(e(s));r.find(".glsr-remove-button").on("click",this.Et.bind(this)),this.el.find(".glsr-selected-entries").append(r),this.zt()}this.options.searchEl.focus()}}),new S("#glsr-search-translations",{action:"search-translations",onInit:function(){this.$t()},onResultClick:function(i){var n=t(i.currentTarget),e=n.data("entry"),s=wp.template("glsr-string-"+(e.p1?"plural":"single"));e.index=this.options.entriesEl.children().length,e.prefix=this.options.resultsEl.data("prefix"),s&&(this.options.entriesEl.append(s(e)),this.options.exclude.push({id:e.id}),this.options.results=this.options.results.filter((function(t,i){return i!==n.get(0)}))),this.Pt()}}),new R("a.glsr-toggle-status"),new z,new G,new O,new L;var i=function(){this.dataset.glsrTrack=this.value};t("select[data-glsr-track]").each(i),t("select[data-glsr-track]").on("change",i),t(".glsr-card.postbox:not(.open)").addClass("closed").find(".glsr-accordion-trigger").attr("aria-expanded",!1).closest(".glsr-nav-view").addClass("collapsed"),t(".glsr-support-step").not(":checked").length<1&&t(".glsr-card-result").removeClass("hidden"),t(".glsr-support-step").on("change",(function(){var i=t(".glsr-support-step").not(":checked").length>0?"add":"remove";t(".glsr-card-result")[i+"Class"]("hidden")})),t(".glsr-card.postbox .glsr-card-heading").on("click",(function(){var i=t(this).parent(),n=i.closest(".glsr-nav-view"),e=i.hasClass("closed")?"remove":"add";i[e+"Class"]("closed").find(".glsr-accordion-trigger").attr("aria-expanded","add"!==e),e=n.find(".glsr-card.postbox").not(".closed").length>0?"remove":"add",n[e+"Class"]("collapsed")}))}))}]);
assets/scripts/site-reviews-blocks.js CHANGED
@@ -1,2 +1,2 @@
1
  /*! For license information please see site-reviews-blocks.js.LICENSE.txt */
2
- !function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=2)}([,function(e,t,n){var r=n(3),i=n(4),o=n(5);e.exports=function(e,t){return r(e)||i(e,t)||o()}},function(e,t,n){n(8),n(40),n(45),n(47),n(49),n(51),n(53),n(55),n(57),n(59),n(61),n(63),e.exports=n(65)},function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e)){var n=[],r=!0,i=!1,o=void 0;try{for(var u,a=e[Symbol.iterator]();!(r=(u=a.next()).done)&&(n.push(u.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{r||null==a.return||a.return()}finally{if(i)throw o}}return n}}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}},function(e,t,n){"use strict";var r=n(7),i="function"==typeof Symbol&&Symbol.for,o=i?Symbol.for("react.element"):60103,u=i?Symbol.for("react.portal"):60106,a=i?Symbol.for("react.fragment"):60107,l=i?Symbol.for("react.strict_mode"):60108,s=i?Symbol.for("react.profiler"):60114,c=i?Symbol.for("react.provider"):60109,f=i?Symbol.for("react.context"):60110,p=i?Symbol.for("react.forward_ref"):60112,v=i?Symbol.for("react.suspense"):60113,b=i?Symbol.for("react.memo"):60115,y=i?Symbol.for("react.lazy"):60116,h="function"==typeof Symbol&&Symbol.iterator;function g(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var w={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},d={};function m(e,t,n){this.props=e,this.context=t,this.refs=d,this.updater=n||w}function j(){}function O(e,t,n){this.props=e,this.context=t,this.refs=d,this.updater=n||w}m.prototype.isReactComponent={},m.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(g(85));this.updater.enqueueSetState(this,e,t,"setState")},m.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},j.prototype=m.prototype;var S=O.prototype=new j;S.constructor=O,r(S,m.prototype),S.isPureReactComponent=!0;var _={current:null},C=Object.prototype.hasOwnProperty,x={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,n){var r,i={},u=null,a=null;if(null!=t)for(r in void 0!==t.ref&&(a=t.ref),void 0!==t.key&&(u=""+t.key),t)C.call(t,r)&&!x.hasOwnProperty(r)&&(i[r]=t[r]);var l=arguments.length-2;if(1===l)i.children=n;else if(1<l){for(var s=Array(l),c=0;c<l;c++)s[c]=arguments[c+2];i.children=s}if(e&&e.defaultProps)for(r in l=e.defaultProps)void 0===i[r]&&(i[r]=l[r]);return{$$typeof:o,type:e,key:u,ref:a,props:i,_owner:_.current}}function R(e){return"object"==typeof e&&null!==e&&e.$$typeof===o}var $=/\/+/g,D=[];function L(e,t,n,r){if(D.length){var i=D.pop();return i.result=e,i.keyPrefix=t,i.func=n,i.context=r,i.count=0,i}return{result:e,keyPrefix:t,func:n,context:r,count:0}}function I(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>D.length&&D.push(e)}function A(e,t,n){return null==e?0:function e(t,n,r,i){var a=typeof t;"undefined"!==a&&"boolean"!==a||(t=null);var l=!1;if(null===t)l=!0;else switch(a){case"string":case"number":l=!0;break;case"object":switch(t.$$typeof){case o:case u:l=!0}}if(l)return r(i,t,""===n?"."+E(t,0):n),1;if(l=0,n=""===n?".":n+":",Array.isArray(t))for(var s=0;s<t.length;s++){var c=n+E(a=t[s],s);l+=e(a,c,r,i)}else if(null===t||"object"!=typeof t?c=null:c="function"==typeof(c=h&&t[h]||t["@@iterator"])?c:null,"function"==typeof c)for(t=c.call(t),s=0;!(a=t.next()).done;)l+=e(a=a.value,c=n+E(a,s++),r,i);else if("object"===a)throw r=""+t,Error(g(31,"[object Object]"===r?"object with keys {"+Object.keys(t).join(", ")+"}":r,""));return l}(e,"",t,n)}function E(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))}(e.key):t.toString(36)}function z(e,t){e.func.call(e.context,t,e.count++)}function T(e,t,n){var r=e.result,i=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?G(e,r,n,(function(e){return e})):null!=e&&(R(e)&&(e=function(e,t){return{$$typeof:o,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(e,i+(!e.key||t&&t.key===e.key?"":(""+e.key).replace($,"$&/")+"/")+n)),r.push(e))}function G(e,t,n,r,i){var o="";null!=n&&(o=(""+n).replace($,"$&/")+"/"),A(e,T,t=L(t,o,r,i)),I(t)}var M={current:null};function B(){var e=M.current;if(null===e)throw Error(g(321));return e}var q={ReactCurrentDispatcher:M,ReactCurrentBatchConfig:{suspense:null},ReactCurrentOwner:_,IsSomeRendererActing:{current:!1},assign:r};t.Children={map:function(e,t,n){if(null==e)return e;var r=[];return G(e,r,null,t,n),r},forEach:function(e,t,n){if(null==e)return e;A(e,z,t=L(null,null,t,n)),I(t)},count:function(e){return A(e,(function(){return null}),null)},toArray:function(e){var t=[];return G(e,t,null,(function(e){return e})),t},only:function(e){if(!R(e))throw Error(g(143));return e}},t.Component=m,t.Fragment=a,t.Profiler=s,t.PureComponent=O,t.StrictMode=l,t.Suspense=v,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=q,t.cloneElement=function(e,t,n){if(null==e)throw Error(g(267,e));var i=r({},e.props),u=e.key,a=e.ref,l=e._owner;if(null!=t){if(void 0!==t.ref&&(a=t.ref,l=_.current),void 0!==t.key&&(u=""+t.key),e.type&&e.type.defaultProps)var s=e.type.defaultProps;for(c in t)C.call(t,c)&&!x.hasOwnProperty(c)&&(i[c]=void 0===t[c]&&void 0!==s?s[c]:t[c])}var c=arguments.length-2;if(1===c)i.children=n;else if(1<c){s=Array(c);for(var f=0;f<c;f++)s[f]=arguments[f+2];i.children=s}return{$$typeof:o,type:e.type,key:u,ref:a,props:i,_owner:l}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:f,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:c,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:p,render:e}},t.isValidElement=R,t.lazy=function(e){return{$$typeof:y,_ctor:e,_status:-1,_result:null}},t.memo=function(e,t){return{$$typeof:b,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return B().useCallback(e,t)},t.useContext=function(e,t){return B().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return B().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return B().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return B().useLayoutEffect(e,t)},t.useMemo=function(e,t){return B().useMemo(e,t)},t.useReducer=function(e,t,n){return B().useReducer(e,t,n)},t.useRef=function(e){return B().useRef(e)},t.useState=function(e){return B().useState(e)},t.version="16.13.1"},function(e,t,n){"use strict";var r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function u(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,a,l=u(e),s=1;s<arguments.length;s++){for(var c in n=Object(arguments[s]))i.call(n,c)&&(l[c]=n[c]);if(r){a=r(n);for(var f=0;f<a.length;f++)o.call(n,a[f])&&(l[a[f]]=n[a[f]])}}return l}},function(e,t,n){"use strict";n.r(t);var r=n(9),i=n(1),o=n.n(i),u=wp.components.CheckboxControl,a=wp.element.useState,l=function(e,t,n){var i=[];return jQuery.each(e,(function(e,l){var s=a(!1),c=o()(s,2),f=c[0],p=c[1],v=t.split(",").indexOf(e)>-1;i.push(Object(r.createElement)(u,{className:"glsr-checkbox-control",checked:v||f,label:l,onChange:function(r){p(r),t=_.without(_.without(t.split(","),""),e),r&&t.push(e),n({hide:t.toString()})}}))})),i},s=Object(r.createElement)("svg",{width:"22px",height:"22px",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M11 2l-3 6-6 .75 4.13 4.62-1.13 6.63 6-3 6 3-1.12-6.63 4.12-4.62-6-.75-3-6zm0 2.24l2.34 4.69 4.65.58-3.18 3.56.87 5.15-4.68-2.34v-11.64zm8.28-.894v.963h-3.272v2.691h-1.017v-6.3h4.496v.963h-3.479v1.683h3.272z"})),c=Object(r.createElement)("svg",{width:"22px",height:"22px",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M11 2l-3 6-6 .75 4.13 4.62-1.13 6.63 6-3 6 3-1.12-6.63 4.12-4.62-6-.75-3-6zm0 2.24l2.34 4.69 4.65.58-3.18 3.56.87 5.15-4.68-2.34v-11.64zm3.681-3.54h2.592c1.449 0 2.232.648 2.232 1.823 0 1.071-.819 1.782-2.102 1.827l2.075 2.651h-1.26l-2.007-2.651h-.513v2.651h-1.017v-6.3zm2.565.954h-1.548v1.773h1.548c.819 0 1.202-.297 1.202-.905 0-.599-.405-.869-1.202-.869z"})),f=Object(r.createElement)("svg",{width:"22px",height:"22px",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M11 2l-3 6-6 .75 4.13 4.62-1.13 6.63 6-3 6 3-1.12-6.63 4.12-4.62-6-.75-3-6zm0 2.24l2.34 4.69 4.65.58-3.18 3.56.87 5.15-4.68-2.34v-11.64zm8.415-2.969l-.518.824c-.536-.342-1.13-.54-1.769-.54-.842 0-1.418.365-1.418.941 0 .522.491.725 1.31.842l.437.059c1.022.14 2.03.563 2.03 1.733 0 1.283-1.161 1.985-2.525 1.985-.855 0-1.881-.284-2.534-.846l.554-.81c.432.396 1.247.693 1.976.693.824 0 1.472-.351 1.472-.932 0-.495-.495-.725-1.418-.851l-.491-.068c-.936-.131-1.868-.572-1.868-1.742 0-1.265 1.121-1.967 2.484-1.967.918 0 1.643.257 2.277.68z"})),p=wp.i18n.__,v=[],b={label:"- "+p("Select","site-reviews")+" -",value:""};wp.apiFetch({path:"/site-reviews/v1/categories?per_page=50"}).then((function(e){v.push(b),jQuery.each(e,(function(e,t){v.push({label:t.name,value:t.id})}))}));var y=v,h=wp.i18n.__,g=wp.blocks.registerBlockType,w=wp.editor,d=w.InspectorAdvancedControls,m=w.InspectorControls,j=wp.components,O=j.PanelBody,S=j.SelectControl,C=j.ServerSideRender,x=j.TextControl,k=GLSR.nameprefix+"/form",R=(g(k,{attributes:{assign_to:{default:"",type:"string"},category:{default:"",type:"string"},className:{default:"",type:"string"},hide:{default:"",type:"string"},id:{default:"",type:"string"}},category:GLSR.nameprefix,description:h("Display a review submission form.","site-reviews"),edit:function(e){var t=e.attributes,n=t.assign_to,i=t.category,o=t.hide,u=t.id,a=(e.className,e.setAttributes);return[Object(r.createElement)(m,null,Object(r.createElement)(O,{title:h("Settings","site-reviews")},Object(r.createElement)(x,{help:h('Assign reviews to a post ID. You can also enter "post_id" to use the ID of the current page, or "parent_id" to use the ID of the parent page.',"site-reviews"),label:h("Assign To","site-reviews"),onChange:function(e){return a({assign_to:e})},value:n}),Object(r.createElement)(S,{help:h("Assign reviews to a category.","site-reviews"),label:h("Category","site-reviews"),onChange:function(e){return a({category:e})},options:y,value:i}),l(GLSR.hideoptions.site_reviews_form,o,a))),Object(r.createElement)(d,null,Object(r.createElement)(x,{label:h("Custom ID","site-reviews"),onChange:function(e){return a({id:e})},value:u})),Object(r.createElement)(C,{block:k,attributes:e.attributes})]},example:{},icon:{src:s},keywords:["reviews","form"],save:function(){return null},title:h("Submit a Review","site-reviews")}),{label:"- "+(0,wp.i18n.__)("Select","site-reviews")+" -",value:""}),$=[];wp.apiFetch({path:"/site-reviews/v1/types?per_page=50"}).then((function(e){e.length<2||($.push(R),jQuery.each(e,(function(e,t){$.push({label:t.name,value:t.id})})))}));var D=$,L=wp.i18n.__,I=wp.blocks.registerBlockType,A=wp.editor,E=A.InspectorAdvancedControls,z=A.InspectorControls,T=wp.components,G=T.PanelBody,M=T.RangeControl,B=T.SelectControl,q=T.ServerSideRender,Q=T.TextControl,N=T.ToggleControl,P=GLSR.nameprefix+"/reviews";wp.hooks.addFilter("blocks.getBlockAttributes",P,(function(e,t,n,r){return r&&r.count&&(e.display=r.count),e}));I(P,{attributes:{assigned_to:{default:"",type:"string"},category:{default:"",type:"string"},className:{default:"",type:"string"},display:{default:5,type:"number"},hide:{default:"",type:"string"},id:{default:"",type:"string"},pagination:{default:"",type:"string"},post_id:{default:"",type:"string"},rating:{default:0,type:"number"},schema:{default:!1,type:"boolean"},type:{default:"local",type:"string"}},category:GLSR.nameprefix,description:L("Display your most recent reviews.","site-reviews"),edit:function(e){e.attributes.post_id=jQuery("#post_ID").val();var t=e.attributes,n=t.assigned_to,i=t.category,o=t.display,u=t.hide,a=t.id,s=t.pagination,c=t.rating,f=t.schema,p=t.type,v=(e.className,e.setAttributes);return[Object(r.createElement)(z,null,Object(r.createElement)(G,{title:L("Settings","site-reviews")},Object(r.createElement)(Q,{help:L('Limit reviews to those assigned to this post ID. You can also enter "post_id" to use the ID of the current page, or "parent_id" to use the ID of the parent page.',"site-reviews"),label:L("Assigned To","site-reviews"),onChange:function(e){return v({assigned_to:e})},value:n}),Object(r.createElement)(B,{help:L("Limit reviews to a category.","site-reviews"),label:L("Category","site-reviews"),onChange:function(e){return v({category:e})},options:y,value:i}),Object(r.createElement)(B,{help:L("Pagination should only be enabled once per page.","site-reviews"),label:L("Pagination","site-reviews"),onChange:function(e){return v({pagination:e})},options:[{label:"- "+L("Select","site-reviews")+" -",value:""},{label:L("Enabled","site-reviews"),value:"true"},{label:L("Enabled (using ajax)","site-reviews"),value:"ajax"}],value:s}),Object(r.createElement)(B,{help:L("Limit type of reviews.","site-reviews"),label:L("Type","site-reviews"),onChange:function(e){return v({type:e})},options:D,value:p}),Object(r.createElement)(M,{help:L("Limit reviews to a minimum rating.","site-reviews"),label:L("Minimum Rating","site-reviews"),min:0,max:5,onChange:function(e){return v({rating:e})},value:c}),Object(r.createElement)(M,{help:L("The number of reviews to display.","site-reviews"),label:L("Display","site-reviews"),min:1,max:50,onChange:function(e){return v({display:e})},value:o}),Object(r.createElement)(N,{checked:f,help:L("The schema should only be enabled once per page.","site-reviews"),label:L("Enable the schema?","site-reviews"),onChange:function(e){return v({schema:e})}}),l(GLSR.hideoptions.site_reviews,u,v))),Object(r.createElement)(E,null,Object(r.createElement)(Q,{label:L("Custom ID","site-reviews"),onChange:function(e){return v({id:e})},value:a})),Object(r.createElement)(q,{block:P,attributes:e.attributes})]},example:{attributes:{display:2,pagination:"ajax",rating:0}},icon:{src:c},keywords:["reviews"],save:function(){return null},title:L("Latest Reviews","site-reviews")});var U=wp.i18n.__,Y=wp.blocks.registerBlockType,V=wp.editor.InspectorControls,F=wp.components,H=F.PanelBody,J=F.RangeControl,K=F.SelectControl,W=F.ServerSideRender,X=F.TextControl,Z=F.ToggleControl,ee=GLSR.nameprefix+"/summary";Y(ee,{attributes:{assigned_to:{default:"",type:"string"},category:{default:"",type:"string"},className:{default:"",type:"string"},hide:{default:"",type:"string"},post_id:{default:"",type:"string"},rating:{default:0,type:"number"},schema:{default:!1,type:"boolean"},type:{default:"local",type:"string"}},category:GLSR.nameprefix,description:U("Display a summary of your reviews.","site-reviews"),edit:function(e){e.attributes.post_id=jQuery("#post_ID").val();var t=e.attributes,n=t.assigned_to,i=t.category,o=(t.display,t.hide),u=(t.id,t.pagination,t.rating),a=t.schema,s=t.type,c=(e.className,e.setAttributes);return[Object(r.createElement)(V,null,Object(r.createElement)(H,{title:U("Settings","site-reviews")},Object(r.createElement)(X,{help:U('Limit reviews to those assigned to this post ID. You can also enter "post_id" to use the ID of the current page, or "parent_id" to use the ID of the parent page.',"site-reviews"),label:U("Assigned To","site-reviews"),onChange:function(e){return c({assigned_to:e})},value:n}),Object(r.createElement)(K,{help:U("Limit reviews to a category.","site-reviews"),label:U("Category","site-reviews"),onChange:function(e){return c({category:e})},options:y,value:i}),Object(r.createElement)(K,{help:U("Limit type of reviews.","site-reviews"),label:U("Type","site-reviews"),onChange:function(e){return c({type:e})},options:D,value:s}),Object(r.createElement)(J,{help:U("Limit reviews to a minimum rating.","site-reviews"),label:U("Minimum Rating","site-reviews"),min:0,max:5,onChange:function(e){return c({rating:e})},value:u}),Object(r.createElement)(Z,{checked:a,help:U("The schema should only be enabled once per page.","site-reviews"),label:U("Enable the schema?","site-reviews"),onChange:function(e){return c({schema:e})}}),l(GLSR.hideoptions.site_reviews_summary,o,c))),Object(r.createElement)(W,{block:ee,attributes:e.attributes})]},example:{},icon:{src:f},keywords:["reviews","summary"],save:function(){return null},title:U("Summary","site-reviews")})},function(e,t,n){"use strict";e.exports=n(6)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){},,,,,function(e,t){},,function(e,t){},,function(e,t){},,function(e,t){},,function(e,t){},,function(e,t){},,function(e,t){},,function(e,t){},,function(e,t){},,function(e,t){},,function(e,t){}]);
1
  /*! For license information please see site-reviews-blocks.js.LICENSE.txt */
2
+ !function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=17)}([,,,,function(e,t,n){var r=n(18),i=n(19),s=n(20),a=n(22);e.exports=function(e,t){return r(e)||i(e,t)||s(e,t)||a()}},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}e.exports=n},function(e,t,n){var r=n(25);e.exports=function(e,t){if(null==e)return{};var n,i,s=r(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(i=0;i<a.length;i++)n=a[i],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(s[n]=e[n])}return s}},,,,,,,,,,,function(e,t,n){e.exports=n(27)},function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,s=void 0;try{for(var a,o=e[Symbol.iterator]();!(r=(a=o.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,s=e}finally{try{r||null==o.return||o.return()}finally{if(i)throw s}}return n}}},function(e,t,n){var r=n(21);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}},function(e,t,n){"use strict";var r=n(24),i="function"==typeof Symbol&&Symbol.for,s=i?Symbol.for("react.element"):60103,a=i?Symbol.for("react.portal"):60106,o=i?Symbol.for("react.fragment"):60107,u=i?Symbol.for("react.strict_mode"):60108,l=i?Symbol.for("react.profiler"):60114,c=i?Symbol.for("react.provider"):60109,f=i?Symbol.for("react.context"):60110,d=i?Symbol.for("react.forward_ref"):60112,p=i?Symbol.for("react.suspense"):60113,v=i?Symbol.for("react.memo"):60115,m=i?Symbol.for("react.lazy"):60116,g="function"==typeof Symbol&&Symbol.iterator;function b(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var h={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},w={};function y(e,t,n){this.props=e,this.context=t,this.refs=w,this.updater=n||h}function j(){}function x(e,t,n){this.props=e,this.context=t,this.refs=w,this.updater=n||h}y.prototype.isReactComponent={},y.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(b(85));this.updater.enqueueSetState(this,e,t,"setState")},y.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},j.prototype=y.prototype;var _=x.prototype=new j;_.constructor=x,r(_,y.prototype),_.isPureReactComponent=!0;var O={current:null},S=Object.prototype.hasOwnProperty,C={key:!0,ref:!0,__self:!0,__source:!0};function R(e,t,n){var r,i={},a=null,o=null;if(null!=t)for(r in void 0!==t.ref&&(o=t.ref),void 0!==t.key&&(a=""+t.key),t)S.call(t,r)&&!C.hasOwnProperty(r)&&(i[r]=t[r]);var u=arguments.length-2;if(1===u)i.children=n;else if(1<u){for(var l=Array(u),c=0;c<u;c++)l[c]=arguments[c+2];i.children=l}if(e&&e.defaultProps)for(r in u=e.defaultProps)void 0===i[r]&&(i[r]=u[r]);return{$$typeof:s,type:e,key:a,ref:o,props:i,_owner:O.current}}function I(e){return"object"==typeof e&&null!==e&&e.$$typeof===s}var A=/\/+/g,L=[];function D(e,t,n,r){if(L.length){var i=L.pop();return i.result=e,i.keyPrefix=t,i.func=n,i.context=r,i.count=0,i}return{result:e,keyPrefix:t,func:n,context:r,count:0}}function k(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>L.length&&L.push(e)}function E(e,t,n){return null==e?0:function e(t,n,r,i){var o=typeof t;"undefined"!==o&&"boolean"!==o||(t=null);var u=!1;if(null===t)u=!0;else switch(o){case"string":case"number":u=!0;break;case"object":switch(t.$$typeof){case s:case a:u=!0}}if(u)return r(i,t,""===n?"."+$(t,0):n),1;if(u=0,n=""===n?".":n+":",Array.isArray(t))for(var l=0;l<t.length;l++){var c=n+$(o=t[l],l);u+=e(o,c,r,i)}else if(null===t||"object"!=typeof t?c=null:c="function"==typeof(c=g&&t[g]||t["@@iterator"])?c:null,"function"==typeof c)for(t=c.call(t),l=0;!(o=t.next()).done;)u+=e(o=o.value,c=n+$(o,l++),r,i);else if("object"===o)throw r=""+t,Error(b(31,"[object Object]"===r?"object with keys {"+Object.keys(t).join(", ")+"}":r,""));return u}(e,"",t,n)}function $(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))}(e.key):t.toString(36)}function P(e,t){e.func.call(e.context,t,e.count++)}function G(e,t,n){var r=e.result,i=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?N(e,r,n,(function(e){return e})):null!=e&&(I(e)&&(e=function(e,t){return{$$typeof:s,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(e,i+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(A,"$&/")+"/")+n)),r.push(e))}function N(e,t,n,r,i){var s="";null!=n&&(s=(""+n).replace(A,"$&/")+"/"),E(e,G,t=D(t,s,r,i)),k(t)}var M={current:null};function z(){var e=M.current;if(null===e)throw Error(b(321));return e}var U={ReactCurrentDispatcher:M,ReactCurrentBatchConfig:{suspense:null},ReactCurrentOwner:O,IsSomeRendererActing:{current:!1},assign:r};t.Children={map:function(e,t,n){if(null==e)return e;var r=[];return N(e,r,null,t,n),r},forEach:function(e,t,n){if(null==e)return e;E(e,P,t=D(null,null,t,n)),k(t)},count:function(e){return E(e,(function(){return null}),null)},toArray:function(e){var t=[];return N(e,t,null,(function(e){return e})),t},only:function(e){if(!I(e))throw Error(b(143));return e}},t.Component=y,t.Fragment=o,t.Profiler=l,t.PureComponent=x,t.StrictMode=u,t.Suspense=p,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=U,t.cloneElement=function(e,t,n){if(null==e)throw Error(b(267,e));var i=r({},e.props),a=e.key,o=e.ref,u=e._owner;if(null!=t){if(void 0!==t.ref&&(o=t.ref,u=O.current),void 0!==t.key&&(a=""+t.key),e.type&&e.type.defaultProps)var l=e.type.defaultProps;for(c in t)S.call(t,c)&&!C.hasOwnProperty(c)&&(i[c]=void 0===t[c]&&void 0!==l?l[c]:t[c])}var c=arguments.length-2;if(1===c)i.children=n;else if(1<c){l=Array(c);for(var f=0;f<c;f++)l[f]=arguments[f+2];i.children=l}return{$$typeof:s,type:e.type,key:a,ref:o,props:i,_owner:u}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:f,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:c,_context:e},e.Consumer=e},t.createElement=R,t.createFactory=function(e){var t=R.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:d,render:e}},t.isValidElement=I,t.lazy=function(e){return{$$typeof:m,_ctor:e,_status:-1,_result:null}},t.memo=function(e,t){return{$$typeof:v,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return z().useCallback(e,t)},t.useContext=function(e,t){return z().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return z().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return z().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return z().useLayoutEffect(e,t)},t.useMemo=function(e,t){return z().useMemo(e,t)},t.useReducer=function(e,t,n){return z().useReducer(e,t,n)},t.useRef=function(e){return z().useRef(e)},t.useState=function(e){return z().useState(e)},t.version="16.14.0"},function(e,t,n){"use strict";var r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,s=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,o,u=a(e),l=1;l<arguments.length;l++){for(var c in n=Object(arguments[l]))i.call(n,c)&&(u[c]=n[c]);if(r){o=r(n);for(var f=0;f<o.length;f++)s.call(n,o[f])&&(u[o[f]]=n[o[f]])}}return u}},function(e,t){e.exports=function(e,t){if(null==e)return{};var n,r,i={},s=Object.keys(e);for(r=0;r<s.length;r++)n=s[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}},,function(e,t,n){"use strict";n.r(t);var r=n(29),i=n(4),s=n.n(i),a=wp.components.CheckboxControl,o=wp.element.useState,u=function(e,t,n){var i=[];return jQuery.each(e,(function(e,u){var l=o(!1),c=s()(l,2),f=c[0],d=c[1],p=t.split(",").indexOf(e)>-1;i.push(Object(r.createElement)(a,{className:"glsr-checkbox-control",checked:p||f,label:u,onChange:function(r){d(r),t=_.without(_.without(t.split(","),""),e),r&&t.push(e),n({hide:t.toString()})}}))})),i},l=Object(r.createElement)("svg",{width:"22px",height:"22px",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M11 2l-3 6-6 .75 4.13 4.62-1.13 6.63 6-3 6 3-1.12-6.63 4.12-4.62-6-.75-3-6zm0 2.24l2.34 4.69 4.65.58-3.18 3.56.87 5.15-4.68-2.34v-11.64zm8.28-.894v.963h-3.272v2.691h-1.017v-6.3h4.496v.963h-3.479v1.683h3.272z"})),c=Object(r.createElement)("svg",{width:"22px",height:"22px",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M11 2l-3 6-6 .75 4.13 4.62-1.13 6.63 6-3 6 3-1.12-6.63 4.12-4.62-6-.75-3-6zm0 2.24l2.34 4.69 4.65.58-3.18 3.56.87 5.15-4.68-2.34v-11.64zm3.681-3.54h2.592c1.449 0 2.232.648 2.232 1.823 0 1.071-.819 1.782-2.102 1.827l2.075 2.651h-1.26l-2.007-2.651h-.513v2.651h-1.017v-6.3zm2.565.954h-1.548v1.773h1.548c.819 0 1.202-.297 1.202-.905 0-.599-.405-.869-1.202-.869z"})),f=Object(r.createElement)("svg",{width:"22px",height:"22px",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M11 2l-3 6-6 .75 4.13 4.62-1.13 6.63 6-3 6 3-1.12-6.63 4.12-4.62-6-.75-3-6zm0 2.24l2.34 4.69 4.65.58-3.18 3.56.87 5.15-4.68-2.34v-11.64zm8.415-2.969l-.518.824c-.536-.342-1.13-.54-1.769-.54-.842 0-1.418.365-1.418.941 0 .522.491.725 1.31.842l.437.059c1.022.14 2.03.563 2.03 1.733 0 1.283-1.161 1.985-2.525 1.985-.855 0-1.881-.284-2.534-.846l.554-.81c.432.396 1.247.693 1.976.693.824 0 1.472-.351 1.472-.932 0-.495-.495-.725-1.418-.851l-.491-.068c-.936-.131-1.868-.572-1.868-1.742 0-1.265 1.121-1.967 2.484-1.967.918 0 1.643.257 2.277.68z"})),d=wp.i18n._x,p=[{label:"- "+d("Select","admin-text","site-reviews")+" -",value:""},{label:"- "+d("Select Multiple Post IDs","admin-text","site-reviews")+" -",value:"custom"},{label:d("Assign to the Current Page","admin-text","site-reviews"),value:"post_id"},{label:d("Assign to the Parent Page","admin-text","site-reviews"),value:"parent_id"}],v=wp.i18n._x,m=[],g={label:"- "+v("Select","admin-text","site-reviews")+" -",value:""},b={label:"- "+v("Select Multiple Categories","admin-text","site-reviews")+" -",value:"glsr_custom"};wp.apiFetch({path:"/site-reviews/v1/categories?per_page=50"}).then((function(e){m.push(g),m.push(b),jQuery.each(e,(function(e,t){m.push({label:t.name,value:t.id})}))}));var h=m,w=wp.i18n._x,y=[],j={label:"- "+w("Select","admin-text","site-reviews")+" -",value:""},x={label:"- "+w("Select Multiple Users","admin-text","site-reviews")+" -",value:"glsr_custom"};wp.apiFetch({path:"/wp/v2/users?per_page=50"}).then((function(e){y.push(j),y.push(x),jQuery.each(e,(function(e,t){y.push({label:t.name+" ("+t.slug+")",value:t.id})}))}));var O=y,S=n(5),C=n.n(S),R=n(6),I=n.n(R),A=(wp.i18n._x,wp.components),L=A.BaseControl,D=(A.TextControl,lodash.isEmpty),k=wp.compose.useInstanceId;function E(e){var t=e.children,n=e.custom_value,i=void 0===n?"custom":n,s=e.help,a=e.label,o=e.onChange,u=e.options,l=void 0===u?[]:u,c=e.className,f=e.hideLabelFromVision,d=(e.selectedValue,I()(e,["children","custom_value","help","label","onChange","options","className","hideLabelFromVision","selectedValue"])),p=k(E),v="inspector-select-control-".concat(p),m=d.value;return!D(l)&&Object(r.createElement)(L,{label:a,hideLabelFromVision:f,id:v,help:s,className:c},Object(r.createElement)("select",C()({id:v,className:"components-select-control__input",onChange:function(e){o(e.target.value)},"aria-describedby":s?"".concat(v,"__help"):void 0},d),l.map((function(e,t){return Object(r.createElement)("option",{key:"".concat(e.label,"-").concat(e.value,"-").concat(t),value:e.value,disabled:e.disabled},e.label)}))),i===m&&t)}var $=wp.i18n._x,P=wp.blocks.registerBlockType,G=wp.blockEditor,N=G.InspectorAdvancedControls,M=G.InspectorControls,z=wp.components,U=z.PanelBody,B=(z.SelectControl,z.TextControl),Q=wp.serverSideRender,T=GLSR.nameprefix+"/form",q=(P(T,{attributes:{assign_to:{default:"",type:"string"},assigned_posts:{default:"",type:"string"},assigned_terms:{default:"",type:"string"},assigned_users:{default:"",type:"string"},category:{default:"",type:"string"},className:{default:"",type:"string"},hide:{default:"",type:"string"},id:{default:"",type:"string"},user:{default:"",type:"string"}},category:GLSR.nameprefix,description:$("Display a review form.","admin-text","site-reviews"),edit:function(e){var t=e.attributes,n=t.assign_to,i=t.assigned_posts,s=t.assigned_terms,a=t.assigned_users,o=t.category,l=t.hide,c=t.id,f=t.user,d=(e.className,e.setAttributes),v={assign_to:Object(r.createElement)(E,{label:$("Assign Reviews to a Post ID","admin-text","site-reviews"),onChange:function(e){return d({assign_to:e,assigned_posts:"custom"===e?i:""})},options:p,value:n},Object(r.createElement)(B,{className:"glsr-base-conditional-control",help:$("Separate with commas.","admin-text","site-reviews"),onChange:function(e){return d({assigned_posts:e})},placeholder:$("Enter the Post IDs","admin-text","site-reviews"),type:"text",value:i})),category:Object(r.createElement)(E,{custom_value:"glsr_custom",label:$("Assign Reviews to a Category","admin-text","site-reviews"),onChange:function(e){return d({category:e,assigned_terms:"glsr_custom"===e?s:""})},options:h,value:o},Object(r.createElement)(B,{className:"glsr-base-conditional-control",help:$("Separate with commas.","admin-text","site-reviews"),onChange:function(e){return d({assigned_terms:e})},placeholder:$("Enter the Category IDs or slugs","admin-text","site-reviews"),type:"text",value:s})),user:Object(r.createElement)(E,{custom_value:"glsr_custom",label:$("Assign Reviews to a User","admin-text","site-reviews"),onChange:function(e){return d({user:e,assigned_users:"glsr_custom"===e?a:""})},options:O,value:f},Object(r.createElement)(B,{className:"glsr-base-conditional-control",help:$("Separate with commas.","admin-text","site-reviews"),onChange:function(e){return d({assigned_users:e})},placeholder:$("Enter the User IDs or usernames","admin-text","site-reviews"),type:"text",value:a})),hide:u(GLSR.hideoptions.site_reviews_form,l,d)},m={id:Object(r.createElement)(B,{label:$("Custom ID","admin-text","site-reviews"),onChange:function(e){return d({id:e})},value:c})};return[Object(r.createElement)(M,null,Object(r.createElement)(U,{title:$("Settings","admin-text","site-reviews")},Object.values(wp.hooks.applyFilters(GLSR.nameprefix+".form.InspectorControls",v,e)))),Object(r.createElement)(N,null,Object.values(wp.hooks.applyFilters(GLSR.nameprefix+".form.InspectorAdvancedControls",m,e))),Object(r.createElement)(Q,{block:T,attributes:e.attributes})]},example:{},icon:{src:l},keywords:["reviews","form"],save:function(){return null},title:$("Submit a Review","admin-text","site-reviews")}),wp.i18n._x),V=[{label:"- "+q("Select","admin-text","site-reviews")+" -",value:""},{label:"- "+q("Select Multiple Post IDs","admin-text","site-reviews")+" -",value:"custom"},{label:q("Assigned to the Current Page","admin-text","site-reviews"),value:"post_id"},{label:q("Assigned to the Parent Page","admin-text","site-reviews"),value:"parent_id"}],F={label:"- "+(0,wp.i18n._x)("Select","admin-text","site-reviews")+" -",value:""},H=[];wp.apiFetch({path:"/site-reviews/v1/types?per_page=50"}).then((function(e){e.length<2||(H.push(F),jQuery.each(e,(function(e,t){H.push({label:t.name,value:t.id})})))}));var J=H,K=wp.i18n._x,W=wp.blocks.registerBlockType,X=wp.blockEditor,Y=X.InspectorAdvancedControls,Z=X.InspectorControls,ee=wp.components,te=ee.PanelBody,ne=ee.RangeControl,re=ee.SelectControl,ie=ee.TextControl,se=ee.ToggleControl,ae=wp.serverSideRender,oe=GLSR.nameprefix+"/reviews";wp.hooks.addFilter("blocks.getBlockAttributes",oe,(function(e,t,n,r){return r&&r.count&&(e.display=r.count),e}));W(oe,{attributes:{assigned_to:{default:"",type:"string"},assigned_posts:{default:"",type:"string"},assigned_terms:{default:"",type:"string"},assigned_users:{default:"",type:"string"},category:{default:"",type:"string"},className:{default:"",type:"string"},display:{default:5,type:"number"},hide:{default:"",type:"string"},id:{default:"",type:"string"},pagination:{default:"",type:"string"},post_id:{default:"",type:"string"},rating:{default:0,type:"number"},schema:{default:!1,type:"boolean"},type:{default:"local",type:"string"},user:{default:"",type:"string"}},category:GLSR.nameprefix,description:K("Display your most recent reviews.","admin-text","site-reviews"),edit:function(e){e.attributes.post_id=jQuery("#post_ID").val();var t=e.attributes,n=t.assigned_to,i=t.assigned_posts,s=t.assigned_terms,a=t.assigned_users,o=t.category,l=t.display,c=t.hide,f=t.id,d=t.pagination,p=t.rating,v=t.schema,m=t.type,g=t.user,b=(e.className,e.setAttributes),w={assigned_to:Object(r.createElement)(E,{label:K("Limit Reviews to an Assigned Post ID","admin-text","site-reviews"),onChange:function(e){return b({assigned_to:e,assigned_posts:"custom"===e?i:""})},options:V,value:n},Object(r.createElement)(ie,{className:"glsr-base-conditional-control",help:K("Separate with commas.","admin-text","site-reviews"),onChange:function(e){return b({assigned_posts:e})},placeholder:K("Enter the Post IDs","admin-text","site-reviews"),type:"text",value:i})),category:Object(r.createElement)(E,{custom_value:"glsr_custom",label:K("Limit Reviews to an Assigned Category","admin-text","site-reviews"),onChange:function(e){return b({category:e,assigned_terms:"glsr_custom"===e?s:""})},options:h,value:o},Object(r.createElement)(ie,{className:"glsr-base-conditional-control",help:K("Separate with commas.","admin-text","site-reviews"),onChange:function(e){return b({assigned_terms:e})},placeholder:K("Enter the Category IDs or slugs","admin-text","site-reviews"),type:"text",value:s})),user:Object(r.createElement)(E,{custom_value:"glsr_custom",label:K("Limit Reviews to an Assigned User","admin-text","site-reviews"),onChange:function(e){return b({user:e,assigned_users:"glsr_custom"===e?a:""})},options:O,value:g},Object(r.createElement)(ie,{className:"glsr-base-conditional-control",help:K("Separate with commas.","admin-text","site-reviews"),onChange:function(e){return b({assigned_users:e})},placeholder:K("Enter the User IDs or usernames","admin-text","site-reviews"),type:"text",value:a})),pagination:Object(r.createElement)(re,{label:K("Enable Pagination","admin-text","site-reviews"),onChange:function(e){return b({pagination:e})},options:[{label:"- "+K("Select","admin-text","site-reviews")+" -",value:""},{label:K("Enabled","admin-text","site-reviews"),value:"true"},{label:K("Enabled (using ajax)","admin-text","site-reviews"),value:"ajax"}],value:d}),type:Object(r.createElement)(re,{label:K("Limit the Type of Reviews","admin-text","site-reviews"),onChange:function(e){return b({type:e})},options:J,value:m}),display:Object(r.createElement)(ne,{label:K("Reviews Per Page","admin-text","site-reviews"),min:1,max:50,onChange:function(e){return b({display:e})},value:l}),rating:Object(r.createElement)(ne,{label:K("Minimum Rating","admin-text","site-reviews"),min:0,max:GLSR.maxrating,onChange:function(e){return b({rating:e})},value:p}),schema:Object(r.createElement)(se,{checked:v,help:K("The schema should only be enabled once per page.","admin-text","site-reviews"),label:K("Enable the schema?","admin-text","site-reviews"),onChange:function(e){return b({schema:e})}}),hide:u(GLSR.hideoptions.site_reviews,c,b)},y={id:Object(r.createElement)(ie,{label:K("Custom ID","admin-text","site-reviews"),onChange:function(e){return b({id:e})},value:f})};return[Object(r.createElement)(Z,null,Object(r.createElement)(te,{title:K("Settings","admin-text","site-reviews")},Object.values(wp.hooks.applyFilters(GLSR.nameprefix+".reviews.InspectorControls",w,e)))),Object(r.createElement)(Y,null,Object.values(wp.hooks.applyFilters(GLSR.nameprefix+".reviews.InspectorAdvancedControls",y,e))),Object(r.createElement)(ae,{block:oe,attributes:e.attributes})]},example:{attributes:{display:2,pagination:"ajax",rating:0}},icon:{src:c},keywords:["reviews"],save:function(){return null},title:K("Latest Reviews","admin-text","site-reviews")});var ue=wp.i18n._x,le=wp.blocks.registerBlockType,ce=wp.blockEditor,fe=ce.InspectorAdvancedControls,de=ce.InspectorControls,pe=wp.components,ve=pe.PanelBody,me=pe.RangeControl,ge=pe.SelectControl,be=pe.TextControl,he=pe.ToggleControl,we=wp.serverSideRender,ye=GLSR.nameprefix+"/summary";le(ye,{attributes:{assigned_to:{default:"",type:"string"},assigned_posts:{default:"",type:"string"},assigned_terms:{default:"",type:"string"},assigned_users:{default:"",type:"string"},category:{default:"",type:"string"},className:{default:"",type:"string"},hide:{default:"",type:"string"},post_id:{default:"",type:"string"},rating:{default:0,type:"number"},schema:{default:!1,type:"boolean"},type:{default:"local",type:"string"},user:{default:"",type:"string"}},category:GLSR.nameprefix,description:ue("Display a summary of your reviews.","admin-text","site-reviews"),edit:function(e){e.attributes.post_id=jQuery("#post_ID").val();var t=e.attributes,n=t.assigned_to,i=t.assigned_posts,s=t.assigned_terms,a=t.assigned_users,o=t.category,l=(t.display,t.hide),c=(t.id,t.pagination,t.rating),f=t.schema,d=t.type,p=t.user,v=(e.className,e.setAttributes),m={assigned_to:Object(r.createElement)(E,{label:ue("Limit Reviews to an Assigned Post ID","admin-text","site-reviews"),onChange:function(e){return v({assigned_to:e,assigned_posts:"custom"===e?i:""})},options:V,value:n},Object(r.createElement)(be,{className:"glsr-base-conditional-control",help:ue("Separate multiple IDs with commas.","admin-text","site-reviews"),onChange:function(e){return v({assigned_posts:e})},placeholder:ue("Enter the Post IDs","admin-text","site-reviews"),type:"text",value:i})),category:Object(r.createElement)(E,{custom_value:"glsr_custom",label:ue("Limit Reviews to an Assigned Category","admin-text","site-reviews"),onChange:function(e){return v({category:e,assigned_terms:"glsr_custom"===e?s:""})},options:h,value:o},Object(r.createElement)(be,{className:"glsr-base-conditional-control",help:ue("Separate with commas.","admin-text","site-reviews"),onChange:function(e){return v({assigned_terms:e})},placeholder:ue("Enter the Category IDs or slugs","admin-text","site-reviews"),type:"text",value:s})),user:Object(r.createElement)(E,{custom_value:"glsr_custom",label:ue("Limit Reviews to an Assigned User","admin-text","site-reviews"),onChange:function(e){return v({user:e,assigned_users:"glsr_custom"===e?a:""})},options:O,value:p},Object(r.createElement)(be,{className:"glsr-base-conditional-control",help:ue("Separate with commas.","admin-text","site-reviews"),onChange:function(e){return v({assigned_users:e})},placeholder:ue("Enter the User IDs or usernames","admin-text","site-reviews"),type:"text",value:a})),type:Object(r.createElement)(ge,{label:ue("Limit the Type of Reviews","admin-text","site-reviews"),onChange:function(e){return v({type:e})},options:J,value:d}),rating:Object(r.createElement)(me,{label:ue("Minimum Rating","admin-text","site-reviews"),min:0,max:GLSR.maxrating,onChange:function(e){return v({rating:e})},value:c}),schema:Object(r.createElement)(he,{checked:f,help:ue("The schema should only be enabled once per page.","admin-text","site-reviews"),label:ue("Enable the schema?","admin-text","site-reviews"),onChange:function(e){return v({schema:e})}}),hide:u(GLSR.hideoptions.site_reviews_summary,l,v)};return[Object(r.createElement)(de,null,Object(r.createElement)(ve,{title:ue("Settings","admin-text","site-reviews")},Object.values(wp.hooks.applyFilters(GLSR.nameprefix+".summary.InspectorControls",m,e)))),Object(r.createElement)(fe,null,Object.values(wp.hooks.applyFilters(GLSR.nameprefix+".summary.InspectorAdvancedControls",{},e))),Object(r.createElement)(we,{block:ye,attributes:e.attributes})]},example:{},icon:{src:f},keywords:["reviews","summary"],save:function(){return null},title:ue("Summary","admin-text","site-reviews")})},,function(e,t,n){"use strict";e.exports=n(23)}]);
assets/scripts/site-reviews.js CHANGED
@@ -1 +1,2 @@
1
- !function(t,i,s){"use strict";var n=function(t,s){var n={}.toString.call(t);this.selects="[object String]"===n?i.querySelectorAll(t):"[object NodeList]"===n?t:[t],this.destroy=function(){this.widgets.forEach(function(t){t.t()})},this.rebuild=function(){this.widgets.forEach(function(t){t.i()})},this.widgets=[];for(var e=0;e<this.selects.length;e++)if("SELECT"===this.selects[e].tagName&&!this.selects[e]["star-rating"]){var o=new h(this.selects[e],s);void 0!==o.direction&&this.widgets.push(o)}},h=function(t,i){this.el=t,this.s=this.h({},this.o,i||{},JSON.parse(t.getAttribute("data-options"))),this.u(),this.stars<1||this.stars>this.s.maxStars||this.i()};h.prototype={o:{classname:"gl-star-rating",clearable:!0,initialText:"Select a Rating",maxStars:10,showText:!0},l:function(){this.v(),this.current=this.selected=this.m(),this._(),this.p(),this.g(),this.S(this.current),this.R("add"),this.el["star-rating"]=!0},L:function(){this.s.showText&&(this.textEl=this.G(this.widgetEl,{class:this.s.classname+"-text"},!0))},p:function(){var t=this.F(),i=this.G(this.el,{class:this.s.classname+"-stars"},!0);for(var s in t){var n=this.T({"data-value":s,"data-text":t[s]});i.innerHTML+=n.outerHTML}this.widgetEl=i,this.L()},j:function(t){(t<0||isNaN(t))&&(t=0),t>this.stars&&(t=this.stars),this.widgetEl.classList.remove("s"+10*this.current),this.widgetEl.classList.add("s"+10*t),this.s.showText&&(this.textEl.textContent=t<1?this.s.initialText:this.widgetEl.childNodes[t-1].dataset.text),this.current=t},T:function(t){var s=i.createElement("span");for(var n in t=t||{})s.setAttribute(n,t[n]);return s},t:function(){this.R("remove");var t=this.el.parentNode;t.parentNode.replaceChild(this.el,t),delete this.el["star-rating"]},M:function(t,i,s){s.forEach(function(s){this.events&&t[i+"EventListener"](s,this.events[s])}.bind(this))},h:function(){var t=[].slice.call(arguments),i=t[0],s=t.slice(1);return Object.keys(s).forEach(function(t){for(var n in s[t])s[t].hasOwnProperty(n)&&(i[n]=s[t][n])}),i},k:function(t){var i={},s=t.pageX||t.changedTouches[0].pageX,n=this.widgetEl.offsetWidth;return i.ltr=Math.max(s-this.offsetLeft,1),i.rtl=n-i.ltr,Math.min(Math.ceil(i[this.direction]/Math.round(n/this.stars)),this.stars)},F:function(){for(var t=this.el,i={},s={},n=0;n<t.length;n++)this.O(t[n])||(i[t[n].value]=t[n].text);return Object.keys(i).sort().forEach(function(t){s[t]=i[t]}),s},m:function(){return parseInt(this.el.options[Math.max(this.el.selectedIndex,0)].value)||0},R:function(t){var i=this.el.closest("form");i&&"FORM"===i.tagName&&this.M(i,t,["reset"]),"add"===t&&this.el.disabled||(this.M(this.el,t,["change","keydown"]),this.M(this.widgetEl,t,["mousedown","mouseleave","mousemove","mouseover","touchend","touchmove","touchstart"]))},v:function(){this.events={change:this.C.bind(this),keydown:this.D.bind(this),mousedown:this.N.bind(this),mouseleave:this.I.bind(this),mousemove:this.q.bind(this),mouseover:this.V.bind(this),reset:this.A.bind(this),touchend:this.N.bind(this),touchmove:this.q.bind(this),touchstart:this.V.bind(this)}},G:function(t,i,s){var n=this.T(i);return t.parentNode.insertBefore(n,!0===s?t.nextSibling:t),n},O:function(t){return null===t.getAttribute("value")||""===t.value},C:function(){this.j(this.m())},D:function(t){if(~["ArrowLeft","ArrowRight"].indexOf(t.key)){var i="ArrowLeft"===t.key?-1:1;"rtl"===this.direction&&(i*=-1),this.S(Math.min(Math.max(this.m()+i,0),this.stars)),this.H()}},N:function(t){t.preventDefault();var i=this.k(t);0!==this.current&&parseFloat(this.selected)===i&&this.s.clearable&&(i=0),this.S(i),this.H()},I:function(t){t.preventDefault(),this.j(this.selected)},q:function(t){t.preventDefault(),this.j(this.k(t))},V:function(t){t.preventDefault();var s=this.widgetEl.getBoundingClientRect();this.offsetLeft=s.left+i.body.scrollLeft},A:function(){var t=this.el.querySelector("[selected]"),i=t?t.value:"";this.el.value=i,this.selected=parseInt(i)||0,this.j(i)},i:function(){this.el.parentNode.classList.contains(this.s.classname)&&this.t(),this.l()},g:function(){var i=this.el.parentNode;this.direction=t.getComputedStyle(i,null).getPropertyValue("direction"),i.classList.add(this.s.classname+"-"+this.direction)},S:function(t){this.el.value=this.selected=t,this.j(t)},u:function(){var t=this.el;this.stars=0;for(var i=0;i<t.length;i++)if(!this.O(t[i])){if(isNaN(parseFloat(t[i].value))||!isFinite(t[i].value))return void(this.stars=0);this.stars++}},H:function(){this.el.dispatchEvent(new Event("change"))},_:function(){this.G(this.el,{class:this.s.classname,"data-star-rating":""}).appendChild(this.el)}},"function"==typeof define&&define.amd?define([],function(){return n}):"object"==typeof module&&module.exports?module.exports=n:t.StarRating=n}(window,document),window.hasOwnProperty("GLSR")||(window.GLSR={}),window.GLSR.forms=[],function(){"use strict";GLSR.Ajax=function(){},GLSR.Ajax.prototype={get:function(t,i,s){this.P(i),this.xhr.open("GET",t,!0),this.xhr.responseType="text",this.B(s),this.xhr.send()},U:function(t){return"json"===this.xhr.responseType||!0===this.xhr.json?t({message:this.xhr.statusText},!1):"text"===this.xhr.responseType?t(this.xhr.statusText):void 0},W:function(t){if(0===this.xhr.status||this.xhr.status>=200&&this.xhr.status<300||304===this.xhr.status){if("json"===this.xhr.responseType)return t(this.xhr.response.data,this.xhr.response.success);if("text"===this.xhr.responseType)return t(this.xhr.responseText);if(!0===this.xhr.json){var i=JSON.parse(this.xhr.response);return t(i.data,i.success)}}else this.U(t)},isFileSupported:function(){var t=document.createElement("INPUT");return t.type="file","files"in t},isFormDataSupported:function(){return!!window.FormData},isUploadSupported:function(){var t=new XMLHttpRequest;return!!(t&&"upload"in t&&"onprogress"in t.upload)},post:function(t,i,s){this.P(i),this.xhr.open("POST",GLSR.ajaxurl,!0),this.xhr.responseType="json",this.xhr.json=!0,this.B(s),this.xhr.send(this.X(t))},P:function(t){this.xhr=new XMLHttpRequest,this.xhr.onload=this.W.bind(this,t),this.xhr.onerror=this.U.bind(this,t)},J:function(t,i,s){return"object"!=typeof i||i instanceof Date||i instanceof File?t.append(s,i||""):Object.keys(i).forEach(function(n){i.hasOwnProperty(n)&&(t=this.J(t,i[n],s?s[n]:n))}.bind(this)),t},X:function(t){var i=new FormData,s=Object.prototype.toString.call(t);return"[object FormData]"===s&&(i=t),"[object HTMLFormElement]"===s&&(i=new FormData(t)),"[object Object]"===s&&Object.keys(t).forEach(function(s){i.append(s,t[s])}),i.append("action",GLSR.action),i.append("_ajax_request",!0),i},B:function(t){for(var i in(t=t||{})["X-Requested-With"]="XMLHttpRequest",t)t.hasOwnProperty(i)&&this.xhr.setRequestHeader(i,t[i])}}}(),function(){"use strict";GLSR.Excerpts=function(t){this.l(t||document)},GLSR.Excerpts.prototype={config:{hiddenClass:"glsr-hidden",hiddenTextSelector:".glsr-hidden-text",readMoreClass:"glsr-read-more",visibleClass:"glsr-visible"},Y:function(t){var i=document.createElement("span"),s=document.createElement("a");s.setAttribute("href","#"),s.setAttribute("data-text",t.getAttribute("data-show-less")),s.innerHTML=t.getAttribute("data-show-more"),s.addEventListener("click",this.K.bind(this)),i.setAttribute("class",this.config.readMoreClass),i.appendChild(s),t.parentNode.insertBefore(i,t.nextSibling)},K:function(t){t.preventDefault();var i=t.currentTarget,s=i.parentNode.previousSibling,n=i.getAttribute("data-text");s.classList.toggle(this.config.hiddenClass),s.classList.toggle(this.config.visibleClass),i.setAttribute("data-text",i.innerText),i.innerText=n},l:function(t){for(var i=t.querySelectorAll(this.config.hiddenTextSelector),s=0;s<i.length;s++)this.Y(i[s])}}}(),function(){"use strict";var t=function(t,i){this.button=i,this.config=GLSR.validationconfig,this.events={submit:this.$.bind(this)},this.form=t,this.isActive=!1,this.recaptcha=new GLSR.Recaptcha(this),this.stars=null,this.strings=GLSR.validationstrings,this.useAjax=this.Z(),this.validation=new GLSR.Validation(t)};t.prototype={destroy:function(){this.destroyForm(),this.destroyRecaptcha(),this.destroyStarRatings(),this.isActive=!1},destroyForm:function(){this.form.removeEventListener("submit",this.events.submit)},destroyRecaptcha:function(){this.recaptcha.t()},destroyStarRatings:function(){this.stars&&(this.stars.destroy(),delete this.stars)},init:function(){this.isActive||(this.initForm(),this.initStarRatings(),this.initRecaptcha(),this.isActive=!0)},initForm:function(){this.destroyForm(),this.form.addEventListener("submit",this.events.submit)},initRecaptcha:function(){this.recaptcha.tt()},initStarRatings:function(){this.destroyStarRatings(),this.stars=new StarRating(this.form.querySelectorAll("select.glsr-star-rating"),{clearable:!1,showText:!1})},it:function(t,i,s){t.classList[s?"add":"remove"](i)},st:function(){this.button.setAttribute("disabled","")},nt:function(){this.button.removeAttribute("disabled")},ht:function(t,i){var s=!0===i;"unset"!==t.recaptcha?("reset"===t.recaptcha&&this.recaptcha.et(),s&&(this.recaptcha.et(),this.form.reset()),this.ot(t.errors),this.rt(t.message,s),this.nt(),t.form=this.form,document.dispatchEvent(new CustomEvent("site-reviews/after/submission",{detail:t})),s&&""!==t.redirect&&(window.location=t.redirect)):this.recaptcha.at()},Z:function(){var t=new GLSR.Ajax,i=!0;return[].forEach.call(this.form.elements,function(s){"file"===s.type&&(i=t.isFileSupported()&&t.isUploadSupported())}),i&&!this.form.classList.contains("no-ajax")},$:function(t){if(!this.validation.ut())return t.preventDefault(),void this.rt(this.strings.errors,!1);this.ct(),(this.form["g-recaptcha-response"]&&""===this.form["g-recaptcha-response"].value||this.useAjax)&&(t.preventDefault(),this.ft())},ct:function(){this.rt("",!0),this.validation.et()},ot:function(t){if(t)for(var i in t)if(t.hasOwnProperty(i)){var s=GLSR.nameprefix?GLSR.nameprefix+"["+i+"]":i,n=this.form.querySelector('[name="'+s+'"]');n&&(this.validation.dt(n,t[i]),this.validation.lt(n.validation,"add"))}},rt:function(t,i){var s=this.form.querySelector("."+this.config.message_tag_class);null===s&&((s=document.createElement(this.config.message_tag)).className=this.config.message_tag_class,this.button.parentNode.insertBefore(s,this.button.nextSibling)),this.it(s,this.config.message_error_class,!i),this.it(s,this.config.message_success_class,i),s.classList.remove(this.config.message_initial_class),s.innerHTML=t},ft:function(t){(new GLSR.Ajax).isFormDataSupported()?(this.st(),this.form[GLSR.nameprefix+"[_counter]"].value=t||0,(new GLSR.Ajax).post(this.form,this.ht.bind(this))):this.rt(this.strings.unsupported,!1)}},GLSR.Forms=function(i){var s,n,h;n=document.querySelectorAll("form.glsr-form");for(var e=0;e<n.length;e++)if(h=n[e].querySelector("[type=submit]")){var o=GLSR.forms.findIndex(function(t){return t.form===n[e]});-1!==o&&i?GLSR.forms[o].init():(s=new t(n[e],h),i&&s.init(),GLSR.forms.push(s))}}}(),function(){"use strict";var t=function(t){this.el=t,this.v()};t.prototype={config:{hideClass:"glsr-hide",linkSelector:".glsr-pagination a",scrollTime:468},ht:function(t,i,s){var n=this.el.querySelector(".glsr-pagination"),h=this.el.querySelector(".glsr-reviews");s&&h&&n?(n.outerHTML=i.pagination,h.outerHTML=i.reviews,this.vt(this.el),this.el.classList.remove(this.config.hideClass),this.v(),GLSR.urlparameter&&window.history.pushState(null,"",t),new GLSR.Excerpts(this.el)):window.location=t},v:function(){for(var t=this.el.querySelectorAll(this.config.linkSelector),i=0;i<t.length;i++)t[i].addEventListener("click",this.K.bind(this))},K:function(t){var i=this.el.querySelector("glsr-pagination");if(i){var s={};s[GLSR.nameprefix+"[_action]"]="fetch-paged-reviews",s[GLSR.nameprefix+"[atts]"]=i.dataset.atts,s[GLSR.nameprefix+"[page]"]=t.currentTarget.dataset.page||"",s[GLSR.nameprefix+"[url]"]=t.currentTarget.href||"",this.el.classList.add(this.config.hideClass),t.preventDefault(),(new GLSR.Ajax).post(s,this.ht.bind(this,t.currentTarget.href))}},vt:function(t,i){var s;i=i||16;for(var n=0;n<GLSR.ajaxpagination.length;n++)(s=document.querySelector(GLSR.ajaxpagination[n]))&&"fixed"===window.getComputedStyle(s).getPropertyValue("position")&&(i+=s.clientHeight);var h=t.getBoundingClientRect().top-i;h>0||this._t({endY:h,offset:window.pageYOffset,startTime:window.performance.now(),startY:t.scrollTop})},_t:function(t){var i=(window.performance.now()-t.startTime)/this.config.scrollTime;i=i>1?1:i;var s=.5*(1-Math.cos(Math.PI*i)),n=t.startY+(t.endY-t.startY)*s;window.scroll(0,t.offset+n),n!==t.endY&&window.requestAnimationFrame(this._t.bind(this,t))}},GLSR.Pagination=function(){this.navs=[];var i=document.querySelectorAll(".glsr-ajax-pagination");i.length&&i.forEach(function(i){this.navs.push(new t(i))}.bind(this))}}(),function(){"use strict";GLSR.Recaptcha=function(t){this.Form=t,this.counter=0,this.id=-1,this.is_submitting=!1,this.recaptchaEl=t.form.querySelector(".glsr-recaptcha-holder"),this.observer=new MutationObserver(function(t){var i=t.pop();i.target&&"visible"!==i.target.style.visibility&&(this.observer.disconnect(),setTimeout(function(){this.is_submitting||this.Form.nt()}.bind(this),250))}.bind(this))},GLSR.Recaptcha.prototype={t:function(){this.counter=0,this.id=-1,this.is_submitting=!1,this.recaptchaEl&&(this.recaptchaEl.innerHTML="")},at:function(){if(-1!==this.id)return this.counter=0,this.wt(this.id),void grecaptcha.execute(this.id);setTimeout(function(){this.counter++,this.ft.call(this.Form,this.counter)}.bind(this),1e3)},wt:function(t){var i=window.___grecaptcha_cfg.clients[t];for(var s in i)if(i.hasOwnProperty(s)&&"[object String]"===Object.prototype.toString.call(i[s])){var n=document.querySelector("iframe[name=c-"+i[s]+"]");if(n){this.observer.observe(n.parentElement.parentElement,{attributeFilter:["style"],attributes:!0});break}}},tt:function(){this.Form.form.onsubmit=null,this.t(),this.pt()},pt:function(){this.recaptchaEl&&setTimeout(function(){if("undefined"==typeof grecaptcha||void 0===grecaptcha.render)return this.pt();this.id=grecaptcha.render(this.recaptchaEl,{callback:this.ft.bind(this.Form,this.counter),"expired-callback":this.et.bind(this),isolated:!0},!0)}.bind(this),250)},et:function(){this.counter=0,this.is_submitting=!1,-1!==this.id&&grecaptcha.reset(this.id)},ft:function(t){if(this.recaptcha.is_submitting=!0,!this.useAjax)return this.st(),void this.form.submit();this.ft(t)}}}(),function(){"use strict";function t(t){var i='input[name="'+t.getAttribute("name")+'"]:checked';return t.validation.form.querySelectorAll(i).length}var i={email:{fn:function(t){return!t||/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(t)}},max:{fn:function(i,s){return!i||("checkbox"===this.type?t(this)<=parseInt(s):parseFloat(i)<=parseFloat(s))}},maxlength:{fn:function(t,i){return!t||t.length<=parseInt(i)}},min:{fn:function(i,s){return!i||("checkbox"===this.type?t(this)>=parseInt(s):parseFloat(i)>=parseFloat(s))}},minlength:{fn:function(t,i){return!t||t.length>=parseInt(i)}},number:{fn:function(t){return!t||!isNaN(parseFloat(t))},priority:2},required:{fn:function(i){return"radio"===this.type||"checkbox"===this.type?t(this):void 0!==i&&""!==i},priority:99,halt:!0}};GLSR.Validation=function(t){this.config=GLSR.validationconfig,this.form=t,this.form.setAttribute("novalidate",""),this.strings=GLSR.validationstrings,this.l()},GLSR.Validation.prototype={gt:["required","max","maxlength","min","minlength","pattern"],St:"input:not([type^=hidden]):not([type^=submit]), select, textarea, [data-glsr-validate]",Rt:function(t){var i=~["radio","checkbox"].indexOf(t.getAttribute("type"))||"SELECT"===t.nodeName?"change":"input";t.addEventListener(i,function(t){this.ut(t.target)}.bind(this))},Lt:function(t,i,s){[].forEach.call(t,function(t){~this.gt.indexOf(t.name)?this.bt(i,s,t.name,t.value):"type"===t.name&&this.bt(i,s,t.value)}.bind(this))},bt:function(t,s,n,h){if(i[n]&&(i[n].name=n,t.push(i[n]),h)){var e=h.split(",");e.unshift(null),s[n]=e}},et:function(){for(var t in this.fields)this.fields.hasOwnProperty(t)&&(this.fields[t].errorElements=null,this.fields[t].input.classList.remove(this.config.input_error_class),this.fields[t].input.classList.remove(this.config.input_valid_class));[].map.call(this.form.querySelectorAll("."+this.config.error_tag_class),function(t){t.parentNode.classList.remove(this.config.field_error_class),t.parentNode.removeChild(t)}.bind(this))},h:function(){var t=[].slice.call(arguments),i=t[0],s=t.slice(1);return Object.keys(s).forEach(function(t){for(var n in s[t])s[t].hasOwnProperty(n)&&(i[n]=s[t][n])}),i},Gt:function(t){if(t.errorElements)return t.errorElements;var i,s=t.input.closest("."+this.config.field_class);return s&&null===(i=s.closest("."+this.config.error_tag_class))&&((i=document.createElement(this.config.error_tag)).className=this.config.error_tag_class,s.appendChild(i)),t.errorElements=[s,i]},l:function(){this.fields=[].map.call(this.form.querySelectorAll(this.St),function(t){return this.Et(t)}.bind(this))},Et:function(t){var i={},s=[];return this.Lt(t.attributes,s,i),this.xt(s),this.Rt(t),t.validation={form:this.form,input:t,params:i,validators:s}},lt:function(t,i){var s=this.Gt(t),n="add"===i;t.input.classList[i](this.config.input_error_class),t.input.classList[n?"remove":"add"](this.config.input_valid_class),s[0]&&s[0].classList[i](this.config.field_error_class),s[1]&&(s[1].innerHTML=n?t.errors.join("<br>"):"",s[1].style.display=n?"":"none")},dt:function(t,i){t.hasOwnProperty("validation")&&this.Et(t),t.validation.errors=i},xt:function(t){t.sort(function(t,i){return(i.priority||1)-(t.priority||1)})},ut:function(t){var i=!0,s=this.fields;for(var n in t instanceof HTMLElement&&(s=[t.validation]),s)if(s.hasOwnProperty(n)){var h=s[n];this.Ft(h)?this.lt(h,"remove"):(i=!1,this.lt(h,"add"))}return i},Ft:function(t){var i=[],s=!0;for(var n in t.validators)if(t.validators.hasOwnProperty(n)){var h=t.validators[n],e=t.params[h.name]?t.params[h.name]:[];if(e[0]=t.input.value,!h.fn.apply(t.input,e)){s=!1;var o=this.strings[h.name];if(i.push(o.replace(/(\%s)/g,e[1])),!0===h.halt)break}}return t.errors=i,s}}}(),document.addEventListener("DOMContentLoaded",function(){for(var t=document.querySelectorAll(".glsr-widget, .glsr-shortcode"),i=0;i<t.length;i++){var s=window.getComputedStyle(t[i],null).getPropertyValue("direction");t[i].classList.add("glsr-"+s)}document.all&&!window.atob||(new GLSR.Forms(!0),new GLSR.Pagination,new GLSR.Excerpts)});
 
1
+ /*! For license information please see site-reviews.js.LICENSE.txt */
2
+ !function(t){var i={};function n(s){if(i[s])return i[s].exports;var e=i[s]={i:s,l:!1,exports:{}};return t[s].call(e.exports,e,e.exports,n),e.l=!0,e.exports}n.m=t,n.c=i,n.d=function(t,i,s){n.o(t,i)||Object.defineProperty(t,i,{enumerable:!0,get:s})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,i){if(1&i&&(t=n(t)),8&i)return t;if(4&i&&"object"==typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(n.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&i&&"string"!=typeof t)for(var e in t)n.d(s,e,function(i){return t[i]}.bind(null,e));return s},n.n=function(t){var i=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(i,"a",i),i},n.o=function(t,i){return Object.prototype.hasOwnProperty.call(t,i)},n.p="/",n(n.s=7)}([,function(t,i){function n(i){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?t.exports=n=function(t){return typeof t}:t.exports=n=function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(i)}t.exports=n},function(t,i,n){var s;!function(n,e,h){"use strict";var o=function(t,i){var n={}.toString.call(t);this.selects="[object String]"===n?e.querySelectorAll(t):"[object NodeList]"===n?t:[t],this.destroy=function(){this.widgets.forEach((function(t){t.h()}))},this.rebuild=function(){this.widgets.forEach((function(t){t.u()}))},this.widgets=[];for(var s=0;s<this.selects.length;s++)if("SELECT"===this.selects[s].tagName&&!this.selects[s]["star-rating"]){var h=new r(this.selects[s],i);void 0!==h.direction&&this.widgets.push(h)}},r=function(t,i){this.el=t,this.v=this._({},this.g,i||{},JSON.parse(t.getAttribute("data-options"))),this.S(),this.stars<1||this.stars>this.v.maxStars||this.u()};r.prototype={g:{classname:"gl-star-rating",clearable:!0,initialText:"Select a Rating",maxStars:10,showText:!0},L:function(){this.R(),this.current=this.selected=this.j(),this.F(),this.G(),this.T(),this.O(this.current),this.M("add"),this.el["star-rating"]=!0},k:function(){this.v.showText&&(this.textEl=this.C(this.widgetEl,{class:this.v.classname+"-text"},!0))},G:function(){var t=this.N(),i=this.C(this.el,{class:this.v.classname+"-stars"},!0);for(var n in t){var s=this.D({"data-value":n,"data-text":t[n]});i.innerHTML+=s.outerHTML}this.widgetEl=i,this.k()},I:function(t){(t<0||isNaN(t))&&(t=0),t>this.stars&&(t=this.stars),this.widgetEl.classList.remove("s"+10*this.current),this.widgetEl.classList.add("s"+10*t),this.v.showText&&(this.textEl.textContent=t<1?this.v.initialText:this.widgetEl.childNodes[t-1].dataset.text),this.current=t},D:function(t){var i=e.createElement("span");for(var n in t=t||{})i.setAttribute(n,t[n]);return i},h:function(){this.M("remove");var t=this.el.parentNode;t.parentNode.replaceChild(this.el,t),delete this.el["star-rating"]},q:function(t,i,n,s){s=s||!1,n.forEach(function(n){this.events&&t[i+"EventListener"](n,this.events[n],s)}.bind(this))},_:function(){var t=[].slice.call(arguments),i=t[0],n=t.slice(1);return Object.keys(n).forEach((function(t){for(var s in n[t])n[t].hasOwnProperty(s)&&(i[s]=n[t][s])})),i},V:function(){var t=!1;try{var i=Object.defineProperty({},"passive",{get:function(){t={passive:!1}}});n.addEventListener("test",null,i)}catch(t){}return t},A:function(t){var i={},n=t.pageX||t.changedTouches[0].pageX,s=this.widgetEl.offsetWidth;return i.ltr=Math.max(n-this.offsetLeft,1),i.rtl=s-i.ltr,Math.min(Math.ceil(i[this.direction]/Math.round(s/this.stars)),this.stars)},N:function(){for(var t=this.el,i={},n={},s=0;s<t.length;s++)this.H(t[s])||(i[t[s].value]=t[s].text);return Object.keys(i).sort().forEach((function(t){n[t]=i[t]})),n},j:function(){return parseInt(this.el.options[Math.max(this.el.selectedIndex,0)].value)||0},M:function(t){var i=this.el.closest("form");i&&"FORM"===i.tagName&&this.q(i,t,["reset"]),"add"===t&&this.el.disabled||(this.q(this.el,t,["change","keydown"]),this.q(this.widgetEl,t,["mousedown","mouseleave","mousemove","mouseover","touchend","touchmove","touchstart"],this.V()))},R:function(){this.events={change:this.P.bind(this),keydown:this.B.bind(this),mousedown:this.U.bind(this),mouseleave:this.W.bind(this),mousemove:this.X.bind(this),mouseover:this.J.bind(this),reset:this.Y.bind(this),touchend:this.U.bind(this),touchmove:this.X.bind(this),touchstart:this.J.bind(this)}},C:function(t,i,n){var s=this.D(i);return t.parentNode.insertBefore(s,!0===n?t.nextSibling:t),s},H:function(t){return null===t.getAttribute("value")||""===t.value},P:function(){this.I(this.j())},B:function(t){if(~["ArrowLeft","ArrowRight"].indexOf(t.key)){var i="ArrowLeft"===t.key?-1:1;"rtl"===this.direction&&(i*=-1),this.O(Math.min(Math.max(this.j()+i,0),this.stars)),this.K()}},U:function(t){t.preventDefault();var i=this.A(t);0!==this.current&&parseFloat(this.selected)===i&&this.v.clearable&&(i=0),this.O(i),this.K()},W:function(t){t.preventDefault(),this.I(this.selected)},X:function(t){t.preventDefault(),this.I(this.A(t))},J:function(t){t.preventDefault();var i=this.widgetEl.getBoundingClientRect();this.offsetLeft=i.left+e.body.scrollLeft},Y:function(){var t=this.el.querySelector("[selected]"),i=t?t.value:"";this.el.value=i,this.selected=parseInt(i)||0,this.I(i)},u:function(){this.el.parentNode.classList.contains(this.v.classname)&&this.h(),this.L()},T:function(){var t=this.el.parentNode;this.direction=n.getComputedStyle(t,null).getPropertyValue("direction"),t.classList.add(this.v.classname+"-"+this.direction)},O:function(t){this.el.value=this.selected=t,this.I(t)},S:function(){var t=this.el;this.stars=0;for(var i=0;i<t.length;i++)if(!this.H(t[i])){if(isNaN(parseFloat(t[i].value))||!isFinite(t[i].value))return void(this.stars=0);this.stars++}},K:function(){this.el.dispatchEvent(new Event("change"))},F:function(){this.C(this.el,{class:this.v.classname,"data-star-rating":""}).appendChild(this.el)}},void 0===(s=function(){return o}.apply(i,[]))||(t.exports=s)}(window,document)},,,,,function(t,i,n){n(28),n(59),n(64),n(66),n(68),n(70),n(72),n(74),n(76),n(78),n(80),n(82),n(84),n(86),n(88),n(90),n(92),n(94),n(96),n(98),n(100),n(102),n(104),n(106),n(108),n(110),n(112),n(114),t.exports=n(116)},,,,,,,,,,,,,,,,,,,,,function(t,i,n){"use strict";n.r(i);var s=n(1),e=n.n(s),h=function(){};h.prototype={get:function(t,i,n){this.$(i),this.xhr.open("GET",t,!0),this.xhr.responseType="text",this.Z(n),this.xhr.send()},tt:function(t){return"json"===this.xhr.responseType||!0===this.xhr.json?t({message:this.xhr.statusText},!1):"text"===this.xhr.responseType?t(this.xhr.statusText):void 0},it:function(t){if(0===this.xhr.status||this.xhr.status>=200&&this.xhr.status<300||304===this.xhr.status){if("json"===this.xhr.responseType)return t(this.xhr.response.data,this.xhr.response.success);if("text"===this.xhr.responseType)return t(this.xhr.responseText);if(!0===this.xhr.json){var i=JSON.parse(this.xhr.response);return t(i.data,i.success)}}else this.tt(t)},isFileSupported:function(){var t=document.createElement("INPUT");return t.type="file","files"in t},isFormDataSupported:function(){return!!window.FormData},isUploadSupported:function(){var t=new XMLHttpRequest;return!!(t&&"upload"in t&&"onprogress"in t.upload)},post:function(t,i,n){this.$(i),this.xhr.open("POST",GLSR.ajaxurl,!0),this.xhr.responseType="json",this.xhr.json=!0,this.Z(n),this.xhr.send(this.nt(t))},$:function(t){this.xhr=new XMLHttpRequest,this.xhr.onload=this.it.bind(this,t),this.xhr.onerror=this.tt.bind(this,t)},st:function(t,i,n){return"object"!==e()(i)||i instanceof Date||i instanceof File?t.append(n,i||""):Object.keys(i).forEach(function(s){i.hasOwnProperty(s)&&(t=this.st(t,i[s],n?n[s]:s))}.bind(this)),t},nt:function(t){var i=new FormData,n=Object.prototype.toString.call(t);return"[object FormData]"===n&&(i=t),"[object HTMLFormElement]"===n&&(i=new FormData(t)),"[object Object]"===n&&Object.keys(t).forEach((function(n){i.append(n,t[n])})),i.append("action",GLSR.action),i.append("_ajax_request",!0),i},Z:function(t){for(var i in(t=t||{})["X-Requested-With"]="XMLHttpRequest",t)t.hasOwnProperty(i)&&this.xhr.setRequestHeader(i,t[i])}};var o=h,r=function(t){this.L(t||document)};r.prototype={config:{hiddenClass:"glsr-hidden",hiddenTextSelector:".glsr-hidden-text",readMoreClass:"glsr-read-more",visibleClass:"glsr-visible"},et:function(t){var i=document.createElement("span"),n=document.createElement("a");n.setAttribute("href","#"),n.setAttribute("data-text",t.getAttribute("data-show-less")),n.innerHTML=t.getAttribute("data-show-more"),n.addEventListener("click",this.ht.bind(this)),i.setAttribute("class",this.config.readMoreClass),i.appendChild(n),t.parentNode.insertBefore(i,t.nextSibling)},ht:function(t){t.preventDefault();var i=t.currentTarget,n=i.parentNode.previousSibling,s=i.getAttribute("data-text");n.classList.toggle(this.config.hiddenClass),n.classList.toggle(this.config.visibleClass),i.setAttribute("data-text",i.innerText),i.innerText=s},L:function(t){for(var i=t.querySelectorAll(this.config.hiddenTextSelector),n=0;n<i.length;n++)this.et(i[n])}};var a=r,u=function(t){this.Form=t,this.counter=0,this.id=-1,this.is_submitting=!1,this.recaptchaEl=t.form.querySelector(".glsr-recaptcha-holder"),this.observer=new MutationObserver(function(t){var i=t.pop();i.target&&"visible"!==i.target.style.visibility&&(this.observer.disconnect(),setTimeout(function(){this.is_submitting||this.Form.ot()}.bind(this),250))}.bind(this))};u.prototype={h:function(){this.counter=0,this.id=-1,this.is_submitting=!1,this.recaptchaEl&&(this.recaptchaEl.innerHTML="")},rt:function(){if(-1!==this.id)return this.counter=0,this.at(this.id),void grecaptcha.execute(this.id);setTimeout(function(){this.counter++,this.ut.call(this.Form,this.counter)}.bind(this),1e3)},at:function(t){var i=window.___grecaptcha_cfg.clients[t];for(var n in i)if(i.hasOwnProperty(n)&&"[object String]"===Object.prototype.toString.call(i[n])){var s=document.querySelector("iframe[name=c-"+i[n]+"]");if(s){this.observer.observe(s.parentElement.parentElement,{attributeFilter:["style"],attributes:!0});break}}},ct:function(){this.Form.form.onsubmit=null,this.h(),this.ft()},ft:function(){this.recaptchaEl&&setTimeout(function(){if("undefined"==typeof grecaptcha||void 0===grecaptcha.render)return this.ft();this.id=grecaptcha.render(this.recaptchaEl,{callback:this.ut.bind(this.Form,this.counter),"expired-callback":this.lt.bind(this),isolated:!0},!0)}.bind(this),250)},lt:function(){this.counter=0,this.is_submitting=!1,-1!==this.id&&grecaptcha.reset(this.id)},ut:function(t){if(this.recaptcha.is_submitting=!0,!this.useAjax)return this.dt(),void this.form.submit();this.ut(t)}};var c=u,f=n(2),l=n.n(f),d=function(t,i,n){t&&i.split(" ").forEach((function(i){t.classList[n?"add":"remove"](i)}))},v=function(t){return"."+t.trim().split(" ").join(".")},m=function(t){var i='input[name="'+t.getAttribute("name")+'"]:checked';return t.validation.form.querySelectorAll(i).length},p={email:{fn:function(t){return!t||/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(t)}},max:{fn:function(t,i){return!t||("checkbox"===this.type?m(this)<=parseInt(i):parseFloat(t)<=parseFloat(i))}},maxlength:{fn:function(t,i){return!t||t.length<=parseInt(i)}},min:{fn:function(t,i){return!t||("checkbox"===this.type?m(this)>=parseInt(i):parseFloat(t)>=parseFloat(i))}},minlength:{fn:function(t,i){return!t||t.length>=parseInt(i)}},number:{fn:function(t){return!t||!isNaN(parseFloat(t))},priority:2},required:{fn:function(t){return"radio"===this.type||"checkbox"===this.type?m(this):void 0!==t&&""!==t},priority:99,halt:!0}},_=function(t){this.config=GLSR.validationconfig,this.fields=[],this.form=t,this.form.setAttribute("novalidate",""),this.strings=GLSR.validationstrings,this.init()};_.prototype={vt:["required","max","maxlength","min","minlength","pattern"],pt:"input:not([type^=hidden]):not([type^=submit]), select, textarea, [data-glsr-validate]",destroy:function(){for(this.lt();this.fields.length;){var t=this.fields.shift();this._t(t.input),delete t.input.validation}},init:function(){var t=this;[].forEach.call(this.form.querySelectorAll(this.pt),(function(i){t.fields.find((function(t){return t.input.name===i.name}))||"none"!==i.closest(v(t.config.field)).style.display&&t.fields.push(t.bt(i))}))},wt:function(t){t.addEventListener(this.gt(t),this.St.bind(this,t))},Lt:function(t,i,n){[].forEach.call(t,function(t){var s=t.name.replace("data-","");~this.vt.indexOf(s)?this.Rt(i,n,s,t.value):"type"===t.name&&this.Rt(i,n,t.value)}.bind(this))},Rt:function(t,i,n,s){if(p[n]&&(p[n].name=n,t.push(p[n]),s)){var e=s.split(",");e.unshift(null),i[n]=e}},_t:function(t){t.removeEventListener(this.gt(t),this.St.bind(this,t))},lt:function(){for(var t in this.fields)if(this.fields.hasOwnProperty(t)){this.fields[t].errorElements=null;var i=this.fields[t].input.closest(v(this.config.field));d(this.fields[t].input,this.config.input_error,!1),d(this.fields[t].input,this.config.input_valid,!1),d(i,this.config.field_error,!1),d(i,this.config.field_valid,!1)}},gt:function(t){return~["radio","checkbox"].indexOf(t.getAttribute("type"))||"SELECT"===t.nodeName?"change":"input"},bt:function(t){var i={},n=[];return null!==t.offsetParent&&(this.Lt(t.attributes,n,i),this.yt(n),this.wt(t)),t.validation={form:this.form,input:t,params:i,validators:n}},Et:function(t,i){var n=t.input.closest(v(this.config.field));if(d(t.input,this.config.input_error,i),d(t.input,this.config.input_valid,!i),n){d(n,this.config.field_error,i),d(n,this.config.field_valid,!i);var s=n.querySelector(v(this.config.field_message));s.innerHTML=i?t.errors.join("<br>"):"",s.style.display=i?"":"none"}},xt:function(t,i){t.hasOwnProperty("validation")&&this.bt(t),t.validation.errors=i},yt:function(t){t.sort((function(t,i){return(i.priority||1)-(t.priority||1)}))},St:function(t){var i=!0,n=this.fields;for(var s in t instanceof HTMLElement&&(n=[t.validation]),n)if(n.hasOwnProperty(s)){var e=n[s];this.jt(e)?this.Et(e,!1):(i=!1,this.Et(e,!0))}return i},jt:function(t){var i=[],n=!0;for(var s in t.validators)if(t.validators.hasOwnProperty(s)){var e=t.validators[s],h=t.params[e.name]?t.params[e.name]:[];if(h[0]=t.input.value,!e.fn.apply(t.input,h)){n=!1;var o=this.strings[e.name];if(i.push(o.replace(/(\%s)/g,h[1])),!0===e.halt)break}}return t.errors=i,n}};var b=_,w=function(t,i){this.button=i,this.config=GLSR.validationconfig,this.events={submit:this.Ft.bind(this)},this.form=t,this.isActive=!1,this.recaptcha=new c(this),this.stars=null,this.strings=GLSR.validationstrings,this.useAjax=this.Gt(),this.validation=new b(t)};w.prototype={destroy:function(){this.destroyForm(),this.destroyRecaptcha(),this.destroyStarRatings(),this.isActive=!1},destroyForm:function(){this.form.removeEventListener("submit",this.events.submit),this.Tt()},destroyRecaptcha:function(){this.recaptcha.h()},destroyStarRatings:function(){this.stars&&(this.stars.destroy(),delete this.stars)},init:function(){this.isActive||(this.initForm(),this.initStarRatings(),this.initRecaptcha(),this.isActive=!0)},initForm:function(){this.destroyForm(),this.form.addEventListener("submit",this.events.submit)},initRecaptcha:function(){this.recaptcha.ct()},initStarRatings:function(){this.destroyStarRatings(),this.stars=new l.a(this.form.querySelectorAll(".glsr-field-rating select"),{clearable:!1,showText:!1})},dt:function(){this.button.setAttribute("disabled","")},ot:function(){this.button.removeAttribute("disabled")},Ot:function(t,i){var n=!0===i;"unset"!==t.recaptcha?("reset"===t.recaptcha&&this.recaptcha.lt(),n&&(this.recaptcha.lt(),this.form.reset()),this.Mt(t.errors),this.kt(t.message,n),this.ot(),t.form=this.form,document.dispatchEvent(new CustomEvent("site-reviews/after/submission",{detail:t})),n&&""!==t.redirect&&(window.location=t.redirect)):this.recaptcha.rt()},Gt:function(){var t=!0;return[].forEach.call(this.form.elements,(function(i){"file"===i.type&&(t=GLSR.ajax.isFileSupported()&&GLSR.ajax.isUploadSupported())})),t&&!this.form.classList.contains("no-ajax")},Ft:function(t){if(!this.validation.St())return t.preventDefault(),void this.kt(this.strings.errors,!1);this.Tt(),(this.form["g-recaptcha-response"]&&""===this.form["g-recaptcha-response"].value||this.useAjax)&&(t.preventDefault(),this.ut())},Tt:function(){d(this.form,this.config.form_error,!1),this.kt("",null),this.validation.lt()},Mt:function(t){if(t)for(var i in t)if(t.hasOwnProperty(i)){var n=GLSR.nameprefix?GLSR.nameprefix+"["+i+"]":i,s=this.form.querySelector('[name="'+n+'"]');s&&(this.validation.xt(s,t[i]),this.validation.Et(s.validation,"add"))}},kt:function(t,i){var n=this.form.querySelector(v(this.config.form_message));null!==n&&(d(this.form,this.config.form_error,!1===i),d(n,this.config.form_message_failed,!1===i),d(n,this.config.form_message_success,!0===i),n.innerHTML=t)},ut:function(t){GLSR.ajax.isFormDataSupported()?(this.dt(),this.form[GLSR.nameprefix+"[_counter]"].value=t||0,GLSR.ajax.post(this.form,this.Ot.bind(this))):this.kt(this.strings.unsupported,!1)}};var g=function(){for(;GLSR.forms.length;){(t=GLSR.forms.shift()).destroy()}var t,i,n;i=document.querySelectorAll("form.glsr-review-form");for(var s=0;s<i.length;s++)(n=i[s].querySelector("[type=submit]"))&&((t=new w(i[s],n)).init(),GLSR.forms.push(t))},S=g,L=function(t,i){this.paginationEl=t,this.reviewsEl=i,this.R()};L.prototype={config:{hideClass:"glsr-hide",linkSelector:"a.page-numbers",scrollTime:468},Ct:function(){var t=document.getElementById(this.paginationEl.dataset.id);return t||this.reviewsEl},Ot:function(t,i,n){n?(this.paginationEl.innerHTML=i.pagination,this.reviewsEl.innerHTML=i.reviews,this.Nt(this.reviewsEl),this.paginationEl.classList.remove(this.config.hideClass),this.reviewsEl.classList.remove(this.config.hideClass),this.R(),GLSR.urlparameter&&window.history.pushState(null,"",t),new a(this.reviewsEl),document.dispatchEvent(new CustomEvent("site-reviews/after/pagination",{detail:i}))):window.location=t},R:function(){for(var t=this.paginationEl.querySelectorAll(this.config.linkSelector),i=0;i<t.length;i++)t[i].addEventListener("click",this.ht.bind(this))},ht:function(t){var i=this.Ct();if(i){for(var n={},s=0,e=Object.keys(i.dataset);s<e.length;s++){var h=e[s];n[GLSR.nameprefix+"[atts]["+h+"]"]=i.dataset[h]}n[GLSR.nameprefix+"[_action]"]="fetch-paged-reviews",n[GLSR.nameprefix+"[page]"]=t.currentTarget.dataset.page||"",n[GLSR.nameprefix+"[url]"]=t.currentTarget.href||"",this.paginationEl.classList.add(this.config.hideClass),this.reviewsEl.classList.add(this.config.hideClass),t.preventDefault(),GLSR.ajax.post(n,this.Ot.bind(this,t.currentTarget.href))}},Nt:function(t,i){var n;i=i||16;for(var s=0;s<GLSR.ajaxpagination.length;s++)(n=document.querySelector(GLSR.ajaxpagination[s]))&&"fixed"===window.getComputedStyle(n).getPropertyValue("position")&&(i+=n.clientHeight);var e=t.getBoundingClientRect().top-i;e>0||this.Dt({endY:e,offset:window.pageYOffset,startTime:window.performance.now(),startY:t.scrollTop})},Dt:function(t){var i=(window.performance.now()-t.startTime)/this.config.scrollTime;i=i>1?1:i;var n=.5*(1-Math.cos(Math.PI*i)),s=t.startY+(t.endY-t.startY)*n;window.scroll(0,t.offset+s),s!==t.endY&&window.requestAnimationFrame(this.Dt.bind(this,t))}};var R=function(){this.navs=[];var t=document.querySelectorAll(".glsr-ajax-pagination");t.length&&t.forEach(function(t){var i=t.closest(".glsr[data-id="+t.dataset.id);if(i){var n=i.querySelector(".glsr-reviews");n&&this.navs.push(new L(t,n))}}.bind(this))},y=R;window.hasOwnProperty("GLSR")||(window.GLSR={}),window.GLSR.ajax=new o,window.GLSR.forms=[],document.addEventListener("DOMContentLoaded",(function(){for(var t=document.querySelectorAll(".glsr"),i=0;i<t.length;i++){var n=window.getComputedStyle(t[i],null).getPropertyValue("direction");t[i].classList.add("glsr-"+n)}new S,new y,new a}))},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,i){},,,,,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){},,function(t,i){}]);
assets/styles/admin/admin.css ADDED
@@ -0,0 +1 @@
 
1
+ @charset "UTF-8";.glsr-addons{display:grid;gap:12px;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));width:100%}@media only screen and (min-width:783px){.glsr-addons{gap:20px;margin:12px 0}}.glsr-addon{border:1px solid #ccd0d4;box-shadow:0 1px 1px -1px rgba(0,0,0,.1);display:flex;flex-direction:column;position:relative}.glsr-addon-description{background-color:#fff;padding:20px;flex:auto}.glsr-addon-description p{margin:0}.glsr-addon-name{font-size:15px;margin-top:0;text-overflow:ellipsis;white-space:nowrap}.glsr-addon-footer{height:48px;background:hsla(0,0%,100%,.65);box-shadow:inset 0 1px 0 rgba(0,0,0,.1);box-sizing:border-box;padding:15px;margin:0;overflow:hidden}@media screen and (max-width:782px){.glsr-addon-footer{height:58px}}.glsr-addon-screenshot{display:block;background-position:50% 50%;background-repeat:no-repeat;background-size:cover;border-bottom:1px solid #ccd0d4;padding-top:66.67%;margin:-1px}@media screen and (min-width:514px){.glsr-addon-screenshot{padding-top:100%}}.glsr-addon-screenshot[data-slug=images]{background-color:#6b46c1;background-image:url(../../images/addon-images.svg)}.glsr-addon-screenshot[data-slug=filters]{background-color:#319796;background-image:url(../../images/addon-filters.svg)}.glsr-addon-screenshot[data-slug=trustalyze]{background-color:#4282d6;background-image:url(../../images/addon-trustalyze.svg)}.glsr-addon-link{position:absolute;right:15px;bottom:10px}@media screen and (max-width:782px){.glsr-addon-link{bottom:6px}}.glsr-addon-link.glsr-external:after{content:"\A0\F504";font-family:dashicons;line-height:1.2;vertical-align:text-bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@-webkit-keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.wp-admin .glsr-button{position:relative;white-space:nowrap}.wp-admin .glsr-button:after,.wp-admin .glsr-button:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;border:.2em solid;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite}.wp-admin .glsr-button:before{border-top-color:transparent;opacity:.5}.wp-admin .glsr-button:after{border-color:currentColor transparent transparent}.wp-admin .glsr-button[disabled]{padding-left:calc(1em + 15px)}.wp-admin .glsr-button[disabled]:after,.wp-admin .glsr-button[disabled]:before{content:"";left:10px}.wp-admin .glsr-button[disabled] span{visibility:hidden;font-size:0}.wp-admin .glsr-button[disabled] span:after{visibility:visible;content:attr(data-loading);font-size:13px}.wp-admin .glsr-button:not([disabled]) span[data-alt-text].alt{visibility:hidden;font-size:0}.wp-admin .glsr-button:not([disabled]) span[data-alt-text].alt:after{visibility:visible;content:attr(data-alt-text);font-size:13px}#dashboard_right_now li>span.glsr-review-count:before,#dashboard_right_now li a.glsr-review-count:before{content:"\F459";top:-2px}.post-type-site-review #titlediv #title{margin-bottom:20px}.post-type-site-review #contentdiv textarea,.post-type-site-review .wp-editor-area{display:block;width:100%;height:320px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:16px;line-height:1.5;padding:10px;resize:vertical;-webkit-font-smoothing:antialiased!important;overflow-wrap:break-word}.post-type-site-review .misc-pub-pinned:before{display:inline-block;position:relative;content:"\F537";font:normal 20px/1 dashicons;speak:none;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:0;left:-1px;color:#82878c;padding:0 2px 0 0}.post-type-site-review .misc-pub-pinned .pinned-status-text{font-weight:600}.post-type-site-review .misc-pub-pinned .pinned-status-select{margin-top:3px}.wp-admin .glsr-response{display:block;height:6em;width:100%;margin:12px 0 0}.glsr-mce{position:relative;display:inline-block;margin-right:1px}.glsr-mce-menu.mce-menu{display:none;position:absolute;top:100%;left:0;min-width:100%;background:#fff;padding:5px 0;margin:-2px 0 0}.glsr-mce-menu-item.mce-menu-item{cursor:pointer;font-size:14px;white-space:nowrap;padding:6px 12px;margin-bottom:2px}.mce-glsr-mce-popup a{text-decoration:underline}.mce-glsr-mce-popup p{margin-bottom:1em}.mce-glsr-mce-popup p.strong{font-weight:600}.mce-glsr-mce-popup p.no-margin{margin-bottom:0}.mce-glsr-mce-popup p.margin-top{margin-top:1em}.mce-glsr-btn.mce-btn button{box-sizing:border-box;padding:0 8px}.wp-media-buttons button.glsr-mce-button{outline:none;padding-left:5px;margin-right:0}button.glsr-mce-button:after{display:inline-block;position:relative;top:-1px;left:-1px;width:0;height:0;content:"";border-top:6px solid;border-right:4px solid transparent;border-left:4px solid transparent}button.glsr-mce-button.active:after{top:-2px;border-top:0;border-bottom:6px solid}button.glsr-mce-button:active{margin-bottom:5px}button.glsr-mce-button .wp-media-buttons-icon:before{content:"\F459";font:normal 18px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media screen and (max-width:782px){button.glsr-mce-button .wp-media-buttons-icon:before{font-size:20px!important}}div.sc-wrap{margin-right:1px}#site-review-detailsdiv.postbox .inside{padding:0;margin:0}.glsr-response-postbox{margin-top:20px;margin-bottom:0}.js .glsr-response-postbox .hndle{cursor:default}.js .glsr-response-postbox .toggle-indicator:before{content:"\F142";display:inline-block;font:normal 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.js .glsr-response-postbox.closed .toggle-indicator:before{content:"\F140"}.glsr-metabox-table{width:auto;padding:0 12px 12px;margin-top:12px}.glsr-metabox-table td{line-height:1.5;vertical-align:top;padding:0 14px 8px 0}.glsr-metabox-table td:first-child{font-weight:600}.glsr-metabox-table td:last-child{padding-bottom:0}.glsr-metabox-actions{border-top:1px solid #ccd0d4;background:#f5f5f5;padding:10px;clear:both}.glsr-revert-action{text-align:right;float:right;line-height:1.9}.glsr-revert-action .spinner{float:left}.glsr-search-box .description{display:block}.glsr-assigned-entry{display:block;margin-left:20px}.glsr-remove-button{position:absolute;left:-4px;width:20px;height:20px;border:none;margin:0;padding:0;background:0 0;cursor:pointer;text-indent:0}.glsr-remove-button:focus .glsr-remove-icon:before,.glsr-remove-button:hover .glsr-remove-icon:before{color:#c00}.glsr-remove-icon:before{margin-left:0;border-radius:50%;color:#007cba;color:var(--wp-admin-theme-color);line-height:1.28;background:0 0;content:"\F153";display:block;font:400 16px/20px dashicons;speak:none;height:20px;text-align:center;width:20px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glsr-metabox-field select:focus{border-color:#007cba;border-color:var(--wp-admin-theme-color);color:#016087;color:var(--wp-admin-theme-color-darker-20);box-shadow:0 0 0 1px #007cba;box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.glsr-metabox-field{box-sizing:border-box;position:relative}.glsr-metabox-field:first-child{margin-top:12px}.glsr-metabox-field .glsr-label{box-sizing:border-box;width:100%;padding:0 12px;position:relative;margin:0;line-height:1.5}.glsr-metabox-field .glsr-label label{display:block;margin:0;padding:0;font-size:14px}.glsr-metabox-field .glsr-input{box-sizing:border-box;width:100%;position:relative;padding:12px;margin:0}.glsr-metabox-field .glsr-input>img{border-radius:3px;margin-top:12px}.glsr-metabox-field input[type=date],.glsr-metabox-field input[type=datetime-local],.glsr-metabox-field input[type=datetime],.glsr-metabox-field input[type=email],.glsr-metabox-field input[type=month],.glsr-metabox-field input[type=number],.glsr-metabox-field input[type=password],.glsr-metabox-field input[type=search],.glsr-metabox-field input[type=tel],.glsr-metabox-field input[type=text],.glsr-metabox-field input[type=time],.glsr-metabox-field input[type=url],.glsr-metabox-field input[type=week],.glsr-metabox-field select,.glsr-metabox-field textarea{margin:0;width:100%}.glsr-input-value:disabled{color:#32373c!important;background-color:#eee!important;border-color:#7e8993!important;cursor:default;opacity:1}@media screen and (min-width:641px){.glsr-metabox-field{display:flex;flex:1 auto}.glsr-metabox-field:first-child{margin-top:0}.glsr-metabox-field:first-child .glsr-input,.glsr-metabox-field:first-child .glsr-label{padding-top:12px}.glsr-metabox-field:last-child .glsr-input,.glsr-metabox-field:last-child .glsr-label{padding-bottom:12px}.glsr-metabox-field .glsr-label{align-items:flex-start;display:flex;background:#f9f9f9;border-right:1px solid #ddd;padding:6px 12px;min-width:120px;width:20%;line-height:40px}.glsr-metabox-field .glsr-label label{font-weight:600}.glsr-metabox-field .glsr-input{flex-direction:column;justify-content:center;display:flex;padding:6px 12px;vertical-align:top}}@media screen and (min-width:783px){.glsr-metabox-field .glsr-label{line-height:30px}}.glsr-toggle-field{display:flex;line-height:normal;height:40px}@media screen and (min-width:641px){.glsr-toggle-field{align-items:center}}@media screen and (min-width:783px){.glsr-toggle-field{height:30px}}.glsr-toggle{position:relative;display:inline-block}.glsr-toggle .glsr-toggle__track{content:"";display:inline-block;box-sizing:border-box;vertical-align:top;background-color:#fff;border:1px solid #1e1e1e;width:36px;height:18px;border-radius:9px;transition:background .2s ease}@media (prefers-reduced-motion:reduce){.glsr-toggle .glsr-toggle__track{transition-duration:0s}}.glsr-toggle .glsr-toggle__thumb{display:block;position:absolute;box-sizing:border-box;top:3px;left:3px;width:12px;height:12px;border-radius:50%;transition:transform .1s ease;background-color:#1e1e1e;border:5px solid #1e1e1e}@media (prefers-reduced-motion:reduce){.glsr-toggle .glsr-toggle__thumb{transition-duration:0s}}.glsr-toggle .glsr-toggle__input[type=checkbox]:checked~.glsr-toggle__track{background-color:#007cba;background-color:var(--wp-admin-theme-color);border:9px solid transparent}.glsr-toggle .glsr-toggle__input:focus+.glsr-toggle__track{box-shadow:0 0 0 2px #fff,0 0 0 3.5px #007cba;box-shadow:0 0 0 2px #fff,0 0 0 3.5px var(--wp-admin-theme-color);outline:2px solid transparent;outline-offset:2px}.glsr-toggle .glsr-toggle__input[type=checkbox]:checked~.glsr-toggle__thumb{background-color:#fff;border-width:0;transform:translateX(18px)}.glsr-toggle input.glsr-toggle__input[type=checkbox]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;margin:0;padding:0;z-index:1;border:none}.glsr-toggle input.glsr-toggle__input[type=checkbox]:checked{background:none}.glsr-toggle input.glsr-toggle__input[type=checkbox]:before{content:""}.glsr-metabox-field .gl-star-rating[data-star-rating]>select{-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);clip:rect(1px,1px,1px,1px);overflow:hidden!important;padding-left:0;padding-right:0;position:absolute!important;top:0;visibility:visible!important;white-space:nowrap;width:1px!important}.glsr-metabox-field .gl-star-rating[data-star-rating]>select:after,.glsr-metabox-field .gl-star-rating[data-star-rating]>select:before{display:none}.glsr-metabox-field .gl-star-rating-stars{align-items:center;color:#555d66;cursor:pointer;display:flex;float:left;position:relative;white-space:nowrap}.glsr-metabox-field .gl-star-rating[data-star-rating]>select[disabled]+.gl-star-rating-stars{color:#72777c;cursor:default}.glsr-metabox-field .gl-star-rating-stars>span{-webkit-font-smoothing:antialiased;font-family:dashicons;font-size:30px;letter-spacing:1px;line-height:1;text-align:center;transition:color .1s ease-in}@media screen and (min-width:783px){.glsr-metabox-field .gl-star-rating-stars>span{font-size:24px}}.glsr-metabox-field .gl-star-rating-stars>span:before{content:"\F154"}.glsr-metabox-field .gl-star-rating-stars.s10>span:first-child:before,.glsr-metabox-field .gl-star-rating-stars.s20>span:nth-child(-1n+2):before,.glsr-metabox-field .gl-star-rating-stars.s30>span:nth-child(-1n+3):before,.glsr-metabox-field .gl-star-rating-stars.s40>span:nth-child(-1n+4):before,.glsr-metabox-field .gl-star-rating-stars.s50>span:nth-child(-1n+5):before,.glsr-metabox-field .gl-star-rating-stars.s60>span:nth-child(-1n+6):before,.glsr-metabox-field .gl-star-rating-stars.s70>span:nth-child(-1n+7):before,.glsr-metabox-field .gl-star-rating-stars.s80>span:nth-child(-1n+8):before,.glsr-metabox-field .gl-star-rating-stars.s90>span:nth-child(-1n+9):before,.glsr-metabox-field .gl-star-rating-stars.s100>span:before{content:"\F155"}.glsr-metabox-field .gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{border-radius:3px;border:1px solid #007cba;border:1px solid var(--wp-admin-theme-color);box-shadow:0 0 0 1px #007cba;box-shadow:0 0 0 1px var(--wp-admin-theme-color);box-sizing:border-box;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%}@media screen and (min-width:783px){.glsr-metabox-field .gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{height:30px}}.glsr-notice:not(.notice-error):not(.notice-info):not(.notice-warning){display:flex;border-left-color:#32373c}.glsr-notice-icon{display:flex;align-items:flex-start;margin-left:6px;margin-top:18px;margin-right:18px}.glsr-notice-icon img{width:80px;height:80px}@media only screen and (min-width:601px){.glsr-notice-icon img{width:96px;height:96px}}.glsr-notice-content{margin:6px 0}.glsr-notice-content h3{line-height:1.25;margin-top:12px;margin-bottom:12px}.glsr-notice-content .button,.glsr-notice-content p{margin-top:0;margin-bottom:12px}body.branch-4 .notice-warning{border-color:#ffba00}:root{--base00:#2b303b;--base01:#343d46;--base02:#4f5b66;--base03:#65737e;--base04:#a7adba;--base05:#c0c5ce;--base06:#dfe1e8;--base07:#eff1f5;--base08:#bf616a;--base09:#d08770;--base0A:#ebcb8b;--base0B:#a3be8c;--base0C:#96b5b4;--base0D:#8fa1b3;--base0E:#b48ead;--base0F:#ab7967}.syntax-shortcode,code[class*=language-],pre[class*=language-]{background-color:#181818;background-color:var(--base00);color:#d8d8d8;color:var(--base05);font-family:"Operator Mono Lig","Fira Code",monospace;font-size:13px;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;text-align:left;white-space:pre;word-break:normal;word-spacing:normal;word-wrap:normal;border-radius:2px}.syntax-shortcode,pre[class*=language-]{display:block;padding:1em;margin:.5em 0;overflow:auto}pre[class*=language-]>code{margin:0;padding:0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.bold{font-weight:bold}.token.italic{font-style:italic}.syntax-shortcode .tag{color:#ab4642;color:var(--base08)}.syntax-shortcode .attr-name{color:#ba8baf;color:var(--base0E)}.syntax-shortcode .attr-value{color:#a1b56c;color:var(--base0B)}.language-css .comment{color:#585858;color:var(--base03)}.language-css .important,.language-css .selector{color:#ba8baf;color:var(--base0E)}.language-css .function,.language-css .property,.language-css .url .function{color:#7cafc2;color:var(--base0D)}.language-css .string,.language-css .url{color:#a1b56c;color:var(--base0B)}.language-css .atrule,.language-css .atrule .punctuation,.language-css .url .punctuation{color:#d8d8d8;color:var(--base05)}.language-css .atrule .rule{color:#f7ca88;color:var(--base0A)}.language-css .atrule .keyword,.language-html .tag{color:#ab4642;color:var(--base08)}.language-html .attr-name{color:#ba8baf;color:var(--base0E)}.language-html .attr-value{color:#a1b56c;color:var(--base0B)}.language-html .attr-equals,.language-php .attr-value,.language-php .char,.language-php .constant,.language-php .package .punctuation,.language-php .property,.language-php .punctuation,.language-php .regex,.language-php .variable{color:#d8d8d8;color:var(--base05)}.language-php .block-comment,.language-php .cdata,.language-php .comment,.language-php .doctype,.language-php .prolog{color:#585858;color:var(--base03)}.language-php .string{color:#a1b56c;color:var(--base0B)}.language-php .important,.language-php .keyword,.language-php .selector{color:#ba8baf;color:var(--base0E)}.language-php .number,.language-php .operator{color:#ab4642;color:var(--base08)}.language-php .boolean,.language-php .class-name,.language-php .function,.language-php .package{color:#7cafc2;color:var(--base0D)}.glsr-progress{position:relative;display:block;height:28px;opacity:.65;text-align:center;font-size:14px}@media screen and (max-width:782px){.glsr-progress{height:31px}}.glsr-progress.active{opacity:1}.glsr-progress *{box-sizing:border-box}.glsr-progress-background,.glsr-progress-bar{height:100%;background-size:40px 40px}.glsr-progress.active .glsr-progress-background,.glsr-progress.active .glsr-progress-bar{transition:width 2.5s linear;-webkit-animation:glsr-progress-bar 1s linear infinite;animation:glsr-progress-bar 1s linear infinite}.glsr-progress-bar{position:relative;width:0;color:#fff;background-color:#616b75;background-image:linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);border:1px solid #4a5259;border-top-color:#616b75;border-radius:3px 0 0 3px;overflow:hidden;z-index:1}.glsr-progress-bar[style="width: 0%;"]{border-width:0}.glsr-progress-bar[style="width: 100%;"]{border-radius:3px}.glsr-progress-background{position:absolute;top:0;left:0;width:100%;height:28px;background-color:#f7f7f7;background-image:linear-gradient(-45deg,#fff 25%,transparent 0,transparent 50%,#fff 0,#fff 75%,transparent 0,transparent);border-radius:3px;box-shadow:inset 0 1px 2px #ccd0d4;border:1px solid #ccc}@media screen and (max-width:782px){.glsr-progress-background{height:31px}}.glsr-progress span{position:absolute;left:0;top:0;line-height:26px;color:#555;padding:0 6px}@media screen and (max-width:782px){.glsr-progress span{line-height:29px}}.glsr-progress-bar>span{color:#fff;text-shadow:0 -1px 1px #4a5259,1px 0 1px #4a5259,0 1px 1px #4a5259,-1px 0 1px #4a5259}@-webkit-keyframes glsr-progress-bar{0%{background-position:0 0}to{background-position:40px 0}}@keyframes glsr-progress-bar{0%{background-position:0 0}to{background-position:40px 0}}.glsr-progress .glsr-progress-bar{background-color:#681b98;border-color:#681b98 #591782 #591782}.glsr-progress .glsr-progress-bar>span{text-shadow:0 -1px 1px #591782,1px 0 1px #591782,0 1px 1px #591782,-1px 0 1px #591782}.star-rating .glsr-star{width:16px;font-size:16px;line-height:20px;color:#555}select[data-glsr-track=minimal]{border-color:#ffb900!important;color:#e6a700!important}select[data-glsr-track=minimal]:focus{box-shadow:0 0 0 1px #ffb900}select[data-glsr-track=all]{border-color:#dc3232!important;color:#dc3232!important}select[data-glsr-track=all]:focus{box-shadow:0 0 0 1px #dc3232}td.glsr-string-td1{position:relative;padding-bottom:2em}td.glsr-string-td1 .row-actions{position:absolute;bottom:10px;z-index:1}td.glsr-string-td2 input[type=text]:last-of-type{margin-bottom:0}td.glsr-string-td2 .description{display:block;padding-top:.5em}.is-invalid td.glsr-string-td2 .description{color:#dc3232}.mobile td.glsr-string-td1 .row-actions,.no-js td.glsr-string-td1 .row-actions,td.glsr-string-td1 .row-actions.visible,tr:hover td.glsr-string-td1 .row-actions{left:10px}.is-invalid td.glsr-string-td1,.is-invalid td.glsr-string-td1>div,.is-invalid td.glsr-string-td2,.is-invalid td.glsr-string-td2>div{position:relative}.is-invalid td.glsr-string-td1>button,.is-invalid td.glsr-string-td1>div,.is-invalid td.glsr-string-td2>button,.is-invalid td.glsr-string-td2>div{z-index:1}.is-invalid td.glsr-string-td1:after,.is-invalid td.glsr-string-td2:after{display:block;position:absolute;content:"";top:-1px;right:-1px;bottom:-1px;left:-1px;background:rgba(220,50,50,.06);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:0}.is-invalid td.glsr-string-td1:after{background:rgba(220,50,50,.08)}.is-invalid td.glsr-string-td2 input[type=text],.is-invalid td.glsr-string-td2 textarea{border-color:#e2cbcb}@media screen and (max-width:782px){.post-type-site-review .wp-list-table .is-expanded.is-invalid td:not(.hidden){overflow:unset}}@media screen and (max-width:720px){h2 a.glsr-nav-tab,h2 a.glsr-nav-tab.nav-tab-active:hover{transition-property:background,color;border-bottom:1px solid #ccc;margin:10px 10px 0 0}.wrap h2.glsr-nav-tab-wrapper{border-bottom:0}}.glsr-card{max-width:800px;box-sizing:border-box}.glsr-card-result{border:1px solid #ccd0d4;background-color:#f6fbfd;padding:0 1em;margin:1em 0}.glsr-card ol{list-style:decimal;margin-left:1.5em}.glsr-card ul{list-style:disc;margin-left:1.5em}.glsr-card h2{margin-top:0;text-align:left}.glsr-heading{color:#000;font-size:14px;font-weight:600}.glsr-card.postbox{padding:0;margin-bottom:0}.glsr-card.postbox:not(:last-child){border-bottom:none}.glsr-card.postbox.closed:last-child{border-bottom:1px solid #ccd0d4}.glsr-card .components-notice{margin:0}.glsr-card .components-notice.is-info{background-color:rgba(231,245,254,.75)}.glsr-card h3.glsr-card-heading{border-top:1px solid #ccd0d4;color:inherit;font-size:inherit;font-weight:600;line-height:inherit;margin:0}.glsr-card h3.glsr-card-heading:first-child{border-top:none}.glsr-accordion-trigger{background:#fff;border:0;color:#32373c;cursor:pointer;display:flex;font-weight:400;margin:0;padding:1em 3.5em 1em 1.5em;min-height:46px;position:relative;text-align:left;width:100%;align-items:center;justify-content:space-between;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.glsr-accordion-trigger:active,.glsr-accordion-trigger:hover{background:#f8f9f9}.glsr-accordion-trigger:focus{color:#191e23;border:none;box-shadow:none;outline-offset:-1px;outline:2px solid #0071a1;background-color:#f8f9f9;z-index:1}.glsr-accordion-trigger .title{pointer-events:none;font-weight:600;font-size:16px;flex-grow:1}.glsr-accordion-trigger .icon{border:solid #555d66;border-width:0 2px 2px 0;height:.5rem;pointer-events:none;position:absolute;right:1.5em;top:50%;transform:translateY(-70%) rotate(45deg);width:.5rem}.glsr-accordion-trigger[aria-expanded=true] .icon{transform:translateY(-30%) rotate(-135deg)}.glsr-accordion-trigger .badge{padding:.1rem .5rem .15rem;color:#32373c;font-weight:500;margin-left:.5rem;border:1px solid #bfe7f3}.glsr-accordion-trigger .badge.important{border:1px solid #dc3232}@media screen and (max-width:782px){.glsr-accordion-trigger{align-items:flex-start;flex-direction:column}.glsr-accordion-trigger .badge{margin:1em 0 0}}.glsr-card.postbox .inside{border-bottom:none;border-top:1px solid #ccd0d4;margin:0;padding:1em 1.5em}.glsr-card.postbox .inside>:not(h2):first-child{margin-top:.5em}.glsr-card.postbox .inside>:last-child{margin-bottom:.5em!important}.glsr-card p.submit{margin:0}.glsr-card code,.glsr-card pre{word-spacing:normal;word-break:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-card dd{margin:1em 0}.glsr-card dt{font-weight:600;margin:1em 0}.glsr-card code a{text-decoration:none}.glsr-float-left{float:left;padding-right:.25em}.glsr-code[readonly]{width:100%;font-family:"Operator Mono","Fira Code",monaco,monospace;font-weight:300;white-space:pre;-webkit-font-smoothing:antialiased!important}.glsr-code-large{min-height:60vh}@media only screen and (max-width:782px){.glsr-card{max-width:inherit}}tr.glsr-setting-field td .inline br{display:none}tr.glsr-setting-field td label:after{content:"";margin-right:1em}.glsr-setting-field .button{margin-top:6px}.glsr-notice-inline{background:hsla(0,0%,100%,.65);color:#555;padding:4px 10px 10px;margin:10px 0 0!important}.glsr-notice-inline p{padding:0!important}.glsr-setting-field{margin:1em 0;line-height:1.5}.glsr-setting-field small code{font-size:inherit;padding:0 3px 1px}.glsr-setting-field>label{margin-right:3px}@media screen and (max-width:782px){.glsr-setting-field>label+input.small-text{margin-left:0}}.glsr-setting-field>ul{margin:0}.glsr-setting-field>ul li{margin-bottom:2px}.glsr-setting-field textarea.code,.post-type-site-review .code,.post-type-site-review code{font-family:"Operator Mono","Fira Code",monaco,monospace}.glsr-hidden{display:none}.glsr-search-box,.glsr-strings-table{position:relative;max-width:800px}.glsr-search-box *,.glsr-strings-table *{box-sizing:border-box}.glsr-search-box,.glsr-search-multibox{position:relative;margin:1em 0}.glsr-search-box.is-active .spinner,.glsr-search-multibox.is-active .spinner{visibility:visible}.glsr-search-box.is-active input[type=search]::-webkit-search-cancel-button,.glsr-search-multibox.is-active input[type=search]::-webkit-search-cancel-button{display:none!important}.glsr-spinner{visibility:hidden;position:absolute;top:5px;right:5px;height:20px;width:20px;background-color:#fff;z-index:5}.glsr-spinner .spinner{margin:0}.loading-content .glsr-spinner{visibility:visible}.glsr-search-input{position:relative;width:100%;font-weight:300;line-height:1.5;padding:3px 5px;margin:0;z-index:2}.site-review_page_settings .glsr-search-input{height:32px;font-size:16px}.glsr-search-input:focus{z-index:20}.glsr-search-results{position:absolute;top:calc(100% - 4px);padding-top:4px;left:0;width:100%;max-height:315px;overflow-x:scroll;-webkit-overflow-scrolling:touch;border:1px solid #7e8993;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04);background-color:#fff;box-sizing:border-box;border-radius:0 0 4px 4px;z-index:3}.glsr-search-results:not(.is-active){display:none}.glsr-search-results:before{display:block;background:#fff;border-left:1px solid #7e8993;border-right:1px solid #7e8993;box-sizing:border-box;content:"";height:4px;position:absolute;top:0;left:-1px;right:-1px}.glsr-search-results>div,.glsr-search-results>span{position:relative;display:block;box-sizing:border-box;height:32px;line-height:32px;text-overflow:ellipsis;white-space:nowrap;padding:0 10px;margin-top:-1px;overflow:hidden}.glsr-search-results>div{background-color:#f6fbfd}.glsr-search-results>span:active,.glsr-search-results>span:focus,.glsr-search-results>span:hover{color:#fff;background-color:#00a0d2;cursor:pointer;outline:none}.glsr-search-box-wrap{position:relative}.glsr-strings-table{transition:opacity .2s linear}.glsr-focus .glsr-strings-table{opacity:.2;pointer-events:none}.glsr-string-td1,.glsr-string-td2{border-top:none;padding:13px 15px}.glsr-string-td1{max-width:375px;border-right:1px solid #ccd0d4;vertical-align:top}.glsr-string-td2{width:60%;max-width:375px}.glsr-strings-table p:not(.row-actions){font-size:14px;font-weight:400;line-height:1.3;color:#000}.glsr-strings-table p.row-actions{margin:0}.glsr-strings-table textarea{display:block;width:100%;margin:0}.glsr-strings-table input[type=text]{display:block;width:100%;margin:0 0 5px}.glsr-strings-table input[type=text]:active,.glsr-strings-table input[type=text]:focus{position:relative}.glsr-string-tr:last-child .glsr-string-td2,.glsr-string-tr:not(.is-expanded):last-child .glsr-string-td1{border-bottom:none}@media screen and (max-width:782px){.glsr-search-results>span{padding:0 10px}.glsr-string-td1{max-width:none;border-right:none}.glsr-string-td2{max-width:none;padding:13px 15px!important}.glsr-spinner{right:10px}}.glsr-string-tr.ui-sortable-helper{opacity:.8;display:table;box-shadow:0 1px 2px rgba(0,0,0,.1)}.ui-sortable .glsr-string-tr:hover{cursor:move}@media screen and (min-width:783px){.ui-sortable-placeholder+.glsr-string-tr .glsr-string-td2{border-top:1px solid #f1f1f1}}.ui-sortable-helper .glsr-string-td1{border-left:1px solid #999}.ui-sortable-helper .glsr-string-td1,.ui-sortable-helper .glsr-string-td2{border-top:1px solid #999!important;border-bottom:1px solid #999!important}.ui-sortable-helper .glsr-string-td2{border-right:1px solid #999}@media screen and (max-width:782px){.ui-sortable-helper .glsr-string-td1{border:1px solid #999}.ui-sortable-helper.is-expanded .glsr-string-td1{border-bottom:none!important}.ui-sortable-helper.is-expanded .glsr-string-td2{border:1px solid #999;border-top-color:#f1f1f1!important}}.glsr-search-multibox,.glsr-search-multibox-entries{display:flex;margin:0;position:relative}.glsr-search-multibox-entries{background-color:#fff;border-radius:4px;border:1px solid #7e8993;box-shadow:0 0 0 transparent;color:#32373c;flex-direction:column;width:100%;z-index:2}.glsr-search-multibox-entries:focus-within{border-color:#007cba;box-shadow:0 0 0 1px #007cba;outline:2px solid transparent;z-index:20}.glsr-search-multibox .glsr-selected-entries{display:flex;flex-wrap:wrap;padding-right:6px}.glsr-search-multibox .glsr-selected-entries>span{align-items:center;background:#f3f5f6;border-radius:3px;box-sizing:border-box;display:flex;font-size:11px;font-style:normal;height:24px;line-height:1;margin:6px 0 0 6px;padding:0 10px 0 30px;position:relative}.glsr-search-multibox .glsr-selected-entries a{color:inherit;pointer-events:none}.glsr-search-multibox .glsr-remove-button{left:5px}.glsr-search-multibox .glsr-remove-icon:before{color:#72777c}.glsr-search-multibox input[type=search].glsr-search-input{border:none;margin:0;background:transparent;width:auto;flex-grow:1}.glsr-search-multibox input[type=search].glsr-search-input:focus{outline:none;box-shadow:none}.glsr-search-multibox .glsr-spinner{top:auto;bottom:5px;right:7px}@media screen and (max-width:782px){.glsr-search-multibox .glsr-selected-entries>span{margin:8px 0 0 8px;font-size:14px;height:32px;padding:8px 10px 8px 30px}.glsr-search-multibox .glsr-spinner{bottom:10px;right:10px}}.glsr-status{max-width:750px}.glsr-status th.column-primary{width:50%}.glsr-status td.column-primary{position:relative;font-size:14px!important;font-weight:600}.glsr-status td.column-primary span{font-weight:400}.glsr-status .toggle-row{top:0}.glsr-status .toggle-row:before{top:6px}.glsr-status tfoot td.glsr-radio-column,.glsr-status thead td.glsr-radio-column{color:#82878c;text-align:center;padding-left:4px}@media screen and (max-width:782px){.glsr-status th input[type=radio]{margin-bottom:8px}.glsr-status tfoot td.glsr-radio-column,.glsr-status thead td.glsr-radio-column{padding-top:4px;padding-left:9px}}.wrap h2.glsr-nav-tab-wrapper{padding-top:0;margin-top:9px}.glsr-nav-view{margin-top:20px}.glsr-subsubsub{float:none;text-align:left}.glsr-screenshot{border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box}.glsr-welcome .badge{position:absolute;top:1em;right:0;padding:.25rem .5rem;font-weight:500;font-size:16px;text-rendering:optimizeLegibility;background-color:#72777c;color:#fff;border-radius:5px}@media only screen and (max-width:500px){.glsr-welcome .badge{display:inline-block;position:relative;top:auto}}.glsr-welcome.about-wrap{margin-top:40px}.glsr-welcome.about-wrap .inside li,.glsr-welcome.about-wrap .inside p{font-size:16px}.glsr-welcome .glsr-about-text{margin:1em 0}.glsr-welcome-banner{margin:2em 0 0}.glsr-welcome .about-buttons{display:flex;flex-wrap:wrap;margin:1.5em 0}.glsr-welcome .components-button{margin:0 .5em .5em 0}.glsr-welcome .dashicon:before{font:normal 18px dashicons;margin-right:6px;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glsr-welcome .glsr-nav-view{margin-top:0}.glsr-welcome ul:not(.glsr-flex-row){list-style:circle;padding-left:20px}.glsr-flex-row{display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-20px;margin-right:-20px}.glsr-column{width:100%;max-width:100%;box-sizing:border-box;padding-left:20px;padding-right:20px}@media (min-width:601px){.glsr-has-2-columns .glsr-column,.glsr-has-3-columns .glsr-column{max-width:50%}}@media (min-width:783px){.glsr-has-3-columns .glsr-column{max-width:33.33%}}.glsr-metabox-table .star-rating .star,.post-type-site-review .star-rating .star{width:16px;font-size:16px;line-height:20px;color:#555}.post-type-site-review .star-rating .star{margin-top:-2px}.post-type-site-review .hide-column-tog+.pinned-icon+svg,.post-type-site-review .wp-list-table .approve,.post-type-site-review .wp-list-table .status-pending .unapprove{display:none}.post-type-site-review .wp-list-table .spam .approve,.post-type-site-review .wp-list-table .status-pending .approve,.post-type-site-review .wp-list-table .trash .approve{display:inline}.post-type-site-review .wp-list-table .approve a{color:#006505}.post-type-site-review .wp-list-table .approve a:hover{color:#007f06}.post-type-site-review .wp-list-table .unapprove a{color:#d98500}.post-type-site-review .wp-list-table .unapprove a:hover{color:#f39500}.post-type-site-review .wp-list-table th.column-rating{width:100px}.post-type-site-review .wp-list-table td.column-is_pinned i.pin-review{align-items:center;cursor:pointer;display:flex;float:none;justify-content:center;margin:0;transition:none}.post-type-site-review .wp-list-table td.column-is_pinned i{line-height:24px;text-indent:-3px}.post-type-site-review .wp-list-table td.column-is_pinned i:not(.pinned){color:rgba(85,85,85,.2)}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending th.check-column{box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td:nth-child(2){box-shadow:inset 0 1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending:not(.is-expanded) td:nth-child(2){box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table tr.status-pending.is-expanded td:last-child,.post-type-site-review .wp-list-table tr.status-pending:not(.is-expanded) td:nth-child(2),.post-type-site-review .wp-list-table tr.status-pending th.check-column{box-shadow:inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table tr.status-pending td,.post-type-site-review .wp-list-table tr.status-pending th.check-column{background-color:#fef7f1}.post-type-site-review .wp-list-table tr.status-pending th.check-column{position:relative;border-left:4px solid #d54e21;z-index:1}.post-type-site-review .wp-list-table tr.status-pending th.check-column input{margin-left:4px}@media screen and (min-width:783px){.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td{box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table tr.status-pending td{box-shadow:inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table th.column-assigned_posts,.post-type-site-review .wp-list-table th.column-assigned_users,.post-type-site-review .wp-list-table th.column-ip_address{white-space:nowrap}.post-type-site-review .wp-list-table th.column-assigned_posts,.post-type-site-review .wp-list-table th.column-assigned_users,.post-type-site-review .wp-list-table th.column-name,.post-type-site-review .wp-list-table th.column-taxonomy-site-review-category,.post-type-site-review .wp-list-table th.column-type{width:120px}.post-type-site-review .wp-list-table th.column-is_pinned{width:45px}.post-type-site-review .wp-list-table th.column-is_pinned span.pinned-icon span{display:none}.post-type-site-review .wp-list-table th.column-is_pinned span.pinned-icon:after{display:inline-block;position:relative;content:"\F537";font:normal 20px/1 dashicons;speak:none;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:16px;height:20px;line-height:22px;font-size:16px;text-align:center}.post-type-site-review .wp-list-table th.column-is_pinned .sorting-indicator{margin-left:3px}.post-type-site-review .wp-list-table td.column-is_pinned{padding:8px 6px}.post-type-site-review .wp-list-table td.column-is_pinned i{text-indent:0}}#available-widgets [class*=site-reviews] .widget-title:before{content:"\F459"}.glsr-no-margins{margin:0!important}::placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}::-webkit-input-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}:-moz-placeholder,::-moz-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}:-ms-input-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}
assets/styles/blocks/bootstrap_4-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form{display:grid;font-size:1rem;grid-template-columns:repeat(1,minmax(0,1fr));line-height:1.5;grid-row-gap:1rem;row-gap:1rem}[data-block] form.glsr-form .glsr-field{position:relative}[data-block] form.glsr-form label.glsr-label{display:block;float:none;font-size:.875rem;font-weight:500;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;line-height:1.5;margin-bottom:.25rem;text-transform:inherit}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:.15rem;border:1px solid #9fa6b2;box-sizing:border-box;color:inherit;display:block;float:none;font-family:inherit;font-size:1rem;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:.5rem .75rem}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:1.5em 1.5em;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:.5rem 3em .5rem .75rem;text-transform:none}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){[data-block] form.glsr-form select.glsr-select{padding-right:.75rem}}[data-block] form.glsr-form textarea.glsr-textarea{padding:.5rem .75rem;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;font-size:1rem;font-weight:normal;line-height:1.5;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}
assets/styles/blocks/bootstrap_4_custom-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form{display:grid;font-size:1rem;grid-template-columns:repeat(1,minmax(0,1fr));line-height:1.5;grid-row-gap:1rem;row-gap:1rem}[data-block] form.glsr-form .glsr-field{position:relative}[data-block] form.glsr-form label.glsr-label{display:block;float:none;font-size:.875rem;font-weight:500;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;line-height:1.5;margin-bottom:.25rem;text-transform:inherit}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:.15rem;border:1px solid #9fa6b2;box-sizing:border-box;color:inherit;display:block;float:none;font-family:inherit;font-size:1rem;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:.5rem .75rem}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:1.5em 1.5em;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:.5rem 3em .5rem .75rem;text-transform:none}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){[data-block] form.glsr-form select.glsr-select{padding-right:.75rem}}[data-block] form.glsr-form textarea.glsr-textarea{padding:.5rem .75rem;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;font-size:1rem;font-weight:normal;line-height:1.5;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}
assets/styles/blocks/contact_form_7-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form label.glsr-label{display:block;float:none;font-size:.875rem;font-weight:500;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;line-height:1.5;margin-bottom:.25rem;text-transform:inherit}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:.15rem;border:1px solid #9fa6b2;box-sizing:border-box;color:inherit;display:block;float:none;font-family:inherit;font-size:1rem;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:.5rem .75rem}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:1.5em 1.5em;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:.5rem 3em .5rem .75rem;text-transform:none}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){[data-block] form.glsr-form select.glsr-select{padding-right:.75rem}}[data-block] form.glsr-form textarea.glsr-textarea{padding:.5rem .75rem;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;font-size:1rem;font-weight:normal;line-height:1.5;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}
assets/styles/blocks/default-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form{display:grid;font-size:1rem;grid-template-columns:repeat(1,minmax(0,1fr));line-height:1.5;grid-row-gap:1rem;row-gap:1rem}[data-block] form.glsr-form .glsr-field{position:relative}[data-block] form.glsr-form label.glsr-label{display:block;float:none;font-size:.875rem;font-weight:500;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;line-height:1.5;margin-bottom:.25rem;text-transform:inherit}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:.15rem;border:1px solid #9fa6b2;box-sizing:border-box;color:inherit;display:block;float:none;font-family:inherit;font-size:1rem;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:.5rem .75rem}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:1.5em 1.5em;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:.5rem 3em .5rem .75rem;text-transform:none}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){[data-block] form.glsr-form select.glsr-select{padding-right:.75rem}}[data-block] form.glsr-form textarea.glsr-textarea{padding:.5rem .75rem;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;font-size:1rem;font-weight:normal;line-height:1.5;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}
assets/styles/blocks/divi-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:0;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 8px);z-index:0}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:after,[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:0;box-sizing:border-box;height:1.4rem;opacity:1;padding:4px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 8px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:#eee;border-radius:0;content:"";display:block;height:100%;left:0;opacity:1;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:0;box-shadow:none;content:"";display:block;height:calc(1.4rem - 8px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 8px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 8px))}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}[data-block] form.glsr-form p.et_pb_contact_field{margin-bottom:3%;margin-top:0;position:relative}[data-block] .et_pb_contact_field:not(.glsr-field-rating)>label.et_pb_contact_form_label{display:none}[data-block] .et_pb_contact_field_options_title label,[data-block] .glsr-field-rating>label{font-weight:600}[data-block] form.glsr-form .et_pb_contact_field>input,[data-block] form.glsr-form select,[data-block] form.glsr-form textarea{background:#eee;border-radius:0;border:1px solid transparent;box-shadow:none;display:block;font-family:"Open Sans",Arial,sans-serif;font-size:14px;height:auto;line-height:normal;margin:0;max-width:none;opacity:1;padding:16px}[data-block] form.glsr-form .glsr-field-select:after{border:6px solid transparent;border-top-color:#666;content:"";height:0;margin-top:3px;pointer-events:none;position:absolute;right:10px;top:50%;transform:translateY(-50%);width:0}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox input[type=checkbox],[data-block] form.glsr-form .glsr-field-radio input[type=radio]{display:none}[data-block] form.glsr-form .glsr-field-checkbox input[type=checkbox]+label,[data-block] form.glsr-form .glsr-field-radio input[type=radio]+label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox input[type=checkbox]+label span:first-of-type,[data-block] form.glsr-form .glsr-field-radio input[type=radio]+label span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form .glsr-field-checkbox input[type=checkbox]+label i,[data-block] form.glsr-form .glsr-field-radio input[type=radio]+label i{content:"";width:18px;height:18px;background-color:#eee;font-style:normal;display:inline-block;vertical-align:middle;position:relative;margin-right:6px}[data-block] form.glsr-form .glsr-field-radio input[type=radio]+label i{border-radius:100%}[data-block] form.glsr-form .et_contact_bottom_container{text-align:right}[data-block] form.glsr-form button.et_pb_contact_submit{background-color:transparent;border-radius:3px;border:2px solid;font-size:20px;font-weight:500;line-height:1.7em!important;padding:.3em 1em;position:relative;white-space:nowrap}
assets/styles/blocks/minimal-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));grid-row-gap:1rem;row-gap:1rem}[data-block] form.glsr-hide-form{max-height:0!important;opacity:0;overflow:hidden}[data-block] form.glsr-form .glsr-field{position:relative}[data-block] form.glsr-form .glsr-field-error{color:#e02424}[data-block] form.glsr-form .glsr-form-message:not(.glsr-form-failed):not(.glsr-form-success),[data-block] form.glsr-form:not(.glsr-form-is-invalid) .glsr-field-error{display:none}[data-block] form.glsr-form .glsr-form-failed{color:#e02424}[data-block] form.glsr-form .glsr-form-success{color:#057a55}[data-block] form.glsr-form .glsr-recaptcha-holder{margin-top:1rem}[data-block] form.glsr-form label.glsr-label{display:block;float:none;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:.15rem;border:1px solid silver;box-sizing:border-box;color:inherit;display:block;float:none;font-family:inherit;font-size:1rem;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:.5rem .75rem}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:16px 16px;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:.5rem 3em .5rem .75rem;text-transform:none}[data-block] form.glsr-form textarea.glsr-textarea{padding:.5rem .75rem;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 6px);z-index:0}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:after,[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 6px))}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}
assets/styles/blocks/ninja_forms-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 6px);z-index:0}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:after,[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 6px))}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}[data-block] form.glsr-form textarea{display:block}[data-block] form.glsr-form.nf-style-light .listcheckbox-wrap input[type=checkbox]:not(:checked)+label:after,[data-block] form.glsr-form.nf-style-light .listradio-wrap input[type=radio]:not(:checked)+label:after{border-color:#c4c4c4}[data-block] form.glsr-form.nf-style-dark .listcheckbox-wrap input[type=checkbox]:not(:checked)+label:after,[data-block] form.glsr-form.nf-style-dark .listradio-wrap input[type=radio]:not(:checked)+label:after{border-color:#3c3c3c}[data-block] form.glsr-form .listcheckbox-wrap input[type=checkbox]:not(:checked)+label:before,[data-block] form.glsr-form .listradio-wrap input[type=radio]:not(:checked)+label:before{opacity:0}[data-block] form.glsr-form .glsr-field-error{order:50}[data-block] form.glsr-form .glsr-form-failed,[data-block] form.glsr-form .glsr-form-success{display:block}
assets/styles/blocks/twentyfifteen-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));grid-row-gap:1rem;row-gap:1rem}[data-block] form.glsr-hide-form{max-height:0!important;opacity:0;overflow:hidden}[data-block] form.glsr-form .glsr-field{position:relative}[data-block] form.glsr-form .glsr-field-error{color:#e02424}[data-block] form.glsr-form .glsr-form-message:not(.glsr-form-failed):not(.glsr-form-success),[data-block] form.glsr-form:not(.glsr-form-is-invalid) .glsr-field-error{display:none}[data-block] form.glsr-form .glsr-form-failed{color:#e02424}[data-block] form.glsr-form .glsr-form-success{color:#057a55}[data-block] form.glsr-form .glsr-recaptcha-holder{margin-top:1rem}[data-block] form.glsr-form label.glsr-label{display:block;float:none;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:.15rem;border:1px solid #9fa6b2;box-sizing:border-box;color:inherit;display:block;float:none;font-family:inherit;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:.5rem .75rem}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:16px 16px;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:.5rem 3em .5rem .75rem;text-transform:none}[data-block] form.glsr-form textarea.glsr-textarea{padding:.5rem .75rem;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 6px);z-index:0}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:after,[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 6px))}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{background-color:#f7f7f7;background-image:-webkit-linear-gradient(hsla(0,0%,100%,0),hsla(0,0%,100%,0));border-radius:0;border:1px solid rgba(51,51,51,.1);box-shadow:none;color:rgba(51,51,51,.7);font-size:1rem;line-height:1.6842;padding:.5278em}[data-block] form.glsr-form label{font-family:"Noto Sans",sans-serif}[data-block] form.glsr-form .glsr-label{color:rgba(51,51,51,.7);font-size:.875rem;font-weight:700;letter-spacing:.04em;line-height:1.5;text-transform:uppercase}[data-block] form.glsr-form button{background-color:#333;border-radius:0;border-width:0;box-shadow:none;color:#fff;font-size:1rem;font-weight:700;height:auto;outline:none;padding:.7917em 1.5em;position:relative;text-transform:uppercase;white-space:nowrap}[data-block] .glsr-pagination{margin:0 7.5%;position:relative}[data-block] .glsr-pagination .nav-links{height:48px;border:1px solid rgba(51,51,51,.1);position:relative;text-align:center}[data-block] .glsr-pagination a.next{display:inline-block;border-width:0;height:48px;padding:0;box-shadow:none;outline:none;position:absolute;width:48px;right:-1px;top:-1px;overflow:hidden}[data-block] .glsr-pagination a.next:before{background-color:#333;color:#fff;content:"\F344";font-family:"dashicons";font-size:20px;font-style:normal;font-weight:normal;height:48px;line-height:48px;position:absolute;right:0;width:48px;z-index:1}[data-block] .glsr-pagination .current{display:inline-block;font-weight:700}[data-block] .glsr-pagination .dots,[data-block] .glsr-pagination a.page-numbers:not(.next){display:none}[data-block] .glsr-pagination .page-numbers{border-radius:0;box-shadow:none;outline:none;color:#333;font-family:"Noto Sans",sans-serif;font-size:19px;height:47px;line-height:47px;padding:0 .6667em}[data-block] .glsr-pagination a.page-numbers{border-bottom:1px solid #333}@media screen and (max-width:699px){[data-block] .glsr-pagination .current .screen-reader-text{-webkit-clip-path:none!important;clip-path:none!important;position:static!important;height:auto!important;width:auto!important}}@media screen and (min-width:700px){[data-block] .glsr-pagination .dots,[data-block] .glsr-pagination a.page-numbers:not(.next){display:inline-block}}
assets/styles/blocks/twentynineteen-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));grid-row-gap:1rem;row-gap:1rem}[data-block] form.glsr-hide-form{max-height:0!important;opacity:0;overflow:hidden}[data-block] form.glsr-form .glsr-field{position:relative}[data-block] form.glsr-form .glsr-field-error{color:#e02424}[data-block] form.glsr-form .glsr-form-message:not(.glsr-form-failed):not(.glsr-form-success),[data-block] form.glsr-form:not(.glsr-form-is-invalid) .glsr-field-error{display:none}[data-block] form.glsr-form .glsr-form-failed{color:#e02424}[data-block] form.glsr-form .glsr-form-success{color:#057a55}[data-block] form.glsr-form .glsr-recaptcha-holder{margin-top:1rem}[data-block] form.glsr-form label.glsr-label{display:block;float:none;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:.15rem;border:1px solid silver;box-sizing:border-box;color:inherit;display:block;float:none;font-family:inherit;font-size:1rem;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:.5rem .75rem}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:16px 16px;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:.5rem 3em .5rem .75rem;text-transform:none}[data-block] form.glsr-form textarea.glsr-textarea{padding:.5rem .75rem;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 6px);z-index:0}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:after,[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 6px))}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}
assets/styles/blocks/twentyseventeen-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form{display:grid;font-size:1rem;grid-template-columns:repeat(1,minmax(0,1fr));line-height:1.5;grid-row-gap:1rem;row-gap:1rem}[data-block] form.glsr-form .glsr-field{position:relative}[data-block] form.glsr-form label.glsr-label{display:block;float:none;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:.15rem;border:1px solid #9fa6b2;box-sizing:border-box;color:inherit;display:block;float:none;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:.5rem .75rem}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:16px 16px;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:.5rem 3em .5rem .75rem;text-transform:none}[data-block] form.glsr-form textarea.glsr-textarea{padding:.5rem .75rem;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 6px);z-index:0}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:after,[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 6px))}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{border-color:#9fa6b2;font-family:inherit;font-size:1rem;padding:.5rem .75rem}[data-block] form.glsr-form label.glsr-label{font-weight:800}[data-block] form.glsr-form .glsr-field-choice span label{font-weight:normal}[data-block] form.glsr-form .components-button{background-color:#222;box-shadow:none;color:#fff;font-family:inherit;font-weight:700;font-size:1rem;line-height:1.5;padding:1em 2em}[data-block] .glsr-pagination{border-top:1px solid #eee;font-size:.875rem;font-weight:800;margin:0 10%;min-height:56px;padding-top:2em;position:relative;text-align:center}[data-block] .glsr-pagination .page-numbers{border-radius:0;box-shadow:none;color:#161e2e;display:none;line-height:1.5;padding:.5em .75em;font-family:inherit}[data-block] .glsr-pagination a.next{background-color:#ddd;border-radius:2px;display:inline-block;float:right;font-size:1.5rem;line-height:1;padding:.25em .5em .4em}[data-block] .glsr-pagination .current{color:#767676;display:inline-block}@media screen and (max-width:699px){[data-block] .glsr-pagination .current .screen-reader-text{-webkit-clip-path:none!important;clip-path:none!important;position:static!important}}@media screen and (min-width:700px){[data-block] .glsr-pagination .page-numbers{display:inline-block}}
assets/styles/blocks/twentysixteen-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form{display:grid;font-size:1rem;grid-template-columns:repeat(1,minmax(0,1fr));line-height:1.5;grid-row-gap:1rem;row-gap:1rem}[data-block] form.glsr-form .glsr-field{position:relative}[data-block] form.glsr-form label.glsr-label{display:block;float:none;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:.15rem;border:1px solid #d1d1d1;box-sizing:border-box;color:inherit;display:block;float:none;font-family:inherit;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:.5rem .75rem}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:16px 16px;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:.5rem 3em .5rem .75rem;text-transform:none}[data-block] form.glsr-form textarea.glsr-textarea{padding:.5rem .75rem;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 6px);z-index:0}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:after,[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 6px))}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{background-color:#f7f7f7;border-color:#d1d1d1;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:1rem;padding:.5rem .75rem}[data-block] form.glsr-form label.glsr-label:not(.glsr-label-toggle){color:#686868;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:.875rem;font-weight:500;letter-spacing:1px;line-height:1.5;margin-bottom:.25rem;text-transform:uppercase}[data-block] form.glsr-form .components-button{background-color:#1a1a1a;box-shadow:none;color:#fff;font-family:Montserrat,"Helvetica Neue",sans-serif;font-weight:700;letter-spacing:1px;text-transform:uppercase}[data-block] .glsr-pagination{border-top:4px solid #1a1a1a;margin:0 10%;min-height:56px;position:relative}[data-block] .glsr-pagination:after,[data-block] .glsr-pagination:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;background-color:#1a1a1a;color:#fff;display:inline-block;font-family:"dashicons";font-size:24px;font-style:normal;font-weight:normal;height:52px;line-height:51px;position:absolute;text-align:center;text-transform:none;top:0;vertical-align:top;width:52px;z-index:0}[data-block] .glsr-pagination:before{content:"\F344";right:0}[data-block] .glsr-pagination:after{content:"\F340";color:hsla(0,0%,100%,.3);color:rgba(#ffffff,.3);right:54px}[data-block] .glsr-pagination .nav-links{padding-right:106px;position:relative}[data-block] .glsr-pagination .next,[data-block] .glsr-pagination .prev{display:none!important}[data-block] .glsr-pagination .page-numbers{border-radius:0;display:none;line-height:1;margin-left:-.875rem;margin-right:.875rem;padding:1rem .875rem .5rem;text-transform:uppercase;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:1.125rem}[data-block] .glsr-pagination a.page-numbers{box-shadow:0 1px 0 0 currentColor}[data-block] .glsr-pagination span.page-numbers{box-shadow:none;color:#1a1a1a}[data-block] .glsr-pagination .current{display:inline-block;font-weight:700}@media screen and (max-width:699px){[data-block] .glsr-pagination .current .screen-reader-text{-webkit-clip-path:none!important;clip-path:none!important;position:static!important}}@media screen and (min-width:700px){[data-block] .glsr-pagination .page-numbers{display:inline-block}}
assets/styles/blocks/twentytwenty-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:72px;gap:72px}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:18px 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:18px;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:18px 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 135px)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:18px}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:18px}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:18px;margin-top:0}[data-block] .glsr-review-response{margin-top:18px;padding:27px;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 36px 27px 0;content:"";height:0;opacity:.1;position:absolute;right:27px;top:-27px;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:36px;border-right-width:0;left:27px;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:0;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:27px;font-size:inherit;height:27px;width:27px}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form{display:grid;font-size:1rem;grid-template-columns:repeat(1,minmax(0,1fr));line-height:1.5;grid-row-gap:18px;row-gap:18px}[data-block] form.glsr-form .glsr-field{position:relative}[data-block] form.glsr-form label.glsr-label{display:block;float:none;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}[data-block] form.glsr-form input.glsr-input,[data-block] form.glsr-form select.glsr-select,[data-block] form.glsr-form textarea.glsr-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-clip:padding-box;background-color:#fff;border-radius:0;border:1px solid #d2d6dc;box-sizing:border-box;color:inherit;display:block;float:none;font-family:inherit;font-size:1rem;line-height:1.5;margin:0;width:100%}[data-block] form.glsr-form input.glsr-input{overflow:visible;padding:9px 13.5px}[data-block] form.glsr-form select.glsr-select{background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E");background-position:right .5em center;background-repeat:no-repeat;background-size:16px 16px;-webkit-print-color-adjust:exact;color-adjust:exact;height:auto;max-height:none;max-width:none;min-height:none;min-width:none;opacity:1;padding:9px 3em 9px 13.5px;text-transform:none}[data-block] form.glsr-form textarea.glsr-textarea{padding:9px 13.5px;overflow:auto;resize:vertical}[data-block] form.glsr-form .glsr-field-checkbox,[data-block] form.glsr-form .glsr-field-radio{display:flex}[data-block] form.glsr-form .glsr-field-checkbox label,[data-block] form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}[data-block] form.glsr-form .glsr-field-checkbox span:first-of-type,[data-block] form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}[data-block] form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block] form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:18px;left:0;margin-left:0;margin-right:9px;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:18px}[data-block].glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,[data-block].glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:9px;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;margin-left:9px}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:9px}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.25rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.5rem - 6px);z-index:0}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:after,[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.25rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.5rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .15625rem .3125rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.25rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.25rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.25rem - 6px))}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:18px;margin-top:-9px;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:18px;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:4.5px 9px 4.5px 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:9px}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:9px}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:9px;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:27px;font-weight:700;line-height:1;margin-left:0;margin-right:9px;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:9px;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:9px}[data-block].glsr-rtl.glsr-summary-stars{margin-left:9px;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:27px;height:27px;width:27px}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:9px;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:36px;width:36px}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}[data-block] .glsr-toggle-switch{font-size:1rem}[data-block] form.glsr-form label{font-family:"Inter var",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Helvetica,sans-serif;font-size:1rem;font-weight:normal}[data-block] form.glsr-form .components-button{background-color:#cd2653;border-radius:0;box-shadow:none;color:#fff;font-family:inherit;font-size:1rem;font-weight:600;letter-spacing:.0333em;line-height:1.25;padding:1.5em;text-transform:uppercase}[data-block] .glsr-pagination .nav-links{align-items:baseline;display:flex;flex-wrap:wrap}[data-block] .glsr-pagination .page-numbers{border-radius:0;box-shadow:none;color:#161e2e;font-size:1.6rem;font-weight:600;line-height:1.5;padding:.5em .75em;font-family:NonBreakingSpaceOverride,"Hoefler Text",Garamond,"Times New Roman",serif}[data-block] .glsr-pagination a.page-numbers{color:#cd2653}
assets/styles/blocks/wpforms-blocks.css ADDED
@@ -0,0 +1 @@
 
1
+ [data-block] .glsr-reviews,[data-block] .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}[data-block] .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}[data-block] .glsr-pagination .navigation,[data-block] .glsr-review{opacity:1;transition:opacity .5s}[data-block] .glsr-hide .glsr-pagination .navigation,[data-block] .glsr-hide .glsr-review{opacity:0!important}[data-block] .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}[data-block] .glsr-review>div:first-of-type,[data-block] .glsr-review p:first-of-type{margin-top:0}[data-block] .glsr-review>div:last-of-type,[data-block] .glsr-review p:last-of-type{margin-bottom:0}[data-block] .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}[data-block] .glsr-review-author{align-items:center;display:flex}[data-block] :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}[data-block] .glsr-review-avatar{align-items:center;display:flex}[data-block] .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}[data-block] .glsr-review-content{margin:1rem 0;width:100%}[data-block] .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}[data-block] .glsr-review-avatar+.glsr-review-author span,[data-block] .glsr-review-rating+.glsr-review-date span{margin-left:1rem}[data-block].glsr-rtl .glsr-review-avatar+.glsr-review-author span,[data-block].glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}[data-block] .glsr-review-rating{align-items:center;display:inline-flex}[data-block] .glsr-review-title{width:100%}[data-block] .glsr-review-title>*{margin-bottom:1rem;margin-top:0}[data-block] .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}[data-block] .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}[data-block].glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}[data-block] .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}[data-block] .glsr-review-response-inner{position:relative;z-index:1}[data-block] .glsr-stars{align-items:center;display:flex}[data-block] .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}[data-block] .glsr-hidden{display:none}[data-block] .glsr-read-more{white-space:nowrap}[data-block] .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}[data-block] .glsr-visible+.glsr-read-more:before{content:""}[data-block].glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}[data-block] form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}[data-block] form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}[data-block].glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 6px);z-index:0}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:after,[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}[data-block] form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 6px))}[data-block] form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}[data-block] .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary>div:first-of-type{margin-top:0}[data-block] .glsr-bar{display:table-row;white-space:nowrap}[data-block] .glsr-bar>span{display:table-cell;vertical-align:middle}[data-block] .glsr-bar-background{position:relative;width:100%}[data-block] .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}[data-block] .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}[data-block] .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}[data-block] .glsr-bar-percent,[data-block].glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}[data-block] .glsr-bar-percent{line-height:1;text-align:right}[data-block].glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}[data-block] .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}[data-block] .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}[data-block].glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}[data-block].glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}[data-block] .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}[data-block].glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}[data-block] .glsr-summary-text{margin-top:.5rem;width:100%}[data-block] .glsr{min-height:20px}[data-block] .glsr a,[data-block] .glsr button,[data-block] .glsr input,[data-block] .glsr label,[data-block] .glsr select,[data-block] .glsr span,[data-block] .glsr textarea{cursor:default!important;pointer-events:none!important}[data-block] .glsr-read-more:before{display:none}[data-block] .glsr-block-disabled{align-items:center;background-color:rgba(0,0,0,.06);display:flex;justify-content:center;min-height:90px;padding:24px;text-align:center}[data-block] .glsr-form-message{display:none}[data-block] .glsr-field .glsr-stars{align-items:center;display:flex;position:relative;width:auto}[data-block] .glsr-field .glsr-star{background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-star-empty{background-image:url(../../images/star-empty.svg)!important}.glsr-star-half{background-image:url(../../images/star-half.svg)!important}.glsr-star-full{background-image:url(../../images/star-full.svg)!important}.components-panel .glsr-checkbox-control:not(:last-of-type){margin-bottom:0!important}.components-panel .glsr-base-conditional-control{margin-top:4px}@media screen and (max-width:782px){.components-panel select{max-width:100%}}[data-block] form.glsr-form input.glsr-input:disabled,[data-block] form.glsr-form select.glsr-select:disabled,[data-block] form.glsr-form textarea.glsr-textarea:disabled{background-color:#fff;border-color:#ccc;opacity:1}[data-block] form.glsr-form .wpforms-submit{background-color:#eee;border:1px solid #ddd;color:#333;font-size:1em;padding:10px 15px}
assets/styles/bootstrap_4.css ADDED
@@ -0,0 +1 @@
 
1
+ @-webkit-keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-bootstrap_4 .screen-reader-text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.glsr-bootstrap_4 .glsr-reviews,.glsr-bootstrap_4 .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}.glsr-bootstrap_4 .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}.glsr-bootstrap_4 .glsr-pagination .navigation,.glsr-bootstrap_4 .glsr-review{opacity:1;transition:opacity .5s}.glsr-bootstrap_4 .glsr-hide .glsr-pagination .navigation,.glsr-bootstrap_4 .glsr-hide .glsr-review{opacity:0!important}.glsr-bootstrap_4 .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}.glsr-bootstrap_4 .glsr-review>div:first-of-type,.glsr-bootstrap_4 .glsr-review p:first-of-type{margin-top:0}.glsr-bootstrap_4 .glsr-review>div:last-of-type,.glsr-bootstrap_4 .glsr-review p:last-of-type{margin-bottom:0}.glsr-bootstrap_4 .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}.glsr-bootstrap_4 .glsr-review-author{align-items:center;display:flex}.glsr-bootstrap_4 :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}.glsr-bootstrap_4 .glsr-review-avatar{align-items:center;display:flex}.glsr-bootstrap_4 .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}.glsr-bootstrap_4 .glsr-review-content{margin:1rem 0;width:100%}.glsr-bootstrap_4 .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}.glsr-bootstrap_4 .glsr-review-avatar+.glsr-review-author span,.glsr-bootstrap_4 .glsr-review-rating+.glsr-review-date span{margin-left:1rem}.glsr-bootstrap_4.glsr-rtl .glsr-review-avatar+.glsr-review-author span,.glsr-bootstrap_4.glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}.glsr-bootstrap_4 .glsr-review-rating{align-items:center;display:inline-flex}.glsr-bootstrap_4 .glsr-review-title{width:100%}.glsr-bootstrap_4 .glsr-review-title>*{margin-bottom:1rem;margin-top:0}.glsr-bootstrap_4 .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}.glsr-bootstrap_4 .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}.glsr-bootstrap_4.glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}.glsr-bootstrap_4 .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}.glsr-bootstrap_4 .glsr-review-response-inner{position:relative;z-index:1}.glsr-bootstrap_4 .glsr-stars{align-items:center;display:flex}.glsr-bootstrap_4 .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}.glsr-bootstrap_4 .glsr-hidden{display:none}.glsr-bootstrap_4 .glsr-read-more{white-space:nowrap}.glsr-bootstrap_4 .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}.glsr-bootstrap_4 .glsr-visible+.glsr-read-more:before{content:""}.glsr-bootstrap_4.glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}.glsr-bootstrap_4 .glsr-loader{-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite;border-radius:50%;bottom:0;display:none;height:24px;left:calc(50% - 12px);margin:0;position:absolute;transform:translateZ(0);width:24px}.glsr-bootstrap_4 .glsr-hide .glsr-loader{display:block}.glsr-bootstrap_4 .glsr-loader:after,.glsr-bootstrap_4 .glsr-loader:before{background:#000;border-radius:50%;content:"";height:8px;position:absolute;width:8px}.glsr-bootstrap_4 .glsr-loader:before{left:0;top:0}.glsr-bootstrap_4 .glsr-loader:after{bottom:0;right:0}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}.glsr-bootstrap_4.glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 6px);z-index:0}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]:after,.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 6px))}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}.glsr-bootstrap_4 form.glsr-form .gl-star-rating[data-star-rating]{align-items:center;display:flex;position:relative}.glsr-bootstrap_4 form.glsr-form .gl-star-rating[data-star-rating]>select{clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);height:1px;overflow:hidden;position:absolute!important;top:0;visibility:visible!important;white-space:nowrap;width:1px}.glsr-bootstrap_4 form.glsr-form .gl-star-rating[data-star-rating]>select:after,.glsr-bootstrap_4 form.glsr-form .gl-star-rating[data-star-rating]>select:before{display:none!important}.glsr-bootstrap_4 form.glsr-form .gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{content:"";display:block;height:100%;border-radius:.15rem;outline:1px solid transparent;box-shadow:0 0 0 3px Highlight;box-shadow:0 0 0 3px -moz-mac-focusring;box-shadow:0 0 0 3px -webkit-focus-ring-color;outline:none;pointer-events:none;position:absolute;width:100%}.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars{align-items:center;cursor:pointer;display:flex;position:relative}.glsr-bootstrap_4 select[disabled]+.gl-star-rating-stars{cursor:default}.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars>span{background-image:none;background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s10>span:first-child,.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s20>span:nth-child(-1n+2),.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s30>span:nth-child(-1n+3),.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s40>span:nth-child(-1n+4),.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s50>span:nth-child(-1n+5),.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s60>span:nth-child(-1n+6),.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s70>span:nth-child(-1n+7),.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s80>span:nth-child(-1n+8),.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s90>span:nth-child(-1n+9),.glsr-bootstrap_4 form.glsr-form .gl-star-rating-stars.s100>span{background-image:none}.glsr-bootstrap_4 form.glsr-form [type=submit]{white-space:nowrap}.glsr-bootstrap_4 form.glsr-form [type=submit] .glsr-button-loading{display:none}.glsr-bootstrap_4 form.glsr-form [type=submit][disabled] .glsr-button-loading{display:inline;position:relative}.glsr-bootstrap_4 form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-bootstrap_4 form.glsr-form [type=submit] .glsr-button-loading:before{-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite;border-radius:100%;border:.2em solid;box-sizing:border-box;content:"";display:inline-block;height:1em;margin:-.5em auto 0;position:absolute;top:50%;width:1em}.glsr-bootstrap_4 form.glsr-form [type=submit] .glsr-button-loading:before{border-top-color:transparent;opacity:.5}.glsr-bootstrap_4 form.glsr-form [type=submit] .glsr-button-loading:after{border-color:currentColor transparent transparent}.glsr-bootstrap_4.glsr-ltr form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-right:1.65em}.glsr-bootstrap_4.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-bootstrap_4.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:before{left:0}.glsr-bootstrap_4.glsr-rtl form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-left:1.65em}.glsr-bootstrap_4.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-bootstrap_4.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:before{right:0}.glsr-bootstrap_4 .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}.glsr-bootstrap_4 .glsr-summary>div:first-of-type{margin-top:0}.glsr-bootstrap_4 .glsr-bar{display:table-row;white-space:nowrap}.glsr-bootstrap_4 .glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bootstrap_4 .glsr-bar-background{position:relative;width:100%}.glsr-bootstrap_4 .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}.glsr-bootstrap_4 .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}.glsr-bootstrap_4 .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}.glsr-bootstrap_4.glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}.glsr-bootstrap_4 .glsr-bar-percent{line-height:1;padding-left:.5rem;padding-right:0;text-align:right}.glsr-bootstrap_4.glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}.glsr-bootstrap_4 .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}.glsr-bootstrap_4 .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}.glsr-bootstrap_4.glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}.glsr-bootstrap_4 .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}.glsr-bootstrap_4.glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}.glsr-bootstrap_4 .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}.glsr-bootstrap_4.glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}.glsr-bootstrap_4 .glsr-summary-text{margin-top:.5rem;width:100%}.glsr-bootstrap_4 form.glsr-hide-form{max-height:0!important;opacity:0;overflow:hidden}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle label{margin-bottom:0}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]:focus{outline:none}.glsr-bootstrap_4 form.glsr-form .glsr-field-toggle input[type=checkbox]:focus+.glsr-toggle-track{outline:1px solid transparent;box-shadow:0 0 0 3px Highlight;box-shadow:0 0 0 3px -moz-mac-focusring;box-shadow:0 0 0 3px -webkit-focus-ring-color}.glsr-bootstrap_4 form.glsr-form-is-invalid .glsr-field-error{display:block}.glsr-bootstrap_4 form.glsr-form .glsr-form-message:not(.glsr-form-failed):not(.glsr-form-success),.glsr-bootstrap_4 form.glsr-form:not(.glsr-form-is-invalid) .glsr-field-error{display:none}.glsr-bootstrap_4 form.glsr-form .glsr-recaptcha-holder{margin-top:1rem}
assets/styles/bootstrap_4_custom.css ADDED
@@ -0,0 +1 @@
 
1
+ @-webkit-keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-bootstrap_4_custom .screen-reader-text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.glsr-bootstrap_4_custom .glsr-reviews,.glsr-bootstrap_4_custom .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}.glsr-bootstrap_4_custom .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}.glsr-bootstrap_4_custom .glsr-pagination .navigation,.glsr-bootstrap_4_custom .glsr-review{opacity:1;transition:opacity .5s}.glsr-bootstrap_4_custom .glsr-hide .glsr-pagination .navigation,.glsr-bootstrap_4_custom .glsr-hide .glsr-review{opacity:0!important}.glsr-bootstrap_4_custom .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}.glsr-bootstrap_4_custom .glsr-review>div:first-of-type,.glsr-bootstrap_4_custom .glsr-review p:first-of-type{margin-top:0}.glsr-bootstrap_4_custom .glsr-review>div:last-of-type,.glsr-bootstrap_4_custom .glsr-review p:last-of-type{margin-bottom:0}.glsr-bootstrap_4_custom .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}.glsr-bootstrap_4_custom .glsr-review-author{align-items:center;display:flex}.glsr-bootstrap_4_custom :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}.glsr-bootstrap_4_custom .glsr-review-avatar{align-items:center;display:flex}.glsr-bootstrap_4_custom .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}.glsr-bootstrap_4_custom .glsr-review-content{margin:1rem 0;width:100%}.glsr-bootstrap_4_custom .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}.glsr-bootstrap_4_custom .glsr-review-avatar+.glsr-review-author span,.glsr-bootstrap_4_custom .glsr-review-rating+.glsr-review-date span{margin-left:1rem}.glsr-bootstrap_4_custom.glsr-rtl .glsr-review-avatar+.glsr-review-author span,.glsr-bootstrap_4_custom.glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}.glsr-bootstrap_4_custom .glsr-review-rating{align-items:center;display:inline-flex}.glsr-bootstrap_4_custom .glsr-review-title{width:100%}.glsr-bootstrap_4_custom .glsr-review-title>*{margin-bottom:1rem;margin-top:0}.glsr-bootstrap_4_custom .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}.glsr-bootstrap_4_custom .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}.glsr-bootstrap_4_custom.glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}.glsr-bootstrap_4_custom .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}.glsr-bootstrap_4_custom .glsr-review-response-inner{position:relative;z-index:1}.glsr-bootstrap_4_custom .glsr-stars{align-items:center;display:flex}.glsr-bootstrap_4_custom .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}.glsr-bootstrap_4_custom .glsr-hidden{display:none}.glsr-bootstrap_4_custom .glsr-read-more{white-space:nowrap}.glsr-bootstrap_4_custom .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}.glsr-bootstrap_4_custom .glsr-visible+.glsr-read-more:before{content:""}.glsr-bootstrap_4_custom.glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}.glsr-bootstrap_4_custom .glsr-loader{-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite;border-radius:50%;bottom:0;display:none;height:24px;left:calc(50% - 12px);margin:0;position:absolute;transform:translateZ(0);width:24px}.glsr-bootstrap_4_custom .glsr-hide .glsr-loader{display:block}.glsr-bootstrap_4_custom .glsr-loader:after,.glsr-bootstrap_4_custom .glsr-loader:before{background:#000;border-radius:50%;content:"";height:8px;position:absolute;width:8px}.glsr-bootstrap_4_custom .glsr-loader:before{left:0;top:0}.glsr-bootstrap_4_custom .glsr-loader:after{bottom:0;right:0}.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating[data-star-rating]{align-items:center;display:flex;position:relative}.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating[data-star-rating]>select{clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);height:1px;overflow:hidden;position:absolute!important;top:0;visibility:visible!important;white-space:nowrap;width:1px}.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating[data-star-rating]>select:after,.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating[data-star-rating]>select:before{display:none!important}.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{content:"";display:block;height:100%;border-radius:.15rem;outline:1px solid transparent;box-shadow:0 0 0 3px Highlight;box-shadow:0 0 0 3px -moz-mac-focusring;box-shadow:0 0 0 3px -webkit-focus-ring-color;outline:none;pointer-events:none;position:absolute;width:100%}.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars{align-items:center;cursor:pointer;display:flex;position:relative}.glsr-bootstrap_4_custom select[disabled]+.gl-star-rating-stars{cursor:default}.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars>span{background-image:none;background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s10>span:first-child,.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s20>span:nth-child(-1n+2),.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s30>span:nth-child(-1n+3),.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s40>span:nth-child(-1n+4),.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s50>span:nth-child(-1n+5),.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s60>span:nth-child(-1n+6),.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s70>span:nth-child(-1n+7),.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s80>span:nth-child(-1n+8),.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s90>span:nth-child(-1n+9),.glsr-bootstrap_4_custom form.glsr-form .gl-star-rating-stars.s100>span{background-image:none}.glsr-bootstrap_4_custom form.glsr-form [type=submit]{white-space:nowrap}.glsr-bootstrap_4_custom form.glsr-form [type=submit] .glsr-button-loading{display:none}.glsr-bootstrap_4_custom form.glsr-form [type=submit][disabled] .glsr-button-loading{display:inline;position:relative}.glsr-bootstrap_4_custom form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-bootstrap_4_custom form.glsr-form [type=submit] .glsr-button-loading:before{-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite;border-radius:100%;border:.2em solid;box-sizing:border-box;content:"";display:inline-block;height:1em;margin:-.5em auto 0;position:absolute;top:50%;width:1em}.glsr-bootstrap_4_custom form.glsr-form [type=submit] .glsr-button-loading:before{border-top-color:transparent;opacity:.5}.glsr-bootstrap_4_custom form.glsr-form [type=submit] .glsr-button-loading:after{border-color:currentColor transparent transparent}.glsr-bootstrap_4_custom.glsr-ltr form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-right:1.65em}.glsr-bootstrap_4_custom.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-bootstrap_4_custom.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:before{left:0}.glsr-bootstrap_4_custom.glsr-rtl form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-left:1.65em}.glsr-bootstrap_4_custom.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-bootstrap_4_custom.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:before{right:0}.glsr-bootstrap_4_custom .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}.glsr-bootstrap_4_custom .glsr-summary>div:first-of-type{margin-top:0}.glsr-bootstrap_4_custom .glsr-bar{display:table-row;white-space:nowrap}.glsr-bootstrap_4_custom .glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bootstrap_4_custom .glsr-bar-background{position:relative;width:100%}.glsr-bootstrap_4_custom .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}.glsr-bootstrap_4_custom .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}.glsr-bootstrap_4_custom .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}.glsr-bootstrap_4_custom.glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}.glsr-bootstrap_4_custom .glsr-bar-percent{line-height:1;padding-left:.5rem;padding-right:0;text-align:right}.glsr-bootstrap_4_custom.glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}.glsr-bootstrap_4_custom .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}.glsr-bootstrap_4_custom .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}.glsr-bootstrap_4_custom.glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}.glsr-bootstrap_4_custom .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}.glsr-bootstrap_4_custom.glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}.glsr-bootstrap_4_custom .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}.glsr-bootstrap_4_custom.glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}.glsr-bootstrap_4_custom .glsr-summary-text{margin-top:.5rem;width:100%}.glsr-bootstrap_4_custom form.glsr-hide-form{max-height:0!important;opacity:0;overflow:hidden}.glsr-bootstrap_4_custom form.glsr-form-is-invalid .glsr-field-error{display:block}.glsr-bootstrap_4_custom form.glsr-form .glsr-form-message:not(.glsr-form-failed):not(.glsr-form-success),.glsr-bootstrap_4_custom form.glsr-form:not(.glsr-form-is-invalid) .glsr-field-error{display:none}.glsr-bootstrap_4_custom form.glsr-form .glsr-recaptcha-holder{margin-top:1rem}
assets/styles/contact_form_7.css ADDED
@@ -0,0 +1 @@
 
1
+ @-webkit-keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-contact_form_7 .screen-reader-text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.glsr-contact_form_7 .glsr-reviews,.glsr-contact_form_7 .glsr-reviews-wrap{display:grid;grid-gap:4rem;gap:4rem}.glsr-contact_form_7 .glsr-review{align-items:center;display:flex;flex-wrap:wrap;quotes:"\201C" "\201D"}.glsr-contact_form_7 .glsr-pagination .navigation,.glsr-contact_form_7 .glsr-review{opacity:1;transition:opacity .5s}.glsr-contact_form_7 .glsr-hide .glsr-pagination .navigation,.glsr-contact_form_7 .glsr-hide .glsr-review{opacity:0!important}.glsr-contact_form_7 .glsr-review p{line-height:1.5;margin:1rem 0;white-space:pre-line}.glsr-contact_form_7 .glsr-review>div:first-of-type,.glsr-contact_form_7 .glsr-review p:first-of-type{margin-top:0}.glsr-contact_form_7 .glsr-review>div:last-of-type,.glsr-contact_form_7 .glsr-review p:last-of-type{margin-bottom:0}.glsr-contact_form_7 .glsr-review-assigned_links{font-style:italic;margin-top:1rem;width:100%}.glsr-contact_form_7 .glsr-review-author{align-items:center;display:flex}.glsr-contact_form_7 :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}.glsr-contact_form_7 .glsr-review-avatar{align-items:center;display:flex}.glsr-contact_form_7 .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}.glsr-contact_form_7 .glsr-review-content{margin:1rem 0;width:100%}.glsr-contact_form_7 .glsr-review-date{align-items:center;display:flex;flex-grow:1;font-style:italic;white-space:nowrap;flex-basis:calc(100% - 7.5rem)}.glsr-contact_form_7 .glsr-review-avatar+.glsr-review-author span,.glsr-contact_form_7 .glsr-review-rating+.glsr-review-date span{margin-left:1rem}.glsr-contact_form_7.glsr-rtl .glsr-review-avatar+.glsr-review-author span,.glsr-contact_form_7.glsr-rtl .glsr-review-rating+.glsr-review-date span{margin-left:0;margin-right:1rem}.glsr-contact_form_7 .glsr-review-rating{align-items:center;display:inline-flex}.glsr-contact_form_7 .glsr-review-title{width:100%}.glsr-contact_form_7 .glsr-review-title>*{margin-bottom:1rem;margin-top:0}.glsr-contact_form_7 .glsr-review-response{margin-top:1rem;padding:1.5rem;position:relative;width:100%}.glsr-contact_form_7 .glsr-review-response:before{border-color:currentcolor transparent;border-style:solid;border-width:0 2rem 1.5rem 0;content:"";height:0;opacity:.1;position:absolute;right:1.5rem;top:-1.5rem;width:0}.glsr-contact_form_7.glsr-rtl .glsr-review-response:before{border-left-width:2rem;border-right-width:0;left:1.5rem;right:auto}.glsr-contact_form_7 .glsr-review-response:after{background-color:currentColor;border-radius:.15rem;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%}.glsr-contact_form_7 .glsr-review-response-inner{position:relative;z-index:1}.glsr-contact_form_7 .glsr-stars{align-items:center;display:flex}.glsr-contact_form_7 .glsr-star{background-size:1.5rem;font-size:inherit;height:1.5rem;width:1.5rem}.glsr-contact_form_7 .glsr-hidden{display:none}.glsr-contact_form_7 .glsr-read-more{white-space:nowrap}.glsr-contact_form_7 .glsr-read-more:before{content:"\2026";margin-left:0;margin-right:.5em}.glsr-contact_form_7 .glsr-visible+.glsr-read-more:before{content:""}.glsr-contact_form_7.glsr-rtl .glsr-read-more:before{margin-left:.5em;margin-right:0}.glsr-contact_form_7 .glsr-loader{-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite;border-radius:50%;bottom:0;display:none;height:24px;left:calc(50% - 12px);margin:0;position:absolute;transform:translateZ(0);width:24px}.glsr-contact_form_7 .glsr-hide .glsr-loader{display:block}.glsr-contact_form_7 .glsr-loader:after,.glsr-contact_form_7 .glsr-loader:before{background:#000;border-radius:50%;content:"";height:8px;position:absolute;width:8px}.glsr-contact_form_7 .glsr-loader:before{left:0;top:0}.glsr-contact_form_7 .glsr-loader:after{bottom:0;right:0}.glsr-contact_form_7 form.glsr-form label.glsr-label{display:block;float:none;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-contact_form_7 form.glsr-form input.glsr-input,.glsr-contact_form_7 form.glsr-form select.glsr-select,.glsr-contact_form_7 form.glsr-form textarea.glsr-textarea{box-sizing:border-box;display:block;float:none;margin-bottom:0;margin-top:0;max-width:none;min-width:none;width:100%}.glsr-contact_form_7 form.glsr-form input.glsr-input{overflow:visible}.glsr-contact_form_7 form.glsr-form textarea.glsr-textarea{overflow:auto;resize:vertical}.glsr-contact_form_7 form.glsr-form input.glsr-input.glsr-is-invalid,.glsr-contact_form_7 form.glsr-form select.glsr-select.glsr-is-invalid,.glsr-contact_form_7 form.glsr-form textarea.glsr-textarea.glsr-is-invalid{border-color:#e02424}.glsr-contact_form_7 form.glsr-form .glsr-field-checkbox,.glsr-contact_form_7 form.glsr-form .glsr-field-radio{display:flex}.glsr-contact_form_7 form.glsr-form .glsr-field-checkbox label,.glsr-contact_form_7 form.glsr-form .glsr-field-radio label{align-items:flex-start;display:inline-flex;margin:0}.glsr-contact_form_7 form.glsr-form .glsr-field-checkbox span:first-of-type,.glsr-contact_form_7 form.glsr-form .glsr-field-radio span:first-of-type{align-items:center;display:flex}.glsr-contact_form_7 form.glsr-form input[type=checkbox].glsr-input-checkbox,.glsr-contact_form_7 form.glsr-form input[type=radio].glsr-input-radio{box-sizing:border-box;display:inline-block;flex-shrink:0;height:1rem;left:0;margin-left:0;margin-right:.5rem;margin-top:0;outline:none;padding:0;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}.glsr-contact_form_7.glsr-rtl form.glsr-form input[type=checkbox].glsr-input-checkbox,.glsr-contact_form_7.glsr-rtl form.glsr-form input[type=radio].glsr-input-radio{margin-left:.5rem;margin-right:0}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle{align-items:flex-start;display:inline-flex;flex-direction:row-reverse}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle label{display:block;margin-left:.5rem}.glsr-contact_form_7.glsr-rtl form.glsr-form .glsr-field-toggle label{margin-left:0;margin-right:.5rem}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:999px;border-color:transparent!important;border-width:1px;box-shadow:none;box-sizing:border-box;cursor:pointer;display:block;height:1.4rem;left:auto;margin:0!important;overflow:hidden;padding:0!important;position:absolute;top:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:calc(2.8rem - 6px);z-index:0}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle input[type=checkbox]:after,.glsr-contact_form_7 form.glsr-form .glsr-field-toggle input[type=checkbox]:before{display:none}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track{background-color:transparent;border-radius:999px;box-sizing:border-box;height:1.4rem;opacity:1;padding:3px;pointer-events:none;position:relative;transition:background-color .15s ease-in-out;width:calc(2.8rem - 6px)}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track{background-color:currentColor;transition:background-color .15s ease-in-out}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:before{background-color:currentColor;border-radius:999px;content:"";display:block;height:100%;left:0;opacity:.15;position:absolute;top:0;width:100%}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before{background-color:currentColor;opacity:1;transition:background-color .15s ease-in-out,opacity .15s ease-in-out}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle input[type=checkbox]+.glsr-toggle-track:after{background-color:#fff;border-radius:999px;box-shadow:0 .175rem .35rem rgba(0,0,0,.2);content:"";display:block;height:calc(1.4rem - 6px);pointer-events:none;position:relative;transition:transform 75ms ease-in-out;width:calc(1.4rem - 6px);z-index:1}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:after{transform:translateX(calc(1.4rem - 6px))}.glsr-contact_form_7 form.glsr-form .glsr-field-toggle .glsr-toggle-switch{align-items:center;display:flex;flex-shrink:0;position:relative}.glsr-contact_form_7 form.glsr-form .gl-star-rating[data-star-rating]{align-items:center;display:flex;position:relative}.glsr-contact_form_7 form.glsr-form .gl-star-rating[data-star-rating]>select{clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);height:1px;overflow:hidden;position:absolute!important;top:0;visibility:visible!important;white-space:nowrap;width:1px}.glsr-contact_form_7 form.glsr-form .gl-star-rating[data-star-rating]>select:after,.glsr-contact_form_7 form.glsr-form .gl-star-rating[data-star-rating]>select:before{display:none!important}.glsr-contact_form_7 form.glsr-form .gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{content:"";display:block;height:100%;border-radius:.15rem;outline:1px solid transparent;box-shadow:0 0 0 3px Highlight;box-shadow:0 0 0 3px -moz-mac-focusring;box-shadow:0 0 0 3px -webkit-focus-ring-color;outline:none;pointer-events:none;position:absolute;width:100%}.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars{align-items:center;cursor:pointer;display:flex;position:relative}.glsr-contact_form_7 select[disabled]+.gl-star-rating-stars{cursor:default}.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars>span{background-image:none;background-repeat:no-repeat;background-size:contain;height:2rem;width:2rem}.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s10>span:first-child,.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s20>span:nth-child(-1n+2),.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s30>span:nth-child(-1n+3),.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s40>span:nth-child(-1n+4),.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s50>span:nth-child(-1n+5),.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s60>span:nth-child(-1n+6),.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s70>span:nth-child(-1n+7),.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s80>span:nth-child(-1n+8),.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s90>span:nth-child(-1n+9),.glsr-contact_form_7 form.glsr-form .gl-star-rating-stars.s100>span{background-image:none}.glsr-contact_form_7 form.glsr-form [type=submit]{white-space:nowrap}.glsr-contact_form_7 form.glsr-form [type=submit] .glsr-button-loading{display:none}.glsr-contact_form_7 form.glsr-form [type=submit][disabled] .glsr-button-loading{display:inline;position:relative}.glsr-contact_form_7 form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-contact_form_7 form.glsr-form [type=submit] .glsr-button-loading:before{-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite;border-radius:100%;border:.2em solid;box-sizing:border-box;content:"";display:inline-block;height:1em;margin:-.5em auto 0;position:absolute;top:50%;width:1em}.glsr-contact_form_7 form.glsr-form [type=submit] .glsr-button-loading:before{border-top-color:transparent;opacity:.5}.glsr-contact_form_7 form.glsr-form [type=submit] .glsr-button-loading:after{border-color:currentColor transparent transparent}.glsr-contact_form_7.glsr-ltr form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-right:1.65em}.glsr-contact_form_7.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-contact_form_7.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:before{left:0}.glsr-contact_form_7.glsr-rtl form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-left:1.65em}.glsr-contact_form_7.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-contact_form_7.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:before{right:0}.glsr-contact_form_7 .glsr-summary{align-items:center;display:flex;flex-wrap:wrap;font-family:inherit;font-size:1rem;line-height:1.5;max-width:400px;position:relative;width:100%}.glsr-contact_form_7 .glsr-summary>div:first-of-type{margin-top:0}.glsr-contact_form_7 .glsr-bar{display:table-row;white-space:nowrap}.glsr-contact_form_7 .glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-contact_form_7 .glsr-bar-background{position:relative;width:100%}.glsr-contact_form_7 .glsr-bar-background:before{background-color:currentColor;content:"";display:block;height:1rem;margin-top:-.5rem;opacity:.1;position:absolute;top:50%;width:100%}.glsr-contact_form_7 .glsr-bar-background-percent{background-color:#faca15;display:block;height:1rem;position:relative}.glsr-contact_form_7 .glsr-bar-label{line-height:1;padding:.25rem .5rem .25rem 0}.glsr-contact_form_7.glsr-rtl.glsr-bar-label{padding-right:0;padding-left:.5rem}.glsr-contact_form_7 .glsr-bar-percent{line-height:1;padding-left:.5rem;padding-right:0;text-align:right}.glsr-contact_form_7.glsr-rtl.glsr-bar-percent{padding-left:0;padding-right:.5rem}.glsr-contact_form_7 .glsr-summary-percentages{font-size:1rem;line-height:1.5;margin-top:.5rem;max-width:400px;position:relative;width:100%}.glsr-contact_form_7 .glsr-summary-rating{display:inline-block;font-size:1.5rem;font-weight:700;line-height:1;margin-left:0;margin-right:.5rem;vertical-align:top}.glsr-contact_form_7.glsr-rtl.glsr-summary-rating{margin-left:.5rem;margin-right:0}.glsr-contact_form_7 .glsr-summary-stars{display:inline-block;margin-left:0;margin-right:.5rem}.glsr-contact_form_7.glsr-rtl.glsr-summary-stars{margin-left:.5rem;margin-right:0}.glsr-contact_form_7 .glsr-summary-stars .glsr-star{background-size:1.5rem;height:1.5rem;width:1.5rem}.glsr-contact_form_7.glsr-rtl.glsr-summary-stars .glsr-star{transform:scaleX(-1)}.glsr-contact_form_7 .glsr-summary-text{margin-top:.5rem;width:100%}.glsr-contact_form_7 form.glsr-form .glsr-form-message{margin-left:0;margin-right:0}.glsr-contact_form_7 form.glsr-form .glsr-form-message:not(.glsr-form-failed):not(.glsr-form-success),.glsr-contact_form_7 form.glsr-form:not(.glsr-form-is-invalid) .glsr-field-error{display:none}
assets/styles/custom/bootstrap_4.css DELETED
@@ -1,623 +0,0 @@
1
- /*!
2
- * Star Rating
3
- * @version: 3.1.4
4
- * @author: Paul Ryley (http://geminilabs.io)
5
- * @url: https://github.com/pryley/star-rating.js
6
- * @license: MIT
7
- */
8
- form.glsr-form .gl-star-rating[data-star-rating] {
9
- position: relative;
10
- display: block;
11
- }
12
-
13
- form.glsr-form .gl-star-rating[data-star-rating] > select {
14
- overflow: hidden;
15
- visibility: visible !important;
16
- position: absolute !important;
17
- top: 0;
18
- width: 1px;
19
- height: 1px;
20
- clip: rect(1px, 1px, 1px, 1px);
21
- -webkit-clip-path: circle(1px at 0 0);
22
- clip-path: circle(1px at 0 0);
23
- white-space: nowrap;
24
- }
25
-
26
- form.glsr-form .gl-star-rating[data-star-rating] > select::before,
27
- form.glsr-form .gl-star-rating[data-star-rating] > select::after {
28
- display: none !important;
29
- }
30
-
31
- form.glsr-form .gl-star-rating-ltr[data-star-rating] > select {
32
- left: 0;
33
- }
34
-
35
- form.glsr-form .gl-star-rating-rtl[data-star-rating] > select {
36
- right: 0;
37
- }
38
-
39
- form.glsr-form .gl-star-rating[data-star-rating] > select:focus + .gl-star-rating-stars::before {
40
- opacity: 0.5;
41
- display: block;
42
- position: absolute;
43
- width: 100%;
44
- height: 100%;
45
- content: '';
46
- outline: dotted 1px currentColor;
47
- pointer-events: none;
48
- }
49
-
50
- form.glsr-form .gl-star-rating-stars {
51
- position: relative;
52
- display: inline-block;
53
- height: 26px;
54
- vertical-align: middle;
55
- cursor: pointer;
56
- }
57
-
58
- form.glsr-form .gl-star-rating-stars > span {
59
- display: inline-block;
60
- width: 24px;
61
- height: 24px;
62
- background-size: 24px;
63
- background-repeat: no-repeat;
64
- background-image: none;
65
- margin: 0 4px 0 0;
66
- }
67
-
68
- form.glsr-form .gl-star-rating-stars > span:last-of-type {
69
- margin-right: 0;
70
- }
71
-
72
- form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars > span {
73
- margin: 0 0 0 4px;
74
- }
75
-
76
- form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars > span:last-of-type {
77
- margin-left: 0;
78
- }
79
-
80
- form.glsr-form .gl-star-rating-stars.s10 > span:nth-child(1),
81
- form.glsr-form .gl-star-rating-stars.s20 > span:nth-child(-1n+2),
82
- form.glsr-form .gl-star-rating-stars.s30 > span:nth-child(-1n+3),
83
- form.glsr-form .gl-star-rating-stars.s40 > span:nth-child(-1n+4),
84
- form.glsr-form .gl-star-rating-stars.s50 > span:nth-child(-1n+5),
85
- form.glsr-form .gl-star-rating-stars.s60 > span:nth-child(-1n+6),
86
- form.glsr-form .gl-star-rating-stars.s70 > span:nth-child(-1n+7),
87
- form.glsr-form .gl-star-rating-stars.s80 > span:nth-child(-1n+8),
88
- form.glsr-form .gl-star-rating-stars.s90 > span:nth-child(-1n+9),
89
- form.glsr-form .gl-star-rating-stars.s100 > span {
90
- background-image: url(../img/star-full.svg);
91
- }
92
-
93
- form.glsr-form .gl-star-rating-text {
94
- display: inline-block;
95
- position: relative;
96
- height: 26px;
97
- line-height: 26px;
98
- font-size: 0.8em;
99
- font-weight: 600;
100
- color: #fff;
101
- background-color: #1a1a1a;
102
- white-space: nowrap;
103
- vertical-align: middle;
104
- padding: 0 12px 0 6px;
105
- margin: 0 0 0 12px;
106
- }
107
-
108
- form.glsr-form .gl-star-rating-text::before {
109
- position: absolute;
110
- top: 0;
111
- left: -12px;
112
- width: 0;
113
- height: 0;
114
- content: "";
115
- border-style: solid;
116
- border-width: 13px 12px 13px 0;
117
- border-color: transparent #1a1a1a transparent transparent;
118
- }
119
-
120
- form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-text {
121
- padding: 0 6px 0 12px;
122
- margin: 0 12px 0 0;
123
- }
124
-
125
- form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-text::before {
126
- left: unset;
127
- right: -12px;
128
- border-width: 13px 0 13px 12px;
129
- border-color: transparent transparent transparent #1a1a1a;
130
- }
131
-
132
- @-webkit-keyframes glsr-loader {
133
- 0% {
134
- -webkit-transform: rotate(0deg);
135
- transform: rotate(0deg);
136
- }
137
- 100% {
138
- -webkit-transform: rotate(360deg);
139
- transform: rotate(360deg);
140
- }
141
- }
142
-
143
- @keyframes glsr-loader {
144
- 0% {
145
- -webkit-transform: rotate(0deg);
146
- transform: rotate(0deg);
147
- }
148
- 100% {
149
- -webkit-transform: rotate(360deg);
150
- transform: rotate(360deg);
151
- }
152
- }
153
-
154
- form.glsr-form label {
155
- float: none;
156
- display: block;
157
- -webkit-hyphens: none;
158
- -ms-hyphens: none;
159
- hyphens: none;
160
- }
161
-
162
- form.glsr-form label.glsr-checkbox-label,
163
- form.glsr-form label.glsr-radio-label {
164
- display: inline;
165
- }
166
-
167
- form.glsr-form select.glsr-star-rating {
168
- visibility: hidden !important;
169
- display: block;
170
- }
171
-
172
- form.glsr-form input[type=text],
173
- form.glsr-form input[type=email],
174
- form.glsr-form textarea {
175
- float: none;
176
- display: block;
177
- width: 100%;
178
- font-size: inherit;
179
- line-height: inherit;
180
- -webkit-box-sizing: border-box;
181
- box-sizing: border-box;
182
- }
183
-
184
- form.glsr-form [type=submit] {
185
- white-space: nowrap;
186
- }
187
-
188
- form.glsr-form [type=submit] .glsr-button-loading {
189
- display: none;
190
- }
191
-
192
- form.glsr-form [type=submit][disabled] .glsr-button-loading {
193
- display: inline;
194
- position: relative;
195
- }
196
-
197
- form.glsr-form [type=submit] .glsr-button-loading::before,
198
- form.glsr-form [type=submit] .glsr-button-loading::after {
199
- display: inline-block;
200
- position: absolute;
201
- top: 50%;
202
- height: 1em;
203
- width: 1em;
204
- content: '';
205
- border: 0.2em solid currentColor;
206
- border-radius: 100%;
207
- -webkit-box-sizing: border-box;
208
- box-sizing: border-box;
209
- margin: -0.5em auto 0;
210
- -webkit-animation: glsr-loader 0.5s infinite linear;
211
- animation: glsr-loader 0.5s infinite linear;
212
- }
213
-
214
- form.glsr-form [type=submit] .glsr-button-loading::before {
215
- opacity: 0.5;
216
- border-top-color: transparent;
217
- }
218
-
219
- form.glsr-form [type=submit] .glsr-button-loading::after {
220
- border-color: transparent;
221
- border-top-color: currentColor;
222
- }
223
-
224
- .glsr-ltr form.glsr-form [type=submit][disabled] .glsr-button-loading {
225
- margin-right: 1.65em;
226
- }
227
-
228
- .glsr-ltr form.glsr-form [type=submit] .glsr-button-loading::before,
229
- .glsr-ltr form.glsr-form [type=submit] .glsr-button-loading::after {
230
- left: 0;
231
- }
232
-
233
- .glsr-ltr form.glsr-form .glsr-required label span::after {
234
- margin-left: 0.33em;
235
- }
236
-
237
- .glsr-rtl form.glsr-form [type=submit][disabled] .glsr-button-loading {
238
- margin-left: 1.65em;
239
- }
240
-
241
- .glsr-rtl form.glsr-form [type=submit] .glsr-button-loading::before,
242
- .glsr-rtl form.glsr-form [type=submit] .glsr-button-loading::after {
243
- right: 0;
244
- }
245
-
246
- .glsr-rtl form.glsr-form .glsr-required label span::after {
247
- margin-right: 0.33em;
248
- }
249
-
250
- .glsr-disabled .glsr-button {
251
- pointer-events: none;
252
- cursor: wait;
253
- opacity: .5;
254
- }
255
-
256
- .glsr-field {
257
- position: relative;
258
- }
259
-
260
- .glsr-field ul {
261
- list-style-type: none;
262
- }
263
-
264
- .glsr-error {
265
- font-size: 0.875em;
266
- }
267
-
268
- .glsr-hidden {
269
- display: none;
270
- }
271
-
272
- .glsr-loader {
273
- display: none;
274
- position: absolute;
275
- bottom: 0;
276
- left: calc(50% - 12px);
277
- width: 24px;
278
- height: 24px;
279
- border-radius: 50%;
280
- -webkit-animation: glsr-loader 0.5s infinite linear;
281
- animation: glsr-loader 0.5s infinite linear;
282
- -webkit-transform: translateZ(0);
283
- transform: translateZ(0);
284
- margin: 0;
285
- }
286
-
287
- .glsr-loader::before, .glsr-loader::after {
288
- content: '';
289
- position: absolute;
290
- width: 8px;
291
- height: 8px;
292
- background: rgba(0, 0, 0, 0.75);
293
- border-radius: 50%;
294
- }
295
-
296
- .glsr-loader::before {
297
- top: 0;
298
- left: 0;
299
- }
300
-
301
- .glsr-loader::after {
302
- bottom: 0;
303
- right: 0;
304
- }
305
-
306
- .glsr-hide .glsr-loader {
307
- display: block;
308
- }
309
-
310
- .glsr-read-more {
311
- white-space: nowrap;
312
- }
313
-
314
- .glsr-read-more::before {
315
- content: '\2026';
316
- }
317
-
318
- .glsr-ltr .glsr-read-more::before {
319
- margin-right: 0.5em;
320
- }
321
-
322
- .glsr-rtl .glsr-read-more::before {
323
- margin-left: 0.5em;
324
- }
325
-
326
- .glsr-visible + .glsr-read-more::before {
327
- content: '';
328
- }
329
-
330
- .glsr-recaptcha-holder {
331
- margin-top: 1em;
332
- }
333
-
334
- .glsr-reviews-wrap {
335
- position: relative;
336
- }
337
-
338
- .glsr-reviews-wrap::after {
339
- display: table;
340
- content: '';
341
- clear: both;
342
- }
343
-
344
- .glsr-summary-wrap .screen-reader-text,
345
- .glsr-reviews-wrap .screen-reader-text {
346
- position: absolute;
347
- height: 1px;
348
- width: 1px;
349
- border: 0;
350
- overflow: hidden;
351
- clip: rect(0 0 0 0);
352
- word-wrap: normal !important;
353
- padding: 0;
354
- margin: -1px;
355
- }
356
-
357
- .glsr-star {
358
- display: inline-block;
359
- background-repeat: no-repeat;
360
- }
361
-
362
- .glsr-default .glsr-review::after,
363
- .glsr-default .glsr-pagination::after {
364
- content: '';
365
- display: table;
366
- clear: both;
367
- }
368
-
369
- .glsr-default .glsr-review {
370
- margin-bottom: 48px;
371
- }
372
-
373
- .glsr-default .glsr-review > div {
374
- margin-bottom: 16px;
375
- }
376
-
377
- .glsr-default .glsr-review > div:last-of-type {
378
- margin-bottom: 0;
379
- }
380
-
381
- .glsr-default .glsr-review p {
382
- white-space: pre-line;
383
- margin: 0 0 16px;
384
- }
385
-
386
- .glsr-default .glsr-review,
387
- .glsr-default .glsr-pagination .navigation {
388
- opacity: 1;
389
- -webkit-transition: opacity 500ms;
390
- transition: opacity 500ms;
391
- }
392
-
393
- .glsr-default.glsr-hide .glsr-review,
394
- .glsr-default.glsr-hide .glsr-pagination .navigation {
395
- opacity: 0 !important;
396
- }
397
-
398
- .glsr-default .glsr-review-assigned_to {
399
- display: block;
400
- font-style: italic;
401
- }
402
-
403
- .glsr-default .glsr-review-author {
404
- display: inline-block;
405
- vertical-align: top;
406
- }
407
-
408
- .glsr-default .glsr-review-avatar + .glsr-review-author {
409
- margin-top: 0.5em;
410
- }
411
-
412
- .glsr-default *:not(.glsr-review-avatar) + .glsr-review-author::before {
413
- content: '\2014';
414
- }
415
-
416
- .glsr-default .glsr-review-avatar img {
417
- display: block;
418
- -o-object-fit: cover;
419
- object-fit: cover;
420
- }
421
-
422
- .glsr-default .glsr-review-content p {
423
- line-height: 1.5;
424
- }
425
-
426
- .glsr-default .glsr-review-date {
427
- display: inline-block;
428
- font-style: italic;
429
- white-space: nowrap;
430
- }
431
-
432
- .glsr-default .glsr-review-rating {
433
- display: inline-block;
434
- }
435
-
436
- .glsr-default .glsr-review-response {
437
- position: relative;
438
- clear: both;
439
- }
440
-
441
- .glsr-default .glsr-review-response p:last-of-type {
442
- font-size: 14px;
443
- margin-bottom: 0;
444
- }
445
-
446
- .glsr-default .glsr-review-response-background {
447
- opacity: 0.1;
448
- position: absolute;
449
- top: 0;
450
- left: 0;
451
- width: 100%;
452
- height: 100%;
453
- background-color: currentColor;
454
- border-radius: 2px;
455
- padding: 1em;
456
- }
457
-
458
- .glsr-default .glsr-review-response-background::before {
459
- content: '';
460
- display: block;
461
- position: absolute;
462
- top: -1.5em;
463
- height: 0;
464
- width: 0;
465
- border-style: solid;
466
- border-color: currentColor transparent;
467
- border-width: 0 0 1.5em 0;
468
- }
469
-
470
- .glsr-default .glsr-review-response-inner {
471
- position: relative;
472
- padding: 1em;
473
- z-index: 1;
474
- }
475
-
476
- .glsr-ltr .glsr-default .glsr-review-avatar {
477
- float: left;
478
- margin-right: 1em;
479
- }
480
-
481
- .glsr-ltr .glsr-default .glsr-review-rating {
482
- margin-right: 0.5em;
483
- }
484
-
485
- .glsr-ltr .glsr-default .glsr-review-response-background::before {
486
- right: 3em;
487
- border-right-width: 2em;
488
- }
489
-
490
- .glsr-rtl .glsr-default .glsr-review-avatar {
491
- float: right;
492
- margin-left: 1em;
493
- }
494
-
495
- .glsr-rtl .glsr-default .glsr-review-rating {
496
- margin-left: 0.5em;
497
- }
498
-
499
- .glsr-rtl .glsr-default .glsr-review-response-background::before {
500
- left: 3em;
501
- border-left-width: 2em;
502
- }
503
-
504
- .glsr-star {
505
- font-size: inherit;
506
- background-size: 20px;
507
- height: 20px;
508
- width: 20px;
509
- }
510
-
511
- .glsr-default.glsr-summary {
512
- position: relative;
513
- width: 100%;
514
- max-width: 400px;
515
- font-size: 16px;
516
- line-height: 1.5;
517
- }
518
-
519
- .glsr-default.glsr-summary > div {
520
- margin-bottom: 8px;
521
- }
522
-
523
- .glsr-default.glsr-summary > div:last-of-type {
524
- margin-bottom: 0;
525
- }
526
-
527
- .glsr-default .glsr-bar {
528
- display: table-row;
529
- white-space: nowrap;
530
- }
531
-
532
- .glsr-default .glsr-bar > span {
533
- display: table-cell;
534
- vertical-align: middle;
535
- }
536
-
537
- .glsr-default .glsr-bar-background {
538
- position: relative;
539
- width: 100%;
540
- }
541
-
542
- .glsr-default .glsr-bar-background::before {
543
- opacity: 0.1;
544
- display: block;
545
- position: absolute;
546
- content: '';
547
- width: 100%;
548
- height: 12px;
549
- background-color: currentColor;
550
- }
551
-
552
- .glsr-default .glsr-bar-background-percent {
553
- position: relative;
554
- display: block;
555
- height: 12px;
556
- background-color: #ffb900;
557
- }
558
-
559
- .glsr-default .glsr-bar-percent {
560
- text-align: right;
561
- font-size: 14px;
562
- }
563
-
564
- .glsr-default .glsr-summary-percentage {
565
- position: relative;
566
- width: 100%;
567
- max-width: 400px;
568
- font-size: 16px;
569
- line-height: 1.5;
570
- }
571
-
572
- .glsr-default .glsr-summary-rating {
573
- display: inline-block;
574
- line-height: 1.25;
575
- font-size: 24px;
576
- font-weight: 700;
577
- vertical-align: top;
578
- }
579
-
580
- .glsr-default .glsr-summary-stars {
581
- display: inline-block;
582
- }
583
-
584
- .glsr-default .glsr-summary-stars .glsr-star {
585
- width: 24px;
586
- height: 24px;
587
- background-size: 24px;
588
- }
589
-
590
- .glsr-ltr .glsr-default .glsr-bar-label {
591
- padding-right: 10px;
592
- }
593
-
594
- .glsr-ltr .glsr-default .glsr-bar-percent {
595
- padding-left: 10px;
596
- }
597
-
598
- .glsr-ltr .glsr-default .glsr-summary-rating,
599
- .glsr-ltr .glsr-default .glsr-summary-stars {
600
- margin-right: 10px;
601
- }
602
-
603
- .glsr-rtl .glsr-default .glsr-bar-label {
604
- padding-left: 10px;
605
- }
606
-
607
- .glsr-rtl .glsr-default .glsr-bar-percent {
608
- padding-right: 10px;
609
- }
610
-
611
- .glsr-rtl .glsr-default .glsr-summary-rating,
612
- .glsr-rtl .glsr-default .glsr-summary-stars {
613
- margin-left: 10px;
614
- }
615
-
616
- .glsr-rtl .glsr-default .glsr-summary-stars .glsr-star {
617
- -webkit-transform: scaleX(-1);
618
- transform: scaleX(-1);
619
- }
620
-
621
- .glsr-has-error .invalid-feedback {
622
- display: block;
623
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/styles/custom/bootstrap_4_custom.css DELETED
@@ -1 +0,0 @@
1
- form.glsr-form .gl-star-rating[data-star-rating]{position:relative;display:block}form.glsr-form .gl-star-rating[data-star-rating]>select{overflow:hidden;visibility:visible!important;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}form.glsr-form .gl-star-rating[data-star-rating]>select:after,form.glsr-form .gl-star-rating[data-star-rating]>select:before{display:none!important}form.glsr-form .gl-star-rating-ltr[data-star-rating]>select{left:0}form.glsr-form .gl-star-rating-rtl[data-star-rating]>select{right:0}form.glsr-form .gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}form.glsr-form .gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}form.glsr-form select[disabled]+.gl-star-rating-stars{cursor:default}form.glsr-form .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:none;margin:0 4px 0 0}form.glsr-form .gl-star-rating-stars>span:last-of-type{margin-right:0}form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}form.glsr-form .gl-star-rating-stars.s10>span:first-child,form.glsr-form .gl-star-rating-stars.s20>span:nth-child(-1n+2),form.glsr-form .gl-star-rating-stars.s30>span:nth-child(-1n+3),form.glsr-form .gl-star-rating-stars.s40>span:nth-child(-1n+4),form.glsr-form .gl-star-rating-stars.s50>span:nth-child(-1n+5),form.glsr-form .gl-star-rating-stars.s60>span:nth-child(-1n+6),form.glsr-form .gl-star-rating-stars.s70>span:nth-child(-1n+7),form.glsr-form .gl-star-rating-stars.s80>span:nth-child(-1n+8),form.glsr-form .gl-star-rating-stars.s90>span:nth-child(-1n+9),form.glsr-form .gl-star-rating-stars.s100>span{background-image:url(../img/star-full.svg)}form.glsr-form .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}form.glsr-form .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-color:transparent #1a1a1a transparent transparent;border-style:solid;border-width:13px 12px 13px 0}form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}@-webkit-keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}form.glsr-form label{float:none;display:block;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}form.glsr-form label.glsr-checkbox-label,form.glsr-form label.glsr-radio-label{display:inline}form.glsr-form select.glsr-star-rating{visibility:hidden!important;display:block}form.glsr-form input[type=email],form.glsr-form input[type=text],form.glsr-form textarea{float:none;display:block;width:100%;font-size:inherit;line-height:inherit;box-sizing:border-box}form.glsr-form [type=submit]{white-space:nowrap}form.glsr-form [type=submit] .glsr-button-loading{display:none}form.glsr-form [type=submit][disabled] .glsr-button-loading{display:inline;position:relative}form.glsr-form [type=submit] .glsr-button-loading:after,form.glsr-form [type=submit] .glsr-button-loading:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite}form.glsr-form [type=submit] .glsr-button-loading:before{opacity:.5;border-top-color:transparent}form.glsr-form [type=submit] .glsr-button-loading:after{border-color:currentColor transparent transparent}.glsr-ltr form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-right:1.65em}.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:before{left:0}.glsr-ltr form.glsr-form .glsr-required label span:after{margin-left:.33em}.glsr-rtl form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-left:1.65em}.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:before{right:0}.glsr-rtl form.glsr-form .glsr-required label span:after{margin-right:.33em}.glsr-disabled .glsr-button{pointer-events:none;cursor:wait;opacity:.5}.glsr-field{position:relative}.glsr-field ul{list-style-type:none}.glsr-error{font-size:.875em}.glsr-hidden{display:none}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}.glsr-hide .glsr-loader{display:block}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026"}.glsr-ltr .glsr-read-more:before{margin-right:.5em}.glsr-rtl .glsr-read-more:before{margin-left:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-recaptcha-holder{margin-top:1em}.glsr-reviews-wrap{position:relative}.glsr-reviews-wrap:after{display:table;content:"";clear:both}.glsr-reviews-wrap .screen-reader-text,.glsr-summary-wrap .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-star{display:inline-block;background-repeat:no-repeat}.glsr-default .glsr-pagination:after,.glsr-default .glsr-review:after{content:"";display:table;clear:both}.glsr-default .glsr-review{margin-bottom:48px}.glsr-default .glsr-review>div{margin-bottom:16px}.glsr-default .glsr-review>div:last-of-type{margin-bottom:0}.glsr-default .glsr-review p{white-space:pre-line;margin:0 0 16px}.glsr-default .glsr-pagination .navigation,.glsr-default .glsr-review{opacity:1;transition:opacity .5s}.glsr-default.glsr-hide .glsr-pagination .navigation,.glsr-default.glsr-hide .glsr-review{opacity:0!important}.glsr-default .glsr-review-assigned_to{display:block;font-style:italic}.glsr-default .glsr-review-author{display:inline-block;vertical-align:top}.glsr-default .glsr-review-avatar+.glsr-review-author{margin-top:.5em}.glsr-default :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}.glsr-default .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}.glsr-default .glsr-review-content p{line-height:1.5}.glsr-default .glsr-review-date{display:inline-block;font-style:italic;white-space:nowrap}.glsr-default .glsr-review-rating{display:inline-block}.glsr-default .glsr-review-response{position:relative;clear:both}.glsr-default .glsr-review-response p:last-of-type{font-size:14px;margin-bottom:0}.glsr-default .glsr-review-response-background{opacity:.1;position:absolute;top:0;left:0;width:100%;height:100%;background-color:currentColor;border-radius:2px;padding:1em}.glsr-default .glsr-review-response-background:before{content:"";display:block;position:absolute;top:-1.5em;height:0;width:0;border-color:currentcolor transparent;border-style:solid;border-width:0 0 1.5em}.glsr-default .glsr-review-response-inner{position:relative;padding:1em;z-index:1}.glsr-ltr .glsr-default .glsr-review-avatar{float:left;margin-right:1em}.glsr-ltr .glsr-default .glsr-review-rating{margin-right:.5em}.glsr-ltr .glsr-default .glsr-review-response-background:before{right:3em;border-right-width:2em}.glsr-rtl .glsr-default .glsr-review-avatar{float:right;margin-left:1em}.glsr-rtl .glsr-default .glsr-review-rating{margin-left:.5em}.glsr-rtl .glsr-default .glsr-review-response-background:before{left:3em;border-left-width:2em}.glsr-star{font-size:inherit;background-size:20px;height:20px;width:20px}.glsr-default.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5}.glsr-default.glsr-summary>div{margin-bottom:8px}.glsr-default.glsr-summary>div:last-of-type{margin-bottom:0}.glsr-default .glsr-bar{display:table-row;white-space:nowrap}.glsr-default .glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-default .glsr-bar-background{position:relative;width:100%}.glsr-default .glsr-bar-background:before{opacity:.1;display:block;position:absolute;content:"";width:100%;height:12px;background-color:currentColor}.glsr-default .glsr-bar-background-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-default .glsr-bar-percent{text-align:right;font-size:14px}.glsr-default .glsr-summary-percentage{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5}.glsr-default .glsr-summary-rating{display:inline-block;line-height:1.25;font-size:24px;font-weight:700;vertical-align:top}.glsr-default .glsr-summary-stars{display:inline-block}.glsr-default .glsr-summary-stars .glsr-star{width:24px;height:24px;background-size:24px}.glsr-ltr .glsr-default .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-default .glsr-bar-percent{padding-left:10px}.glsr-ltr .glsr-default .glsr-summary-rating,.glsr-ltr .glsr-default .glsr-summary-stars{margin-right:10px}.glsr-rtl .glsr-default .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-default .glsr-bar-percent{padding-right:10px}.glsr-rtl .glsr-default .glsr-summary-rating,.glsr-rtl .glsr-default .glsr-summary-stars{margin-left:10px}.glsr-rtl .glsr-default .glsr-summary-stars .glsr-star{transform:scaleX(-1)}.glsr-has-error .invalid-feedback{display:block}
 
assets/styles/custom/contact_form_7.css DELETED
@@ -1 +0,0 @@
1
- form.glsr-form .gl-star-rating[data-star-rating]{position:relative;display:block}form.glsr-form .gl-star-rating[data-star-rating]>select{overflow:hidden;visibility:visible!important;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}form.glsr-form .gl-star-rating[data-star-rating]>select:after,form.glsr-form .gl-star-rating[data-star-rating]>select:before{display:none!important}form.glsr-form .gl-star-rating-ltr[data-star-rating]>select{left:0}form.glsr-form .gl-star-rating-rtl[data-star-rating]>select{right:0}form.glsr-form .gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}form.glsr-form .gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}form.glsr-form select[disabled]+.gl-star-rating-stars{cursor:default}form.glsr-form .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:none;margin:0 4px 0 0}form.glsr-form .gl-star-rating-stars>span:last-of-type{margin-right:0}form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}form.glsr-form .gl-star-rating-stars.s10>span:first-child,form.glsr-form .gl-star-rating-stars.s20>span:nth-child(-1n+2),form.glsr-form .gl-star-rating-stars.s30>span:nth-child(-1n+3),form.glsr-form .gl-star-rating-stars.s40>span:nth-child(-1n+4),form.glsr-form .gl-star-rating-stars.s50>span:nth-child(-1n+5),form.glsr-form .gl-star-rating-stars.s60>span:nth-child(-1n+6),form.glsr-form .gl-star-rating-stars.s70>span:nth-child(-1n+7),form.glsr-form .gl-star-rating-stars.s80>span:nth-child(-1n+8),form.glsr-form .gl-star-rating-stars.s90>span:nth-child(-1n+9),form.glsr-form .gl-star-rating-stars.s100>span{background-image:url(../img/star-full.svg)}form.glsr-form .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}form.glsr-form .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-color:transparent #1a1a1a transparent transparent;border-style:solid;border-width:13px 12px 13px 0}form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}form.glsr-form .gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}@-webkit-keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes glsr-loader{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}form.glsr-form label{float:none;display:block;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}form.glsr-form label.glsr-checkbox-label,form.glsr-form label.glsr-radio-label{display:inline}form.glsr-form select.glsr-star-rating{visibility:hidden!important;display:block}form.glsr-form input[type=email],form.glsr-form input[type=text],form.glsr-form textarea{float:none;display:block;width:100%;font-size:inherit;line-height:inherit;box-sizing:border-box}form.glsr-form [type=submit]{white-space:nowrap}form.glsr-form [type=submit] .glsr-button-loading{display:none}form.glsr-form [type=submit][disabled] .glsr-button-loading{display:inline;position:relative}form.glsr-form [type=submit] .glsr-button-loading:after,form.glsr-form [type=submit] .glsr-button-loading:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite}form.glsr-form [type=submit] .glsr-button-loading:before{opacity:.5;border-top-color:transparent}form.glsr-form [type=submit] .glsr-button-loading:after{border-color:currentColor transparent transparent}.glsr-ltr form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-right:1.65em}.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-ltr form.glsr-form [type=submit] .glsr-button-loading:before{left:0}.glsr-ltr form.glsr-form .glsr-required label span:after{margin-left:.33em}.glsr-rtl form.glsr-form [type=submit][disabled] .glsr-button-loading{margin-left:1.65em}.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:after,.glsr-rtl form.glsr-form [type=submit] .glsr-button-loading:before{right:0}.glsr-rtl form.glsr-form .glsr-required label span:after{margin-right:.33em}.glsr-disabled .glsr-button{pointer-events:none;cursor:wait;opacity:.5}.glsr-field{position:relative}.glsr-field ul{list-style-type:none}.glsr-error{font-size:.875em}.glsr-hidden{display:none}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;-webkit-animation:glsr-loader .5s linear infinite;animation:glsr-loader .5s linear infinite;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}.glsr-hide .glsr-loader{display:block}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026"}.glsr-ltr .glsr-read-more:before{margin-right:.5em}.glsr-rtl .glsr-read-more:before{margin-left:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-recaptcha-holder{margin-top:1em}.glsr-reviews-wrap{position:relative}.glsr-reviews-wrap:after{display:table;content:"";clear:both}.glsr-reviews-wrap .screen-reader-text,.glsr-summary-wrap .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-star{display:inline-block;background-repeat:no-repeat}.glsr-default .glsr-pagination:after,.glsr-default .glsr-review:after{content:"";display:table;clear:both}.glsr-default .glsr-review{margin-bottom:48px}.glsr-default .glsr-review>div{margin-bottom:16px}.glsr-default .glsr-review>div:last-of-type{margin-bottom:0}.glsr-default .glsr-review p{white-space:pre-line;margin:0 0 16px}.glsr-default .glsr-pagination .navigation,.glsr-default .glsr-review{opacity:1;transition:opacity .5s}.glsr-default.glsr-hide .glsr-pagination .navigation,.glsr-default.glsr-hide .glsr-review{opacity:0!important}.glsr-default .glsr-review-assigned_to{display:block;font-style:italic}.glsr-default .glsr-review-author{display:inline-block;vertical-align:top}.glsr-default .glsr-review-avatar+.glsr-review-author{margin-top:.5em}.glsr-default :not(.glsr-review-avatar)+.glsr-review-author:before{content:"\2014"}.glsr-default .glsr-review-avatar img{display:block;-o-object-fit:cover;object-fit:cover}.glsr-default .glsr-review-content p{line-height:1.5}.glsr-default .glsr-review-date{display:inline-block;font-style:italic;white-space:nowrap}.glsr-default .glsr-review-rating{display:inline-block}.glsr-default .glsr-review-response{position:relative;clear:both}.glsr-default .glsr-review-response p:last-of-type{font-size:14px;margin-bottom:0}.glsr-default .glsr-review-response-background{opacity:.1;position:absolute;top:0;left:0;width:100%;height:100%;background-color:currentColor;border-radius:2px;padding:1em}.glsr-de