All in One SEO Pack - Version 4.1.5.2

Version Description

This update adds major improvements and bugfixes.

Download this release

Release Info

Developer benjaminprojas
Plugin Icon 128x128 All in One SEO Pack
Version 4.1.5.2
Comparing to
See all releases

Code changes from version 4.1.5.1 to 4.1.5.2

Files changed (46) hide show
  1. all_in_one_seo_pack.php +1 -1
  2. app/Common/Api/PostsTerms.php +1 -1
  3. app/Common/Traits/Helpers/WpContext.php +21 -2
  4. dist/Lite/assets/css/about-AboutUs-vue.css +1 -1
  5. dist/Lite/assets/css/about-Main-vue.css +1 -3
  6. dist/Lite/assets/css/about-lite-LiteVsPro-vue.css +1 -1
  7. dist/Lite/assets/css/aioseo-admin-bar.css +1 -1
  8. dist/Lite/assets/css/aioseo-admin-bar.css.gz +0 -0
  9. dist/Lite/assets/css/headline-analyzer.css +1 -1
  10. dist/Lite/assets/css/headline-analyzer.css.gz +0 -0
  11. dist/Lite/assets/css/monsterinsights-Main-vue.css +1 -1
  12. dist/Lite/assets/css/redirects-pro-RedirectsActivate-vue.css +1 -1
  13. dist/Lite/assets/css/settings-Breadcrumbs-vue.css +1 -3
  14. dist/Lite/assets/css/settings-partials-Breadcrumbs-DateArchives-vue.css +1 -3
  15. dist/Lite/assets/css/setup-wizard-Import-vue.css +1 -1
  16. dist/Lite/assets/css/setup-wizard-Success-vue.css +1 -1
  17. dist/Lite/assets/css/sitemaps-Main-vue.css +1 -13
  18. dist/Lite/assets/css/sitemaps-NewsSitemap-vue.css +1 -3
  19. dist/Lite/assets/css/tools-partials-BackupSettings-vue.css +1 -1
  20. dist/Lite/assets/js/about.js +1 -1
  21. dist/Lite/assets/js/chunk-vendors.js +1 -1
  22. dist/Lite/assets/js/connect-pro.js +1 -1
  23. dist/Lite/assets/js/connect.js +1 -1
  24. dist/Lite/assets/js/dashboard.js +1 -1
  25. dist/Lite/assets/js/feature-manager.js +1 -1
  26. dist/Lite/assets/js/headline-analyzer.js +1 -1
  27. dist/Lite/assets/js/headline-analyzer.js.gz +0 -0
  28. dist/Lite/assets/js/link-format-block-old.js +1 -1
  29. dist/Lite/assets/js/link-format-block-old.js.gz +0 -0
  30. dist/Lite/assets/js/link-format-block.js +1 -1
  31. dist/Lite/assets/js/link-format-block.js.gz +0 -0
  32. dist/Lite/assets/js/link-format-classic.js +1 -1
  33. dist/Lite/assets/js/link-format-classic.js.gz +0 -0
  34. dist/Lite/assets/js/local-seo.js +1 -1
  35. dist/Lite/assets/js/monsterinsights.js +1 -1
  36. dist/Lite/assets/js/plugins.js +1 -1
  37. dist/Lite/assets/js/plugins.js.gz +0 -0
  38. dist/Lite/assets/js/redirects.js +1 -1
  39. dist/Lite/assets/js/search-appearance.js +1 -1
  40. dist/Lite/assets/js/seo-analysis.js +1 -1
  41. dist/Lite/assets/js/settings.js +1 -1
  42. dist/Lite/assets/js/setup-wizard.js +1 -1
  43. dist/Lite/assets/js/sitemaps.js +1 -1
  44. dist/Lite/assets/js/social-networks.js +1 -1
  45. dist/Lite/assets/js/tools.js +1 -1
  46. languages/aioseo-lite.php +297 -694
all_in_one_seo_pack.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs, business sites, ecommerce sites, and much more. More than 80 million downloads since 2007.
6
  * Author: All in One SEO Team
7
  * Author URI: https://aioseo.com/
8
- * Version: 4.1.5.1
9
  * Text Domain: all-in-one-seo-pack
10
  * Domain Path: /i18n/
11
  *
5
  * Description: SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs, business sites, ecommerce sites, and much more. More than 80 million downloads since 2007.
6
  * Author: All in One SEO Team
7
  * Author URI: https://aioseo.com/
8
+ * Version: 4.1.5.2
9
  * Text Domain: all-in-one-seo-pack
10
  * Domain Path: /i18n/
11
  *
app/Common/Api/PostsTerms.php CHANGED
@@ -145,7 +145,7 @@ class PostsTerms {
145
  'postData' => [
146
  'parsedTitle' => aioseo()->tags->replaceTags( $thePost->title, $args['postId'] ),
147
  'parsedDescription' => aioseo()->tags->replaceTags( $thePost->description, $args['postId'] ),
148
- 'content' => aioseo()->helpers->doShortcodes( self::getAnalysisContent( $args['postId'] ) ),
149
  'slug' => get_post_field( 'post_name', $args['postId'] )
150
  ]
151
  ], 200 );
145
  'postData' => [
146
  'parsedTitle' => aioseo()->tags->replaceTags( $thePost->title, $args['postId'] ),
147
  'parsedDescription' => aioseo()->tags->replaceTags( $thePost->description, $args['postId'] ),
148
+ 'content' => aioseo()->helpers->theContent( self::getAnalysisContent( $args['postId'] ) ),
149
  'slug' => get_post_field( 'post_name', $args['postId'] )
150
  ]
151
  ], 200 );
app/Common/Traits/Helpers/WpContext.php CHANGED
@@ -178,6 +178,7 @@ trait WpContext {
178
  return get_post();
179
  }
180
 
 
181
  if (
182
  $this->isScreenBase( 'post' ) ||
183
  $postId ||
@@ -209,10 +210,28 @@ trait WpContext {
209
  return $post->post_content;
210
  }
211
 
212
- $content[ $post->ID ] = apply_filters( 'the_content', $post->post_content );
213
  return $content[ $post->ID ];
214
  }
215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  /**
217
  * Returns the description based on the post content.
218
  *
@@ -238,7 +257,7 @@ trait WpContext {
238
  ! in_array( 'runShortcodesInDescription', aioseo()->internalOptions->deprecatedOptions, true ) ||
239
  aioseo()->options->deprecated->searchAppearance->advanced->runShortcodesInDescription
240
  ) {
241
- $postContent = $this->doShortcodes( $postContent );
242
  }
243
 
244
  $postContent = wp_trim_words( $postContent, 55, apply_filters( 'excerpt_more', ' ' . '[…]' ) );
178
  return get_post();
179
  }
180
 
181
+ // We need to check for this and not always return a post because we'll otherwise return a post on term pages.
182
  if (
183
  $this->isScreenBase( 'post' ) ||
184
  $postId ||
210
  return $post->post_content;
211
  }
212
 
213
+ $content[ $post->ID ] = $this->theContent( $post->post_content );
214
  return $content[ $post->ID ];
215
  }
216
 
217
+ /**
218
+ * Returns the post content after parsing shortcodes and blocks.
219
+ * We avoid using the "the_content" hook because it breaks stuff if we call it outside the loop or main query.
220
+ * See https://developer.wordpress.org/reference/hooks/the_content/
221
+ *
222
+ * @since 4.1.5.2
223
+ *
224
+ * @param string $postContent The post content.
225
+ * @return string The parsed post content.
226
+ */
227
+ public function theContent( $postContent ) {
228
+ // The order of the function calls below is intentional and should NOT change.
229
+ $postContent = do_blocks( $postContent );
230
+ $postContent = wpautop( $postContent );
231
+ $postContent = $this->doShortcodes( $postContent );
232
+ return $postContent;
233
+ }
234
+
235
  /**
236
  * Returns the description based on the post content.
237
  *
257
  ! in_array( 'runShortcodesInDescription', aioseo()->internalOptions->deprecatedOptions, true ) ||
258
  aioseo()->options->deprecated->searchAppearance->advanced->runShortcodesInDescription
259
  ) {
260
+ $postContent = $this->theContent( $postContent );
261
  }
262
 
263
  $postContent = wp_trim_words( $postContent, 55, apply_filters( 'excerpt_more', ' ' . '[…]' ) );
dist/Lite/assets/css/about-AboutUs-vue.css CHANGED
@@ -1,2 +1,2 @@
1
- .aioseo-app .aioseo-about-us .aioseo-about-us-welcome,.aioseo-app .aioseo-about-us .aioseo-about-us-plugins{margin-top:30px;width:100%}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome,.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-main,.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer{background-color:#fff;box-shadow:0px 2px 5px rgba(0,0,0,0.05);border:1px solid #E8E8EB}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome{display:flex;padding:40px;font-size:16px;color:#141B38}@media only screen and (max-width: 1042px){.aioseo-app .aioseo-about-us .aioseo-about-us-welcome{flex-direction:column}}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-intro{flex:2 2 auto}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-intro div{margin:24px 0;line-height:150%}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-intro div:first-of-type{font-size:18px;font-weight:bold}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-image{text-align:center}@media only screen and (max-width: 600px){.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-image figure{margin:0}}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-image img{max-width:100%}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-image figcaption{margin:19px 0;color:#8C8F9A}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin{display:flex;flex-direction:column;font-size:14px}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-main{display:flex;flex-direction:row;padding:30px 30px 20px;flex-grow:1}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-main img{margin:0 30px 0 0;max-width:50px;max-height:50px}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-main .main-name{margin:0 0 10px 0;font-size:16px;font-weight:bold;color:#141B38}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer{display:flex;justify-content:space-between;align-items:center;padding:20px 30px 20px 30px}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status{font-weight:bold}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status div{display:inline-block;margin-right:12px}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status .footer-status-label{color:#8C8F9A}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status .footer-status-not-installed{color:#434960}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status .footer-status-deactivated{color:#DF2A4A}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status .footer-status-activated{color:#00AA63}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-action button,.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-action a{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;padding:8px 12px;font-size:inherit}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-action .aioseo-button svg.aioseo-external{width:14px;height:14px;margin-right:10px}
2
 
1
+ .aioseo-app .aioseo-about-us .aioseo-about-us-plugins,.aioseo-app .aioseo-about-us .aioseo-about-us-welcome{margin-top:30px;width:100%}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer,.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-main,.aioseo-app .aioseo-about-us .aioseo-about-us-welcome{background-color:#fff;box-shadow:0 2px 5px rgba(0,0,0,.05);border:1px solid #e8e8eb}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome{display:flex;padding:40px;font-size:16px;color:#141b38}@media only screen and (max-width:1042px){.aioseo-app .aioseo-about-us .aioseo-about-us-welcome{flex-direction:column}}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-intro{flex:2 2 auto}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-intro div{margin:24px 0;line-height:150%}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-intro div:first-of-type{font-size:18px;font-weight:700}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-image{text-align:center}@media only screen and (max-width:600px){.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-image figure{margin:0}}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-image img{max-width:100%}.aioseo-app .aioseo-about-us .aioseo-about-us-welcome .welcome-image figcaption{margin:19px 0;color:#8c8f9a}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin{display:flex;flex-direction:column;font-size:14px}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-main{display:flex;flex-direction:row;padding:30px 30px 20px;flex-grow:1}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-main img{margin:0 30px 0 0;max-width:50px;max-height:50px}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-main .main-name{margin:0 0 10px;font-size:16px;font-weight:700;color:#141b38}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer{display:flex;justify-content:space-between;align-items:center;padding:20px 30px}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status{font-weight:700}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status div{display:inline-block;margin-right:12px}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status .footer-status-label{color:#8c8f9a}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status .footer-status-not-installed{color:#434960}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status .footer-status-deactivated{color:#df2a4a}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-status .footer-status-activated{color:#00aa63}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-action a,.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-action button{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;padding:8px 12px;font-size:inherit}.aioseo-app .aioseo-about-us .aioseo-about-us-plugins .plugin .plugin-footer .footer-action .aioseo-button svg.aioseo-external{width:14px;height:14px;margin-right:10px}x;margin-right:10px}
2
 
dist/Lite/assets/css/about-Main-vue.css CHANGED
@@ -1,4 +1,2 @@
1
- .aioseo-app .aioseo-getting-started .aioseo-getting-started-cta,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation{margin-top:30px;background:#fff;width:100%;padding:40px;box-shadow:0px 2px 5px rgba(0,0,0,0.05);border:1px solid #E8E8EB;color:#141B38}.aioseo-app .aioseo-getting-started .aioseo-getting-started-cta a,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos a,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation a{text-decoration:none}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header{align-items:center;font-weight:bold}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header .header-title,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header .header-title{font-size:24px}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header .header-link,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header .header-link{display:flex;justify-content:flex-end}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header .header-link a,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header .header-link a{text-decoration:underline;color:#005AE0}@media screen and (max-width: 782px){.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header .header-link,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header .header-link{justify-content:start !important}}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .docs,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .videos,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .docs{margin:32px 0;font-weight:bold;font-size:16px;color:#141B38}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos div{padding:5px 16px 5px 0}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video{display:flex;align-items:center;padding:16px;background-color:#F9F9FA;color:#141B38}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video img{flex:1 1 auto;max-width:180px;max-height:100px}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video div{flex:2 2 auto;margin:0 0 0 30px}@media screen and (max-width: 520px){.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video{flex-direction:column}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video img{margin:0 0 10px 0;max-width:100%}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video div{margin:0;text-align:center}}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .docs .d-flex{align-items:flex-start}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .docs .doc svg{margin:0 5px 0 0;width:18px;min-width:18px;min-height:20px;color:#005AE0}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .docs .doc a{color:#141B38}
2
-
3
- .aioseo-app .aioseo-lite-vs-pro{margin-top:30px;width:100%;padding:2px;background:#fff;box-shadow:0px 2px 5px rgba(0,0,0,0.05);border:1px solid #E8E8EB;color:#141B38}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta{padding:40px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta{font-size:16px;background-color:#F9F9FA}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{display:flex;justify-content:space-between;align-items:center}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div{margin:0 30px 0 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-title{font-size:20px;font-weight:bold}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-text{margin:5px 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header a{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;min-width:220px}@media screen and (max-width: 782px){.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{flex-direction:column;align-items:start}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-text{margin:15px 0}}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid{font-size:15px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header{display:grid;grid-template-columns:1.5fr 1fr 1fr;align-items:end;margin:0 0 24px 0;font-weight:bold}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-lite,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-pro{font-size:20px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-pro{color:#00AA63}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature{display:grid;grid-template-columns:1.5fr 30px 1fr 30px 1fr}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature>div{padding:15px 6px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg{margin:15px 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg.aioseo-close{width:13px;height:13px;margin:18px 0;color:#8C8F9A}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg.aioseo-circle-check{width:18px;height:18px;margin:15px 0;color:#00AA63}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature .feature-title{font-weight:bold}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta{text-align:center}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta .cta-title{font-size:24px;font-weight:bold}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta .cta-text{margin:24px auto;max-width:650px}
4
 
1
+ .aioseo-app .aioseo-getting-started .aioseo-getting-started-cta,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos{margin-top:30px;background:#fff;width:100%;padding:40px;box-shadow:0 2px 5px rgba(0,0,0,.05);border:1px solid #e8e8eb;color:#141b38}.aioseo-app .aioseo-getting-started .aioseo-getting-started-cta a,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation a,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos a{text-decoration:none}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header{align-items:center;font-weight:700}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header .header-title,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header .header-title{font-size:24px}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header .header-link,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header .header-link{display:flex;justify-content:flex-end}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header .header-link a,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header .header-link a{text-decoration:underline;color:#005ae0}@media screen and (max-width:782px){.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .header .header-link,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .header .header-link{justify-content:start!important}}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .docs,.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .videos,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .docs,.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos{margin:32px 0;font-weight:700;font-size:16px;color:#141b38}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos div{padding:5px 16px 5px 0}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video{display:flex;align-items:center;padding:16px;background-color:#f9f9fa;color:#141b38}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video img{flex:1 1 auto;max-width:180px;max-height:100px}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video div{flex:2 2 auto;margin:0 0 0 30px}@media screen and (max-width:520px){.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video{flex-direction:column}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video img{margin:0 0 10px;max-width:100%}.aioseo-app .aioseo-getting-started .aioseo-getting-started-videos .videos .video div{margin:0;text-align:center}}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .docs .d-flex{align-items:flex-start}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .docs .doc svg{margin:0 5px 0 0;width:18px;min-width:18px;min-height:20px;color:#005ae0}.aioseo-app .aioseo-getting-started .aioseo-getting-started-documentation .docs .doc a{color:#141b38}.aioseo-app .aioseo-lite-vs-pro{margin-top:30px;width:100%;padding:2px;background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.05);border:1px solid #e8e8eb;color:#141b38}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{padding:40px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{font-size:16px;background-color:#f9f9fa}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{display:flex;justify-content:space-between;align-items:center}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div{margin:0 30px 0 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-title{font-size:20px;font-weight:700}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-text{margin:5px 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header a{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;min-width:220px}@media screen and (max-width:782px){.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{flex-direction:column;align-items:start}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-text{margin:15px 0}}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid{font-size:15px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header{display:grid;grid-template-columns:1.5fr 1fr 1fr;align-items:end;margin:0 0 24px;font-weight:700}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-lite,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-pro{font-size:20px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-pro{color:#00aa63}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature{display:grid;grid-template-columns:1.5fr 30px 1fr 30px 1fr}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature>div{padding:15px 6px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg{margin:15px 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg.aioseo-close{width:13px;height:13px;margin:18px 0;color:#8c8f9a}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg.aioseo-circle-check{width:18px;height:18px;margin:15px 0;color:#00aa63}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature .feature-title{font-weight:700}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta{text-align:center}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta .cta-title{font-size:24px;font-weight:700}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta .cta-text{margin:24px auto;max-width:650px} auto;max-width:650px}
 
 
2
 
dist/Lite/assets/css/about-lite-LiteVsPro-vue.css CHANGED
@@ -1,2 +1,2 @@
1
- .aioseo-app .aioseo-lite-vs-pro{margin-top:30px;width:100%;padding:2px;background:#fff;box-shadow:0px 2px 5px rgba(0,0,0,0.05);border:1px solid #E8E8EB;color:#141B38}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta{padding:40px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta{font-size:16px;background-color:#F9F9FA}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{display:flex;justify-content:space-between;align-items:center}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div{margin:0 30px 0 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-title{font-size:20px;font-weight:bold}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-text{margin:5px 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header a{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;min-width:220px}@media screen and (max-width: 782px){.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{flex-direction:column;align-items:start}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-text{margin:15px 0}}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid{font-size:15px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header{display:grid;grid-template-columns:1.5fr 1fr 1fr;align-items:end;margin:0 0 24px 0;font-weight:bold}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-lite,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-pro{font-size:20px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-pro{color:#00AA63}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature{display:grid;grid-template-columns:1.5fr 30px 1fr 30px 1fr}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature>div{padding:15px 6px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg{margin:15px 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg.aioseo-close{width:13px;height:13px;margin:18px 0;color:#8C8F9A}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg.aioseo-circle-check{width:18px;height:18px;margin:15px 0;color:#00AA63}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature .feature-title{font-weight:bold}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta{text-align:center}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta .cta-title{font-size:24px;font-weight:bold}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta .cta-text{margin:24px auto;max-width:650px}
2
 
1
+ .aioseo-app .aioseo-lite-vs-pro{margin-top:30px;width:100%;padding:2px;background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.05);border:1px solid #e8e8eb;color:#141b38}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{padding:40px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{font-size:16px;background-color:#f9f9fa}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{display:flex;justify-content:space-between;align-items:center}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div{margin:0 30px 0 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-title{font-size:20px;font-weight:700}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-text{margin:5px 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header a{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;min-width:220px}@media screen and (max-width:782px){.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header{flex-direction:column;align-items:start}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-header div .header-text{margin:15px 0}}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid{font-size:15px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header{display:grid;grid-template-columns:1.5fr 1fr 1fr;align-items:end;margin:0 0 24px;font-weight:700}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-lite,.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-pro{font-size:20px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .header .header-pro{color:#00aa63}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature{display:grid;grid-template-columns:1.5fr 30px 1fr 30px 1fr}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature>div{padding:15px 6px}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg{margin:15px 0}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg.aioseo-close{width:13px;height:13px;margin:18px 0;color:#8c8f9a}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature svg.aioseo-circle-check{width:18px;height:18px;margin:15px 0;color:#00aa63}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-grid .feature .feature-title{font-weight:700}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta{text-align:center}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta .cta-title{font-size:24px;font-weight:700}.aioseo-app .aioseo-lite-vs-pro .aioseo-lite-vs-pro-cta .cta-text{margin:24px auto;max-width:650px}dth:650px}
2
 
dist/Lite/assets/css/aioseo-admin-bar.css CHANGED
@@ -1,3 +1,3 @@
1
- /*! ! built on Tuesday, November 9th 2021, 10:20:20 am */
2
  #wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{float:left;width:26px;height:30px;background-repeat:no-repeat;background-position:0 6px;background-size:20px;background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2ZmZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0iYWlvc2VvLWdlYXIiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOS45ODU0MiAxOS45NzA4QzE1LjUwMDIgMTkuOTcwOCAxOS45NzA4IDE1LjUwMDIgMTkuOTcwOCA5Ljk4NTQyQzE5Ljk3MDggNC40NzA2MyAxNS41MDAyIDAgOS45ODU0MiAwQzQuNDcwNjMgMCAwIDQuNDcwNjMgMCA5Ljk4NTQyQzAgMTUuNTAwMiA0LjQ3MDYzIDE5Ljk3MDggOS45ODU0MiAxOS45NzA4Wk04LjM5NTQxIDMuNjU0NjRDOC4yNjAxNiAzLjQ0ODUgOC4wMDk2IDMuMzUyMTEgNy43Nzk4NSAzLjQzMzI3QzcuNTE4MTYgMy41MjU3MiA3LjI2MjE4IDMuNjM0NDUgNy4wMTM0OSAzLjc1ODhDNi43OTUxOSAzLjg2Nzk2IDYuNjg1NjYgNC4xMTczMSA2LjczMzcyIDQuMzYwNDlMNi45MDQ5MyA1LjIyNjk0QzYuOTQ5IDUuNDQ5OTYgNi44NTggNS42NzYzIDYuNjg1MjIgNS44MjAwOUM2LjQxMjE2IDYuMDQ3MzQgNi4xNjAwNyA2LjMwNDI2IDUuOTM0MjEgNi41ODg2NEM1Ljc5MzgzIDYuNzY1MzkgNS41NzIzMyA2Ljg1OTA3IDUuMzUzNjEgNi44MTQ4OUw0LjUwNDI0IDYuNjQzM0M0LjI2NTY0IDYuNTk1MSA0LjAyMTU3IDYuNzA3ODggMy45MTU0NCA2LjkzMTIxQzMuODU1NDkgNy4wNTczOCAzLjc5ODg5IDcuMTg2MiAzLjc0NTgzIDcuMzE3NThDMy42OTI3NiA3LjQ0ODk2IDMuNjQzOTcgNy41ODEwNSAzLjU5OTM4IDcuNzEzNjlDMy41MjA0OCA3Ljk0ODQ3IDMuNjE1NzkgOC4yMDM5OCAzLjgxODM5IDguMzQxMzNMNC41Mzk1OCA4LjgzMDI3QzQuNzI1MjkgOC45NTYxNyA0LjgxNzc4IDkuMTgxOSA0Ljc5NTM0IDkuNDA4MjZDNC43NTkyNSA5Ljc3MjQ0IDQuNzYwNzIgMTAuMTM2IDQuNzk3NTYgMTAuNDkzNkM0LjgyMDg3IDEwLjcxOTggNC43MjkxNSAxMC45NDU5IDQuNTQzODggMTEuMDcyNEwzLjgyNDA4IDExLjU2NDJDMy42MjIwNSAxMS43MDIyIDMuNTI3NTkgMTEuOTU3OSAzLjYwNzEzIDEyLjE5MjNDMy42OTc3NCAxMi40NTkzIDMuODA0MyAxMi43MjA1IDMuOTI2MTUgMTIuOTc0M0M0LjAzMzEzIDEzLjE5NzEgNC4yNzc0OSAxMy4zMDg4IDQuNTE1ODEgMTMuMjU5OEw1LjM2NDk1IDEzLjA4NTFDNS41ODM1IDEzLjA0MDEgNS44MDUzMyAxMy4xMzMgNS45NDYyMyAxMy4zMDkzQzYuMTY4OTMgMTMuNTg3OSA2LjQyMDcxIDEzLjg0NTEgNi42OTk0IDE0LjA3NTZDNi44NzI2MSAxNC4yMTg4IDYuOTY0NDIgMTQuNDQ0OCA2LjkyMTEyIDE0LjY2OEw2Ljc1Mjk2IDE1LjUzNDhDNi43MDU3MiAxNS43NzgyIDYuODE2MjUgMTYuMDI3MyA3LjAzNTExIDE2LjEzNTZDNy4xNTg3NiAxNi4xOTY3IDcuMjg1IDE2LjI1NDUgNy40MTM3NSAxNi4zMDg2QzcuNTQyNTEgMTYuMzYyOCA3LjY3MTk2IDE2LjQxMjYgNy44MDE5NSAxNi40NTgxQzguMTgyMjQgMTYuNTkxMiA4LjcxNDQ5IDE2LjExNDcgOS4xMDggMTUuNzYyNUM5LjMwMjA1IDE1LjU4ODggOS40MjE3NCAxNS4zNDMgOS40MjMwMSAxNS4wNzk4QzkuNDIzMDEgMTUuMDc4NCA5LjQyMzAyIDE1LjA3NyA5LjQyMzAyIDE1LjA3NTZMOS40MjMwMSAxMy42MjYzQzkuNDIzMDEgMTMuNjEwOSA5LjQyMzYgMTMuNTk1NyA5LjQyNDc2IDEzLjU4MDZDOC4yNjI0OCAxMy4yOTcxIDcuMzk4MzggMTIuMjMwMSA3LjM5ODM4IDEwLjk1NzJWOS40MTgyM0M3LjM5ODM4IDkuMzAxMjUgNy40OTEzMSA5LjIwNjQyIDcuNjA1OTYgOS4yMDY0Mkg4LjMyNTg0VjcuNjkyMkM4LjMyNTg0IDcuNDgzMTIgOC40OTE5MyA3LjMxMzY0IDguNjk2ODMgNy4zMTM2NEM4LjkwMTcxIDcuMzEzNjQgOS4wNjc4MSA3LjQ4MzEyIDkuMDY3ODEgNy42OTIyVjkuMjA2NDJIMTEuMDE1NVY3LjY5MjJDMTEuMDE1NSA3LjQ4MzEyIDExLjE4MTYgNy4zMTM2NCAxMS4zODY1IDcuMzEzNjRDMTEuNTkxNCA3LjMxMzY0IDExLjc1NzUgNy40ODMxMiAxMS43NTc1IDcuNjkyMlY5LjIwNjQySDEyLjQ3NzNDMTIuNTkyIDkuMjA2NDIgMTIuNjg0OSA5LjMwMTI1IDEyLjY4NDkgOS40MTgyM1YxMC45NTcyQzEyLjY4NDkgMTIuMjcwNCAxMS43NjUzIDEzLjM2NDMgMTAuNTQ3NCAxMy42MDUxQzEwLjU0NzcgMTMuNjEyMSAxMC41NDc4IDEzLjYxOTIgMTAuNTQ3OCAxMy42MjYzTDEwLjU0NzggMTUuMDY5NEMxMC41NDc4IDE1LjMzNzcgMTAuNjcxMSAxNS41ODc5IDEwLjg3MSAxNS43NjIyQzExLjI3MTUgMTYuMTExNSAxMS44MTI5IDE2LjU4MzcgMTIuMTkxIDE2LjQ1MDJDMTIuNDUyNyAxNi4zNTc3IDEyLjcwODYgMTYuMjQ5IDEyLjk1NzMgMTYuMTI0NkMxMy4xNzU2IDE2LjAxNTUgMTMuMjg1MiAxNS43NjYxIDEzLjIzNzEgMTUuNTIyOUwxMy4wNjU5IDE0LjY1NjVDMTMuMDIxOCAxNC40MzM0IDEzLjExMjggMTQuMjA3MSAxMy4yODU2IDE0LjA2MzNDMTMuNTU4NyAxMy44MzYxIDEzLjgxMDcgMTMuNTc5MiAxNC4wMzY2IDEzLjI5NDhDMTQuMTc3IDEzLjExOCAxNC4zOTg1IDEzLjAyNDQgMTQuNjE3MiAxMy4wNjg1TDE1LjQ2NjYgMTMuMjQwMUMxNS43MDUyIDEzLjI4ODMgMTUuOTQ5MyAxMy4xNzU2IDE2LjA1NTQgMTIuOTUyMkMxNi4xMTUzIDEyLjgyNjEgMTYuMTcxOSAxMi42OTcyIDE2LjIyNSAxMi41NjU5QzE2LjI3ODEgMTIuNDM0NSAxNi4zMjY5IDEyLjMwMjQgMTYuMzcxNCAxMi4xNjk4QzE2LjQ1MDMgMTEuOTM1IDE2LjM1NSAxMS42Nzk1IDE2LjE1MjQgMTEuNTQyMUwxNS40MzEyIDExLjA1MzJDMTUuMjQ1NSAxMC45MjczIDE1LjE1MyAxMC43MDE1IDE1LjE3NTUgMTAuNDc1MkMxNS4yMTE2IDEwLjExMSAxNS4yMTAxIDkuNzQ3NDQgMTUuMTczMyA5LjM4OTg2QzE1LjE0OTkgOS4xNjM2MSAxNS4yNDE3IDguOTM3NTcgMTUuNDI2OSA4LjgxMUwxNi4xNDY3IDguMzE5MjdDMTYuMzQ4OCA4LjE4MTI2IDE2LjQ0MzIgNy45MjU1OCAxNi4zNjM3IDcuNjkxMTVDMTYuMjczMSA3LjQyNDExIDE2LjE2NjUgNy4xNjI5MiAxNi4wNDQ3IDYuOTA5MTVDMTUuOTM3NyA2LjY4NjM4IDE1LjY5MzMgNi41NzQ2MiAxNS40NTUgNi42MjM2NkwxNC42MDU5IDYuNzk4MzdDMTQuMzg3MyA2Ljg0MzM0IDE0LjE2NTUgNi43NTA0OCAxNC4wMjQ2IDYuNTc0MThDMTMuODAxOSA2LjI5NTU0IDEzLjU1MDEgNi4wMzgzMiAxMy4yNzE0IDUuODA3ODRDMTMuMDk4MiA1LjY2NDYgMTMuMDA2NCA1LjQzODU4IDEzLjA0OTcgNS4yMTU0TDEzLjIxNzkgNC4zNDg2OEMxMy4yNjUxIDQuMTA1MjEgMTMuMTU0NiAzLjg1NjE2IDEyLjkzNTcgMy43NDc4N0MxMi44MTIxIDMuNjg2NjkgMTIuNjg1OCAzLjYyODk1IDEyLjU1NzEgMy41NzQ4QzEyLjQyODMgMy41MjA2NSAxMi4yOTg5IDMuNDcwODYgMTIuMTY4OSAzLjQyNTM3QzExLjkzODggMy4zNDQ4NSAxMS42ODg0IDMuNDQyMTEgMTEuNTUzOCAzLjY0ODg0TDExLjA3NDYgNC4zODQ3NUMxMC45NTEzIDQuNTc0MjUgMTAuNzMgNC42Njg2MiAxMC41MDgyIDQuNjQ1NzNDMTAuMTUxMyA0LjYwODkgOS43OTUwMiA0LjYxMDM5IDkuNDQ0NTkgNC42NDc5OUM5LjIyMjg2IDQuNjcxNzcgOS4wMDEzNCA0LjU3ODE4IDguODc3MzEgNC4zODkxM0w4LjM5NTQxIDMuNjU0NjRaIiBmaWxsPSIjZmZmIiAvPjwvc3ZnPg==") !important}#wpadminbar #wp-admin-bar-aioseo-main.new-notifications>.ab-item{background:#2c3338;color:#72aee6}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a{background-color:#1DA867;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a span{font-weight:600}#wpadminbar #wp-admin-bar-aioseo-pro-license a{background-color:#DF2A4A;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-license a span{font-weight:600}#wpadminbar .aioseo-menu-notification-counter{display:inline-flex;vertical-align:top;box-sizing:border-box;margin:7px 0 0 5px;padding:0;min-width:18px;height:18px;border-radius:9px;background-color:#ca4a1f;color:#fff;font-size:11px;line-height:1.6;text-align:center;justify-content:center}#wpadminbar .aioseo-menu-notification-counter span{line-height:1;font-size:11px}#wpadminbar .aioseo-menu-notification-indicator{float:right;margin:10px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}#toplevel_page_aioseo .aioseo-menu-notification-indicator{float:right;margin:6px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}@keyframes aioseo-menu-notification-indicator-pulse{0%{box-shadow:0 0 0 0px rgba(202,74,31,0.5)}100%{box-shadow:0 0 0 10px rgba(202,74,31,0)}}@media screen and (max-width: 782px){#wpadminbar #wp-admin-bar-aioseo-main{display:block;position:static}#wpadminbar #wp-admin-bar-aioseo-main .ab-item .text{display:none}#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{width:52px;height:46px;background-position:50% 8px;background-size:30px}}
3
 
1
+ /*! ! built on Tuesday, November 16th 2021, 3:05:17 pm */
2
  #wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{float:left;width:26px;height:30px;background-repeat:no-repeat;background-position:0 6px;background-size:20px;background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2ZmZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0iYWlvc2VvLWdlYXIiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOS45ODU0MiAxOS45NzA4QzE1LjUwMDIgMTkuOTcwOCAxOS45NzA4IDE1LjUwMDIgMTkuOTcwOCA5Ljk4NTQyQzE5Ljk3MDggNC40NzA2MyAxNS41MDAyIDAgOS45ODU0MiAwQzQuNDcwNjMgMCAwIDQuNDcwNjMgMCA5Ljk4NTQyQzAgMTUuNTAwMiA0LjQ3MDYzIDE5Ljk3MDggOS45ODU0MiAxOS45NzA4Wk04LjM5NTQxIDMuNjU0NjRDOC4yNjAxNiAzLjQ0ODUgOC4wMDk2IDMuMzUyMTEgNy43Nzk4NSAzLjQzMzI3QzcuNTE4MTYgMy41MjU3MiA3LjI2MjE4IDMuNjM0NDUgNy4wMTM0OSAzLjc1ODhDNi43OTUxOSAzLjg2Nzk2IDYuNjg1NjYgNC4xMTczMSA2LjczMzcyIDQuMzYwNDlMNi45MDQ5MyA1LjIyNjk0QzYuOTQ5IDUuNDQ5OTYgNi44NTggNS42NzYzIDYuNjg1MjIgNS44MjAwOUM2LjQxMjE2IDYuMDQ3MzQgNi4xNjAwNyA2LjMwNDI2IDUuOTM0MjEgNi41ODg2NEM1Ljc5MzgzIDYuNzY1MzkgNS41NzIzMyA2Ljg1OTA3IDUuMzUzNjEgNi44MTQ4OUw0LjUwNDI0IDYuNjQzM0M0LjI2NTY0IDYuNTk1MSA0LjAyMTU3IDYuNzA3ODggMy45MTU0NCA2LjkzMTIxQzMuODU1NDkgNy4wNTczOCAzLjc5ODg5IDcuMTg2MiAzLjc0NTgzIDcuMzE3NThDMy42OTI3NiA3LjQ0ODk2IDMuNjQzOTcgNy41ODEwNSAzLjU5OTM4IDcuNzEzNjlDMy41MjA0OCA3Ljk0ODQ3IDMuNjE1NzkgOC4yMDM5OCAzLjgxODM5IDguMzQxMzNMNC41Mzk1OCA4LjgzMDI3QzQuNzI1MjkgOC45NTYxNyA0LjgxNzc4IDkuMTgxOSA0Ljc5NTM0IDkuNDA4MjZDNC43NTkyNSA5Ljc3MjQ0IDQuNzYwNzIgMTAuMTM2IDQuNzk3NTYgMTAuNDkzNkM0LjgyMDg3IDEwLjcxOTggNC43MjkxNSAxMC45NDU5IDQuNTQzODggMTEuMDcyNEwzLjgyNDA4IDExLjU2NDJDMy42MjIwNSAxMS43MDIyIDMuNTI3NTkgMTEuOTU3OSAzLjYwNzEzIDEyLjE5MjNDMy42OTc3NCAxMi40NTkzIDMuODA0MyAxMi43MjA1IDMuOTI2MTUgMTIuOTc0M0M0LjAzMzEzIDEzLjE5NzEgNC4yNzc0OSAxMy4zMDg4IDQuNTE1ODEgMTMuMjU5OEw1LjM2NDk1IDEzLjA4NTFDNS41ODM1IDEzLjA0MDEgNS44MDUzMyAxMy4xMzMgNS45NDYyMyAxMy4zMDkzQzYuMTY4OTMgMTMuNTg3OSA2LjQyMDcxIDEzLjg0NTEgNi42OTk0IDE0LjA3NTZDNi44NzI2MSAxNC4yMTg4IDYuOTY0NDIgMTQuNDQ0OCA2LjkyMTEyIDE0LjY2OEw2Ljc1Mjk2IDE1LjUzNDhDNi43MDU3MiAxNS43NzgyIDYuODE2MjUgMTYuMDI3MyA3LjAzNTExIDE2LjEzNTZDNy4xNTg3NiAxNi4xOTY3IDcuMjg1IDE2LjI1NDUgNy40MTM3NSAxNi4zMDg2QzcuNTQyNTEgMTYuMzYyOCA3LjY3MTk2IDE2LjQxMjYgNy44MDE5NSAxNi40NTgxQzguMTgyMjQgMTYuNTkxMiA4LjcxNDQ5IDE2LjExNDcgOS4xMDggMTUuNzYyNUM5LjMwMjA1IDE1LjU4ODggOS40MjE3NCAxNS4zNDMgOS40MjMwMSAxNS4wNzk4QzkuNDIzMDEgMTUuMDc4NCA5LjQyMzAyIDE1LjA3NyA5LjQyMzAyIDE1LjA3NTZMOS40MjMwMSAxMy42MjYzQzkuNDIzMDEgMTMuNjEwOSA5LjQyMzYgMTMuNTk1NyA5LjQyNDc2IDEzLjU4MDZDOC4yNjI0OCAxMy4yOTcxIDcuMzk4MzggMTIuMjMwMSA3LjM5ODM4IDEwLjk1NzJWOS40MTgyM0M3LjM5ODM4IDkuMzAxMjUgNy40OTEzMSA5LjIwNjQyIDcuNjA1OTYgOS4yMDY0Mkg4LjMyNTg0VjcuNjkyMkM4LjMyNTg0IDcuNDgzMTIgOC40OTE5MyA3LjMxMzY0IDguNjk2ODMgNy4zMTM2NEM4LjkwMTcxIDcuMzEzNjQgOS4wNjc4MSA3LjQ4MzEyIDkuMDY3ODEgNy42OTIyVjkuMjA2NDJIMTEuMDE1NVY3LjY5MjJDMTEuMDE1NSA3LjQ4MzEyIDExLjE4MTYgNy4zMTM2NCAxMS4zODY1IDcuMzEzNjRDMTEuNTkxNCA3LjMxMzY0IDExLjc1NzUgNy40ODMxMiAxMS43NTc1IDcuNjkyMlY5LjIwNjQySDEyLjQ3NzNDMTIuNTkyIDkuMjA2NDIgMTIuNjg0OSA5LjMwMTI1IDEyLjY4NDkgOS40MTgyM1YxMC45NTcyQzEyLjY4NDkgMTIuMjcwNCAxMS43NjUzIDEzLjM2NDMgMTAuNTQ3NCAxMy42MDUxQzEwLjU0NzcgMTMuNjEyMSAxMC41NDc4IDEzLjYxOTIgMTAuNTQ3OCAxMy42MjYzTDEwLjU0NzggMTUuMDY5NEMxMC41NDc4IDE1LjMzNzcgMTAuNjcxMSAxNS41ODc5IDEwLjg3MSAxNS43NjIyQzExLjI3MTUgMTYuMTExNSAxMS44MTI5IDE2LjU4MzcgMTIuMTkxIDE2LjQ1MDJDMTIuNDUyNyAxNi4zNTc3IDEyLjcwODYgMTYuMjQ5IDEyLjk1NzMgMTYuMTI0NkMxMy4xNzU2IDE2LjAxNTUgMTMuMjg1MiAxNS43NjYxIDEzLjIzNzEgMTUuNTIyOUwxMy4wNjU5IDE0LjY1NjVDMTMuMDIxOCAxNC40MzM0IDEzLjExMjggMTQuMjA3MSAxMy4yODU2IDE0LjA2MzNDMTMuNTU4NyAxMy44MzYxIDEzLjgxMDcgMTMuNTc5MiAxNC4wMzY2IDEzLjI5NDhDMTQuMTc3IDEzLjExOCAxNC4zOTg1IDEzLjAyNDQgMTQuNjE3MiAxMy4wNjg1TDE1LjQ2NjYgMTMuMjQwMUMxNS43MDUyIDEzLjI4ODMgMTUuOTQ5MyAxMy4xNzU2IDE2LjA1NTQgMTIuOTUyMkMxNi4xMTUzIDEyLjgyNjEgMTYuMTcxOSAxMi42OTcyIDE2LjIyNSAxMi41NjU5QzE2LjI3ODEgMTIuNDM0NSAxNi4zMjY5IDEyLjMwMjQgMTYuMzcxNCAxMi4xNjk4QzE2LjQ1MDMgMTEuOTM1IDE2LjM1NSAxMS42Nzk1IDE2LjE1MjQgMTEuNTQyMUwxNS40MzEyIDExLjA1MzJDMTUuMjQ1NSAxMC45MjczIDE1LjE1MyAxMC43MDE1IDE1LjE3NTUgMTAuNDc1MkMxNS4yMTE2IDEwLjExMSAxNS4yMTAxIDkuNzQ3NDQgMTUuMTczMyA5LjM4OTg2QzE1LjE0OTkgOS4xNjM2MSAxNS4yNDE3IDguOTM3NTcgMTUuNDI2OSA4LjgxMUwxNi4xNDY3IDguMzE5MjdDMTYuMzQ4OCA4LjE4MTI2IDE2LjQ0MzIgNy45MjU1OCAxNi4zNjM3IDcuNjkxMTVDMTYuMjczMSA3LjQyNDExIDE2LjE2NjUgNy4xNjI5MiAxNi4wNDQ3IDYuOTA5MTVDMTUuOTM3NyA2LjY4NjM4IDE1LjY5MzMgNi41NzQ2MiAxNS40NTUgNi42MjM2NkwxNC42MDU5IDYuNzk4MzdDMTQuMzg3MyA2Ljg0MzM0IDE0LjE2NTUgNi43NTA0OCAxNC4wMjQ2IDYuNTc0MThDMTMuODAxOSA2LjI5NTU0IDEzLjU1MDEgNi4wMzgzMiAxMy4yNzE0IDUuODA3ODRDMTMuMDk4MiA1LjY2NDYgMTMuMDA2NCA1LjQzODU4IDEzLjA0OTcgNS4yMTU0TDEzLjIxNzkgNC4zNDg2OEMxMy4yNjUxIDQuMTA1MjEgMTMuMTU0NiAzLjg1NjE2IDEyLjkzNTcgMy43NDc4N0MxMi44MTIxIDMuNjg2NjkgMTIuNjg1OCAzLjYyODk1IDEyLjU1NzEgMy41NzQ4QzEyLjQyODMgMy41MjA2NSAxMi4yOTg5IDMuNDcwODYgMTIuMTY4OSAzLjQyNTM3QzExLjkzODggMy4zNDQ4NSAxMS42ODg0IDMuNDQyMTEgMTEuNTUzOCAzLjY0ODg0TDExLjA3NDYgNC4zODQ3NUMxMC45NTEzIDQuNTc0MjUgMTAuNzMgNC42Njg2MiAxMC41MDgyIDQuNjQ1NzNDMTAuMTUxMyA0LjYwODkgOS43OTUwMiA0LjYxMDM5IDkuNDQ0NTkgNC42NDc5OUM5LjIyMjg2IDQuNjcxNzcgOS4wMDEzNCA0LjU3ODE4IDguODc3MzEgNC4zODkxM0w4LjM5NTQxIDMuNjU0NjRaIiBmaWxsPSIjZmZmIiAvPjwvc3ZnPg==") !important}#wpadminbar #wp-admin-bar-aioseo-main.new-notifications>.ab-item{background:#2c3338;color:#72aee6}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a{background-color:#1DA867;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a span{font-weight:600}#wpadminbar #wp-admin-bar-aioseo-pro-license a{background-color:#DF2A4A;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-license a span{font-weight:600}#wpadminbar .aioseo-menu-notification-counter{display:inline-flex;vertical-align:top;box-sizing:border-box;margin:7px 0 0 5px;padding:0;min-width:18px;height:18px;border-radius:9px;background-color:#ca4a1f;color:#fff;font-size:11px;line-height:1.6;text-align:center;justify-content:center}#wpadminbar .aioseo-menu-notification-counter span{line-height:1;font-size:11px}#wpadminbar .aioseo-menu-notification-indicator{float:right;margin:10px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}#toplevel_page_aioseo .aioseo-menu-notification-indicator{float:right;margin:6px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}@keyframes aioseo-menu-notification-indicator-pulse{0%{box-shadow:0 0 0 0px rgba(202,74,31,0.5)}100%{box-shadow:0 0 0 10px rgba(202,74,31,0)}}@media screen and (max-width: 782px){#wpadminbar #wp-admin-bar-aioseo-main{display:block;position:static}#wpadminbar #wp-admin-bar-aioseo-main .ab-item .text{display:none}#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{width:52px;height:46px;background-position:50% 8px;background-size:30px}}
3
 
dist/Lite/assets/css/aioseo-admin-bar.css.gz CHANGED
Binary file
dist/Lite/assets/css/headline-analyzer.css CHANGED
@@ -1,3 +1,3 @@
1
- /*! ! built on Tuesday, November 9th 2021, 10:20:20 am */
2
  .aioseo-inline-buttons{display:grid;grid-template-columns:repeat(2, 1fr)}.aioseo-switcher-button{border:0;border-radius:0;font-size:14px;font-weight:normal;color:#434960;padding:16px 10px;box-shadow:0px 2px 0px #e8e8eb;cursor:pointer;text-align:left;white-space:nowrap;position:relative;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);background:#fafafa}.aioseo-switcher-button:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;opacity:0;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);will-change:background-color,opacity;content:" "}.aioseo-switcher-button.active:before,.aioseo-switcher-button:hover:before,.aioseo-switcher-button:active:before{background-color:currentColor;opacity:.12}.aioseo-switcher-button.active{font-weight:700;color:#141B38;box-shadow:0px 2px 0px #005AE0}.aioseo-headline-analyzer-wrapper{position:relative}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-total-out-of-score{font-size:18px;color:#8c8f9a;font-weight:600;z-index:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened svg.components-panel__arrow{transform:rotate(0deg)}.aioseo-headline-analyzer-wrapper .components-panel__body svg.components-panel__arrow{transform:rotate(-90deg);top:50%;margin-top:-12px;transition:.3s}.aioseo-headline-analyzer-wrapper p{font-size:13px;color:#434960;margin-bottom:16px}.aioseo-headline-analyzer-wrapper p>strong{font-size:13px;font-weight:700}.aioseo-headline-analyzer-wrapper .green{color:#00aa63}.aioseo-headline-analyzer-wrapper .orange{color:#f18200}.aioseo-headline-analyzer-wrapper .red{color:#df2a4a}.aioseo-headline-analyzer-wrapper .green-bg{background:#00aa63}.aioseo-headline-analyzer-wrapper .orange-bg{background:#f18200}.aioseo-headline-analyzer-wrapper .red-bg{background:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body-toggle.components-button{font-weight:700;color:#141B38;padding:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-empty-title-warning{text-align:center;padding:0 20px;margin:20px 0;font-size:13px;color:#141B38}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened>.components-panel__body-title{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened{padding:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-words-block,.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-panel-first-block{padding:0 16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-sentiment.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-previous-scores.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score-form.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-search-preview.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-balance.is-opened .components-panel__body-title{border-bottom:1px solid #e8e8eb;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{position:absolute;top:45%;left:0;right:0;text-align:center;font-size:50px;line-height:0%;z-index:0;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score p,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel{top:calc(58% + 16px)}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{top:65%;font-size:16px;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab p{text-align:center}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab .aioseo-headline-analyzer-current-title{text-align:center;font-size:16px;color:#141B38;margin:0 0 24px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel h4{text-align:center;font-size:16px;color:#141B38;margin:0 0 28px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score{position:absolute;top:calc(38% + 16px);left:0;right:0;text-align:center;font-size:50px;font-weight:700;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score{border-top:1px solid #E8E8EB;padding-top:24px;display:flex;align-items:center;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score .aioseo-headline-analyzer-score{min-height:40px;min-width:40px;font-weight:700;color:#ffffff;margin-right:16px;text-align:center;line-height:40px;border-radius:50%;font-size:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score h5{font-weight:400;color:#8C8F9A;margin-top:0;margin-bottom:8px;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score p{margin-top:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-tab{margin-bottom:6px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-form-block{padding:6px 12px 22px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field{margin-bottom:10px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field .components-base-control__label{display:block;max-width:100%;font-size:13px;margin:0 0 10px;color:#434960}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field input{padding:11px 12px;font-size:13px;border:1px solid #D0D1D7;color:#393f4c;border-radius:3px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button{font-size:14px;border-radius:4px;padding:0;height:40px;background:#005AE0;width:100%;justify-content:center;color:#ffffff;font-weight:600;border:1px solid transparent;transition:background-color .2s ease;opacity:1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled{border:1px solid #dcdde1;background-color:#f3f4f5;color:#8c8f9a;cursor:default}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled:hover{color:#8c8f9a}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:hover,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:focus,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:visited{color:#ffffff;box-shadow:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference{font-weight:700;position:absolute;left:0;top:16%;right:0;text-align:center;width:42px;height:26px;margin:0 auto;font-size:16px;line-height:26px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.red{background:#fbe9ec}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.orange{background:#FCFAE8}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.green{background:#CBEAE1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores{margin:0 !important}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li{margin-bottom:16px;cursor:pointer;display:flex;flex-direction:row;align-items:center;color:#434960;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score{min-height:24px;min-width:24px;margin-right:8px;font-size:11px;text-align:center;line-height:24px;border-radius:50%;color:#ffffff;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score-text{flex-basis:calc(100% - 32px)}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon .components-panel__body-toggle .components-panel__icon{position:absolute;right:52px;top:50%;margin-top:-10px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.red .components-panel__body-toggle .components-panel__icon path{fill:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.orange .components-panel__body-toggle .components-panel__icon path{fill:#f18200}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.green .components-panel__body-toggle .components-panel__icon path{fill:#00aa63}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative{position:relative}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative .aioseo-headline-analyzer-panel-icon-alternative{position:absolute;top:14px;right:40px;font-weight:700}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row{display:block}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{font-size:16px;color:#141B38;font-weight:700;margin:0 0 16px 0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block{margin-top:16px;border-bottom:1px solid #e8e8eb}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block h5{font-size:13px;color:#434960;margin-top:0;margin-bottom:16px;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data{overflow:hidden;display:flex;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span{display:block;float:left;flex-basis:70%;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-percentage{font-size:28px;font-weight:700;flex-basis:25%;justify-content:flex-start;align-items:center;display:flex;margin-right:11px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-goal{width:100%;font-size:13px;font-weight:400;color:#8C8F9A}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar{width:100%;position:relative;height:4px;margin-top:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-bg{width:100%;background:#EEF0F2;height:4px;z-index:9;position:absolute;top:0;left:0;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-part{position:absolute;height:4px;top:0;left:0;z-index:10;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list{margin:0;padding:0;list-style:none;display:block;margin-top:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list li{display:inline-block;font-size:13px;font-weight:700;color:#434960;background:#F3F4F5;border-radius:3px;padding:4px 9px;margin-right:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-guideline{margin-top:8px;color:#4f4f4f}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span{width:36px;height:48px;display:inline-block;background:#e8e8eb;text-align:center;line-height:48px;font-size:28px;color:#2c324c;font-weight:700;margin-right:4px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span.character-zero,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span.character-zero{color:#D0D1D7}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-character-length,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-word-length{display:block;font-weight:700;font-size:16px;color:#141b38;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-count-container,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-counter{margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-character-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-character-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-word-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-word-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words{display:block;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words span{font-size:13px;color:#434960;background:#f3f4f5;border-radius:3px;padding:4px 8px;font-weight:700;display:inline-block}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words-guideline{margin-top:20px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title{font-weight:700;font-size:13px;color:#141b38;margin-bottom:12px;list-style:initial;margin:0 16px 8px 16px;padding:0 0 0 8px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title li,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title li{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-search-prevew-wrap{background:#ffffff;border:0.837954px solid #e8e8eb;padding:8px;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{color:#1a0dab;font-size:16px;margin-top:0 !important;text-transform:none;margin-bottom:5px;font-weight:500}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url{margin-bottom:5px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a{color:#3c4043;font-size:13px;text-decoration:none}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a:hover{opacity:0.8}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row p{font-size:12px;color:#434960;margin:0px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title{display:block;width:100%;font-size:14px;color:#141B38}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title span{float:right;margin-right:25px;color:#141B38;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a span{text-decoration:underline}.edit-post-header__settings button.components-button[aioseo-button-color]{display:flex;align-items:center}.edit-post-header__settings button.components-button[aioseo-button-color] svg{max-width:22px;max-height:20px;margin-right:8px}.edit-post-header__settings button.components-button[aioseo-button-color] span{color:#fff;font-weight:700}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]{border:1px solid #df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed{background:#df2a4a !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] svg path{fill:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] span{color:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]{border:1px solid #f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{background:#f18200 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] svg path{fill:#f08629}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] span{color:#f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]{border:1px solid #1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed{background:#1ec185 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] svg path{fill:#1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] span{color:#1bb17a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{box-shadow:none !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed span{color:#fff}.edit-post-sidebar{scroll-behavior:smooth}.aioseo-headline-analyzer-current-score-content>p{font-weight:700}.aioseo-headline-analyzer-bottom-notice{padding:16px;background:#E6EEFC;margin:16px;border-radius:3px;font-size:13px;color:#141B38}.aioseo-headline-analyzer-bottom-notice p{text-align:left}.aioseo-headline-analyzer-bottom-notice p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-bottom-notice p a span{text-decoration:underline}.aioseo-donut-container{display:flex;align-items:center;justify-content:center}.aioseo-donut-container .aioseo-seo-headline-analyzer-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(-180deg);transform-origin:center}
3
 
1
+ /*! ! built on Tuesday, November 16th 2021, 3:05:17 pm */
2
  .aioseo-inline-buttons{display:grid;grid-template-columns:repeat(2, 1fr)}.aioseo-switcher-button{border:0;border-radius:0;font-size:14px;font-weight:normal;color:#434960;padding:16px 10px;box-shadow:0px 2px 0px #e8e8eb;cursor:pointer;text-align:left;white-space:nowrap;position:relative;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);background:#fafafa}.aioseo-switcher-button:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;opacity:0;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);will-change:background-color,opacity;content:" "}.aioseo-switcher-button.active:before,.aioseo-switcher-button:hover:before,.aioseo-switcher-button:active:before{background-color:currentColor;opacity:.12}.aioseo-switcher-button.active{font-weight:700;color:#141B38;box-shadow:0px 2px 0px #005AE0}.aioseo-headline-analyzer-wrapper{position:relative}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-total-out-of-score{font-size:18px;color:#8c8f9a;font-weight:600;z-index:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened svg.components-panel__arrow{transform:rotate(0deg)}.aioseo-headline-analyzer-wrapper .components-panel__body svg.components-panel__arrow{transform:rotate(-90deg);top:50%;margin-top:-12px;transition:.3s}.aioseo-headline-analyzer-wrapper p{font-size:13px;color:#434960;margin-bottom:16px}.aioseo-headline-analyzer-wrapper p>strong{font-size:13px;font-weight:700}.aioseo-headline-analyzer-wrapper .green{color:#00aa63}.aioseo-headline-analyzer-wrapper .orange{color:#f18200}.aioseo-headline-analyzer-wrapper .red{color:#df2a4a}.aioseo-headline-analyzer-wrapper .green-bg{background:#00aa63}.aioseo-headline-analyzer-wrapper .orange-bg{background:#f18200}.aioseo-headline-analyzer-wrapper .red-bg{background:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body-toggle.components-button{font-weight:700;color:#141B38;padding:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-empty-title-warning{text-align:center;padding:0 20px;margin:20px 0;font-size:13px;color:#141B38}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened>.components-panel__body-title{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened{padding:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-words-block,.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-panel-first-block{padding:0 16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-sentiment.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-previous-scores.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score-form.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-search-preview.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-balance.is-opened .components-panel__body-title{border-bottom:1px solid #e8e8eb;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{position:absolute;top:45%;left:0;right:0;text-align:center;font-size:50px;line-height:0%;z-index:0;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score p,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel{top:calc(58% + 16px)}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{top:65%;font-size:16px;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab p{text-align:center}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab .aioseo-headline-analyzer-current-title{text-align:center;font-size:16px;color:#141B38;margin:0 0 24px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel h4{text-align:center;font-size:16px;color:#141B38;margin:0 0 28px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score{position:absolute;top:calc(38% + 16px);left:0;right:0;text-align:center;font-size:50px;font-weight:700;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score{border-top:1px solid #E8E8EB;padding-top:24px;display:flex;align-items:center;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score .aioseo-headline-analyzer-score{min-height:40px;min-width:40px;font-weight:700;color:#ffffff;margin-right:16px;text-align:center;line-height:40px;border-radius:50%;font-size:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score h5{font-weight:400;color:#8C8F9A;margin-top:0;margin-bottom:8px;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score p{margin-top:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-tab{margin-bottom:6px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-form-block{padding:6px 12px 22px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field{margin-bottom:10px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field .components-base-control__label{display:block;max-width:100%;font-size:13px;margin:0 0 10px;color:#434960}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field input{padding:11px 12px;font-size:13px;border:1px solid #D0D1D7;color:#393f4c;border-radius:3px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button{font-size:14px;border-radius:4px;padding:0;height:40px;background:#005AE0;width:100%;justify-content:center;color:#ffffff;font-weight:600;border:1px solid transparent;transition:background-color .2s ease;opacity:1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled{border:1px solid #dcdde1;background-color:#f3f4f5;color:#8c8f9a;cursor:default}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled:hover{color:#8c8f9a}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:hover,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:focus,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:visited{color:#ffffff;box-shadow:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference{font-weight:700;position:absolute;left:0;top:16%;right:0;text-align:center;width:42px;height:26px;margin:0 auto;font-size:16px;line-height:26px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.red{background:#fbe9ec}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.orange{background:#FCFAE8}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.green{background:#CBEAE1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores{margin:0 !important}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li{margin-bottom:16px;cursor:pointer;display:flex;flex-direction:row;align-items:center;color:#434960;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score{min-height:24px;min-width:24px;margin-right:8px;font-size:11px;text-align:center;line-height:24px;border-radius:50%;color:#ffffff;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score-text{flex-basis:calc(100% - 32px)}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon .components-panel__body-toggle .components-panel__icon{position:absolute;right:52px;top:50%;margin-top:-10px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.red .components-panel__body-toggle .components-panel__icon path{fill:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.orange .components-panel__body-toggle .components-panel__icon path{fill:#f18200}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.green .components-panel__body-toggle .components-panel__icon path{fill:#00aa63}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative{position:relative}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative .aioseo-headline-analyzer-panel-icon-alternative{position:absolute;top:14px;right:40px;font-weight:700}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row{display:block}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{font-size:16px;color:#141B38;font-weight:700;margin:0 0 16px 0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block{margin-top:16px;border-bottom:1px solid #e8e8eb}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block h5{font-size:13px;color:#434960;margin-top:0;margin-bottom:16px;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data{overflow:hidden;display:flex;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span{display:block;float:left;flex-basis:70%;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-percentage{font-size:28px;font-weight:700;flex-basis:25%;justify-content:flex-start;align-items:center;display:flex;margin-right:11px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-goal{width:100%;font-size:13px;font-weight:400;color:#8C8F9A}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar{width:100%;position:relative;height:4px;margin-top:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-bg{width:100%;background:#EEF0F2;height:4px;z-index:9;position:absolute;top:0;left:0;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-part{position:absolute;height:4px;top:0;left:0;z-index:10;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list{margin:0;padding:0;list-style:none;display:block;margin-top:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list li{display:inline-block;font-size:13px;font-weight:700;color:#434960;background:#F3F4F5;border-radius:3px;padding:4px 9px;margin-right:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-guideline{margin-top:8px;color:#4f4f4f}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span{width:36px;height:48px;display:inline-block;background:#e8e8eb;text-align:center;line-height:48px;font-size:28px;color:#2c324c;font-weight:700;margin-right:4px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span.character-zero,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span.character-zero{color:#D0D1D7}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-character-length,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-word-length{display:block;font-weight:700;font-size:16px;color:#141b38;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-count-container,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-counter{margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-character-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-character-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-word-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-word-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words{display:block;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words span{font-size:13px;color:#434960;background:#f3f4f5;border-radius:3px;padding:4px 8px;font-weight:700;display:inline-block}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words-guideline{margin-top:20px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title{font-weight:700;font-size:13px;color:#141b38;margin-bottom:12px;list-style:initial;margin:0 16px 8px 16px;padding:0 0 0 8px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title li,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title li{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-search-prevew-wrap{background:#ffffff;border:0.837954px solid #e8e8eb;padding:8px;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{color:#1a0dab;font-size:16px;margin-top:0 !important;text-transform:none;margin-bottom:5px;font-weight:500}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url{margin-bottom:5px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a{color:#3c4043;font-size:13px;text-decoration:none}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a:hover{opacity:0.8}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row p{font-size:12px;color:#434960;margin:0px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title{display:block;width:100%;font-size:14px;color:#141B38}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title span{float:right;margin-right:25px;color:#141B38;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a span{text-decoration:underline}.edit-post-header__settings button.components-button[aioseo-button-color]{display:flex;align-items:center}.edit-post-header__settings button.components-button[aioseo-button-color] svg{max-width:22px;max-height:20px;margin-right:8px}.edit-post-header__settings button.components-button[aioseo-button-color] span{color:#fff;font-weight:700}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]{border:1px solid #df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed{background:#df2a4a !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] svg path{fill:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] span{color:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]{border:1px solid #f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{background:#f18200 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] svg path{fill:#f08629}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] span{color:#f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]{border:1px solid #1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed{background:#1ec185 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] svg path{fill:#1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] span{color:#1bb17a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{box-shadow:none !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed span{color:#fff}.edit-post-sidebar{scroll-behavior:smooth}.aioseo-headline-analyzer-current-score-content>p{font-weight:700}.aioseo-headline-analyzer-bottom-notice{padding:16px;background:#E6EEFC;margin:16px;border-radius:3px;font-size:13px;color:#141B38}.aioseo-headline-analyzer-bottom-notice p{text-align:left}.aioseo-headline-analyzer-bottom-notice p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-bottom-notice p a span{text-decoration:underline}.aioseo-donut-container{display:flex;align-items:center;justify-content:center}.aioseo-donut-container .aioseo-seo-headline-analyzer-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(-180deg);transform-origin:center}
3
 
dist/Lite/assets/css/headline-analyzer.css.gz CHANGED
Binary file
dist/Lite/assets/css/monsterinsights-Main-vue.css CHANGED
@@ -1,2 +1,2 @@
1
- .aioseo-app .aioseo-analytics{padding-top:1px;line-height:1.5}.aioseo-app .aioseo-analytics p{max-width:600px;margin-bottom:24px;line-height:1.5}.aioseo-app .aioseo-analytics section.aioseo-card{padding:18px;position:relative}.aioseo-app .aioseo-analytics section.aioseo-card.step{display:flex;align-items:center;margin-left:auto;margin-right:auto}.aioseo-app .aioseo-analytics .aioseo-card.aioseo-card--intro{background-color:#f8fbff;box-shadow:none}.aioseo-app .aioseo-analytics .step-count{max-width:170px;width:100%}.aioseo-app .aioseo-analytics .step-count__num{font-size:32px;bottom:50%;line-height:1;width:48px;height:48px;text-align:center;border-radius:50%;color:#D0D1D7;border:2px solid #D0D1D7;display:flex;align-items:center;justify-content:center;margin:0 auto;transition:all .2s ease}.aioseo-app .aioseo-analytics .step--completed .step-count__num{background-color:#F3F4F5;border-color:#F3F4F5;color:#fff}.aioseo-app .aioseo-analytics .step--current .step-count__num{background-color:#D0D1D7;color:#fff}.aioseo-app .aioseo-analytics .aioseo-button.disabled:not(.loading){color:#8C8F9A !important;background-color:#F3F4F5 !important;border-width:0;pointer-events:none;cursor:default;box-shadow:none !important;transform:none !important}.aioseo-app .aioseo-analytics .aioseo-analytics__intro{text-align:center}.aioseo-app .aioseo-analytics .aioseo-analytics__intro .intro-image{max-width:300px;margin:0 auto;display:flex;justify-content:space-between;font-size:45px;align-items:center}.aioseo-app .aioseo-analytics .aioseo-analytics__intro .intro-image .aioseo-logo-gear{width:100%;max-width:90px;color:#005AE0}.aioseo-app .aioseo-analytics .aioseo-analytics__intro .intro-image span{color:#DF2A4A}.aioseo-app .aioseo-analytics .aioseo-analytics__intro .intro-heading{margin:24px auto;font-size:36px;line-height:1.25}.aioseo-app .aioseo-analytics .aioseo-analytics__intro p{margin:0 auto}.aioseo-app .aioseo-analytics .preview-list{display:flex;text-align:left;align-items:center;max-width:800px;margin:24px auto 0}.aioseo-app .aioseo-analytics .preview-list ul{margin-left:24px}.aioseo-app .aioseo-analytics .preview-list li{display:flex;align-items:flex-start;font-size:16px}.aioseo-app .aioseo-analytics .aioseo-circle-check{color:#00AA63;max-width:18px;margin-right:18px;margin-top:3px}.aioseo-app .aioseo-analytics .step--pending{opacity:.5;filter:grayscale(1)}.aioseo-app .aioseo-analytics .step-title{margin-bottom:24px;font-size:32px;line-height:1.25}
2
 
1
+ .aioseo-app .aioseo-analytics{padding-top:1px;line-height:1.5}.aioseo-app .aioseo-analytics p{max-width:600px;margin-bottom:24px;line-height:1.5}.aioseo-app .aioseo-analytics section.aioseo-card{padding:18px;position:relative}.aioseo-app .aioseo-analytics section.aioseo-card.step{display:flex;align-items:center;margin-left:auto;margin-right:auto}.aioseo-app .aioseo-analytics .aioseo-card.aioseo-card--intro{background-color:#f8fbff;box-shadow:none}.aioseo-app .aioseo-analytics .step-count{max-width:170px;width:100%}.aioseo-app .aioseo-analytics .step-count__num{font-size:32px;bottom:50%;line-height:1;width:48px;height:48px;text-align:center;border-radius:50%;color:#d0d1d7;border:2px solid #d0d1d7;display:flex;align-items:center;justify-content:center;margin:0 auto;transition:all .2s ease}.aioseo-app .aioseo-analytics .step--completed .step-count__num{background-color:#f3f4f5;border-color:#f3f4f5;color:#fff}.aioseo-app .aioseo-analytics .step--current .step-count__num{background-color:#d0d1d7;color:#fff}.aioseo-app .aioseo-analytics .aioseo-button.disabled:not(.loading){color:#8c8f9a!important;background-color:#f3f4f5!important;border-width:0;pointer-events:none;cursor:default;box-shadow:none!important;transform:none!important}.aioseo-app .aioseo-analytics .aioseo-analytics__intro{text-align:center}.aioseo-app .aioseo-analytics .aioseo-analytics__intro .intro-image{max-width:300px;margin:0 auto;display:flex;justify-content:space-between;font-size:45px;align-items:center}.aioseo-app .aioseo-analytics .aioseo-analytics__intro .intro-image .aioseo-logo-gear{width:100%;max-width:90px;color:#005ae0}.aioseo-app .aioseo-analytics .aioseo-analytics__intro .intro-image span{color:#df2a4a}.aioseo-app .aioseo-analytics .aioseo-analytics__intro .intro-heading{margin:24px auto;font-size:36px;line-height:1.25}.aioseo-app .aioseo-analytics .aioseo-analytics__intro p{margin:0 auto}.aioseo-app .aioseo-analytics .preview-list{display:flex;text-align:left;align-items:center;max-width:800px;margin:24px auto 0}.aioseo-app .aioseo-analytics .preview-list ul{margin-left:24px}.aioseo-app .aioseo-analytics .preview-list li{display:flex;align-items:flex-start;font-size:16px}.aioseo-app .aioseo-analytics .aioseo-circle-check{color:#00aa63;max-width:18px;margin-right:18px;margin-top:3px}.aioseo-app .aioseo-analytics .step--pending{opacity:.5;filter:grayscale(1)}.aioseo-app .aioseo-analytics .step-title{margin-bottom:24px;font-size:32px;line-height:1.25}.25}
2
 
dist/Lite/assets/css/redirects-pro-RedirectsActivate-vue.css CHANGED
@@ -1,2 +1,2 @@
1
- .aioseo-redirects .aioseo-modal-body{padding:20px 50px 50px;display:flex;align-items:center;justify-content:center;flex-direction:column;position:relative}.aioseo-redirects .aioseo-modal-body h3{font-size:20px;margin-bottom:16px}.aioseo-redirects .aioseo-modal-body .reset-description{font-size:16px;color:#141B38;margin-bottom:16px;text-align:center;max-width:515px}.aioseo-redirects .aioseo-modal-body button.close{position:absolute;right:11px;top:11px;width:24px;height:24px;background-color:#fff;border:none;display:flex;align-items:center}.aioseo-redirects .aioseo-modal-body button.close svg.aioseo-close{cursor:pointer;width:14px;height:14px}.aioseo-redirects .aioseo-modal-body .aioseo-description{max-width:510px;text-align:center}.aioseo-redirects .aioseo-modal-body .aioseo-button:not(.close){margin-top:16px}
2
 
1
+ .aioseo-redirects .aioseo-modal-body{padding:20px 50px 50px;display:flex;align-items:center;justify-content:center;flex-direction:column;position:relative}.aioseo-redirects .aioseo-modal-body h3{font-size:20px;margin-bottom:16px}.aioseo-redirects .aioseo-modal-body .reset-description{font-size:16px;color:#141b38;margin-bottom:16px;text-align:center;max-width:515px}.aioseo-redirects .aioseo-modal-body button.close{position:absolute;right:11px;top:11px;width:24px;height:24px;background-color:#fff;border:none;display:flex;align-items:center}.aioseo-redirects .aioseo-modal-body button.close svg.aioseo-close{cursor:pointer;width:14px;height:14px}.aioseo-redirects .aioseo-modal-body .aioseo-description{max-width:510px;text-align:center}.aioseo-redirects .aioseo-modal-body .aioseo-button:not(.close){margin-top:16px}
2
 
dist/Lite/assets/css/settings-Breadcrumbs-vue.css CHANGED
@@ -1,4 +1,2 @@
1
- .aioseo-breadcrumbs .content[data-v-1d5ee128]{position:relative}
2
-
3
- .aioseo-breadcrumbs .aioseo-box-toggle svg{margin-top:-15px;color:#434960}.aioseo-breadcrumbs .alert{margin-top:24px}.aioseo-breadcrumbs svg.aioseo-shortcode{width:100%;height:auto;max-width:60px}.aioseo-breadcrumbs svg.aioseo-gutenberg-block{width:59px;height:54px}.aioseo-breadcrumbs svg.aioseo-gutenberg-block rect{width:100%;width:56px;height:51px}.aioseo-breadcrumbs svg.aioseo-php{width:110px}.aioseo-breadcrumbs .copy-box{padding-top:0.5rem}.aioseo-breadcrumbs .copy-box>div{padding:30px;border-radius:3px;background-color:#F9F9FA}.aioseo-breadcrumbs .current-item{margin-right:10px}.aioseo-breadcrumbs .preview-box{padding:22px 24px;border:1px solid #E8E8EB;margin-bottom:16px;width:100%}@media only screen and (max-width: 782px){.aioseo-breadcrumbs .preview-box{padding:10px}}.aioseo-breadcrumbs .preview-box .label{font-weight:bold;min-width:75px;display:inline-block}.aioseo-breadcrumbs .preview-box .breadcrumb-preview{padding-bottom:20px}.aioseo-breadcrumbs .preview-box .breadcrumb-preview:last-child{padding-bottom:0}.aioseo-breadcrumbs .preview-box .breadcrumb-preview span:last-child{font-weight:bold}.aioseo-breadcrumbs .preview-box .aioseo-breadcrumb-separator{line-height:1;font-size:20px;color:#8C8F9A;padding:0 6px}.aioseo-breadcrumbs .preview-box .aioseo-breadcrumb{padding:0 6px}.aioseo-breadcrumbs .preview-box .last.noLink{font-weight:bold}.aioseo-breadcrumbs .preview-box .last.noLink a{font-weight:bold}.aioseo-breadcrumbs .preview-box .link,.aioseo-breadcrumbs .preview-box a{color:#005AE0;text-decoration:underline;font-weight:500;cursor:pointer;pointer-events:none}.aioseo-breadcrumbs .preview-box .noLink a{color:inherit;text-decoration:none;cursor:inherit;pointer-events:none}.aioseo-breadcrumbs .previews-box .preview-box:not(:last-child){margin-bottom:0;padding-bottom:0;border-bottom:0}.aioseo-breadcrumbs .previews-box .preview-box:not(:first-child){border-top:0;padding-top:20px}.aioseo-breadcrumbs .homepage-link{display:flex;align-items:center}.aioseo-breadcrumbs .homepage-link .homepage-link-label{flex:1 1 auto;margin:0 0 0 40px;display:flex;align-items:center}.aioseo-breadcrumbs .homepage-link .homepage-link-label .aioseo-input{margin-left:10px;max-width:250px}@media only screen and (max-width: 782px){.aioseo-breadcrumbs .homepage-link{display:block}.aioseo-breadcrumbs .homepage-link .homepage-link-label{margin:20px 0 0}.aioseo-breadcrumbs .homepage-link .homepage-link-label .aioseo-input{max-width:215px}}
4
 
1
+ .aioseo-breadcrumbs .content[data-v-1d5ee128]{position:relative}.aioseo-breadcrumbs .aioseo-box-toggle svg{margin-top:-15px;color:#434960}.aioseo-breadcrumbs .alert{margin-top:24px}.aioseo-breadcrumbs svg.aioseo-shortcode{width:100%;height:auto;max-width:60px}.aioseo-breadcrumbs svg.aioseo-gutenberg-block{width:59px;height:54px}.aioseo-breadcrumbs svg.aioseo-gutenberg-block rect{width:100%;width:56px;height:51px}.aioseo-breadcrumbs svg.aioseo-php{width:110px}.aioseo-breadcrumbs .copy-box{padding-top:.5rem}.aioseo-breadcrumbs .copy-box>div{padding:30px;border-radius:3px;background-color:#f9f9fa}.aioseo-breadcrumbs .current-item{margin-right:10px}.aioseo-breadcrumbs .preview-box{padding:22px 24px;border:1px solid #e8e8eb;margin-bottom:16px;width:100%}@media only screen and (max-width:782px){.aioseo-breadcrumbs .preview-box{padding:10px}}.aioseo-breadcrumbs .preview-box .label{font-weight:700;min-width:75px;display:inline-block}.aioseo-breadcrumbs .preview-box .breadcrumb-preview{padding-bottom:20px}.aioseo-breadcrumbs .preview-box .breadcrumb-preview:last-child{padding-bottom:0}.aioseo-breadcrumbs .preview-box .breadcrumb-preview span:last-child{font-weight:700}.aioseo-breadcrumbs .preview-box .aioseo-breadcrumb-separator{line-height:1;font-size:20px;color:#8c8f9a;padding:0 6px}.aioseo-breadcrumbs .preview-box .aioseo-breadcrumb{padding:0 6px}.aioseo-breadcrumbs .preview-box .last.noLink,.aioseo-breadcrumbs .preview-box .last.noLink a{font-weight:700}.aioseo-breadcrumbs .preview-box .link,.aioseo-breadcrumbs .preview-box a{color:#005ae0;text-decoration:underline;font-weight:500;cursor:pointer;pointer-events:none}.aioseo-breadcrumbs .preview-box .noLink a{color:inherit;text-decoration:none;cursor:inherit;pointer-events:none}.aioseo-breadcrumbs .previews-box .preview-box:not(:last-child){margin-bottom:0;padding-bottom:0;border-bottom:0}.aioseo-breadcrumbs .previews-box .preview-box:not(:first-child){border-top:0;padding-top:20px}.aioseo-breadcrumbs .homepage-link{display:flex;align-items:center}.aioseo-breadcrumbs .homepage-link .homepage-link-label{flex:1 1 auto;margin:0 0 0 40px;display:flex;align-items:center}.aioseo-breadcrumbs .homepage-link .homepage-link-label .aioseo-input{margin-left:10px;max-width:250px}@media only screen and (max-width:782px){.aioseo-breadcrumbs .homepage-link{display:block}.aioseo-breadcrumbs .homepage-link .homepage-link-label{margin:20px 0 0}.aioseo-breadcrumbs .homepage-link .homepage-link-label .aioseo-input{max-width:215px}}o-input{max-width:215px}}
 
 
2
 
dist/Lite/assets/css/settings-partials-Breadcrumbs-DateArchives-vue.css CHANGED
@@ -1,5 +1,3 @@
1
-
2
- .aioseo-html-tags-editor[data-v-a6b23674]{
3
- margin-bottom: 40px;
4
  }
5
 
1
+ .aioseo-html-tags-editor[data-v-a6b23674]{margin-bottom:40px}0px;
 
 
2
  }
3
 
dist/Lite/assets/css/setup-wizard-Import-vue.css CHANGED
@@ -1,2 +1,2 @@
1
- .aioseo-wizard-import{font-size:16px}.aioseo-wizard-import .header{font-size:24px;color:#141B38;font-weight:600}.aioseo-wizard-import .description{line-height:1.4;margin-top:20px;font-size:16px;color:#434960;margin-bottom:56px}.aioseo-wizard-import .plugins{margin-bottom:10px}.aioseo-wizard-import .plugins img{width:36px;height:auto}.aioseo-wizard-import .go-back a{color:#434960;font-size:14px}
2
 
1
+ .aioseo-wizard-import{font-size:16px}.aioseo-wizard-import .header{font-size:24px;color:#141b38;font-weight:600}.aioseo-wizard-import .description{line-height:1.4;margin-top:20px;font-size:16px;color:#434960;margin-bottom:56px}.aioseo-wizard-import .plugins{margin-bottom:10px}.aioseo-wizard-import .plugins img{width:36px;height:auto}.aioseo-wizard-import .go-back a{color:#434960;font-size:14px}
2
 
dist/Lite/assets/css/setup-wizard-Success-vue.css CHANGED
@@ -1,2 +1,2 @@
1
- .aioseo-wizard-success{font-size:16px;color:#141B38}.aioseo-wizard-success .header{font-size:24px;color:#141B38;font-weight:600}.aioseo-wizard-success .description{margin-top:32px;font-size:16px;color:#141B38;margin-bottom:44px}.aioseo-wizard-success .actions>div{display:flex;align-items:center}.aioseo-wizard-success .actions>div:not(.no-border){border-bottom:1px solid #E8E8EB;padding-bottom:24px;margin-bottom:24px}.aioseo-wizard-success .actions>div .icon{margin-right:16px;min-width:24px}.aioseo-wizard-success .actions>div .icon svg{width:24px;height:24px}.aioseo-wizard-success .actions>div .content{font-weight:700;font-size:16px;color:#141B38;flex:1}.aioseo-wizard-success .actions>div .content .social-button{color:#fff;margin:10px 10px 0 0}.aioseo-wizard-success .actions>div .content .social-button svg{width:14px;height:14px;margin-right:10px}.aioseo-wizard-success .actions>div .content .social-button.facebook{background-color:#4064AC}.aioseo-wizard-success .actions>div .content .social-button.twitter{background-color:#1DA1F2}.aioseo-wizard-success .actions>div:last-child{border-bottom:none;padding-bottom:0;margin-bottom:0}.aioseo-wizard-success .aioseo-settings-row:last-child{border-bottom:none;margin-bottom:0}.aioseo-wizard-success .aioseo-settings-row.feature-grid .settings-name .name{font-size:18px}.aioseo-wizard-success .aioseo-settings-row.feature-grid .aioseo-col{display:flex;align-items:center}.aioseo-wizard-success .go-back a{color:#434960;font-size:14px}.aioseo-wizard-success .cta{margin:0 20px 40px;padding:20px;border:1px solid #E8E8EB;text-align:center}.aioseo-wizard-success .cta .content{flex-direction:column;display:flex;align-items:center;justify-content:center}.aioseo-wizard-success .cta .content .cta-header{font-size:24px;font-weight:700;margin-bottom:24px;margin-top:20px}.aioseo-wizard-success .cta .content .cta-description{line-height:1.4;max-width:630px;margin-bottom:55px}.aioseo-wizard-success .cta .content .aioseo-alert{width:100%}.aioseo-wizard-success .cta .content .aioseo-button{margin-bottom:40px}.aioseo-wizard-success .cta .content .feature-list{color:#141B38;font-size:16px;width:100%;max-width:600px;margin-bottom:50px}.aioseo-wizard-success .cta .content .feature-list .aioseo-col{display:flex;align-items:flex-start;margin:2px 0}.aioseo-wizard-success .cta .content .feature-list .aioseo-col svg.aioseo-circle-check{color:#00AA63;width:18px;min-width:18px;min-height:18px;margin-right:10px}
2
 
1
+ .aioseo-wizard-success{font-size:16px;color:#141b38}.aioseo-wizard-success .header{font-size:24px;color:#141b38;font-weight:600}.aioseo-wizard-success .description{margin-top:32px;font-size:16px;color:#141b38;margin-bottom:44px}.aioseo-wizard-success .actions>div{display:flex;align-items:center}.aioseo-wizard-success .actions>div:not(.no-border){border-bottom:1px solid #e8e8eb;padding-bottom:24px;margin-bottom:24px}.aioseo-wizard-success .actions>div .icon{margin-right:16px;min-width:24px}.aioseo-wizard-success .actions>div .icon svg{width:24px;height:24px}.aioseo-wizard-success .actions>div .content{font-weight:700;font-size:16px;color:#141b38;flex:1}.aioseo-wizard-success .actions>div .content .social-button{color:#fff;margin:10px 10px 0 0}.aioseo-wizard-success .actions>div .content .social-button svg{width:14px;height:14px;margin-right:10px}.aioseo-wizard-success .actions>div .content .social-button.facebook{background-color:#4064ac}.aioseo-wizard-success .actions>div .content .social-button.twitter{background-color:#1da1f2}.aioseo-wizard-success .actions>div:last-child{border-bottom:none;padding-bottom:0;margin-bottom:0}.aioseo-wizard-success .aioseo-settings-row:last-child{border-bottom:none;margin-bottom:0}.aioseo-wizard-success .aioseo-settings-row.feature-grid .settings-name .name{font-size:18px}.aioseo-wizard-success .aioseo-settings-row.feature-grid .aioseo-col{display:flex;align-items:center}.aioseo-wizard-success .go-back a{color:#434960;font-size:14px}.aioseo-wizard-success .cta{margin:0 20px 40px;padding:20px;border:1px solid #e8e8eb;text-align:center}.aioseo-wizard-success .cta .content{flex-direction:column;display:flex;align-items:center;justify-content:center}.aioseo-wizard-success .cta .content .cta-header{font-size:24px;font-weight:700;margin-bottom:24px;margin-top:20px}.aioseo-wizard-success .cta .content .cta-description{line-height:1.4;max-width:630px;margin-bottom:55px}.aioseo-wizard-success .cta .content .aioseo-alert{width:100%}.aioseo-wizard-success .cta .content .aioseo-button{margin-bottom:40px}.aioseo-wizard-success .cta .content .feature-list{color:#141b38;font-size:16px;width:100%;max-width:600px;margin-bottom:50px}.aioseo-wizard-success .cta .content .feature-list .aioseo-col{display:flex;align-items:flex-start;margin:2px 0}.aioseo-wizard-success .cta .content .feature-list .aioseo-col svg.aioseo-circle-check{color:#00aa63;width:18px;min-width:18px;min-height:18px;margin-right:10px}
2
 
dist/Lite/assets/css/sitemaps-Main-vue.css CHANGED
@@ -1,14 +1,2 @@
1
- .aioseo-general-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-general-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-general-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-general-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-general-sitemap .index-notice,.aioseo-general-sitemap .static-regeneration-notice{margin-top:10px}.aioseo-general-sitemap .ping>div:first-child{margin-right:40px}.aioseo-general-sitemap .aioseo-priority-score{max-width:500px}.aioseo-general-sitemap .aioseo-priority-score .header-row{font-size:14px}
2
-
3
- .aioseo-app .aioseo-html-sitemap .aioseo-html-sitemap-settings .aioseo-select.medium{max-width:300px}
4
-
5
- .aioseo-news-sitemap-lite .aioseo-card .content{min-height:600px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}
6
-
7
- .aioseo-news-sitemap .aioseo-content-width,.aioseo-news-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-news-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-news-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-news-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select{max-width:600px;display:inline-block;margin-right:10px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option{display:flex}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005AE0}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option{flex:1 0 auto}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-title{font-weight:500;font-size:16px;color:#141B38}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-title .search-term{font-weight:700}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8C8F9A}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-details span{margin-right:15px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option-permalink{display:flex;align-items:center}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-news-sitemap .aioseo-exclude-pages-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;right:2px;top:2px;text-align:center;z-index:1}.aioseo-news-sitemap .aioseo-exclude-pages-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:black}.aioseo-news-sitemap .aioseo-news-embed .aioseo-checkbox:first-child{margin-bottom:10px}
8
-
9
- .aioseo-rss-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-rss-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-rss-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-rss-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-rss-sitemap .ping>div:first-child{margin-right:40px}.aioseo-rss-sitemap .aioseo-priority-score{max-width:350px}.aioseo-rss-sitemap .aioseo-priority-score .header-row{font-size:14px}
10
-
11
- .aioseo-video-sitemap-lite .aioseo-card .content{min-height:600px}.aioseo-video-sitemap-lite .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-video-sitemap-lite .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-video-sitemap-lite .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}
12
-
13
- .aioseo-video-sitemap .aioseo-content-width,.aioseo-video-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-video-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-video-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-video-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-video-sitemap .aioseo-exclude-pages-posts .aioseo-select{max-width:600px;display:inline-block;margin-right:10px}.aioseo-video-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option{display:flex}.aioseo-video-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005AE0}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option{flex:1 0 auto}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option .option-title{font-weight:500;font-size:16px;color:#141B38}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option .option-title .search-term{font-weight:700}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8C8F9A}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option .option-details span{margin-right:15px}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option-permalink{display:flex;align-items:center}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-video-sitemap .aioseo-exclude-pages-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;right:2px;top:2px;text-align:center;z-index:1}.aioseo-video-sitemap .aioseo-exclude-pages-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:black}.aioseo-video-sitemap .aioseo-video-embed .aioseo-checkbox:first-child{margin-bottom:10px}
14
 
1
+ .aioseo-general-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-general-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-general-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-general-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-general-sitemap .index-notice,.aioseo-general-sitemap .static-regeneration-notice{margin-top:10px}.aioseo-general-sitemap .ping>div:first-child{margin-right:40px}.aioseo-general-sitemap .aioseo-priority-score{max-width:500px}.aioseo-general-sitemap .aioseo-priority-score .header-row{font-size:14px}.aioseo-app .aioseo-html-sitemap .aioseo-html-sitemap-settings .aioseo-select.medium{max-width:300px}.aioseo-news-sitemap-lite .aioseo-card .content{min-height:600px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-news-sitemap .aioseo-content-width,.aioseo-news-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-news-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-news-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-news-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select{max-width:600px;display:inline-block;margin-right:10px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option{display:flex}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005ae0}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option{flex:1 0 auto}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-title{font-weight:500;font-size:16px;color:#141b38}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-title .search-term{font-weight:700}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8c8f9a}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-details span{margin-right:15px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option-permalink{display:flex;align-items:center}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-news-sitemap .aioseo-exclude-pages-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;right:2px;top:2px;text-align:center;z-index:1}.aioseo-news-sitemap .aioseo-exclude-pages-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:#000}.aioseo-news-sitemap .aioseo-news-embed .aioseo-checkbox:first-child{margin-bottom:10px}.aioseo-rss-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-rss-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-rss-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-rss-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-rss-sitemap .ping>div:first-child{margin-right:40px}.aioseo-rss-sitemap .aioseo-priority-score{max-width:350px}.aioseo-rss-sitemap .aioseo-priority-score .header-row{font-size:14px}.aioseo-video-sitemap-lite .aioseo-card .content{min-height:600px}.aioseo-video-sitemap-lite .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-video-sitemap-lite .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-video-sitemap-lite .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-video-sitemap .aioseo-content-width,.aioseo-video-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-video-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-video-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-video-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-video-sitemap .aioseo-exclude-pages-posts .aioseo-select{max-width:600px;display:inline-block;margin-right:10px}.aioseo-video-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option{display:flex}.aioseo-video-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005ae0}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option{flex:1 0 auto}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option .option-title{font-weight:500;font-size:16px;color:#141b38}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option .option-title .search-term{font-weight:700}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8c8f9a}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option .option-details span{margin-right:15px}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option-permalink{display:flex;align-items:center}.aioseo-video-sitemap .aioseo-exclude-pages-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-video-sitemap .aioseo-exclude-pages-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;right:2px;top:2px;text-align:center;z-index:1}.aioseo-video-sitemap .aioseo-exclude-pages-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:#000}.aioseo-video-sitemap .aioseo-video-embed .aioseo-checkbox:first-child{margin-bottom:10px}n-bottom:10px}
 
 
 
 
 
 
 
 
 
 
 
 
2
 
dist/Lite/assets/css/sitemaps-NewsSitemap-vue.css CHANGED
@@ -1,4 +1,2 @@
1
- .aioseo-news-sitemap-lite .aioseo-card .content{min-height:600px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}
2
-
3
- .aioseo-news-sitemap .aioseo-content-width,.aioseo-news-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-news-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-news-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-news-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select{max-width:600px;display:inline-block;margin-right:10px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option{display:flex}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005AE0}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option{flex:1 0 auto}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-title{font-weight:500;font-size:16px;color:#141B38}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-title .search-term{font-weight:700}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8C8F9A}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-details span{margin-right:15px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option-permalink{display:flex;align-items:center}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-news-sitemap .aioseo-exclude-pages-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;right:2px;top:2px;text-align:center;z-index:1}.aioseo-news-sitemap .aioseo-exclude-pages-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:black}.aioseo-news-sitemap .aioseo-news-embed .aioseo-checkbox:first-child{margin-bottom:10px}
4
 
1
+ .aioseo-news-sitemap-lite .aioseo-card .content{min-height:600px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-news-sitemap-lite .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-news-sitemap .aioseo-content-width,.aioseo-news-sitemap .aioseo-links-per-site{max-width:110px}.aioseo-news-sitemap .aioseo-sitemap-preview{margin-right:10px;display:flex;align-items:center;margin-bottom:10px}.aioseo-news-sitemap .aioseo-sitemap-preview .aioseo-select{max-width:180px;margin-right:10px}.aioseo-news-sitemap .aioseo-sitemap-preview svg.aioseo-external{width:14px;height:14px;margin-right:10px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select{max-width:600px;display:inline-block;margin-right:10px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option{display:flex}.aioseo-news-sitemap .aioseo-exclude-pages-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005ae0}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option{flex:1 0 auto}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-title{font-weight:500;font-size:16px;color:#141b38}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-title .search-term{font-weight:700}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8c8f9a}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option .option-details span{margin-right:15px}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option-permalink{display:flex;align-items:center}.aioseo-news-sitemap .aioseo-exclude-pages-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-news-sitemap .aioseo-exclude-pages-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;right:2px;top:2px;text-align:center;z-index:1}.aioseo-news-sitemap .aioseo-exclude-pages-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:#000}.aioseo-news-sitemap .aioseo-news-embed .aioseo-checkbox:first-child{margin-bottom:10px}px}
 
 
2
 
dist/Lite/assets/css/tools-partials-BackupSettings-vue.css CHANGED
@@ -1,2 +1,2 @@
1
- .aioseo-backup-settings .aioseo-alert{margin-bottom:20px}.aioseo-backup-settings .backups-table{border:1px solid #D0D1D7;border-radius:3px;margin-bottom:20px;font-size:16px}.aioseo-backup-settings .backups-table .backup-actions{max-width:50px}.aioseo-backup-settings .backups-table .backup-actions .aioseo-tooltip{display:inline-block;margin:0}.aioseo-backup-settings .backups-table .backups-rows{font-size:14px}.aioseo-backup-settings .backups-table .backups-rows .backup-row{background-color:#fff;height:70px;display:flex;align-items:center;padding:0 30px}.aioseo-backup-settings .backups-table .backups-rows .backup-row:last-of-type{border-radius:0 0 3px 3px}.aioseo-backup-settings .backups-table .backups-rows .backup-row.even{background-color:#F9F9FA}.aioseo-backup-settings .backups-table .backups-rows .backup-row>div{flex:1 0 auto;padding-right:30px}.aioseo-backup-settings .backups-table .backups-rows .backup-row>div:last-child{padding-right:0}.aioseo-backup-settings .backups-table .backups-rows .backup-row .backup-actions svg{width:20px;height:20px;color:#8C8F9A;cursor:pointer;transition:color 0.1s ease}.aioseo-backup-settings .backups-table .backups-rows .backup-row .backup-actions svg.aioseo-trash:hover{color:#DF2A4A}.aioseo-backup-settings .backups-table .backups-rows .backup-row .backup-actions svg.aioseo-refresh{margin-right:10px}.aioseo-backup-settings .backups-table .backups-rows .backup-row .backup-actions svg.aioseo-refresh:hover{color:#00AA63}.aioseo-backup-settings svg.aioseo-circle-plus{width:14px;height:14px;margin-right:10px}.aioseo-backup-settings .aioseo-modal-body{padding:20px 50px 50px;display:flex;align-items:center;justify-content:center;flex-direction:column;position:relative}.aioseo-backup-settings .aioseo-modal-body h3{font-size:20px;margin-bottom:16px}.aioseo-backup-settings .aioseo-modal-body .reset-description{font-size:16px;color:#141B38;margin-bottom:16px;text-align:center;max-width:515px}.aioseo-backup-settings .aioseo-modal-body button.close{position:absolute;right:11px;top:11px;width:24px;height:24px;background-color:#fff;border:none;display:flex;align-items:center}.aioseo-backup-settings .aioseo-modal-body button.close svg.aioseo-close{cursor:pointer;width:14px;height:14px}.aioseo-backup-settings .aioseo-modal-body .aioseo-description{max-width:510px;text-align:center}.aioseo-backup-settings .aioseo-modal-body .aioseo-button:not(.close){margin-top:16px}
2
 
1
+ .aioseo-backup-settings .aioseo-alert{margin-bottom:20px}.aioseo-backup-settings .backups-table{border:1px solid #d0d1d7;border-radius:3px;margin-bottom:20px;font-size:16px}.aioseo-backup-settings .backups-table .backup-actions{max-width:50px}.aioseo-backup-settings .backups-table .backup-actions .aioseo-tooltip{display:inline-block;margin:0}.aioseo-backup-settings .backups-table .backups-rows{font-size:14px}.aioseo-backup-settings .backups-table .backups-rows .backup-row{background-color:#fff;height:70px;display:flex;align-items:center;padding:0 30px}.aioseo-backup-settings .backups-table .backups-rows .backup-row:last-of-type{border-radius:0 0 3px 3px}.aioseo-backup-settings .backups-table .backups-rows .backup-row.even{background-color:#f9f9fa}.aioseo-backup-settings .backups-table .backups-rows .backup-row>div{flex:1 0 auto;padding-right:30px}.aioseo-backup-settings .backups-table .backups-rows .backup-row>div:last-child{padding-right:0}.aioseo-backup-settings .backups-table .backups-rows .backup-row .backup-actions svg{width:20px;height:20px;color:#8c8f9a;cursor:pointer;transition:color .1s ease}.aioseo-backup-settings .backups-table .backups-rows .backup-row .backup-actions svg.aioseo-trash:hover{color:#df2a4a}.aioseo-backup-settings .backups-table .backups-rows .backup-row .backup-actions svg.aioseo-refresh{margin-right:10px}.aioseo-backup-settings .backups-table .backups-rows .backup-row .backup-actions svg.aioseo-refresh:hover{color:#00aa63}.aioseo-backup-settings svg.aioseo-circle-plus{width:14px;height:14px;margin-right:10px}.aioseo-backup-settings .aioseo-modal-body{padding:20px 50px 50px;display:flex;align-items:center;justify-content:center;flex-direction:column;position:relative}.aioseo-backup-settings .aioseo-modal-body h3{font-size:20px;margin-bottom:16px}.aioseo-backup-settings .aioseo-modal-body .reset-description{font-size:16px;color:#141b38;margin-bottom:16px;text-align:center;max-width:515px}.aioseo-backup-settings .aioseo-modal-body button.close{position:absolute;right:11px;top:11px;width:24px;height:24px;background-color:#fff;border:none;display:flex;align-items:center}.aioseo-backup-settings .aioseo-modal-body button.close svg.aioseo-close{cursor:pointer;width:14px;height:14px}.aioseo-backup-settings .aioseo-modal-body .aioseo-description{max-width:510px;text-align:center}.aioseo-backup-settings .aioseo-modal-body .aioseo-button:not(.close){margin-top:16px}}
2
 
dist/Lite/assets/js/about.js CHANGED
@@ -1 +1 @@
1
- (function(e){function t(t){for(var r,u,i=t[0],s=t[1],c=t[2],l=0,v=[];l<i.length;l++)u=i[l],Object.prototype.hasOwnProperty.call(n,u)&&n[u]&&v.push(n[u][0]),n[u]=0;for(r in s)Object.prototype.hasOwnProperty.call(s,r)&&(e[r]=s[r]);b&&b(t);while(v.length)v.shift()();return a.push.apply(a,c||[]),o()}function o(){for(var e,t=0;t<a.length;t++){for(var o=a[t],r=!0,u=1;u<o.length;u++){var i=o[u];0!==n[i]&&(r=!1)}r&&(a.splice(t--,1),e=s(s.s=o[0]))}return e}var r={},u={about:0},n=(u={about:0},{about:0}),a=[];function i(e){return s.p+"js/"+({"about-AboutUs-vue":"about-AboutUs-vue","about-Main-vue":"about-Main-vue","about-GettingStarted-vue":"about-GettingStarted-vue","about-lite-LiteVsPro-vue":"about-lite-LiteVsPro-vue","about-pro-LiteVsPro-vue":"about-pro-LiteVsPro-vue"}[e]||e)+".js?ver="+{"about-AboutUs-vue":"cc6df84e","about-Main-vue":"11615416","about-GettingStarted-vue":"7806c081","about-lite-LiteVsPro-vue":"28631ca8","about-pro-LiteVsPro-vue":"700c8667"}[e]}function s(t){if(r[t])return r[t].exports;var o=r[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,s),o.l=!0,o.exports}s.e=function(e){var t=[],o={"about-AboutUs-vue":1,"about-Main-vue":1,"about-GettingStarted-vue":1,"about-lite-LiteVsPro-vue":1};u[e]?t.push(u[e]):0!==u[e]&&o[e]&&t.push(u[e]=new Promise((function(t,o){for(var r="css/"+({"about-AboutUs-vue":"about-AboutUs-vue","about-Main-vue":"about-Main-vue","about-GettingStarted-vue":"about-GettingStarted-vue","about-lite-LiteVsPro-vue":"about-lite-LiteVsPro-vue","about-pro-LiteVsPro-vue":"about-pro-LiteVsPro-vue"}[e]||e)+".css?ver="+{"about-AboutUs-vue":"cc6df84e","about-Main-vue":"11615416","about-GettingStarted-vue":"7806c081","about-lite-LiteVsPro-vue":"28631ca8","about-pro-LiteVsPro-vue":"700c8667"}[e],n=s.p+r,a=document.getElementsByTagName("link"),i=0;i<a.length;i++){var c=a[i],l=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(l===r||l===n))return t()}var v=document.getElementsByTagName("style");for(i=0;i<v.length;i++){c=v[i],l=c.getAttribute("data-href");if(l===r||l===n)return t()}var b=document.createElement("link");b.rel="stylesheet",b.type="text/css",b.onload=t,b.onerror=function(t){var r=t&&t.target&&t.target.src||n,a=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");a.code="CSS_CHUNK_LOAD_FAILED",a.request=r,delete u[e],b.parentNode.removeChild(b),o(a)},b.href=n;var d=document.getElementsByTagName("head")[0];d.appendChild(b)})).then((function(){u[e]=0})));o={"about-AboutUs-vue":1,"about-Main-vue":1,"about-GettingStarted-vue":1,"about-lite-LiteVsPro-vue":1};u[e]?t.push(u[e]):0!==u[e]&&o[e]&&t.push(u[e]=new Promise((function(t,o){for(var r=({"about-AboutUs-vue":"about-AboutUs-vue","about-Main-vue":"about-Main-vue","about-GettingStarted-vue":"about-GettingStarted-vue","about-lite-LiteVsPro-vue":"about-lite-LiteVsPro-vue","about-pro-LiteVsPro-vue":"about-pro-LiteVsPro-vue"}[e]||e)+".css",n=s.p+r,a=document.getElementsByTagName("link"),i=0;i<a.length;i++){var c=a[i],l=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(l===r||l===n))return t()}var v=document.getElementsByTagName("style");for(i=0;i<v.length;i++){c=v[i],l=c.getAttribute("data-href");if(l===r||l===n)return t()}var b=document.createElement("link");b.rel="stylesheet",b.type="text/css";var d=function(r){if(b.onerror=b.onload=null,"load"===r.type)t();else{var a=r&&("load"===r.type?"missing":r.type),i=r&&r.target&&r.target.href||n,s=new Error("Loading CSS chunk "+e+" failed.\n("+i+")");s.code="CSS_CHUNK_LOAD_FAILED",s.type=a,s.request=i,delete u[e],b.parentNode.removeChild(b),o(s)}};b.onerror=b.onload=d,b.href=n,document.head.appendChild(b)})).then((function(){u[e]=0})));var r=n[e];if(0!==r)if(r)t.push(r[2]);else{var a=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=a);var c,l=document.createElement("script");l.charset="utf-8",l.timeout=120,s.nc&&l.setAttribute("nonce",s.nc),l.src=i(e);var v=new Error;c=function(t){l.onerror=l.onload=null,clearTimeout(b);var o=n[e];if(0!==o){if(o){var r=t&&("load"===t.type?"missing":t.type),u=t&&t.target&&t.target.src;v.message="Loading chunk "+e+" failed.\n("+r+": "+u+")",v.name="ChunkLoadError",v.type=r,v.request=u,o[1](v)}n[e]=void 0}};var b=setTimeout((function(){c({type:"timeout",target:l})}),12e4);l.onerror=l.onload=c,document.head.appendChild(l)}return Promise.all(t)},s.m=e,s.c=r,s.d=function(e,t,o){s.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},s.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.t=function(e,t){if(1&t&&(e=s(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(s.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)s.d(o,r,function(t){return e[t]}.bind(null,r));return o},s.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return s.d(t,"a",t),t},s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},s.p="/",s.oe=function(e){throw console.error(e),e};var c=window["aioseopjsonp"]=window["aioseopjsonp"]||[],l=c.push.bind(c);c.push=t,c=c.slice();for(var v=0;v<c.length;v++)t(c[v]);var b=l;a.push([0,"chunk-vendors","chunk-common"]),o()})({0:function(e,t,o){e.exports=o("17a9")},"17a9":function(e,t,o){"use strict";o.r(t);o("e260"),o("e6cf"),o("cca6"),o("a79d");var r=o("a026"),u=(o("1725"),o("75b9"),function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"aioseo-app"},[o("router-view")],1)}),n=[],a=o("2877"),i={},s=Object(a["a"])(i,u,n,!1,null,null,null),c=s.exports,l=o("cf27"),v=o("71ae"),b=(o("d3b7"),o("3ca3"),o("ddb0"),o("561c")),d="all-in-one-seo-pack",p=function(e){return function(){return o("58d9")("./"+e+".vue")}},f=[{path:"*",redirect:"/about-us"},{path:"/about-us",name:"about-us",component:p("Main"),meta:{access:"aioseo_about_us_page",name:Object(b["__"])("About Us",d)}},{path:"/getting-started",name:"getting-started",component:p("Main"),meta:{access:"aioseo_about_us_page",name:Object(b["__"])("Getting Started",d)}},{path:"/lite-vs-pro",name:"lite-vs-pro",component:p("Main"),meta:{access:"aioseo_about_us_page",name:Object(b["__"])("Lite vs. Pro",d),display:"lite"}}],g=o("31bd"),h=(o("2d26"),o("96cf"),Object(v["a"])(f));Object(g["sync"])(l["a"],h),r["default"].config.productionTip=!1,new r["default"]({router:h,store:l["a"],render:function(e){return e(c)}}).$mount("#aioseo-app")},"58d9":function(e,t,o){var r={"./AboutUs.vue":["325d","about-AboutUs-vue"],"./GettingStarted.vue":["c0d2","about-GettingStarted-vue"],"./Main.vue":["7976","about-AboutUs-vue","about-Main-vue"],"./lite/LiteVsPro.vue":["3565","about-lite-LiteVsPro-vue"],"./pro/LiteVsPro.vue":["0e93","about-pro-LiteVsPro-vue"]};function u(e){if(!o.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],u=t[0];return Promise.all(t.slice(1).map(o.e)).then((function(){return o(u)}))}u.keys=function(){return Object.keys(r)},u.id="58d9",e.exports=u}});
1
+ (function(e){function t(t){for(var r,u,a=t[0],s=t[1],c=t[2],b=0,l=[];b<a.length;b++)u=a[b],Object.prototype.hasOwnProperty.call(n,u)&&n[u]&&l.push(n[u][0]),n[u]=0;for(r in s)Object.prototype.hasOwnProperty.call(s,r)&&(e[r]=s[r]);d&&d(t);while(l.length)l.shift()();return i.push.apply(i,c||[]),o()}function o(){for(var e,t=0;t<i.length;t++){for(var o=i[t],r=!0,u=1;u<o.length;u++){var a=o[u];0!==n[a]&&(r=!1)}r&&(i.splice(t--,1),e=c(c.s=o[0]))}return e}var r={},u={about:0},a=(u={about:0},function(){return"rtl"===document.dir}),n={about:0},i=[];function s(e){return c.p+"js/"+({"about-AboutUs-vue":"about-AboutUs-vue","about-Main-vue":"about-Main-vue","about-GettingStarted-vue":"about-GettingStarted-vue","about-lite-LiteVsPro-vue":"about-lite-LiteVsPro-vue","about-pro-LiteVsPro-vue":"about-pro-LiteVsPro-vue"}[e]||e)+".js?ver="+{"about-AboutUs-vue":"5dabc500","about-Main-vue":"aadb6e75","about-GettingStarted-vue":"9abe9656","about-lite-LiteVsPro-vue":"cb16d311","about-pro-LiteVsPro-vue":"855a9122"}[e]}function c(t){if(r[t])return r[t].exports;var o=r[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,c),o.l=!0,o.exports}c.e=function(e){var t=[],o={"about-AboutUs-vue":1,"about-Main-vue":1,"about-GettingStarted-vue":1,"about-lite-LiteVsPro-vue":1};u[e]?t.push(u[e]):0!==u[e]&&o[e]&&t.push(u[e]=new Promise((function(t,o){for(var r="css/"+({"about-AboutUs-vue":"about-AboutUs-vue","about-Main-vue":"about-Main-vue","about-GettingStarted-vue":"about-GettingStarted-vue","about-lite-LiteVsPro-vue":"about-lite-LiteVsPro-vue","about-pro-LiteVsPro-vue":"about-pro-LiteVsPro-vue"}[e]||e)+".css",a=c.p+r,n=document.getElementsByTagName("link"),i=0;i<n.length;i++){var s=n[i],b=s.getAttribute("data-href")||s.getAttribute("href");if("stylesheet"===s.rel&&(b===r||b===a))return t()}var l=document.getElementsByTagName("style");for(i=0;i<l.length;i++){s=l[i],b=s.getAttribute("data-href");if(b===r||b===a)return t()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css",v.onload=t,v.onerror=function(t){var r=t&&t.target&&t.target.src||a,n=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");n.code="CSS_CHUNK_LOAD_FAILED",n.request=r,delete u[e],v.parentNode.removeChild(v),o(n)},v.href=a;var d=document.getElementsByTagName("head")[0];d.appendChild(v)})).then((function(){u[e]=0})));o={"about-AboutUs-vue":1,"about-Main-vue":1,"about-GettingStarted-vue":1,"about-lite-LiteVsPro-vue":1};u[e]?t.push(u[e]):0!==u[e]&&o[e]&&t.push(u[e]=new Promise((function(t,o){for(var r=(a(),"css/"+({"about-AboutUs-vue":"about-AboutUs-vue","about-Main-vue":"about-Main-vue","about-GettingStarted-vue":"about-GettingStarted-vue","about-lite-LiteVsPro-vue":"about-lite-LiteVsPro-vue","about-pro-LiteVsPro-vue":"about-pro-LiteVsPro-vue"}[e]||e)+".css?ver="+{"about-AboutUs-vue":"5dabc500","about-Main-vue":"aadb6e75","about-GettingStarted-vue":"9abe9656","about-lite-LiteVsPro-vue":"cb16d311","about-pro-LiteVsPro-vue":"855a9122"}[e]),u=c.p+r,n=document.getElementsByTagName("link"),i=0;i<n.length;i++){var s=n[i],b=s.getAttribute("data-href")||s.getAttribute("href");if("stylesheet"===s.rel&&(b===r||b===u))return t()}var l=document.getElementsByTagName("style");for(i=0;i<l.length;i++){s=l[i],b=s.getAttribute("data-href");if(b===r||b===u)return t()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css",v.onload=t,v.onerror=function(t){var r=t&&t.target&&t.target.src||u,a=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");a.request=r,o(a)},v.href=u;var d=document.getElementsByTagName("head")[0];d.appendChild(v)})).then((function(){u[e]=0})));var r=n[e];if(0!==r)if(r)t.push(r[2]);else{var i=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=i);var b,l=document.createElement("script");l.charset="utf-8",l.timeout=120,c.nc&&l.setAttribute("nonce",c.nc),l.src=s(e);var v=new Error;b=function(t){l.onerror=l.onload=null,clearTimeout(d);var o=n[e];if(0!==o){if(o){var r=t&&("load"===t.type?"missing":t.type),u=t&&t.target&&t.target.src;v.message="Loading chunk "+e+" failed.\n("+r+": "+u+")",v.name="ChunkLoadError",v.type=r,v.request=u,o[1](v)}n[e]=void 0}};var d=setTimeout((function(){b({type:"timeout",target:l})}),12e4);l.onerror=l.onload=b,document.head.appendChild(l)}return Promise.all(t)},c.m=e,c.c=r,c.d=function(e,t,o){c.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},c.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,t){if(1&t&&(e=c(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(c.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)c.d(o,r,function(t){return e[t]}.bind(null,r));return o},c.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return c.d(t,"a",t),t},c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},c.p="/",c.oe=function(e){throw console.error(e),e};var b=window["aioseopjsonp"]=window["aioseopjsonp"]||[],l=b.push.bind(b);b.push=t,b=b.slice();for(var v=0;v<b.length;v++)t(b[v]);var d=l;i.push([0,"chunk-vendors","chunk-common"]),o()})({0:function(e,t,o){e.exports=o("17a9")},"17a9":function(e,t,o){"use strict";o.r(t);o("e260"),o("e6cf"),o("cca6"),o("a79d");var r=o("a026"),u=(o("1725"),o("75b9"),function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"aioseo-app"},[o("router-view")],1)}),a=[],n=o("2877"),i={},s=Object(n["a"])(i,u,a,!1,null,null,null),c=s.exports,b=o("cf27"),l=o("71ae"),v=(o("d3b7"),o("3ca3"),o("ddb0"),o("561c")),d="all-in-one-seo-pack",p=function(e){return function(){return o("58d9")("./"+e+".vue")}},f=[{path:"*",redirect:"/about-us"},{path:"/about-us",name:"about-us",component:p("Main"),meta:{access:"aioseo_about_us_page",name:Object(v["__"])("About Us",d)}},{path:"/getting-started",name:"getting-started",component:p("Main"),meta:{access:"aioseo_about_us_page",name:Object(v["__"])("Getting Started",d)}},{path:"/lite-vs-pro",name:"lite-vs-pro",component:p("Main"),meta:{access:"aioseo_about_us_page",name:Object(v["__"])("Lite vs. Pro",d),display:"lite"}}],g=o("31bd"),m=(o("2d26"),o("96cf"),Object(l["a"])(f));Object(g["sync"])(b["a"],m),r["default"].config.productionTip=!1,new r["default"]({router:m,store:b["a"],render:function(e){return e(c)}}).$mount("#aioseo-app")},"58d9":function(e,t,o){var r={"./AboutUs.vue":["325d","about-AboutUs-vue"],"./GettingStarted.vue":["c0d2","about-GettingStarted-vue"],"./Main.vue":["7976","about-AboutUs-vue","about-Main-vue"],"./lite/LiteVsPro.vue":["3565","about-lite-LiteVsPro-vue"],"./pro/LiteVsPro.vue":["0e93","about-pro-LiteVsPro-vue"]};function u(e){if(!o.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],u=t[0];return Promise.all(t.slice(1).map(o.e)).then((function(){return o(u)}))}u.keys=function(){return Object.keys(r)},u.id="58d9",e.exports=u}});
dist/Lite/assets/js/chunk-vendors.js CHANGED
@@ -37,7 +37,7 @@ t.read=function(e,t,n,r,i){var o,a,s=8*i-r-1,c=(1<<s)-1,u=c>>1,l=-7,d=n?i-1:0,f=
37
  * Copyright (c) 2014, Jason Chen
38
  * Copyright (c) 2013, salesforce.com
39
  */
40
- (function(t,n){e.exports=n()})("undefined"!==typeof self&&self,(function(){return 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}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get: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=109)}([function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(17),i=n(18),o=n(19),a=n(45),s=n(46),c=n(47),u=n(48),l=n(49),d=n(12),f=n(32),p=n(33),h=n(31),m=n(1),b={Scope:m.Scope,create:m.create,find:m.find,query:m.query,register:m.register,Container:r.default,Format:i.default,Leaf:o.default,Embed:u.default,Scroll:a.default,Block:c.default,Inline:s.default,Text:l.default,Attributor:{Attribute:d.default,Class:f.default,Style:p.default,Store:h.default}};t.default=b},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=function(e){function t(t){var n=this;return t="[Parchment] "+t,n=e.call(this,t)||this,n.message=t,n.name=n.constructor.name,n}return r(t,e),t}(Error);t.ParchmentError=i;var o,a={},s={},c={},u={};function l(e,t){var n=f(e);if(null==n)throw new i("Unable to create "+e+" blot");var r=n,o=e instanceof Node||e["nodeType"]===Node.TEXT_NODE?e:r.create(t);return new r(o,t)}function d(e,n){return void 0===n&&(n=!1),null==e?null:null!=e[t.DATA_KEY]?e[t.DATA_KEY].blot:n?d(e.parentNode,n):null}function f(e,t){var n;if(void 0===t&&(t=o.ANY),"string"===typeof e)n=u[e]||a[e];else if(e instanceof Text||e["nodeType"]===Node.TEXT_NODE)n=u["text"];else if("number"===typeof e)e&o.LEVEL&o.BLOCK?n=u["block"]:e&o.LEVEL&o.INLINE&&(n=u["inline"]);else if(e instanceof HTMLElement){var r=(e.getAttribute("class")||"").split(/\s+/);for(var i in r)if(n=s[r[i]],n)break;n=n||c[e.tagName]}return null==n?null:t&o.LEVEL&n.scope&&t&o.TYPE&n.scope?n:null}function p(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];if(e.length>1)return e.map((function(e){return p(e)}));var n=e[0];if("string"!==typeof n.blotName&&"string"!==typeof n.attrName)throw new i("Invalid definition");if("abstract"===n.blotName)throw new i("Cannot register abstract class");if(u[n.blotName||n.attrName]=n,"string"===typeof n.keyName)a[n.keyName]=n;else if(null!=n.className&&(s[n.className]=n),null!=n.tagName){Array.isArray(n.tagName)?n.tagName=n.tagName.map((function(e){return e.toUpperCase()})):n.tagName=n.tagName.toUpperCase();var r=Array.isArray(n.tagName)?n.tagName:[n.tagName];r.forEach((function(e){null!=c[e]&&null!=n.className||(c[e]=n)}))}return n}t.DATA_KEY="__blot",function(e){e[e["TYPE"]=3]="TYPE",e[e["LEVEL"]=12]="LEVEL",e[e["ATTRIBUTE"]=13]="ATTRIBUTE",e[e["BLOT"]=14]="BLOT",e[e["INLINE"]=7]="INLINE",e[e["BLOCK"]=11]="BLOCK",e[e["BLOCK_BLOT"]=10]="BLOCK_BLOT",e[e["INLINE_BLOT"]=6]="INLINE_BLOT",e[e["BLOCK_ATTRIBUTE"]=9]="BLOCK_ATTRIBUTE",e[e["INLINE_ATTRIBUTE"]=5]="INLINE_ATTRIBUTE",e[e["ANY"]=15]="ANY"}(o=t.Scope||(t.Scope={})),t.create=l,t.find=d,t.query=f,t.register=p},function(e,t,n){var r=n(51),i=n(11),o=n(3),a=n(20),s=String.fromCharCode(0),c=function(e){Array.isArray(e)?this.ops=e:null!=e&&Array.isArray(e.ops)?this.ops=e.ops:this.ops=[]};c.prototype.insert=function(e,t){var n={};return 0===e.length?this:(n.insert=e,null!=t&&"object"===typeof t&&Object.keys(t).length>0&&(n.attributes=t),this.push(n))},c.prototype["delete"]=function(e){return e<=0?this:this.push({delete:e})},c.prototype.retain=function(e,t){if(e<=0)return this;var n={retain:e};return null!=t&&"object"===typeof t&&Object.keys(t).length>0&&(n.attributes=t),this.push(n)},c.prototype.push=function(e){var t=this.ops.length,n=this.ops[t-1];if(e=o(!0,{},e),"object"===typeof n){if("number"===typeof e["delete"]&&"number"===typeof n["delete"])return this.ops[t-1]={delete:n["delete"]+e["delete"]},this;if("number"===typeof n["delete"]&&null!=e.insert&&(t-=1,n=this.ops[t-1],"object"!==typeof n))return this.ops.unshift(e),this;if(i(e.attributes,n.attributes)){if("string"===typeof e.insert&&"string"===typeof n.insert)return this.ops[t-1]={insert:n.insert+e.insert},"object"===typeof e.attributes&&(this.ops[t-1].attributes=e.attributes),this;if("number"===typeof e.retain&&"number"===typeof n.retain)return this.ops[t-1]={retain:n.retain+e.retain},"object"===typeof e.attributes&&(this.ops[t-1].attributes=e.attributes),this}}return t===this.ops.length?this.ops.push(e):this.ops.splice(t,0,e),this},c.prototype.chop=function(){var e=this.ops[this.ops.length-1];return e&&e.retain&&!e.attributes&&this.ops.pop(),this},c.prototype.filter=function(e){return this.ops.filter(e)},c.prototype.forEach=function(e){this.ops.forEach(e)},c.prototype.map=function(e){return this.ops.map(e)},c.prototype.partition=function(e){var t=[],n=[];return this.forEach((function(r){var i=e(r)?t:n;i.push(r)})),[t,n]},c.prototype.reduce=function(e,t){return this.ops.reduce(e,t)},c.prototype.changeLength=function(){return this.reduce((function(e,t){return t.insert?e+a.length(t):t.delete?e-t.delete:e}),0)},c.prototype.length=function(){return this.reduce((function(e,t){return e+a.length(t)}),0)},c.prototype.slice=function(e,t){e=e||0,"number"!==typeof t&&(t=1/0);var n=[],r=a.iterator(this.ops),i=0;while(i<t&&r.hasNext()){var o;i<e?o=r.next(e-i):(o=r.next(t-i),n.push(o)),i+=a.length(o)}return new c(n)},c.prototype.compose=function(e){var t=a.iterator(this.ops),n=a.iterator(e.ops),r=[],o=n.peek();if(null!=o&&"number"===typeof o.retain&&null==o.attributes){var s=o.retain;while("insert"===t.peekType()&&t.peekLength()<=s)s-=t.peekLength(),r.push(t.next());o.retain-s>0&&n.next(o.retain-s)}var u=new c(r);while(t.hasNext()||n.hasNext())if("insert"===n.peekType())u.push(n.next());else if("delete"===t.peekType())u.push(t.next());else{var l=Math.min(t.peekLength(),n.peekLength()),d=t.next(l),f=n.next(l);if("number"===typeof f.retain){var p={};"number"===typeof d.retain?p.retain=l:p.insert=d.insert;var h=a.attributes.compose(d.attributes,f.attributes,"number"===typeof d.retain);if(h&&(p.attributes=h),u.push(p),!n.hasNext()&&i(u.ops[u.ops.length-1],p)){var m=new c(t.rest());return u.concat(m).chop()}}else"number"===typeof f["delete"]&&"number"===typeof d.retain&&u.push(f)}return u.chop()},c.prototype.concat=function(e){var t=new c(this.ops.slice());return e.ops.length>0&&(t.push(e.ops[0]),t.ops=t.ops.concat(e.ops.slice(1))),t},c.prototype.diff=function(e,t){if(this.ops===e.ops)return new c;var n=[this,e].map((function(t){return t.map((function(n){if(null!=n.insert)return"string"===typeof n.insert?n.insert:s;var r=t===e?"on":"with";throw new Error("diff() called "+r+" non-document")})).join("")})),o=new c,u=r(n[0],n[1],t),l=a.iterator(this.ops),d=a.iterator(e.ops);return u.forEach((function(e){var t=e[1].length;while(t>0){var n=0;switch(e[0]){case r.INSERT:n=Math.min(d.peekLength(),t),o.push(d.next(n));break;case r.DELETE:n=Math.min(t,l.peekLength()),l.next(n),o["delete"](n);break;case r.EQUAL:n=Math.min(l.peekLength(),d.peekLength(),t);var s=l.next(n),c=d.next(n);i(s.insert,c.insert)?o.retain(n,a.attributes.diff(s.attributes,c.attributes)):o.push(c)["delete"](n);break}t-=n}})),o.chop()},c.prototype.eachLine=function(e,t){t=t||"\n";var n=a.iterator(this.ops),r=new c,i=0;while(n.hasNext()){if("insert"!==n.peekType())return;var o=n.peek(),s=a.length(o)-n.peekLength(),u="string"===typeof o.insert?o.insert.indexOf(t,s)-s:-1;if(u<0)r.push(n.next());else if(u>0)r.push(n.next(u));else{if(!1===e(r,n.next(1).attributes||{},i))return;i+=1,r=new c}}r.length()>0&&e(r,{},i)},c.prototype.transform=function(e,t){if(t=!!t,"number"===typeof e)return this.transformPosition(e,t);var n=a.iterator(this.ops),r=a.iterator(e.ops),i=new c;while(n.hasNext()||r.hasNext())if("insert"!==n.peekType()||!t&&"insert"===r.peekType())if("insert"===r.peekType())i.push(r.next());else{var o=Math.min(n.peekLength(),r.peekLength()),s=n.next(o),u=r.next(o);if(s["delete"])continue;u["delete"]?i.push(u):i.retain(o,a.attributes.transform(s.attributes,u.attributes,t))}else i.retain(a.length(n.next()));return i.chop()},c.prototype.transformPosition=function(e,t){t=!!t;var n=a.iterator(this.ops),r=0;while(n.hasNext()&&r<=e){var i=n.peekLength(),o=n.peekType();n.next(),"delete"!==o?("insert"===o&&(r<e||!t)&&(e+=i),r+=i):e-=Math.min(i,e-r)}return e},e.exports=c},function(e,t){"use strict";var n=Object.prototype.hasOwnProperty,r=Object.prototype.toString,i=Object.defineProperty,o=Object.getOwnPropertyDescriptor,a=function(e){return"function"===typeof Array.isArray?Array.isArray(e):"[object Array]"===r.call(e)},s=function(e){if(!e||"[object Object]"!==r.call(e))return!1;var t,i=n.call(e,"constructor"),o=e.constructor&&e.constructor.prototype&&n.call(e.constructor.prototype,"isPrototypeOf");if(e.constructor&&!i&&!o)return!1;for(t in e);return"undefined"===typeof t||n.call(e,t)},c=function(e,t){i&&"__proto__"===t.name?i(e,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):e[t.name]=t.newValue},u=function(e,t){if("__proto__"===t){if(!n.call(e,t))return;if(o)return o(e,t).value}return e[t]};e.exports=function e(){var t,n,r,i,o,l,d=arguments[0],f=1,p=arguments.length,h=!1;for("boolean"===typeof d&&(h=d,d=arguments[1]||{},f=2),(null==d||"object"!==typeof d&&"function"!==typeof d)&&(d={});f<p;++f)if(t=arguments[f],null!=t)for(n in t)r=u(d,n),i=u(t,n),d!==i&&(h&&i&&(s(i)||(o=a(i)))?(o?(o=!1,l=r&&a(r)?r:[]):l=r&&s(r)?r:{},c(d,{name:n,newValue:e(h,l,i)})):"undefined"!==typeof i&&c(d,{name:n,newValue:i}));return d}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.BlockEmbed=t.bubbleFormats=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(3),a=v(o),s=n(2),c=v(s),u=n(0),l=v(u),d=n(16),f=v(d),p=n(6),h=v(p),m=n(7),b=v(m);function v(e){return e&&e.__esModule?e:{default:e}}function y(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function M(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function _(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var g=1,w=function(e){function t(){return y(this,t),M(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return _(t,e),r(t,[{key:"attach",value:function(){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"attach",this).call(this),this.attributes=new l.default.Attributor.Store(this.domNode)}},{key:"delta",value:function(){return(new c.default).insert(this.value(),(0,a.default)(this.formats(),this.attributes.values()))}},{key:"format",value:function(e,t){var n=l.default.query(e,l.default.Scope.BLOCK_ATTRIBUTE);null!=n&&this.attributes.attribute(n,t)}},{key:"formatAt",value:function(e,t,n,r){this.format(n,r)}},{key:"insertAt",value:function(e,n,r){if("string"===typeof n&&n.endsWith("\n")){var o=l.default.create(A.blotName);this.parent.insertBefore(o,0===e?this:this.next),o.insertAt(0,n.slice(0,-1))}else i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,e,n,r)}}]),t}(l.default.Embed);w.scope=l.default.Scope.BLOCK_BLOT;var A=function(e){function t(e){y(this,t);var n=M(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.cache={},n}return _(t,e),r(t,[{key:"delta",value:function(){return null==this.cache.delta&&(this.cache.delta=this.descendants(l.default.Leaf).reduce((function(e,t){return 0===t.length()?e:e.insert(t.value(),L(t))}),new c.default).insert("\n",L(this))),this.cache.delta}},{key:"deleteAt",value:function(e,n){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"deleteAt",this).call(this,e,n),this.cache={}}},{key:"formatAt",value:function(e,n,r,o){n<=0||(l.default.query(r,l.default.Scope.BLOCK)?e+n===this.length()&&this.format(r,o):i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"formatAt",this).call(this,e,Math.min(n,this.length()-e-1),r,o),this.cache={})}},{key:"insertAt",value:function(e,n,r){if(null!=r)return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,e,n,r);if(0!==n.length){var o=n.split("\n"),a=o.shift();a.length>0&&(e<this.length()-1||null==this.children.tail?i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,Math.min(e,this.length()-1),a):this.children.tail.insertAt(this.children.tail.length(),a),this.cache={});var s=this;o.reduce((function(e,t){return s=s.split(e,!0),s.insertAt(0,t),t.length}),e+a.length)}}},{key:"insertBefore",value:function(e,n){var r=this.children.head;i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertBefore",this).call(this,e,n),r instanceof f.default&&r.remove(),this.cache={}}},{key:"length",value:function(){return null==this.cache.length&&(this.cache.length=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"length",this).call(this)+g),this.cache.length}},{key:"moveChildren",value:function(e,n){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"moveChildren",this).call(this,e,n),this.cache={}}},{key:"optimize",value:function(e){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e),this.cache={}}},{key:"path",value:function(e){return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"path",this).call(this,e,!0)}},{key:"removeChild",value:function(e){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"removeChild",this).call(this,e),this.cache={}}},{key:"split",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(n&&(0===e||e>=this.length()-g)){var r=this.clone();return 0===e?(this.parent.insertBefore(r,this),this):(this.parent.insertBefore(r,this.next),r)}var o=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"split",this).call(this,e,n);return this.cache={},o}}]),t}(l.default.Block);function L(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return null==e?t:("function"===typeof e.formats&&(t=(0,a.default)(t,e.formats())),null==e.parent||"scroll"==e.parent.blotName||e.parent.statics.scope!==e.statics.scope?t:L(e.parent,t))}A.blotName="block",A.tagName="P",A.defaultChild="break",A.allowedChildren=[h.default,l.default.Embed,b.default],t.bubbleFormats=L,t.BlockEmbed=w,t.default=A},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.overload=t.expandConfig=void 0;var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();n(50);var a=n(2),s=L(a),c=n(14),u=L(c),l=n(8),d=L(l),f=n(9),p=L(f),h=n(0),m=L(h),b=n(15),v=L(b),y=n(3),M=L(y),_=n(10),g=L(_),w=n(34),A=L(w);function L(e){return e&&e.__esModule?e:{default:e}}function O(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function T(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var S=(0,g.default)("quill"),k=function(){function e(t){var n=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(T(this,e),this.options=x(t,r),this.container=this.options.container,null==this.container)return S.error("Invalid Quill container",t);this.options.debug&&e.debug(this.options.debug);var i=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new d.default,this.scroll=m.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new u.default(this.scroll),this.selection=new v.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(d.default.events.EDITOR_CHANGE,(function(e){e===d.default.events.TEXT_CHANGE&&n.root.classList.toggle("ql-blank",n.editor.isBlank())})),this.emitter.on(d.default.events.SCROLL_UPDATE,(function(e,t){var r=n.selection.lastRange,i=r&&0===r.length?r.index:void 0;z.call(n,(function(){return n.editor.update(null,t,i)}),e)}));var o=this.clipboard.convert("<div class='ql-editor' style=\"white-space: normal;\">"+i+"<p><br></p></div>");this.setContents(o),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return o(e,null,[{key:"debug",value:function(e){!0===e&&(e="log"),g.default.level(e)}},{key:"find",value:function(e){return e.__quill||m.default.find(e)}},{key:"import",value:function(e){return null==this.imports[e]&&S.error("Cannot import "+e+". Are you sure it was registered?"),this.imports[e]}},{key:"register",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"!==typeof e){var i=e.attrName||e.blotName;"string"===typeof i?this.register("formats/"+i,e,t):Object.keys(e).forEach((function(r){n.register(r,e[r],t)}))}else null==this.imports[e]||r||S.warn("Overwriting "+e+" with",t),this.imports[e]=t,(e.startsWith("blots/")||e.startsWith("formats/"))&&"abstract"!==t.blotName?m.default.register(t):e.startsWith("modules")&&"function"===typeof t.register&&t.register()}}]),o(e,[{key:"addContainer",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"===typeof e){var n=e;e=document.createElement("div"),e.classList.add(n)}return this.container.insertBefore(e,t),e}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(e,t,n){var r=this,o=D(e,t,n),a=i(o,4);return e=a[0],t=a[1],n=a[3],z.call(this,(function(){return r.editor.deleteText(e,t)}),n,e,-1*t)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.scroll.enable(e),this.container.classList.toggle("ql-disabled",!e)}},{key:"focus",value:function(){var e=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=e,this.scrollIntoView()}},{key:"format",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:d.default.sources.API;return z.call(this,(function(){var r=n.getSelection(!0),i=new s.default;if(null==r)return i;if(m.default.query(e,m.default.Scope.BLOCK))i=n.editor.formatLine(r.index,r.length,O({},e,t));else{if(0===r.length)return n.selection.format(e,t),i;i=n.editor.formatText(r.index,r.length,O({},e,t))}return n.setSelection(r,d.default.sources.SILENT),i}),r)}},{key:"formatLine",value:function(e,t,n,r,o){var a=this,s=void 0,c=D(e,t,n,r,o),u=i(c,4);return e=u[0],t=u[1],s=u[2],o=u[3],z.call(this,(function(){return a.editor.formatLine(e,t,s)}),o,e,0)}},{key:"formatText",value:function(e,t,n,r,o){var a=this,s=void 0,c=D(e,t,n,r,o),u=i(c,4);return e=u[0],t=u[1],s=u[2],o=u[3],z.call(this,(function(){return a.editor.formatText(e,t,s)}),o,e,0)}},{key:"getBounds",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=void 0;n="number"===typeof e?this.selection.getBounds(e,t):this.selection.getBounds(e.index,e.length);var r=this.container.getBoundingClientRect();return{bottom:n.bottom-r.top,height:n.height,left:n.left-r.left,right:n.right-r.left,top:n.top-r.top,width:n.width}}},{key:"getContents",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-e,n=D(e,t),r=i(n,2);return e=r[0],t=r[1],this.editor.getContents(e,t)}},{key:"getFormat",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.getSelection(!0),t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return"number"===typeof e?this.editor.getFormat(e,t):this.editor.getFormat(e.index,e.length)}},{key:"getIndex",value:function(e){return e.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(e){return this.scroll.leaf(e)}},{key:"getLine",value:function(e){return this.scroll.line(e)}},{key:"getLines",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return"number"!==typeof e?this.scroll.lines(e.index,e.length):this.scroll.lines(e,t)}},{key:"getModule",value:function(e){return this.theme.modules[e]}},{key:"getSelection",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return e&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-e,n=D(e,t),r=i(n,2);return e=r[0],t=r[1],this.editor.getText(e,t)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:e.sources.API;return z.call(this,(function(){return i.editor.insertEmbed(t,n,r)}),o,t)}},{key:"insertText",value:function(e,t,n,r,o){var a=this,s=void 0,c=D(e,0,n,r,o),u=i(c,4);return e=u[0],s=u[2],o=u[3],z.call(this,(function(){return a.editor.insertText(e,t,s)}),o,e,t.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(e,t,n){this.clipboard.dangerouslyPasteHTML(e,t,n)}},{key:"removeFormat",value:function(e,t,n){var r=this,o=D(e,t,n),a=i(o,4);return e=a[0],t=a[1],n=a[3],z.call(this,(function(){return r.editor.removeFormat(e,t)}),n,e)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.default.sources.API;return z.call(this,(function(){e=new s.default(e);var n=t.getLength(),r=t.editor.deleteText(0,n),i=t.editor.applyDelta(e),o=i.ops[i.ops.length-1];null!=o&&"string"===typeof o.insert&&"\n"===o.insert[o.insert.length-1]&&(t.editor.deleteText(t.getLength()-1,1),i.delete(1));var a=r.compose(i);return a}),n)}},{key:"setSelection",value:function(t,n,r){if(null==t)this.selection.setRange(null,n||e.sources.API);else{var o=D(t,n,r),a=i(o,4);t=a[0],n=a[1],r=a[3],this.selection.setRange(new b.Range(t,n),r),r!==d.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.default.sources.API,n=(new s.default).insert(e);return this.setContents(n,t)}},{key:"update",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:d.default.sources.USER,t=this.scroll.update(e);return this.selection.update(e),t}},{key:"updateContents",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.default.sources.API;return z.call(this,(function(){return e=new s.default(e),t.editor.applyDelta(e,n)}),n,!0)}}]),e}();function x(e,t){if(t=(0,M.default)(!0,{container:e,modules:{clipboard:!0,keyboard:!0,history:!0}},t),t.theme&&t.theme!==k.DEFAULTS.theme){if(t.theme=k.import("themes/"+t.theme),null==t.theme)throw new Error("Invalid theme "+t.theme+". Did you register it?")}else t.theme=A.default;var n=(0,M.default)(!0,{},t.theme.DEFAULTS);[n,t].forEach((function(e){e.modules=e.modules||{},Object.keys(e.modules).forEach((function(t){!0===e.modules[t]&&(e.modules[t]={})}))}));var r=Object.keys(n.modules).concat(Object.keys(t.modules)),i=r.reduce((function(e,t){var n=k.import("modules/"+t);return null==n?S.error("Cannot load "+t+" module. Are you sure you registered it?"):e[t]=n.DEFAULTS||{},e}),{});return null!=t.modules&&t.modules.toolbar&&t.modules.toolbar.constructor!==Object&&(t.modules.toolbar={container:t.modules.toolbar}),t=(0,M.default)(!0,{},k.DEFAULTS,{modules:i},n,t),["bounds","container","scrollingContainer"].forEach((function(e){"string"===typeof t[e]&&(t[e]=document.querySelector(t[e]))})),t.modules=Object.keys(t.modules).reduce((function(e,n){return t.modules[n]&&(e[n]=t.modules[n]),e}),{}),t}function z(e,t,n,r){if(this.options.strict&&!this.isEnabled()&&t===d.default.sources.USER)return new s.default;var i=null==n?null:this.getSelection(),o=this.editor.delta,a=e();if(null!=i&&(!0===n&&(n=i.index),null==r?i=N(i,a,t):0!==r&&(i=N(i,n,r,t)),this.setSelection(i,d.default.sources.SILENT)),a.length()>0){var c,u,l=[d.default.events.TEXT_CHANGE,a,o,t];if((c=this.emitter).emit.apply(c,[d.default.events.EDITOR_CHANGE].concat(l)),t!==d.default.sources.SILENT)(u=this.emitter).emit.apply(u,l)}return a}function D(e,t,n,i,o){var a={};return"number"===typeof e.index&&"number"===typeof e.length?"number"!==typeof t?(o=i,i=n,n=t,t=e.length,e=e.index):(t=e.length,e=e.index):"number"!==typeof t&&(o=i,i=n,n=t,t=0),"object"===("undefined"===typeof n?"undefined":r(n))?(a=n,o=i):"string"===typeof n&&(null!=i?a[n]=i:o=n),o=o||d.default.sources.API,[e,t,a,o]}function N(e,t,n,r){if(null==e)return null;var o=void 0,a=void 0;if(t instanceof s.default){var c=[e.index,e.index+e.length].map((function(e){return t.transformPosition(e,r!==d.default.sources.USER)})),u=i(c,2);o=u[0],a=u[1]}else{var l=[e.index,e.index+e.length].map((function(e){return e<t||e===t&&r===d.default.sources.USER?e:n>=0?e+n:Math.max(t,e+n)})),f=i(l,2);o=f[0],a=f[1]}return new b.Range(o,a-o)}k.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},k.events=d.default.events,k.sources=d.default.sources,k.version="1.3.7",k.imports={delta:s.default,parchment:m.default,"core/module":p.default,"core/theme":A.default},t.expandConfig=x,t.overload=D,t.default=k},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(7),a=u(o),s=n(0),c=u(s);function u(e){return e&&e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function f(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var p=function(e){function t(){return l(this,t),d(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return f(t,e),r(t,[{key:"formatAt",value:function(e,n,r,o){if(t.compare(this.statics.blotName,r)<0&&c.default.query(r,c.default.Scope.BLOT)){var a=this.isolate(e,n);o&&a.wrap(r,o)}else i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"formatAt",this).call(this,e,n,r,o)}},{key:"optimize",value:function(e){if(i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e),this.parent instanceof t&&t.compare(this.statics.blotName,this.parent.statics.blotName)>0){var n=this.parent.isolate(this.offset(),this.length());this.moveChildren(n),n.wrap(this)}}}],[{key:"compare",value:function(e,n){var r=t.order.indexOf(e),i=t.order.indexOf(n);return r>=0||i>=0?r-i:e===n?0:e<n?-1:1}}]),t}(c.default.Inline);p.allowedChildren=[p,c.default.Embed,a.default],p.order=["cursor","inline","underline","strike","italic","bold","script","link","code"],t.default=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default.Text);t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(54),a=u(o),s=n(10),c=u(s);function u(e){return e&&e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function f(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var p=(0,c.default)("quill:events"),h=["selectionchange","mousedown","mouseup","click"];h.forEach((function(e){document.addEventListener(e,(function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];[].slice.call(document.querySelectorAll(".ql-container")).forEach((function(e){var n;e.__quill&&e.__quill.emitter&&(n=e.__quill.emitter).handleDOM.apply(n,t)}))}))}));var m=function(e){function t(){l(this,t);var e=d(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));return e.listeners={},e.on("error",p.error),e}return f(t,e),r(t,[{key:"emit",value:function(){p.log.apply(p,arguments),i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"emit",this).apply(this,arguments)}},{key:"handleDOM",value:function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];(this.listeners[e.type]||[]).forEach((function(t){var r=t.node,i=t.handler;(e.target===r||r.contains(e.target))&&i.apply(void 0,[e].concat(n))}))}},{key:"listenDOM",value:function(e,t,n){this.listeners[e]||(this.listeners[e]=[]),this.listeners[e].push({node:t,handler:n})}}]),t}(a.default);m.events={EDITOR_CHANGE:"editor-change",SCROLL_BEFORE_UPDATE:"scroll-before-update",SCROLL_OPTIMIZE:"scroll-optimize",SCROLL_UPDATE:"scroll-update",SELECTION_CHANGE:"selection-change",TEXT_CHANGE:"text-change"},m.sources={API:"api",SILENT:"silent",USER:"user"},t.default=m},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,e),this.quill=t,this.options=n};i.DEFAULTS={},t.default=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=["error","warn","log","info"],i="warn";function o(e){if(r.indexOf(e)<=r.indexOf(i)){for(var t,n=arguments.length,o=Array(n>1?n-1:0),a=1;a<n;a++)o[a-1]=arguments[a];(t=console)[e].apply(t,o)}}function a(e){return r.reduce((function(t,n){return t[n]=o.bind(console,n,e),t}),{})}o.level=a.level=function(e){i=e},t.default=a},function(e,t,n){var r=Array.prototype.slice,i=n(52),o=n(53),a=e.exports=function(e,t,n){return n||(n={}),e===t||(e instanceof Date&&t instanceof Date?e.getTime()===t.getTime():!e||!t||"object"!=typeof e&&"object"!=typeof t?n.strict?e===t:e==t:u(e,t,n))};function s(e){return null===e||void 0===e}function c(e){return!(!e||"object"!==typeof e||"number"!==typeof e.length)&&("function"===typeof e.copy&&"function"===typeof e.slice&&!(e.length>0&&"number"!==typeof e[0]))}function u(e,t,n){var u,l;if(s(e)||s(t))return!1;if(e.prototype!==t.prototype)return!1;if(o(e))return!!o(t)&&(e=r.call(e),t=r.call(t),a(e,t,n));if(c(e)){if(!c(t))return!1;if(e.length!==t.length)return!1;for(u=0;u<e.length;u++)if(e[u]!==t[u])return!1;return!0}try{var d=i(e),f=i(t)}catch(p){return!1}if(d.length!=f.length)return!1;for(d.sort(),f.sort(),u=d.length-1;u>=0;u--)if(d[u]!=f[u])return!1;for(u=d.length-1;u>=0;u--)if(l=d[u],!a(e[l],t[l],n))return!1;return typeof e===typeof t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=function(){function e(e,t,n){void 0===n&&(n={}),this.attrName=e,this.keyName=t;var i=r.Scope.TYPE&r.Scope.ATTRIBUTE;null!=n.scope?this.scope=n.scope&r.Scope.LEVEL|i:this.scope=r.Scope.ATTRIBUTE,null!=n.whitelist&&(this.whitelist=n.whitelist)}return e.keys=function(e){return[].map.call(e.attributes,(function(e){return e.name}))},e.prototype.add=function(e,t){return!!this.canAdd(e,t)&&(e.setAttribute(this.keyName,t),!0)},e.prototype.canAdd=function(e,t){var n=r.query(e,r.Scope.BLOT&(this.scope|r.Scope.TYPE));return null!=n&&(null==this.whitelist||("string"===typeof t?this.whitelist.indexOf(t.replace(/["']/g,""))>-1:this.whitelist.indexOf(t)>-1))},e.prototype.remove=function(e){e.removeAttribute(this.keyName)},e.prototype.value=function(e){var t=e.getAttribute(this.keyName);return this.canAdd(e,t)&&t?t:""},e}();t.default=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.Code=void 0;var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},a=n(2),s=b(a),c=n(0),u=b(c),l=n(4),d=b(l),f=n(6),p=b(f),h=n(7),m=b(h);function b(e){return e&&e.__esModule?e:{default:e}}function v(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function y(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function M(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var _=function(e){function t(){return v(this,t),y(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return M(t,e),t}(p.default);_.blotName="code",_.tagName="CODE";var g=function(e){function t(){return v(this,t),y(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return M(t,e),i(t,[{key:"delta",value:function(){var e=this,t=this.domNode.textContent;return t.endsWith("\n")&&(t=t.slice(0,-1)),t.split("\n").reduce((function(t,n){return t.insert(n).insert("\n",e.formats())}),new s.default)}},{key:"format",value:function(e,n){if(e!==this.statics.blotName||!n){var i=this.descendant(m.default,this.length()-1),a=r(i,1),s=a[0];null!=s&&s.deleteAt(s.length()-1,1),o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n)}}},{key:"formatAt",value:function(e,n,r,i){if(0!==n&&null!=u.default.query(r,u.default.Scope.BLOCK)&&(r!==this.statics.blotName||i!==this.statics.formats(this.domNode))){var o=this.newlineIndex(e);if(!(o<0||o>=e+n)){var a=this.newlineIndex(e,!0)+1,s=o-a+1,c=this.isolate(a,s),l=c.next;c.format(r,i),l instanceof t&&l.formatAt(0,e-a+n-s,r,i)}}}},{key:"insertAt",value:function(e,t,n){if(null==n){var i=this.descendant(m.default,e),o=r(i,2),a=o[0],s=o[1];a.insertAt(s,t)}}},{key:"length",value:function(){var e=this.domNode.textContent.length;return this.domNode.textContent.endsWith("\n")?e:e+1}},{key:"newlineIndex",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(t)return this.domNode.textContent.slice(0,e).lastIndexOf("\n");var n=this.domNode.textContent.slice(e).indexOf("\n");return n>-1?e+n:-1}},{key:"optimize",value:function(e){this.domNode.textContent.endsWith("\n")||this.appendChild(u.default.create("text","\n")),o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&this.statics.formats(this.domNode)===n.statics.formats(n.domNode)&&(n.optimize(e),n.moveChildren(this),n.remove())}},{key:"replace",value:function(e){o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replace",this).call(this,e),[].slice.call(this.domNode.querySelectorAll("*")).forEach((function(e){var t=u.default.find(e);null==t?e.parentNode.removeChild(e):t instanceof u.default.Embed?t.remove():t.unwrap()}))}}],[{key:"create",value:function(e){var n=o(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return n.setAttribute("spellcheck",!1),n}},{key:"formats",value:function(){return!0}}]),t}(d.default);g.blotName="code-block",g.tagName="PRE",g.TAB=" ",t.Code=_,t.default=g},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(2),s=T(a),c=n(20),u=T(c),l=n(0),d=T(l),f=n(13),p=T(f),h=n(24),m=T(h),b=n(4),v=T(b),y=n(16),M=T(y),_=n(21),g=T(_),w=n(11),A=T(w),L=n(3),O=T(L);function T(e){return e&&e.__esModule?e:{default:e}}function S(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function k(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var x=/^[ -~]*$/,z=function(){function e(t){k(this,e),this.scroll=t,this.delta=this.getDelta()}return o(e,[{key:"applyDelta",value:function(e){var t=this,n=!1;this.scroll.update();var o=this.scroll.length();return this.scroll.batchStart(),e=N(e),e.reduce((function(e,a){var s=a.retain||a.delete||a.insert.length||1,c=a.attributes||{};if(null!=a.insert){if("string"===typeof a.insert){var l=a.insert;l.endsWith("\n")&&n&&(n=!1,l=l.slice(0,-1)),e>=o&&!l.endsWith("\n")&&(n=!0),t.scroll.insertAt(e,l);var f=t.scroll.line(e),p=i(f,2),h=p[0],m=p[1],y=(0,O.default)({},(0,b.bubbleFormats)(h));if(h instanceof v.default){var M=h.descendant(d.default.Leaf,m),_=i(M,1),g=_[0];y=(0,O.default)(y,(0,b.bubbleFormats)(g))}c=u.default.attributes.diff(y,c)||{}}else if("object"===r(a.insert)){var w=Object.keys(a.insert)[0];if(null==w)return e;t.scroll.insertAt(e,w,a.insert[w])}o+=s}return Object.keys(c).forEach((function(n){t.scroll.formatAt(e,s,n,c[n])})),e+s}),0),e.reduce((function(e,n){return"number"===typeof n.delete?(t.scroll.deleteAt(e,n.delete),e):e+(n.retain||n.insert.length||1)}),0),this.scroll.batchEnd(),this.update(e)}},{key:"deleteText",value:function(e,t){return this.scroll.deleteAt(e,t),this.update((new s.default).retain(e).delete(t))}},{key:"formatLine",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.scroll.update(),Object.keys(r).forEach((function(i){if(null==n.scroll.whitelist||n.scroll.whitelist[i]){var o=n.scroll.lines(e,Math.max(t,1)),a=t;o.forEach((function(t){var o=t.length();if(t instanceof p.default){var s=e-t.offset(n.scroll),c=t.newlineIndex(s+a)-s+1;t.formatAt(s,c,i,r[i])}else t.format(i,r[i]);a-=o}))}})),this.scroll.optimize(),this.update((new s.default).retain(e).retain(t,(0,g.default)(r)))}},{key:"formatText",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return Object.keys(r).forEach((function(i){n.scroll.formatAt(e,t,i,r[i])})),this.update((new s.default).retain(e).retain(t,(0,g.default)(r)))}},{key:"getContents",value:function(e,t){return this.delta.slice(e,e+t)}},{key:"getDelta",value:function(){return this.scroll.lines().reduce((function(e,t){return e.concat(t.delta())}),new s.default)}},{key:"getFormat",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[],r=[];0===t?this.scroll.path(e).forEach((function(e){var t=i(e,1),o=t[0];o instanceof v.default?n.push(o):o instanceof d.default.Leaf&&r.push(o)})):(n=this.scroll.lines(e,t),r=this.scroll.descendants(d.default.Leaf,e,t));var o=[n,r].map((function(e){if(0===e.length)return{};var t=(0,b.bubbleFormats)(e.shift());while(Object.keys(t).length>0){var n=e.shift();if(null==n)return t;t=D((0,b.bubbleFormats)(n),t)}return t}));return O.default.apply(O.default,o)}},{key:"getText",value:function(e,t){return this.getContents(e,t).filter((function(e){return"string"===typeof e.insert})).map((function(e){return e.insert})).join("")}},{key:"insertEmbed",value:function(e,t,n){return this.scroll.insertAt(e,t,n),this.update((new s.default).retain(e).insert(S({},t,n)))}},{key:"insertText",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t=t.replace(/\r\n/g,"\n").replace(/\r/g,"\n"),this.scroll.insertAt(e,t),Object.keys(r).forEach((function(i){n.scroll.formatAt(e,t.length,i,r[i])})),this.update((new s.default).retain(e).insert(t,(0,g.default)(r)))}},{key:"isBlank",value:function(){if(0==this.scroll.children.length)return!0;if(this.scroll.children.length>1)return!1;var e=this.scroll.children.head;return e.statics.blotName===v.default.blotName&&(!(e.children.length>1)&&e.children.head instanceof M.default)}},{key:"removeFormat",value:function(e,t){var n=this.getText(e,t),r=this.scroll.line(e+t),o=i(r,2),a=o[0],c=o[1],u=0,l=new s.default;null!=a&&(u=a instanceof p.default?a.newlineIndex(c)-c+1:a.length()-c,l=a.delta().slice(c,c+u-1).insert("\n"));var d=this.getContents(e,t+u),f=d.diff((new s.default).insert(n).concat(l)),h=(new s.default).retain(e).concat(f);return this.applyDelta(h)}},{key:"update",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,r=this.delta;if(1===t.length&&"characterData"===t[0].type&&t[0].target.data.match(x)&&d.default.find(t[0].target)){var i=d.default.find(t[0].target),o=(0,b.bubbleFormats)(i),a=i.offset(this.scroll),c=t[0].oldValue.replace(m.default.CONTENTS,""),u=(new s.default).insert(c),l=(new s.default).insert(i.value()),f=(new s.default).retain(a).concat(u.diff(l,n));e=f.reduce((function(e,t){return t.insert?e.insert(t.insert,o):e.push(t)}),new s.default),this.delta=r.compose(e)}else this.delta=this.getDelta(),e&&(0,A.default)(r.compose(e),this.delta)||(e=r.diff(this.delta,n));return e}}]),e}();function D(e,t){return Object.keys(t).reduce((function(n,r){return null==e[r]||(t[r]===e[r]?n[r]=t[r]:Array.isArray(t[r])?t[r].indexOf(e[r])<0&&(n[r]=t[r].concat([e[r]])):n[r]=[t[r],e[r]]),n}),{})}function N(e){return e.reduce((function(e,t){if(1===t.insert){var n=(0,g.default)(t.attributes);return delete n["image"],e.insert({image:t.attributes.image},n)}if(null==t.attributes||!0!==t.attributes.list&&!0!==t.attributes.bullet||(t=(0,g.default)(t),t.attributes.list?t.attributes.list="ordered":(t.attributes.list="bullet",delete t.attributes.bullet)),"string"===typeof t.insert){var r=t.insert.replace(/\r\n/g,"\n").replace(/\r/g,"\n");return e.insert(r,t.attributes)}return e.push(t)}),new s.default)}t.default=z},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.Range=void 0;var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(0),a=m(o),s=n(21),c=m(s),u=n(11),l=m(u),d=n(8),f=m(d),p=n(10),h=m(p);function m(e){return e&&e.__esModule?e:{default:e}}function b(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function v(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var y=(0,h.default)("quill:selection"),M=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;v(this,e),this.index=t,this.length=n},_=function(){function e(t,n){var r=this;v(this,e),this.emitter=n,this.scroll=t,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=a.default.create("cursor",this),this.lastRange=this.savedRange=new M(0,0),this.handleComposition(),this.handleDragging(),this.emitter.listenDOM("selectionchange",document,(function(){r.mouseDown||setTimeout(r.update.bind(r,f.default.sources.USER),1)})),this.emitter.on(f.default.events.EDITOR_CHANGE,(function(e,t){e===f.default.events.TEXT_CHANGE&&t.length()>0&&r.update(f.default.sources.SILENT)})),this.emitter.on(f.default.events.SCROLL_BEFORE_UPDATE,(function(){if(r.hasFocus()){var e=r.getNativeRange();null!=e&&e.start.node!==r.cursor.textNode&&r.emitter.once(f.default.events.SCROLL_UPDATE,(function(){try{r.setNativeRange(e.start.node,e.start.offset,e.end.node,e.end.offset)}catch(t){}}))}})),this.emitter.on(f.default.events.SCROLL_OPTIMIZE,(function(e,t){if(t.range){var n=t.range,i=n.startNode,o=n.startOffset,a=n.endNode,s=n.endOffset;r.setNativeRange(i,o,a,s)}})),this.update(f.default.sources.SILENT)}return i(e,[{key:"handleComposition",value:function(){var e=this;this.root.addEventListener("compositionstart",(function(){e.composing=!0})),this.root.addEventListener("compositionend",(function(){if(e.composing=!1,e.cursor.parent){var t=e.cursor.restore();if(!t)return;setTimeout((function(){e.setNativeRange(t.startNode,t.startOffset,t.endNode,t.endOffset)}),1)}}))}},{key:"handleDragging",value:function(){var e=this;this.emitter.listenDOM("mousedown",document.body,(function(){e.mouseDown=!0})),this.emitter.listenDOM("mouseup",document.body,(function(){e.mouseDown=!1,e.update(f.default.sources.USER)}))}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(e,t){if(null==this.scroll.whitelist||this.scroll.whitelist[e]){this.scroll.update();var n=this.getNativeRange();if(null!=n&&n.native.collapsed&&!a.default.query(e,a.default.Scope.BLOCK)){if(n.start.node!==this.cursor.textNode){var r=a.default.find(n.start.node,!1);if(null==r)return;if(r instanceof a.default.Leaf){var i=r.split(n.start.offset);r.parent.insertBefore(this.cursor,i)}else r.insertBefore(this.cursor,n.start.node);this.cursor.attach()}this.cursor.format(e,t),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=this.scroll.length();e=Math.min(e,n-1),t=Math.min(e+t,n-1)-e;var i=void 0,o=this.scroll.leaf(e),a=r(o,2),s=a[0],c=a[1];if(null==s)return null;var u=s.position(c,!0),l=r(u,2);i=l[0],c=l[1];var d=document.createRange();if(t>0){d.setStart(i,c);var f=this.scroll.leaf(e+t),p=r(f,2);if(s=p[0],c=p[1],null==s)return null;var h=s.position(c,!0),m=r(h,2);return i=m[0],c=m[1],d.setEnd(i,c),d.getBoundingClientRect()}var b="left",v=void 0;return i instanceof Text?(c<i.data.length?(d.setStart(i,c),d.setEnd(i,c+1)):(d.setStart(i,c-1),d.setEnd(i,c),b="right"),v=d.getBoundingClientRect()):(v=s.domNode.getBoundingClientRect(),c>0&&(b="right")),{bottom:v.top+v.height,height:v.height,left:v[b],right:v[b],top:v.top,width:0}}},{key:"getNativeRange",value:function(){var e=document.getSelection();if(null==e||e.rangeCount<=0)return null;var t=e.getRangeAt(0);if(null==t)return null;var n=this.normalizeNative(t);return y.info("getNativeRange",n),n}},{key:"getRange",value:function(){var e=this.getNativeRange();if(null==e)return[null,null];var t=this.normalizedToRange(e);return[t,e]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(e){var t=this,n=[[e.start.node,e.start.offset]];e.native.collapsed||n.push([e.end.node,e.end.offset]);var i=n.map((function(e){var n=r(e,2),i=n[0],o=n[1],s=a.default.find(i,!0),c=s.offset(t.scroll);return 0===o?c:s instanceof a.default.Container?c+s.length():c+s.index(i,o)})),o=Math.min(Math.max.apply(Math,b(i)),this.scroll.length()-1),s=Math.min.apply(Math,[o].concat(b(i)));return new M(s,o-s)}},{key:"normalizeNative",value:function(e){if(!g(this.root,e.startContainer)||!e.collapsed&&!g(this.root,e.endContainer))return null;var t={start:{node:e.startContainer,offset:e.startOffset},end:{node:e.endContainer,offset:e.endOffset},native:e};return[t.start,t.end].forEach((function(e){var t=e.node,n=e.offset;while(!(t instanceof Text)&&t.childNodes.length>0)if(t.childNodes.length>n)t=t.childNodes[n],n=0;else{if(t.childNodes.length!==n)break;t=t.lastChild,n=t instanceof Text?t.data.length:t.childNodes.length+1}e.node=t,e.offset=n})),t}},{key:"rangeToNative",value:function(e){var t=this,n=e.collapsed?[e.index]:[e.index,e.index+e.length],i=[],o=this.scroll.length();return n.forEach((function(e,n){e=Math.min(o-1,e);var a=void 0,s=t.scroll.leaf(e),c=r(s,2),u=c[0],l=c[1],d=u.position(l,0!==n),f=r(d,2);a=f[0],l=f[1],i.push(a,l)})),i.length<2&&(i=i.concat(i)),i}},{key:"scrollIntoView",value:function(e){var t=this.lastRange;if(null!=t){var n=this.getBounds(t.index,t.length);if(null!=n){var i=this.scroll.length()-1,o=this.scroll.line(Math.min(t.index,i)),a=r(o,1),s=a[0],c=s;if(t.length>0){var u=this.scroll.line(Math.min(t.index+t.length,i)),l=r(u,1);c=l[0]}if(null!=s&&null!=c){var d=e.getBoundingClientRect();n.top<d.top?e.scrollTop-=d.top-n.top:n.bottom>d.bottom&&(e.scrollTop+=n.bottom-d.bottom)}}}}},{key:"setNativeRange",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:t,i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if(y.info("setNativeRange",e,t,n,r),null==e||null!=this.root.parentNode&&null!=e.parentNode&&null!=n.parentNode){var o=document.getSelection();if(null!=o)if(null!=e){this.hasFocus()||this.root.focus();var a=(this.getNativeRange()||{}).native;if(null==a||i||e!==a.startContainer||t!==a.startOffset||n!==a.endContainer||r!==a.endOffset){"BR"==e.tagName&&(t=[].indexOf.call(e.parentNode.childNodes,e),e=e.parentNode),"BR"==n.tagName&&(r=[].indexOf.call(n.parentNode.childNodes,n),n=n.parentNode);var s=document.createRange();s.setStart(e,t),s.setEnd(n,r),o.removeAllRanges(),o.addRange(s)}}else o.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:f.default.sources.API;if("string"===typeof t&&(n=t,t=!1),y.info("setRange",e),null!=e){var r=this.rangeToNative(e);this.setNativeRange.apply(this,b(r).concat([t]))}else this.setNativeRange(null);this.update(n)}},{key:"update",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:f.default.sources.USER,t=this.lastRange,n=this.getRange(),i=r(n,2),o=i[0],a=i[1];if(this.lastRange=o,null!=this.lastRange&&(this.savedRange=this.lastRange),!(0,l.default)(t,this.lastRange)){var s;!this.composing&&null!=a&&a.native.collapsed&&a.start.node!==this.cursor.textNode&&this.cursor.restore();var u,d=[f.default.events.SELECTION_CHANGE,(0,c.default)(this.lastRange),(0,c.default)(t),e];if((s=this.emitter).emit.apply(s,[f.default.events.EDITOR_CHANGE].concat(d)),e!==f.default.sources.SILENT)(u=this.emitter).emit.apply(u,d)}}}]),e}();function g(e,t){try{t.parentNode}catch(n){return!1}return t instanceof Text&&(t=t.parentNode),e.contains(t)}t.Range=M,t.default=_},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"insertInto",value:function(e,n){0===e.children.length?i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertInto",this).call(this,e,n):this.remove()}},{key:"length",value:function(){return 0}},{key:"value",value:function(){return""}}],[{key:"value",value:function(){}}]),t}(a.default.Embed);d.blotName="break",d.tagName="BR",t.default=d},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(44),o=n(30),a=n(1),s=function(e){function t(t){var n=e.call(this,t)||this;return n.build(),n}return r(t,e),t.prototype.appendChild=function(e){this.insertBefore(e)},t.prototype.attach=function(){e.prototype.attach.call(this),this.children.forEach((function(e){e.attach()}))},t.prototype.build=function(){var e=this;this.children=new i.default,[].slice.call(this.domNode.childNodes).reverse().forEach((function(t){try{var n=c(t);e.insertBefore(n,e.children.head||void 0)}catch(r){if(r instanceof a.ParchmentError)return;throw r}}))},t.prototype.deleteAt=function(e,t){if(0===e&&t===this.length())return this.remove();this.children.forEachAt(e,t,(function(e,t,n){e.deleteAt(t,n)}))},t.prototype.descendant=function(e,n){var r=this.children.find(n),i=r[0],o=r[1];return null==e.blotName&&e(i)||null!=e.blotName&&i instanceof e?[i,o]:i instanceof t?i.descendant(e,o):[null,-1]},t.prototype.descendants=function(e,n,r){void 0===n&&(n=0),void 0===r&&(r=Number.MAX_VALUE);var i=[],o=r;return this.children.forEachAt(n,r,(function(n,r,a){(null==e.blotName&&e(n)||null!=e.blotName&&n instanceof e)&&i.push(n),n instanceof t&&(i=i.concat(n.descendants(e,r,o))),o-=a})),i},t.prototype.detach=function(){this.children.forEach((function(e){e.detach()})),e.prototype.detach.call(this)},t.prototype.formatAt=function(e,t,n,r){this.children.forEachAt(e,t,(function(e,t,i){e.formatAt(t,i,n,r)}))},t.prototype.insertAt=function(e,t,n){var r=this.children.find(e),i=r[0],o=r[1];if(i)i.insertAt(o,t,n);else{var s=null==n?a.create("text",t):a.create(t,n);this.appendChild(s)}},t.prototype.insertBefore=function(e,t){if(null!=this.statics.allowedChildren&&!this.statics.allowedChildren.some((function(t){return e instanceof t})))throw new a.ParchmentError("Cannot insert "+e.statics.blotName+" into "+this.statics.blotName);e.insertInto(this,t)},t.prototype.length=function(){return this.children.reduce((function(e,t){return e+t.length()}),0)},t.prototype.moveChildren=function(e,t){this.children.forEach((function(n){e.insertBefore(n,t)}))},t.prototype.optimize=function(t){if(e.prototype.optimize.call(this,t),0===this.children.length)if(null!=this.statics.defaultChild){var n=a.create(this.statics.defaultChild);this.appendChild(n),n.optimize(t)}else this.remove()},t.prototype.path=function(e,n){void 0===n&&(n=!1);var r=this.children.find(e,n),i=r[0],o=r[1],a=[[this,e]];return i instanceof t?a.concat(i.path(o,n)):(null!=i&&a.push([i,o]),a)},t.prototype.removeChild=function(e){this.children.remove(e)},t.prototype.replace=function(n){n instanceof t&&n.moveChildren(this),e.prototype.replace.call(this,n)},t.prototype.split=function(e,t){if(void 0===t&&(t=!1),!t){if(0===e)return this;if(e===this.length())return this.next}var n=this.clone();return this.parent.insertBefore(n,this.next),this.children.forEachAt(e,this.length(),(function(e,r,i){e=e.split(r,t),n.appendChild(e)})),n},t.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},t.prototype.update=function(e,t){var n=this,r=[],i=[];e.forEach((function(e){e.target===n.domNode&&"childList"===e.type&&(r.push.apply(r,e.addedNodes),i.push.apply(i,e.removedNodes))})),i.forEach((function(e){if(!(null!=e.parentNode&&"IFRAME"!==e.tagName&&document.body.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var t=a.find(e);null!=t&&(null!=t.domNode.parentNode&&t.domNode.parentNode!==n.domNode||t.detach())}})),r.filter((function(e){return e.parentNode==n.domNode})).sort((function(e,t){return e===t?0:e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1})).forEach((function(e){var t=null;null!=e.nextSibling&&(t=a.find(e.nextSibling));var r=c(e);r.next==t&&null!=r.next||(null!=r.parent&&r.parent.removeChild(n),n.insertBefore(r,t||void 0))}))},t}(o.default);function c(e){var t=a.find(e);if(null==t)try{t=a.create(e)}catch(n){t=a.create(a.Scope.INLINE),[].slice.call(e.childNodes).forEach((function(e){t.domNode.appendChild(e)})),e.parentNode&&e.parentNode.replaceChild(t.domNode,e),t.attach()}return t}t.default=s},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),o=n(31),a=n(17),s=n(1),c=function(e){function t(t){var n=e.call(this,t)||this;return n.attributes=new o.default(n.domNode),n}return r(t,e),t.formats=function(e){return"string"===typeof this.tagName||(Array.isArray(this.tagName)?e.tagName.toLowerCase():void 0)},t.prototype.format=function(e,t){var n=s.query(e);n instanceof i.default?this.attributes.attribute(n,t):t&&(null==n||e===this.statics.blotName&&this.formats()[e]===t||this.replaceWith(e,t))},t.prototype.formats=function(){var e=this.attributes.values(),t=this.statics.formats(this.domNode);return null!=t&&(e[this.statics.blotName]=t),e},t.prototype.replaceWith=function(t,n){var r=e.prototype.replaceWith.call(this,t,n);return this.attributes.copy(r),r},t.prototype.update=function(t,n){var r=this;e.prototype.update.call(this,t,n),t.some((function(e){return e.target===r.domNode&&"attributes"===e.type}))&&this.attributes.build()},t.prototype.wrap=function(n,r){var i=e.prototype.wrap.call(this,n,r);return i instanceof t&&i.statics.scope===this.statics.scope&&this.attributes.move(i),i},t}(a.default);t.default=c},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(30),o=n(1),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.value=function(e){return!0},t.prototype.index=function(e,t){return this.domNode===e||this.domNode.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(t,1):-1},t.prototype.position=function(e,t){var n=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return e>0&&(n+=1),[this.parent.domNode,n]},t.prototype.value=function(){var e;return e={},e[this.statics.blotName]=this.statics.value(this.domNode)||!0,e},t.scope=o.Scope.INLINE_BLOT,t}(i.default);t.default=a},function(e,t,n){var r=n(11),i=n(3),o={attributes:{compose:function(e,t,n){"object"!==typeof e&&(e={}),"object"!==typeof t&&(t={});var r=i(!0,{},t);for(var o in n||(r=Object.keys(r).reduce((function(e,t){return null!=r[t]&&(e[t]=r[t]),e}),{})),e)void 0!==e[o]&&void 0===t[o]&&(r[o]=e[o]);return Object.keys(r).length>0?r:void 0},diff:function(e,t){"object"!==typeof e&&(e={}),"object"!==typeof t&&(t={});var n=Object.keys(e).concat(Object.keys(t)).reduce((function(n,i){return r(e[i],t[i])||(n[i]=void 0===t[i]?null:t[i]),n}),{});return Object.keys(n).length>0?n:void 0},transform:function(e,t,n){if("object"!==typeof e)return t;if("object"===typeof t){if(!n)return t;var r=Object.keys(t).reduce((function(n,r){return void 0===e[r]&&(n[r]=t[r]),n}),{});return Object.keys(r).length>0?r:void 0}}},iterator:function(e){return new a(e)},length:function(e){return"number"===typeof e["delete"]?e["delete"]:"number"===typeof e.retain?e.retain:"string"===typeof e.insert?e.insert.length:1}};function a(e){this.ops=e,this.index=0,this.offset=0}a.prototype.hasNext=function(){return this.peekLength()<1/0},a.prototype.next=function(e){e||(e=1/0);var t=this.ops[this.index];if(t){var n=this.offset,r=o.length(t);if(e>=r-n?(e=r-n,this.index+=1,this.offset=0):this.offset+=e,"number"===typeof t["delete"])return{delete:e};var i={};return t.attributes&&(i.attributes=t.attributes),"number"===typeof t.retain?i.retain=e:"string"===typeof t.insert?i.insert=t.insert.substr(n,e):i.insert=t.insert,i}return{retain:1/0}},a.prototype.peek=function(){return this.ops[this.index]},a.prototype.peekLength=function(){return this.ops[this.index]?o.length(this.ops[this.index])-this.offset:1/0},a.prototype.peekType=function(){return this.ops[this.index]?"number"===typeof this.ops[this.index]["delete"]?"delete":"number"===typeof this.ops[this.index].retain?"retain":"insert":"retain"},a.prototype.rest=function(){if(this.hasNext()){if(0===this.offset)return this.ops.slice(this.index);var e=this.offset,t=this.index,n=this.next(),r=this.ops.slice(this.index);return this.offset=e,this.index=t,[n].concat(r)}return[]},e.exports=o},function(e,n){var r=function(){"use strict";function e(e,t){return null!=t&&e instanceof t}var n,r,i;try{n=Map}catch(d){n=function(){}}try{r=Set}catch(d){r=function(){}}try{i=Promise}catch(d){i=function(){}}function o(a,s,c,u,d){"object"===typeof s&&(c=s.depth,u=s.prototype,d=s.includeNonEnumerable,s=s.circular);var f=[],p=[],h="undefined"!=typeof t;function m(a,c){if(null===a)return null;if(0===c)return a;var b,v;if("object"!=typeof a)return a;if(e(a,n))b=new n;else if(e(a,r))b=new r;else if(e(a,i))b=new i((function(e,t){a.then((function(t){e(m(t,c-1))}),(function(e){t(m(e,c-1))}))}));else if(o.__isArray(a))b=[];else if(o.__isRegExp(a))b=new RegExp(a.source,l(a)),a.lastIndex&&(b.lastIndex=a.lastIndex);else if(o.__isDate(a))b=new Date(a.getTime());else{if(h&&t.isBuffer(a))return b=t.allocUnsafe?t.allocUnsafe(a.length):new t(a.length),a.copy(b),b;e(a,Error)?b=Object.create(a):"undefined"==typeof u?(v=Object.getPrototypeOf(a),b=Object.create(v)):(b=Object.create(u),v=u)}if(s){var y=f.indexOf(a);if(-1!=y)return p[y];f.push(a),p.push(b)}for(var M in e(a,n)&&a.forEach((function(e,t){var n=m(t,c-1),r=m(e,c-1);b.set(n,r)})),e(a,r)&&a.forEach((function(e){var t=m(e,c-1);b.add(t)})),a){var _;v&&(_=Object.getOwnPropertyDescriptor(v,M)),_&&null==_.set||(b[M]=m(a[M],c-1))}if(Object.getOwnPropertySymbols){var g=Object.getOwnPropertySymbols(a);for(M=0;M<g.length;M++){var w=g[M],A=Object.getOwnPropertyDescriptor(a,w);(!A||A.enumerable||d)&&(b[w]=m(a[w],c-1),A.enumerable||Object.defineProperty(b,w,{enumerable:!1}))}}if(d){var L=Object.getOwnPropertyNames(a);for(M=0;M<L.length;M++){var O=L[M];A=Object.getOwnPropertyDescriptor(a,O);A&&A.enumerable||(b[O]=m(a[O],c-1),Object.defineProperty(b,O,{enumerable:!1}))}}return b}return"undefined"==typeof s&&(s=!0),"undefined"==typeof c&&(c=1/0),m(a,c)}function a(e){return Object.prototype.toString.call(e)}function s(e){return"object"===typeof e&&"[object Date]"===a(e)}function c(e){return"object"===typeof e&&"[object Array]"===a(e)}function u(e){return"object"===typeof e&&"[object RegExp]"===a(e)}function l(e){var t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),t}return o.clonePrototype=function(e){if(null===e)return null;var t=function(){};return t.prototype=e,new t},o.__objToStr=a,o.__isDate=s,o.__isArray=c,o.__isRegExp=u,o.__getRegExpFlags=l,o}();"object"===typeof e&&e.exports&&(e.exports=r)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},a=n(0),s=y(a),c=n(8),u=y(c),l=n(4),d=y(l),f=n(16),p=y(f),h=n(13),m=y(h),b=n(25),v=y(b);function y(e){return e&&e.__esModule?e:{default:e}}function M(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function g(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function w(e){return e instanceof d.default||e instanceof l.BlockEmbed}var A=function(e){function t(e,n){M(this,t);var r=_(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.emitter=n.emitter,Array.isArray(n.whitelist)&&(r.whitelist=n.whitelist.reduce((function(e,t){return e[t]=!0,e}),{})),r.domNode.addEventListener("DOMNodeInserted",(function(){})),r.optimize(),r.enable(),r}return g(t,e),i(t,[{key:"batchStart",value:function(){this.batch=!0}},{key:"batchEnd",value:function(){this.batch=!1,this.optimize()}},{key:"deleteAt",value:function(e,n){var i=this.line(e),a=r(i,2),s=a[0],c=a[1],u=this.line(e+n),d=r(u,1),f=d[0];if(o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"deleteAt",this).call(this,e,n),null!=f&&s!==f&&c>0){if(s instanceof l.BlockEmbed||f instanceof l.BlockEmbed)return void this.optimize();if(s instanceof m.default){var h=s.newlineIndex(s.length(),!0);if(h>-1&&(s=s.split(h+1),s===f))return void this.optimize()}else if(f instanceof m.default){var b=f.newlineIndex(0);b>-1&&f.split(b+1)}var v=f.children.head instanceof p.default?null:f.children.head;s.moveChildren(f,v),s.remove()}this.optimize()}},{key:"enable",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.domNode.setAttribute("contenteditable",e)}},{key:"formatAt",value:function(e,n,r,i){(null==this.whitelist||this.whitelist[r])&&(o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"formatAt",this).call(this,e,n,r,i),this.optimize())}},{key:"insertAt",value:function(e,n,r){if(null==r||null==this.whitelist||this.whitelist[n]){if(e>=this.length())if(null==r||null==s.default.query(n,s.default.Scope.BLOCK)){var i=s.default.create(this.statics.defaultChild);this.appendChild(i),null==r&&n.endsWith("\n")&&(n=n.slice(0,-1)),i.insertAt(0,n,r)}else{var a=s.default.create(n,r);this.appendChild(a)}else o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,e,n,r);this.optimize()}}},{key:"insertBefore",value:function(e,n){if(e.statics.scope===s.default.Scope.INLINE_BLOT){var r=s.default.create(this.statics.defaultChild);r.appendChild(e),e=r}o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertBefore",this).call(this,e,n)}},{key:"leaf",value:function(e){return this.path(e).pop()||[null,-1]}},{key:"line",value:function(e){return e===this.length()?this.line(e-1):this.descendant(w,e)}},{key:"lines",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE,n=function e(t,n,r){var i=[],o=r;return t.children.forEachAt(n,r,(function(t,n,r){w(t)?i.push(t):t instanceof s.default.Container&&(i=i.concat(e(t,n,o))),o-=r})),i};return n(this,e,t)}},{key:"optimize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!0!==this.batch&&(o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e,n),e.length>0&&this.emitter.emit(u.default.events.SCROLL_OPTIMIZE,e,n))}},{key:"path",value:function(e){return o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"path",this).call(this,e).slice(1)}},{key:"update",value:function(e){if(!0!==this.batch){var n=u.default.sources.USER;"string"===typeof e&&(n=e),Array.isArray(e)||(e=this.observer.takeRecords()),e.length>0&&this.emitter.emit(u.default.events.SCROLL_BEFORE_UPDATE,n,e),o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"update",this).call(this,e.concat([])),e.length>0&&this.emitter.emit(u.default.events.SCROLL_UPDATE,n,e)}}}]),t}(s.default.Scroll);A.blotName="scroll",A.className="ql-editor",A.tagName="DIV",A.defaultChild="block",A.allowedChildren=[d.default,l.BlockEmbed,v.default],t.default=A},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SHORTKEY=t.default=void 0;var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(21),s=L(a),c=n(11),u=L(c),l=n(3),d=L(l),f=n(2),p=L(f),h=n(20),m=L(h),b=n(0),v=L(b),y=n(5),M=L(y),_=n(10),g=L(_),w=n(9),A=L(w);function L(e){return e&&e.__esModule?e:{default:e}}function O(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function T(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function S(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function k(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var x=(0,g.default)("quill:keyboard"),z=/Mac/i.test(navigator.platform)?"metaKey":"ctrlKey",D=function(e){function t(e,n){T(this,t);var r=S(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.bindings={},Object.keys(r.options.bindings).forEach((function(t){("list autofill"!==t||null==e.scroll.whitelist||e.scroll.whitelist["list"])&&r.options.bindings[t]&&r.addBinding(r.options.bindings[t])})),r.addBinding({key:t.keys.ENTER,shiftKey:null},P),r.addBinding({key:t.keys.ENTER,metaKey:null,ctrlKey:null,altKey:null},(function(){})),/Firefox/i.test(navigator.userAgent)?(r.addBinding({key:t.keys.BACKSPACE},{collapsed:!0},C),r.addBinding({key:t.keys.DELETE},{collapsed:!0},E)):(r.addBinding({key:t.keys.BACKSPACE},{collapsed:!0,prefix:/^.?$/},C),r.addBinding({key:t.keys.DELETE},{collapsed:!0,suffix:/^.?$/},E)),r.addBinding({key:t.keys.BACKSPACE},{collapsed:!1},$),r.addBinding({key:t.keys.DELETE},{collapsed:!1},$),r.addBinding({key:t.keys.BACKSPACE,altKey:null,ctrlKey:null,metaKey:null,shiftKey:null},{collapsed:!0,offset:0},C),r.listen(),r}return k(t,e),o(t,null,[{key:"match",value:function(e,t){return t=q(t),!["altKey","ctrlKey","metaKey","shiftKey"].some((function(n){return!!t[n]!==e[n]&&null!==t[n]}))&&t.key===(e.which||e.keyCode)}}]),o(t,[{key:"addBinding",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=q(e);if(null==r||null==r.key)return x.warn("Attempted to add invalid keyboard binding",r);"function"===typeof t&&(t={handler:t}),"function"===typeof n&&(n={handler:n}),r=(0,d.default)(r,t,n),this.bindings[r.key]=this.bindings[r.key]||[],this.bindings[r.key].push(r)}},{key:"listen",value:function(){var e=this;this.quill.root.addEventListener("keydown",(function(n){if(!n.defaultPrevented){var o=n.which||n.keyCode,a=(e.bindings[o]||[]).filter((function(e){return t.match(n,e)}));if(0!==a.length){var s=e.quill.getSelection();if(null!=s&&e.quill.hasFocus()){var c=e.quill.getLine(s.index),l=i(c,2),d=l[0],f=l[1],p=e.quill.getLeaf(s.index),h=i(p,2),m=h[0],b=h[1],y=0===s.length?[m,b]:e.quill.getLeaf(s.index+s.length),M=i(y,2),_=M[0],g=M[1],w=m instanceof v.default.Text?m.value().slice(0,b):"",A=_ instanceof v.default.Text?_.value().slice(g):"",L={collapsed:0===s.length,empty:0===s.length&&d.length()<=1,format:e.quill.getFormat(s),offset:f,prefix:w,suffix:A},O=a.some((function(t){if(null!=t.collapsed&&t.collapsed!==L.collapsed)return!1;if(null!=t.empty&&t.empty!==L.empty)return!1;if(null!=t.offset&&t.offset!==L.offset)return!1;if(Array.isArray(t.format)){if(t.format.every((function(e){return null==L.format[e]})))return!1}else if("object"===r(t.format)&&!Object.keys(t.format).every((function(e){return!0===t.format[e]?null!=L.format[e]:!1===t.format[e]?null==L.format[e]:(0,u.default)(t.format[e],L.format[e])})))return!1;return!(null!=t.prefix&&!t.prefix.test(L.prefix))&&(!(null!=t.suffix&&!t.suffix.test(L.suffix))&&!0!==t.handler.call(e,s,L))}));O&&n.preventDefault()}}}}))}}]),t}(A.default);function N(e,t){var n,r=e===D.keys.LEFT?"prefix":"suffix";return n={key:e,shiftKey:t,altKey:null},O(n,r,/^$/),O(n,"handler",(function(n){var r=n.index;e===D.keys.RIGHT&&(r+=n.length+1);var o=this.quill.getLeaf(r),a=i(o,1),s=a[0];return!(s instanceof v.default.Embed)||(e===D.keys.LEFT?t?this.quill.setSelection(n.index-1,n.length+1,M.default.sources.USER):this.quill.setSelection(n.index-1,M.default.sources.USER):t?this.quill.setSelection(n.index,n.length+1,M.default.sources.USER):this.quill.setSelection(n.index+n.length+1,M.default.sources.USER),!1)})),n}function C(e,t){if(!(0===e.index||this.quill.getLength()<=1)){var n=this.quill.getLine(e.index),r=i(n,1),o=r[0],a={};if(0===t.offset){var s=this.quill.getLine(e.index-1),c=i(s,1),u=c[0];if(null!=u&&u.length()>1){var l=o.formats(),d=this.quill.getFormat(e.index-1,1);a=m.default.attributes.diff(l,d)||{}}}var f=/[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(t.prefix)?2:1;this.quill.deleteText(e.index-f,f,M.default.sources.USER),Object.keys(a).length>0&&this.quill.formatLine(e.index-f,f,a,M.default.sources.USER),this.quill.focus()}}function E(e,t){var n=/^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(t.suffix)?2:1;if(!(e.index>=this.quill.getLength()-n)){var r={},o=0,a=this.quill.getLine(e.index),s=i(a,1),c=s[0];if(t.offset>=c.length()-1){var u=this.quill.getLine(e.index+1),l=i(u,1),d=l[0];if(d){var f=c.formats(),p=this.quill.getFormat(e.index,1);r=m.default.attributes.diff(f,p)||{},o=d.length()}}this.quill.deleteText(e.index,n,M.default.sources.USER),Object.keys(r).length>0&&this.quill.formatLine(e.index+o-1,n,r,M.default.sources.USER)}}function $(e){var t=this.quill.getLines(e),n={};if(t.length>1){var r=t[0].formats(),i=t[t.length-1].formats();n=m.default.attributes.diff(i,r)||{}}this.quill.deleteText(e,M.default.sources.USER),Object.keys(n).length>0&&this.quill.formatLine(e.index,1,n,M.default.sources.USER),this.quill.setSelection(e.index,M.default.sources.SILENT),this.quill.focus()}function P(e,t){var n=this;e.length>0&&this.quill.scroll.deleteAt(e.index,e.length);var r=Object.keys(t.format).reduce((function(e,n){return v.default.query(n,v.default.Scope.BLOCK)&&!Array.isArray(t.format[n])&&(e[n]=t.format[n]),e}),{});this.quill.insertText(e.index,"\n",r,M.default.sources.USER),this.quill.setSelection(e.index+1,M.default.sources.SILENT),this.quill.focus(),Object.keys(t.format).forEach((function(e){null==r[e]&&(Array.isArray(t.format[e])||"link"!==e&&n.quill.format(e,t.format[e],M.default.sources.USER))}))}function j(e){return{key:D.keys.TAB,shiftKey:!e,format:{"code-block":!0},handler:function(t){var n=v.default.query("code-block"),r=t.index,o=t.length,a=this.quill.scroll.descendant(n,r),s=i(a,2),c=s[0],u=s[1];if(null!=c){var l=this.quill.getIndex(c),d=c.newlineIndex(u,!0)+1,f=c.newlineIndex(l+u+o),p=c.domNode.textContent.slice(d,f).split("\n");u=0,p.forEach((function(t,i){e?(c.insertAt(d+u,n.TAB),u+=n.TAB.length,0===i?r+=n.TAB.length:o+=n.TAB.length):t.startsWith(n.TAB)&&(c.deleteAt(d+u,n.TAB.length),u-=n.TAB.length,0===i?r-=n.TAB.length:o-=n.TAB.length),u+=t.length+1})),this.quill.update(M.default.sources.USER),this.quill.setSelection(r,o,M.default.sources.SILENT)}}}}function Y(e){return{key:e[0].toUpperCase(),shortKey:!0,handler:function(t,n){this.quill.format(e,!n.format[e],M.default.sources.USER)}}}function q(e){if("string"===typeof e||"number"===typeof e)return q({key:e});if("object"===("undefined"===typeof e?"undefined":r(e))&&(e=(0,s.default)(e,!1)),"string"===typeof e.key)if(null!=D.keys[e.key.toUpperCase()])e.key=D.keys[e.key.toUpperCase()];else{if(1!==e.key.length)return null;e.key=e.key.toUpperCase().charCodeAt(0)}return e.shortKey&&(e[z]=e.shortKey,delete e.shortKey),e}D.keys={BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46},D.DEFAULTS={bindings:{bold:Y("bold"),italic:Y("italic"),underline:Y("underline"),indent:{key:D.keys.TAB,format:["blockquote","indent","list"],handler:function(e,t){if(t.collapsed&&0!==t.offset)return!0;this.quill.format("indent","+1",M.default.sources.USER)}},outdent:{key:D.keys.TAB,shiftKey:!0,format:["blockquote","indent","list"],handler:function(e,t){if(t.collapsed&&0!==t.offset)return!0;this.quill.format("indent","-1",M.default.sources.USER)}},"outdent backspace":{key:D.keys.BACKSPACE,collapsed:!0,shiftKey:null,metaKey:null,ctrlKey:null,altKey:null,format:["indent","list"],offset:0,handler:function(e,t){null!=t.format.indent?this.quill.format("indent","-1",M.default.sources.USER):null!=t.format.list&&this.quill.format("list",!1,M.default.sources.USER)}},"indent code-block":j(!0),"outdent code-block":j(!1),"remove tab":{key:D.keys.TAB,shiftKey:!0,collapsed:!0,prefix:/\t$/,handler:function(e){this.quill.deleteText(e.index-1,1,M.default.sources.USER)}},tab:{key:D.keys.TAB,handler:function(e){this.quill.history.cutoff();var t=(new p.default).retain(e.index).delete(e.length).insert("\t");this.quill.updateContents(t,M.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(e.index+1,M.default.sources.SILENT)}},"list empty enter":{key:D.keys.ENTER,collapsed:!0,format:["list"],empty:!0,handler:function(e,t){this.quill.format("list",!1,M.default.sources.USER),t.format.indent&&this.quill.format("indent",!1,M.default.sources.USER)}},"checklist enter":{key:D.keys.ENTER,collapsed:!0,format:{list:"checked"},handler:function(e){var t=this.quill.getLine(e.index),n=i(t,2),r=n[0],o=n[1],a=(0,d.default)({},r.formats(),{list:"checked"}),s=(new p.default).retain(e.index).insert("\n",a).retain(r.length()-o-1).retain(1,{list:"unchecked"});this.quill.updateContents(s,M.default.sources.USER),this.quill.setSelection(e.index+1,M.default.sources.SILENT),this.quill.scrollIntoView()}},"header enter":{key:D.keys.ENTER,collapsed:!0,format:["header"],suffix:/^$/,handler:function(e,t){var n=this.quill.getLine(e.index),r=i(n,2),o=r[0],a=r[1],s=(new p.default).retain(e.index).insert("\n",t.format).retain(o.length()-a-1).retain(1,{header:null});this.quill.updateContents(s,M.default.sources.USER),this.quill.setSelection(e.index+1,M.default.sources.SILENT),this.quill.scrollIntoView()}},"list autofill":{key:" ",collapsed:!0,format:{list:!1},prefix:/^\s*?(\d+\.|-|\*|\[ ?\]|\[x\])$/,handler:function(e,t){var n=t.prefix.length,r=this.quill.getLine(e.index),o=i(r,2),a=o[0],s=o[1];if(s>n)return!0;var c=void 0;switch(t.prefix.trim()){case"[]":case"[ ]":c="unchecked";break;case"[x]":c="checked";break;case"-":case"*":c="bullet";break;default:c="ordered"}this.quill.insertText(e.index," ",M.default.sources.USER),this.quill.history.cutoff();var u=(new p.default).retain(e.index-s).delete(n+1).retain(a.length()-2-s).retain(1,{list:c});this.quill.updateContents(u,M.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(e.index-n,M.default.sources.SILENT)}},"code exit":{key:D.keys.ENTER,collapsed:!0,format:["code-block"],prefix:/\n\n$/,suffix:/^\s+$/,handler:function(e){var t=this.quill.getLine(e.index),n=i(t,2),r=n[0],o=n[1],a=(new p.default).retain(e.index+r.length()-o-2).retain(1,{"code-block":null}).delete(1);this.quill.updateContents(a,M.default.sources.USER)}},"embed left":N(D.keys.LEFT,!1),"embed left shift":N(D.keys.LEFT,!0),"embed right":N(D.keys.RIGHT,!1),"embed right shift":N(D.keys.RIGHT,!0)}},t.default=D,t.SHORTKEY=z},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),s=l(a),c=n(7),u=l(c);function l(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function p(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var h=function(e){function t(e,n){d(this,t);var r=f(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.selection=n,r.textNode=document.createTextNode(t.CONTENTS),r.domNode.appendChild(r.textNode),r._length=0,r}return p(t,e),o(t,null,[{key:"value",value:function(){}}]),o(t,[{key:"detach",value:function(){null!=this.parent&&this.parent.removeChild(this)}},{key:"format",value:function(e,n){if(0!==this._length)return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n);var r=this,o=0;while(null!=r&&r.statics.scope!==s.default.Scope.BLOCK_BLOT)o+=r.offset(r.parent),r=r.parent;null!=r&&(this._length=t.CONTENTS.length,r.optimize(),r.formatAt(o,t.CONTENTS.length,e,n),this._length=0)}},{key:"index",value:function(e,n){return e===this.textNode?0:i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"index",this).call(this,e,n)}},{key:"length",value:function(){return this._length}},{key:"position",value:function(){return[this.textNode,this.textNode.data.length]}},{key:"remove",value:function(){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"remove",this).call(this),this.parent=null}},{key:"restore",value:function(){if(!this.selection.composing&&null!=this.parent){var e=this.textNode,n=this.selection.getNativeRange(),i=void 0,o=void 0,a=void 0;if(null!=n&&n.start.node===e&&n.end.node===e){var c=[e,n.start.offset,n.end.offset];i=c[0],o=c[1],a=c[2]}while(null!=this.domNode.lastChild&&this.domNode.lastChild!==this.textNode)this.domNode.parentNode.insertBefore(this.domNode.lastChild,this.domNode);if(this.textNode.data!==t.CONTENTS){var l=this.textNode.data.split(t.CONTENTS).join("");this.next instanceof u.default?(i=this.next.domNode,this.next.insertAt(0,l),this.textNode.data=t.CONTENTS):(this.textNode.data=l,this.parent.insertBefore(s.default.create(this.textNode),this),this.textNode=document.createTextNode(t.CONTENTS),this.domNode.appendChild(this.textNode))}if(this.remove(),null!=o){var d=[o,a].map((function(e){return Math.max(0,Math.min(i.data.length,e-1))})),f=r(d,2);return o=f[0],a=f[1],{startNode:i,startOffset:o,endNode:i,endOffset:a}}}}},{key:"update",value:function(e,t){var n=this;if(e.some((function(e){return"characterData"===e.type&&e.target===n.textNode}))){var r=this.restore();r&&(t.range=r)}}},{key:"value",value:function(){return""}}]),t}(s.default.Embed);h.blotName="cursor",h.className="ql-cursor",h.tagName="span",h.CONTENTS="\ufeff",t.default=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=s(r),o=n(4),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),t}(i.default.Container);d.allowedChildren=[a.default,o.BlockEmbed,d],t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ColorStyle=t.ColorClass=t.ColorAttributor=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"value",value:function(e){var n=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"value",this).call(this,e);return n.startsWith("rgb(")?(n=n.replace(/^[^\d]+/,"").replace(/[^\d]+$/,""),"#"+n.split(",").map((function(e){return("00"+parseInt(e).toString(16)).slice(-2)})).join("")):n}}]),t}(a.default.Attributor.Style),f=new a.default.Attributor.Class("color","ql-color",{scope:a.default.Scope.INLINE}),p=new d("color","color",{scope:a.default.Scope.INLINE});t.ColorAttributor=d,t.ColorClass=f,t.ColorStyle=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.sanitize=t.default=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(6),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"format",value:function(e,n){if(e!==this.statics.blotName||!n)return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n);n=this.constructor.sanitize(n),this.domNode.setAttribute("href",n)}}],[{key:"create",value:function(e){var n=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return e=this.sanitize(e),n.setAttribute("href",e),n.setAttribute("rel","noopener noreferrer"),n.setAttribute("target","_blank"),n}},{key:"formats",value:function(e){return e.getAttribute("href")}},{key:"sanitize",value:function(e){return f(e,this.PROTOCOL_WHITELIST)?e:this.SANITIZED_URL}}]),t}(a.default);function f(e,t){var n=document.createElement("a");n.href=e;var r=n.href.slice(0,n.href.indexOf(":"));return t.indexOf(r)>-1}d.blotName="link",d.tagName="A",d.SANITIZED_URL="about:blank",d.PROTOCOL_WHITELIST=["http","https","mailto","tel"],t.default=d,t.sanitize=f},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(23),a=u(o),s=n(107),c=u(s);function u(e){return e&&e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var d=0;function f(e,t){e.setAttribute(t,!("true"===e.getAttribute(t)))}var p=function(){function e(t){var n=this;l(this,e),this.select=t,this.container=document.createElement("span"),this.buildPicker(),this.select.style.display="none",this.select.parentNode.insertBefore(this.container,this.select),this.label.addEventListener("mousedown",(function(){n.togglePicker()})),this.label.addEventListener("keydown",(function(e){switch(e.keyCode){case a.default.keys.ENTER:n.togglePicker();break;case a.default.keys.ESCAPE:n.escape(),e.preventDefault();break;default:}})),this.select.addEventListener("change",this.update.bind(this))}return i(e,[{key:"togglePicker",value:function(){this.container.classList.toggle("ql-expanded"),f(this.label,"aria-expanded"),f(this.options,"aria-hidden")}},{key:"buildItem",value:function(e){var t=this,n=document.createElement("span");return n.tabIndex="0",n.setAttribute("role","button"),n.classList.add("ql-picker-item"),e.hasAttribute("value")&&n.setAttribute("data-value",e.getAttribute("value")),e.textContent&&n.setAttribute("data-label",e.textContent),n.addEventListener("click",(function(){t.selectItem(n,!0)})),n.addEventListener("keydown",(function(e){switch(e.keyCode){case a.default.keys.ENTER:t.selectItem(n,!0),e.preventDefault();break;case a.default.keys.ESCAPE:t.escape(),e.preventDefault();break;default:}})),n}},{key:"buildLabel",value:function(){var e=document.createElement("span");return e.classList.add("ql-picker-label"),e.innerHTML=c.default,e.tabIndex="0",e.setAttribute("role","button"),e.setAttribute("aria-expanded","false"),this.container.appendChild(e),e}},{key:"buildOptions",value:function(){var e=this,t=document.createElement("span");t.classList.add("ql-picker-options"),t.setAttribute("aria-hidden","true"),t.tabIndex="-1",t.id="ql-picker-options-"+d,d+=1,this.label.setAttribute("aria-controls",t.id),this.options=t,[].slice.call(this.select.options).forEach((function(n){var r=e.buildItem(n);t.appendChild(r),!0===n.selected&&e.selectItem(r)})),this.container.appendChild(t)}},{key:"buildPicker",value:function(){var e=this;[].slice.call(this.select.attributes).forEach((function(t){e.container.setAttribute(t.name,t.value)})),this.container.classList.add("ql-picker"),this.label=this.buildLabel(),this.buildOptions()}},{key:"escape",value:function(){var e=this;this.close(),setTimeout((function(){return e.label.focus()}),1)}},{key:"close",value:function(){this.container.classList.remove("ql-expanded"),this.label.setAttribute("aria-expanded","false"),this.options.setAttribute("aria-hidden","true")}},{key:"selectItem",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.container.querySelector(".ql-selected");if(e!==n&&(null!=n&&n.classList.remove("ql-selected"),null!=e&&(e.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(e.parentNode.children,e),e.hasAttribute("data-value")?this.label.setAttribute("data-value",e.getAttribute("data-value")):this.label.removeAttribute("data-value"),e.hasAttribute("data-label")?this.label.setAttribute("data-label",e.getAttribute("data-label")):this.label.removeAttribute("data-label"),t))){if("function"===typeof Event)this.select.dispatchEvent(new Event("change"));else if("object"===("undefined"===typeof Event?"undefined":r(Event))){var i=document.createEvent("Event");i.initEvent("change",!0,!0),this.select.dispatchEvent(i)}this.close()}}},{key:"update",value:function(){var e=void 0;if(this.select.selectedIndex>-1){var t=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];e=this.select.options[this.select.selectedIndex],this.selectItem(t)}else this.selectItem(null);var n=null!=e&&e!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",n)}}]),e}();t.default=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=x(r),o=n(5),a=x(o),s=n(4),c=x(s),u=n(16),l=x(u),d=n(25),f=x(d),p=n(24),h=x(p),m=n(35),b=x(m),v=n(6),y=x(v),M=n(22),_=x(M),g=n(7),w=x(g),A=n(55),L=x(A),O=n(42),T=x(O),S=n(23),k=x(S);function x(e){return e&&e.__esModule?e:{default:e}}a.default.register({"blots/block":c.default,"blots/block/embed":s.BlockEmbed,"blots/break":l.default,"blots/container":f.default,"blots/cursor":h.default,"blots/embed":b.default,"blots/inline":y.default,"blots/scroll":_.default,"blots/text":w.default,"modules/clipboard":L.default,"modules/history":T.default,"modules/keyboard":k.default}),i.default.register(c.default,l.default,h.default,y.default,_.default,w.default),t.default=a.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=function(){function e(e){this.domNode=e,this.domNode[r.DATA_KEY]={blot:this}}return Object.defineProperty(e.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),e.create=function(e){if(null==this.tagName)throw new r.ParchmentError("Blot definition missing tagName");var t;return Array.isArray(this.tagName)?("string"===typeof e&&(e=e.toUpperCase(),parseInt(e).toString()===e&&(e=parseInt(e))),t="number"===typeof e?document.createElement(this.tagName[e-1]):this.tagName.indexOf(e)>-1?document.createElement(e):document.createElement(this.tagName[0])):t=document.createElement(this.tagName),this.className&&t.classList.add(this.className),t},e.prototype.attach=function(){null!=this.parent&&(this.scroll=this.parent.scroll)},e.prototype.clone=function(){var e=this.domNode.cloneNode(!1);return r.create(e)},e.prototype.detach=function(){null!=this.parent&&this.parent.removeChild(this),delete this.domNode[r.DATA_KEY]},e.prototype.deleteAt=function(e,t){var n=this.isolate(e,t);n.remove()},e.prototype.formatAt=function(e,t,n,i){var o=this.isolate(e,t);if(null!=r.query(n,r.Scope.BLOT)&&i)o.wrap(n,i);else if(null!=r.query(n,r.Scope.ATTRIBUTE)){var a=r.create(this.statics.scope);o.wrap(a),a.format(n,i)}},e.prototype.insertAt=function(e,t,n){var i=null==n?r.create("text",t):r.create(t,n),o=this.split(e);this.parent.insertBefore(i,o)},e.prototype.insertInto=function(e,t){void 0===t&&(t=null),null!=this.parent&&this.parent.children.remove(this);var n=null;e.children.insertBefore(this,t),null!=t&&(n=t.domNode),this.domNode.parentNode==e.domNode&&this.domNode.nextSibling==n||e.domNode.insertBefore(this.domNode,n),this.parent=e,this.attach()},e.prototype.isolate=function(e,t){var n=this.split(e);return n.split(t),n},e.prototype.length=function(){return 1},e.prototype.offset=function(e){return void 0===e&&(e=this.parent),null==this.parent||this==e?0:this.parent.children.offset(this)+this.parent.offset(e)},e.prototype.optimize=function(e){null!=this.domNode[r.DATA_KEY]&&delete this.domNode[r.DATA_KEY].mutations},e.prototype.remove=function(){null!=this.domNode.parentNode&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},e.prototype.replace=function(e){null!=e.parent&&(e.parent.insertBefore(this,e.next),e.remove())},e.prototype.replaceWith=function(e,t){var n="string"===typeof e?r.create(e,t):e;return n.replace(this),n},e.prototype.split=function(e,t){return 0===e?this:this.next},e.prototype.update=function(e,t){},e.prototype.wrap=function(e,t){var n="string"===typeof e?r.create(e,t):e;return null!=this.parent&&this.parent.insertBefore(n,this.next),n.appendChild(this),n},e.blotName="abstract",e}();t.default=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(12),i=n(32),o=n(33),a=n(1),s=function(){function e(e){this.attributes={},this.domNode=e,this.build()}return e.prototype.attribute=function(e,t){t?e.add(this.domNode,t)&&(null!=e.value(this.domNode)?this.attributes[e.attrName]=e:delete this.attributes[e.attrName]):(e.remove(this.domNode),delete this.attributes[e.attrName])},e.prototype.build=function(){var e=this;this.attributes={};var t=r.default.keys(this.domNode),n=i.default.keys(this.domNode),s=o.default.keys(this.domNode);t.concat(n).concat(s).forEach((function(t){var n=a.query(t,a.Scope.ATTRIBUTE);n instanceof r.default&&(e.attributes[n.attrName]=n)}))},e.prototype.copy=function(e){var t=this;Object.keys(this.attributes).forEach((function(n){var r=t.attributes[n].value(t.domNode);e.format(n,r)}))},e.prototype.move=function(e){var t=this;this.copy(e),Object.keys(this.attributes).forEach((function(e){t.attributes[e].remove(t.domNode)})),this.attributes={}},e.prototype.values=function(){var e=this;return Object.keys(this.attributes).reduce((function(t,n){return t[n]=e.attributes[n].value(e.domNode),t}),{})},e}();t.default=s},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(12);function o(e,t){var n=e.getAttribute("class")||"";return n.split(/\s+/).filter((function(e){return 0===e.indexOf(t+"-")}))}var a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.keys=function(e){return(e.getAttribute("class")||"").split(/\s+/).map((function(e){return e.split("-").slice(0,-1).join("-")}))},t.prototype.add=function(e,t){return!!this.canAdd(e,t)&&(this.remove(e),e.classList.add(this.keyName+"-"+t),!0)},t.prototype.remove=function(e){var t=o(e,this.keyName);t.forEach((function(t){e.classList.remove(t)})),0===e.classList.length&&e.removeAttribute("class")},t.prototype.value=function(e){var t=o(e,this.keyName)[0]||"",n=t.slice(this.keyName.length+1);return this.canAdd(e,n)?n:""},t}(i.default);t.default=a},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(12);function o(e){var t=e.split("-"),n=t.slice(1).map((function(e){return e[0].toUpperCase()+e.slice(1)})).join("");return t[0]+n}var a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.keys=function(e){return(e.getAttribute("style")||"").split(";").map((function(e){var t=e.split(":");return t[0].trim()}))},t.prototype.add=function(e,t){return!!this.canAdd(e,t)&&(e.style[o(this.keyName)]=t,!0)},t.prototype.remove=function(e){e.style[o(this.keyName)]="",e.getAttribute("style")||e.removeAttribute("style")},t.prototype.value=function(e){var t=e.style[o(this.keyName)];return this.canAdd(e,t)?t:""},t}(i.default);t.default=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var o=function(){function e(t,n){i(this,e),this.quill=t,this.options=n,this.modules={}}return r(e,[{key:"init",value:function(){var e=this;Object.keys(this.options.modules).forEach((function(t){null==e.modules[t]&&e.addModule(t)}))}},{key:"addModule",value:function(e){var t=this.quill.constructor.import("modules/"+e);return this.modules[e]=new t(this.quill,this.options.modules[e]||{}),this.modules[e]}}]),e}();o.DEFAULTS={modules:{}},o.themes={default:o},t.default=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=u(o),s=n(7),c=u(s);function u(e){return e&&e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function f(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var p="\ufeff",h=function(e){function t(e){l(this,t);var n=d(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.contentNode=document.createElement("span"),n.contentNode.setAttribute("contenteditable",!1),[].slice.call(n.domNode.childNodes).forEach((function(e){n.contentNode.appendChild(e)})),n.leftGuard=document.createTextNode(p),n.rightGuard=document.createTextNode(p),n.domNode.appendChild(n.leftGuard),n.domNode.appendChild(n.contentNode),n.domNode.appendChild(n.rightGuard),n}return f(t,e),r(t,[{key:"index",value:function(e,n){return e===this.leftGuard?0:e===this.rightGuard?1:i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"index",this).call(this,e,n)}},{key:"restore",value:function(e){var t=void 0,n=void 0,r=e.data.split(p).join("");if(e===this.leftGuard)if(this.prev instanceof c.default){var i=this.prev.length();this.prev.insertAt(i,r),t={startNode:this.prev.domNode,startOffset:i+r.length}}else n=document.createTextNode(r),this.parent.insertBefore(a.default.create(n),this),t={startNode:n,startOffset:r.length};else e===this.rightGuard&&(this.next instanceof c.default?(this.next.insertAt(0,r),t={startNode:this.next.domNode,startOffset:r.length}):(n=document.createTextNode(r),this.parent.insertBefore(a.default.create(n),this.next),t={startNode:n,startOffset:r.length}));return e.data=p,t}},{key:"update",value:function(e,t){var n=this;e.forEach((function(e){if("characterData"===e.type&&(e.target===n.leftGuard||e.target===n.rightGuard)){var r=n.restore(e.target);r&&(t.range=r)}}))}}]),t}(a.default.Embed);t.default=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AlignStyle=t.AlignClass=t.AlignAttribute=void 0;var r=n(0),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var a={scope:i.default.Scope.BLOCK,whitelist:["right","center","justify"]},s=new i.default.Attributor.Attribute("align","align",a),c=new i.default.Attributor.Class("align","ql-align",a),u=new i.default.Attributor.Style("align","text-align",a);t.AlignAttribute=s,t.AlignClass=c,t.AlignStyle=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BackgroundStyle=t.BackgroundClass=void 0;var r=n(0),i=a(r),o=n(26);function a(e){return e&&e.__esModule?e:{default:e}}var s=new i.default.Attributor.Class("background","ql-bg",{scope:i.default.Scope.INLINE}),c=new o.ColorAttributor("background","background-color",{scope:i.default.Scope.INLINE});t.BackgroundClass=s,t.BackgroundStyle=c},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DirectionStyle=t.DirectionClass=t.DirectionAttribute=void 0;var r=n(0),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var a={scope:i.default.Scope.BLOCK,whitelist:["rtl"]},s=new i.default.Attributor.Attribute("direction","dir",a),c=new i.default.Attributor.Class("direction","ql-direction",a),u=new i.default.Attributor.Style("direction","direction",a);t.DirectionAttribute=s,t.DirectionClass=c,t.DirectionStyle=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FontClass=t.FontStyle=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d={scope:a.default.Scope.INLINE,whitelist:["serif","monospace"]},f=new a.default.Attributor.Class("font","ql-font",d),p=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"value",value:function(e){return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"value",this).call(this,e).replace(/["']/g,"")}}]),t}(a.default.Attributor.Style),h=new p("font","font-family",d);t.FontStyle=h,t.FontClass=f},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SizeStyle=t.SizeClass=void 0;var r=n(0),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var a=new i.default.Attributor.Class("size","ql-size",{scope:i.default.Scope.INLINE,whitelist:["small","large","huge"]}),s=new i.default.Attributor.Style("size","font-size",{scope:i.default.Scope.INLINE,whitelist:["10px","18px","32px"]});t.SizeClass=a,t.SizeStyle=s},function(e,t,n){"use strict";e.exports={align:{"":n(76),center:n(77),right:n(78),justify:n(79)},background:n(80),blockquote:n(81),bold:n(82),clean:n(83),code:n(58),"code-block":n(58),color:n(84),direction:{"":n(85),rtl:n(86)},float:{center:n(87),full:n(88),left:n(89),right:n(90)},formula:n(91),header:{1:n(92),2:n(93)},italic:n(94),image:n(95),indent:{"+1":n(96),"-1":n(97)},link:n(98),list:{ordered:n(99),bullet:n(100),check:n(101)},script:{sub:n(102),super:n(103)},strike:n(104),underline:n(105),video:n(106)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getLastChangeIndex=t.default=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=n(0),o=l(i),a=n(5),s=l(a),c=n(9),u=l(c);function l(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function p(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var h=function(e){function t(e,n){d(this,t);var r=f(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.lastRecorded=0,r.ignoreChange=!1,r.clear(),r.quill.on(s.default.events.EDITOR_CHANGE,(function(e,t,n,i){e!==s.default.events.TEXT_CHANGE||r.ignoreChange||(r.options.userOnly&&i!==s.default.sources.USER?r.transform(t):r.record(t,n))})),r.quill.keyboard.addBinding({key:"Z",shortKey:!0},r.undo.bind(r)),r.quill.keyboard.addBinding({key:"Z",shortKey:!0,shiftKey:!0},r.redo.bind(r)),/Win/i.test(navigator.platform)&&r.quill.keyboard.addBinding({key:"Y",shortKey:!0},r.redo.bind(r)),r}return p(t,e),r(t,[{key:"change",value:function(e,t){if(0!==this.stack[e].length){var n=this.stack[e].pop();this.stack[t].push(n),this.lastRecorded=0,this.ignoreChange=!0,this.quill.updateContents(n[e],s.default.sources.USER),this.ignoreChange=!1;var r=b(n[e]);this.quill.setSelection(r)}}},{key:"clear",value:function(){this.stack={undo:[],redo:[]}}},{key:"cutoff",value:function(){this.lastRecorded=0}},{key:"record",value:function(e,t){if(0!==e.ops.length){this.stack.redo=[];var n=this.quill.getContents().diff(t),r=Date.now();if(this.lastRecorded+this.options.delay>r&&this.stack.undo.length>0){var i=this.stack.undo.pop();n=n.compose(i.undo),e=i.redo.compose(e)}else this.lastRecorded=r;this.stack.undo.push({redo:e,undo:n}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(e){this.stack.undo.forEach((function(t){t.undo=e.transform(t.undo,!0),t.redo=e.transform(t.redo,!0)})),this.stack.redo.forEach((function(t){t.undo=e.transform(t.undo,!0),t.redo=e.transform(t.redo,!0)}))}},{key:"undo",value:function(){this.change("undo","redo")}}]),t}(u.default);function m(e){var t=e.ops[e.ops.length-1];return null!=t&&(null!=t.insert?"string"===typeof t.insert&&t.insert.endsWith("\n"):null!=t.attributes&&Object.keys(t.attributes).some((function(e){return null!=o.default.query(e,o.default.Scope.BLOCK)})))}function b(e){var t=e.reduce((function(e,t){return e+=t.delete||0,e}),0),n=e.length()-t;return m(e)&&(n-=1),n}h.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1},t.default=h,t.getLastChangeIndex=b},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.BaseTooltip=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(3),a=A(o),s=n(2),c=A(s),u=n(8),l=A(u),d=n(23),f=A(d),p=n(34),h=A(p),m=n(59),b=A(m),v=n(60),y=A(v),M=n(28),_=A(M),g=n(61),w=A(g);function A(e){return e&&e.__esModule?e:{default:e}}function L(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function O(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function T(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var S=[!1,"center","right","justify"],k=["#000000","#e60000","#ff9900","#ffff00","#008a00","#0066cc","#9933ff","#ffffff","#facccc","#ffebcc","#ffffcc","#cce8cc","#cce0f5","#ebd6ff","#bbbbbb","#f06666","#ffc266","#ffff66","#66b966","#66a3e0","#c285ff","#888888","#a10000","#b26b00","#b2b200","#006100","#0047b2","#6b24b2","#444444","#5c0000","#663d00","#666600","#003700","#002966","#3d1466"],x=[!1,"serif","monospace"],z=["1","2","3",!1],D=["small",!1,"large","huge"],N=function(e){function t(e,n){L(this,t);var r=O(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n)),i=function t(n){if(!document.body.contains(e.root))return document.body.removeEventListener("click",t);null==r.tooltip||r.tooltip.root.contains(n.target)||document.activeElement===r.tooltip.textbox||r.quill.hasFocus()||r.tooltip.hide(),null!=r.pickers&&r.pickers.forEach((function(e){e.container.contains(n.target)||e.close()}))};return e.emitter.listenDOM("click",document.body,i),r}return T(t,e),r(t,[{key:"addModule",value:function(e){var n=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"addModule",this).call(this,e);return"toolbar"===e&&this.extendToolbar(n),n}},{key:"buildButtons",value:function(e,t){e.forEach((function(e){var n=e.getAttribute("class")||"";n.split(/\s+/).forEach((function(n){if(n.startsWith("ql-")&&(n=n.slice("ql-".length),null!=t[n]))if("direction"===n)e.innerHTML=t[n][""]+t[n]["rtl"];else if("string"===typeof t[n])e.innerHTML=t[n];else{var r=e.value||"";null!=r&&t[n][r]&&(e.innerHTML=t[n][r])}}))}))}},{key:"buildPickers",value:function(e,t){var n=this;this.pickers=e.map((function(e){if(e.classList.contains("ql-align"))return null==e.querySelector("option")&&$(e,S),new y.default(e,t.align);if(e.classList.contains("ql-background")||e.classList.contains("ql-color")){var n=e.classList.contains("ql-background")?"background":"color";return null==e.querySelector("option")&&$(e,k,"background"===n?"#ffffff":"#000000"),new b.default(e,t[n])}return null==e.querySelector("option")&&(e.classList.contains("ql-font")?$(e,x):e.classList.contains("ql-header")?$(e,z):e.classList.contains("ql-size")&&$(e,D)),new _.default(e)}));var r=function(){n.pickers.forEach((function(e){e.update()}))};this.quill.on(l.default.events.EDITOR_CHANGE,r)}}]),t}(h.default);N.DEFAULTS=(0,a.default)(!0,{},h.default.DEFAULTS,{modules:{toolbar:{handlers:{formula:function(){this.quill.theme.tooltip.edit("formula")},image:function(){var e=this,t=this.container.querySelector("input.ql-image[type=file]");null==t&&(t=document.createElement("input"),t.setAttribute("type","file"),t.setAttribute("accept","image/png, image/gif, image/jpeg, image/bmp, image/x-icon"),t.classList.add("ql-image"),t.addEventListener("change",(function(){if(null!=t.files&&null!=t.files[0]){var n=new FileReader;n.onload=function(n){var r=e.quill.getSelection(!0);e.quill.updateContents((new c.default).retain(r.index).delete(r.length).insert({image:n.target.result}),l.default.sources.USER),e.quill.setSelection(r.index+1,l.default.sources.SILENT),t.value=""},n.readAsDataURL(t.files[0])}})),this.container.appendChild(t)),t.click()},video:function(){this.quill.theme.tooltip.edit("video")}}}}});var C=function(e){function t(e,n){L(this,t);var r=O(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.textbox=r.root.querySelector('input[type="text"]'),r.listen(),r}return T(t,e),r(t,[{key:"listen",value:function(){var e=this;this.textbox.addEventListener("keydown",(function(t){f.default.match(t,"enter")?(e.save(),t.preventDefault()):f.default.match(t,"escape")&&(e.cancel(),t.preventDefault())}))}},{key:"cancel",value:function(){this.hide()}},{key:"edit",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"link",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),null!=t?this.textbox.value=t:e!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+e)||""),this.root.setAttribute("data-mode",e)}},{key:"restoreFocus",value:function(){var e=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=e}},{key:"save",value:function(){var e=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":var t=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",e,l.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",e,l.default.sources.USER)),this.quill.root.scrollTop=t;break;case"video":e=E(e);case"formula":if(!e)break;var n=this.quill.getSelection(!0);if(null!=n){var r=n.index+n.length;this.quill.insertEmbed(r,this.root.getAttribute("data-mode"),e,l.default.sources.USER),"formula"===this.root.getAttribute("data-mode")&&this.quill.insertText(r+1," ",l.default.sources.USER),this.quill.setSelection(r+2,l.default.sources.USER)}break;default:}this.textbox.value="",this.hide()}}]),t}(w.default);function E(e){var t=e.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||e.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return t?(t[1]||"https")+"://www.youtube.com/embed/"+t[2]+"?showinfo=0":(t=e.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(t[1]||"https")+"://player.vimeo.com/video/"+t[2]+"/":e}function $(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];t.forEach((function(t){var r=document.createElement("option");t===n?r.setAttribute("selected","selected"):r.setAttribute("value",t),e.appendChild(r)}))}t.BaseTooltip=C,t.default=N},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(){this.head=this.tail=null,this.length=0}return e.prototype.append=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.insertBefore(e[0],null),e.length>1&&this.append.apply(this,e.slice(1))},e.prototype.contains=function(e){var t,n=this.iterator();while(t=n())if(t===e)return!0;return!1},e.prototype.insertBefore=function(e,t){e&&(e.next=t,null!=t?(e.prev=t.prev,null!=t.prev&&(t.prev.next=e),t.prev=e,t===this.head&&(this.head=e)):null!=this.tail?(this.tail.next=e,e.prev=this.tail,this.tail=e):(e.prev=null,this.head=this.tail=e),this.length+=1)},e.prototype.offset=function(e){var t=0,n=this.head;while(null!=n){if(n===e)return t;t+=n.length(),n=n.next}return-1},e.prototype.remove=function(e){this.contains(e)&&(null!=e.prev&&(e.prev.next=e.next),null!=e.next&&(e.next.prev=e.prev),e===this.head&&(this.head=e.next),e===this.tail&&(this.tail=e.prev),this.length-=1)},e.prototype.iterator=function(e){return void 0===e&&(e=this.head),function(){var t=e;return null!=e&&(e=e.next),t}},e.prototype.find=function(e,t){void 0===t&&(t=!1);var n,r=this.iterator();while(n=r()){var i=n.length();if(e<i||t&&e===i&&(null==n.next||0!==n.next.length()))return[n,e];e-=i}return[null,0]},e.prototype.forEach=function(e){var t,n=this.iterator();while(t=n())e(t)},e.prototype.forEachAt=function(e,t,n){if(!(t<=0)){var r,i=this.find(e),o=i[0],a=i[1],s=e-a,c=this.iterator(o);while((r=c())&&s<e+t){var u=r.length();e>s?n(r,e-s,Math.min(t,s+u-e)):n(r,0,Math.min(u,e+t-s)),s+=u}}},e.prototype.map=function(e){return this.reduce((function(t,n){return t.push(e(n)),t}),[])},e.prototype.reduce=function(e,t){var n,r=this.iterator();while(n=r())t=e(t,n);return t},e}();t.default=r},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(17),o=n(1),a={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},s=100,c=function(e){function t(t){var n=e.call(this,t)||this;return n.scroll=n,n.observer=new MutationObserver((function(e){n.update(e)})),n.observer.observe(n.domNode,a),n.attach(),n}return r(t,e),t.prototype.detach=function(){e.prototype.detach.call(this),this.observer.disconnect()},t.prototype.deleteAt=function(t,n){this.update(),0===t&&n===this.length()?this.children.forEach((function(e){e.remove()})):e.prototype.deleteAt.call(this,t,n)},t.prototype.formatAt=function(t,n,r,i){this.update(),e.prototype.formatAt.call(this,t,n,r,i)},t.prototype.insertAt=function(t,n,r){this.update(),e.prototype.insertAt.call(this,t,n,r)},t.prototype.optimize=function(t,n){var r=this;void 0===t&&(t=[]),void 0===n&&(n={}),e.prototype.optimize.call(this,n);var a=[].slice.call(this.observer.takeRecords());while(a.length>0)t.push(a.pop());for(var c=function(e,t){void 0===t&&(t=!0),null!=e&&e!==r&&null!=e.domNode.parentNode&&(null==e.domNode[o.DATA_KEY].mutations&&(e.domNode[o.DATA_KEY].mutations=[]),t&&c(e.parent))},u=function(e){null!=e.domNode[o.DATA_KEY]&&null!=e.domNode[o.DATA_KEY].mutations&&(e instanceof i.default&&e.children.forEach(u),e.optimize(n))},l=t,d=0;l.length>0;d+=1){if(d>=s)throw new Error("[Parchment] Maximum optimize iterations reached");l.forEach((function(e){var t=o.find(e.target,!0);null!=t&&(t.domNode===e.target&&("childList"===e.type?(c(o.find(e.previousSibling,!1)),[].forEach.call(e.addedNodes,(function(e){var t=o.find(e,!1);c(t,!1),t instanceof i.default&&t.children.forEach((function(e){c(e,!1)}))}))):"attributes"===e.type&&c(t.prev)),c(t))})),this.children.forEach(u),l=[].slice.call(this.observer.takeRecords()),a=l.slice();while(a.length>0)t.push(a.pop())}},t.prototype.update=function(t,n){var r=this;void 0===n&&(n={}),t=t||this.observer.takeRecords(),t.map((function(e){var t=o.find(e.target,!0);return null==t?null:null==t.domNode[o.DATA_KEY].mutations?(t.domNode[o.DATA_KEY].mutations=[e],t):(t.domNode[o.DATA_KEY].mutations.push(e),null)})).forEach((function(e){null!=e&&e!==r&&null!=e.domNode[o.DATA_KEY]&&e.update(e.domNode[o.DATA_KEY].mutations||[],n)})),null!=this.domNode[o.DATA_KEY].mutations&&e.prototype.update.call(this,this.domNode[o.DATA_KEY].mutations,n),this.optimize(t,n)},t.blotName="scroll",t.defaultChild="block",t.scope=o.Scope.BLOCK_BLOT,t.tagName="DIV",t}(i.default);t.default=c},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(18),o=n(1);function a(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(e[n]!==t[n])return!1;return!0}var s=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.formats=function(n){if(n.tagName!==t.tagName)return e.formats.call(this,n)},t.prototype.format=function(n,r){var o=this;n!==this.statics.blotName||r?e.prototype.format.call(this,n,r):(this.children.forEach((function(e){e instanceof i.default||(e=e.wrap(t.blotName,!0)),o.attributes.copy(e)})),this.unwrap())},t.prototype.formatAt=function(t,n,r,i){if(null!=this.formats()[r]||o.query(r,o.Scope.ATTRIBUTE)){var a=this.isolate(t,n);a.format(r,i)}else e.prototype.formatAt.call(this,t,n,r,i)},t.prototype.optimize=function(n){e.prototype.optimize.call(this,n);var r=this.formats();if(0===Object.keys(r).length)return this.unwrap();var i=this.next;i instanceof t&&i.prev===this&&a(r,i.formats())&&(i.moveChildren(this),i.remove())},t.blotName="inline",t.scope=o.Scope.INLINE_BLOT,t.tagName="SPAN",t}(i.default);t.default=s},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(18),o=n(1),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.formats=function(n){var r=o.query(t.blotName).tagName;if(n.tagName!==r)return e.formats.call(this,n)},t.prototype.format=function(n,r){null!=o.query(n,o.Scope.BLOCK)&&(n!==this.statics.blotName||r?e.prototype.format.call(this,n,r):this.replaceWith(t.blotName))},t.prototype.formatAt=function(t,n,r,i){null!=o.query(r,o.Scope.BLOCK)?this.format(r,i):e.prototype.formatAt.call(this,t,n,r,i)},t.prototype.insertAt=function(t,n,r){if(null==r||null!=o.query(n,o.Scope.INLINE))e.prototype.insertAt.call(this,t,n,r);else{var i=this.split(t),a=o.create(n,r);i.parent.insertBefore(a,i)}},t.prototype.update=function(t,n){navigator.userAgent.match(/Trident/)?this.build():e.prototype.update.call(this,t,n)},t.blotName="block",t.scope=o.Scope.BLOCK_BLOT,t.tagName="P",t}(i.default);t.default=a},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(19),o=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.formats=function(e){},t.prototype.format=function(t,n){e.prototype.formatAt.call(this,0,this.length(),t,n)},t.prototype.formatAt=function(t,n,r,i){0===t&&n===this.length()?this.format(r,i):e.prototype.formatAt.call(this,t,n,r,i)},t.prototype.formats=function(){return this.statics.formats(this.domNode)},t}(i.default);t.default=o},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(19),o=n(1),a=function(e){function t(t){var n=e.call(this,t)||this;return n.text=n.statics.value(n.domNode),n}return r(t,e),t.create=function(e){return document.createTextNode(e)},t.value=function(e){var t=e.data;return t["normalize"]&&(t=t["normalize"]()),t},t.prototype.deleteAt=function(e,t){this.domNode.data=this.text=this.text.slice(0,e)+this.text.slice(e+t)},t.prototype.index=function(e,t){return this.domNode===e?t:-1},t.prototype.insertAt=function(t,n,r){null==r?(this.text=this.text.slice(0,t)+n+this.text.slice(t),this.domNode.data=this.text):e.prototype.insertAt.call(this,t,n,r)},t.prototype.length=function(){return this.text.length},t.prototype.optimize=function(n){e.prototype.optimize.call(this,n),this.text=this.statics.value(this.domNode),0===this.text.length?this.remove():this.next instanceof t&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},t.prototype.position=function(e,t){return void 0===t&&(t=!1),[this.domNode,e]},t.prototype.split=function(e,t){if(void 0===t&&(t=!1),!t){if(0===e)return this;if(e===this.length())return this.next}var n=o.create(this.domNode.splitText(e));return this.parent.insertBefore(n,this.next),this.text=this.statics.value(this.domNode),n},t.prototype.update=function(e,t){var n=this;e.some((function(e){return"characterData"===e.type&&e.target===n.domNode}))&&(this.text=this.statics.value(this.domNode))},t.prototype.value=function(){return this.text},t.blotName="text",t.scope=o.Scope.INLINE_BLOT,t}(i.default);t.default=a},function(e,t,n){"use strict";var r=document.createElement("div");if(r.classList.toggle("test-class",!1),r.classList.contains("test-class")){var i=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(e,t){return arguments.length>1&&!this.contains(e)===!t?t:i.call(this,e)}}String.prototype.startsWith||(String.prototype.startsWith=function(e,t){return t=t||0,this.substr(t,e.length)===e}),String.prototype.endsWith||(String.prototype.endsWith=function(e,t){var n=this.toString();("number"!==typeof t||!isFinite(t)||Math.floor(t)!==t||t>n.length)&&(t=n.length),t-=e.length;var r=n.indexOf(e,t);return-1!==r&&r===t}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null===this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!==typeof e)throw new TypeError("predicate must be a function");for(var t,n=Object(this),r=n.length>>>0,i=arguments[1],o=0;o<r;o++)if(t=n[o],e.call(i,t,o,n))return t}}),document.addEventListener("DOMContentLoaded",(function(){document.execCommand("enableObjectResizing",!1,!1),document.execCommand("autoUrlDetect",!1,!1)}))},function(e,t){var n=-1,r=1,i=0;function o(e,t,n){if(e==t)return e?[[i,e]]:[];(n<0||e.length<n)&&(n=null);var r=u(e,t),o=e.substring(0,r);e=e.substring(r),t=t.substring(r),r=l(e,t);var s=e.substring(e.length-r);e=e.substring(0,e.length-r),t=t.substring(0,t.length-r);var c=a(e,t);return o&&c.unshift([i,o]),s&&c.push([i,s]),f(c),null!=n&&(c=m(c,n)),c=b(c),c}function a(e,t){var a;if(!e)return[[r,t]];if(!t)return[[n,e]];var c=e.length>t.length?e:t,u=e.length>t.length?t:e,l=c.indexOf(u);if(-1!=l)return a=[[r,c.substring(0,l)],[i,u],[r,c.substring(l+u.length)]],e.length>t.length&&(a[0][0]=a[2][0]=n),a;if(1==u.length)return[[n,e],[r,t]];var f=d(e,t);if(f){var p=f[0],h=f[1],m=f[2],b=f[3],v=f[4],y=o(p,m),M=o(h,b);return y.concat([[i,v]],M)}return s(e,t)}function s(e,t){for(var i=e.length,o=t.length,a=Math.ceil((i+o)/2),s=a,u=2*a,l=new Array(u),d=new Array(u),f=0;f<u;f++)l[f]=-1,d[f]=-1;l[s+1]=0,d[s+1]=0;for(var p=i-o,h=p%2!=0,m=0,b=0,v=0,y=0,M=0;M<a;M++){for(var _=-M+m;_<=M-b;_+=2){var g=s+_;S=_==-M||_!=M&&l[g-1]<l[g+1]?l[g+1]:l[g-1]+1;var w=S-_;while(S<i&&w<o&&e.charAt(S)==t.charAt(w))S++,w++;if(l[g]=S,S>i)b+=2;else if(w>o)m+=2;else if(h){var A=s+p-_;if(A>=0&&A<u&&-1!=d[A]){var L=i-d[A];if(S>=L)return c(e,t,S,w)}}}for(var O=-M+v;O<=M-y;O+=2){A=s+O;L=O==-M||O!=M&&d[A-1]<d[A+1]?d[A+1]:d[A-1]+1;var T=L-O;while(L<i&&T<o&&e.charAt(i-L-1)==t.charAt(o-T-1))L++,T++;if(d[A]=L,L>i)y+=2;else if(T>o)v+=2;else if(!h){g=s+p-O;if(g>=0&&g<u&&-1!=l[g]){var S=l[g];w=s+S-g;if(L=i-L,S>=L)return c(e,t,S,w)}}}}return[[n,e],[r,t]]}function c(e,t,n,r){var i=e.substring(0,n),a=t.substring(0,r),s=e.substring(n),c=t.substring(r),u=o(i,a),l=o(s,c);return u.concat(l)}function u(e,t){if(!e||!t||e.charAt(0)!=t.charAt(0))return 0;var n=0,r=Math.min(e.length,t.length),i=r,o=0;while(n<i)e.substring(o,i)==t.substring(o,i)?(n=i,o=n):r=i,i=Math.floor((r-n)/2+n);return i}function l(e,t){if(!e||!t||e.charAt(e.length-1)!=t.charAt(t.length-1))return 0;var n=0,r=Math.min(e.length,t.length),i=r,o=0;while(n<i)e.substring(e.length-i,e.length-o)==t.substring(t.length-i,t.length-o)?(n=i,o=n):r=i,i=Math.floor((r-n)/2+n);return i}function d(e,t){var n=e.length>t.length?e:t,r=e.length>t.length?t:e;if(n.length<4||2*r.length<n.length)return null;function i(e,t,n){var r,i,o,a,s=e.substring(n,n+Math.floor(e.length/4)),c=-1,d="";while(-1!=(c=t.indexOf(s,c+1))){var f=u(e.substring(n),t.substring(c)),p=l(e.substring(0,n),t.substring(0,c));d.length<p+f&&(d=t.substring(c-p,c)+t.substring(c,c+f),r=e.substring(0,n-p),i=e.substring(n+f),o=t.substring(0,c-p),a=t.substring(c+f))}return 2*d.length>=e.length?[r,i,o,a,d]:null}var o,a,s,c,d,f=i(n,r,Math.ceil(n.length/4)),p=i(n,r,Math.ceil(n.length/2));if(!f&&!p)return null;o=p?f&&f[4].length>p[4].length?f:p:f,e.length>t.length?(a=o[0],s=o[1],c=o[2],d=o[3]):(c=o[0],d=o[1],a=o[2],s=o[3]);var h=o[4];return[a,s,c,d,h]}function f(e){e.push([i,""]);var t,o=0,a=0,s=0,c="",d="";while(o<e.length)switch(e[o][0]){case r:s++,d+=e[o][1],o++;break;case n:a++,c+=e[o][1],o++;break;case i:a+s>1?(0!==a&&0!==s&&(t=u(d,c),0!==t&&(o-a-s>0&&e[o-a-s-1][0]==i?e[o-a-s-1][1]+=d.substring(0,t):(e.splice(0,0,[i,d.substring(0,t)]),o++),d=d.substring(t),c=c.substring(t)),t=l(d,c),0!==t&&(e[o][1]=d.substring(d.length-t)+e[o][1],d=d.substring(0,d.length-t),c=c.substring(0,c.length-t))),0===a?e.splice(o-s,a+s,[r,d]):0===s?e.splice(o-a,a+s,[n,c]):e.splice(o-a-s,a+s,[n,c],[r,d]),o=o-a-s+(a?1:0)+(s?1:0)+1):0!==o&&e[o-1][0]==i?(e[o-1][1]+=e[o][1],e.splice(o,1)):o++,s=0,a=0,c="",d="";break}""===e[e.length-1][1]&&e.pop();var p=!1;o=1;while(o<e.length-1)e[o-1][0]==i&&e[o+1][0]==i&&(e[o][1].substring(e[o][1].length-e[o-1][1].length)==e[o-1][1]?(e[o][1]=e[o-1][1]+e[o][1].substring(0,e[o][1].length-e[o-1][1].length),e[o+1][1]=e[o-1][1]+e[o+1][1],e.splice(o-1,1),p=!0):e[o][1].substring(0,e[o+1][1].length)==e[o+1][1]&&(e[o-1][1]+=e[o+1][1],e[o][1]=e[o][1].substring(e[o+1][1].length)+e[o+1][1],e.splice(o+1,1),p=!0)),o++;p&&f(e)}var p=o;function h(e,t){if(0===t)return[i,e];for(var r=0,o=0;o<e.length;o++){var a=e[o];if(a[0]===n||a[0]===i){var s=r+a[1].length;if(t===s)return[o+1,e];if(t<s){e=e.slice();var c=t-r,u=[a[0],a[1].slice(0,c)],l=[a[0],a[1].slice(c)];return e.splice(o,1,u,l),[o+1,e]}r=s}}throw new Error("cursor_pos is out of bounds!")}function m(e,t){var n=h(e,t),r=n[1],o=n[0],a=r[o],s=r[o+1];if(null==a)return e;if(a[0]!==i)return e;if(null!=s&&a[1]+s[1]===s[1]+a[1])return r.splice(o,2,s,a),v(r,o,2);if(null!=s&&0===s[1].indexOf(a[1])){r.splice(o,2,[s[0],a[1]],[0,a[1]]);var c=s[1].slice(a[1].length);return c.length>0&&r.splice(o+2,0,[s[0],c]),v(r,o,3)}return e}function b(e){for(var t=!1,o=function(e){return e.charCodeAt(0)>=56320&&e.charCodeAt(0)<=57343},a=function(e){return e.charCodeAt(e.length-1)>=55296&&e.charCodeAt(e.length-1)<=56319},s=2;s<e.length;s+=1)e[s-2][0]===i&&a(e[s-2][1])&&e[s-1][0]===n&&o(e[s-1][1])&&e[s][0]===r&&o(e[s][1])&&(t=!0,e[s-1][1]=e[s-2][1].slice(-1)+e[s-1][1],e[s][1]=e[s-2][1].slice(-1)+e[s][1],e[s-2][1]=e[s-2][1].slice(0,-1));if(!t)return e;var c=[];for(s=0;s<e.length;s+=1)e[s][1].length>0&&c.push(e[s]);return c}function v(e,t,n){for(var r=t+n-1;r>=0&&r>=t-1;r--)if(r+1<e.length){var i=e[r],o=e[r+1];i[0]===o[1]&&e.splice(r,2,[i[0],i[1]+o[1]])}return e}p.INSERT=r,p.DELETE=n,p.EQUAL=i,e.exports=p},function(e,t){function n(e){var t=[];for(var n in e)t.push(n);return t}t=e.exports="function"===typeof Object.keys?Object.keys:n,t.shim=n},function(e,t){var n="[object Arguments]"==function(){return Object.prototype.toString.call(arguments)}();function r(e){return"[object Arguments]"==Object.prototype.toString.call(e)}function i(e){return e&&"object"==typeof e&&"number"==typeof e.length&&Object.prototype.hasOwnProperty.call(e,"callee")&&!Object.prototype.propertyIsEnumerable.call(e,"callee")||!1}t=e.exports=n?r:i,t.supported=r,t.unsupported=i},function(e,t){"use strict";var n=Object.prototype.hasOwnProperty,r="~";function i(){}function o(e,t,n){this.fn=e,this.context=t,this.once=n||!1}function a(){this._events=new i,this._eventsCount=0}Object.create&&(i.prototype=Object.create(null),(new i).__proto__||(r=!1)),a.prototype.eventNames=function(){var e,t,i=[];if(0===this._eventsCount)return i;for(t in e=this._events)n.call(e,t)&&i.push(r?t.slice(1):t);return Object.getOwnPropertySymbols?i.concat(Object.getOwnPropertySymbols(e)):i},a.prototype.listeners=function(e,t){var n=r?r+e:e,i=this._events[n];if(t)return!!i;if(!i)return[];if(i.fn)return[i.fn];for(var o=0,a=i.length,s=new Array(a);o<a;o++)s[o]=i[o].fn;return s},a.prototype.emit=function(e,t,n,i,o,a){var s=r?r+e:e;if(!this._events[s])return!1;var c,u,l=this._events[s],d=arguments.length;if(l.fn){switch(l.once&&this.removeListener(e,l.fn,void 0,!0),d){case 1:return l.fn.call(l.context),!0;case 2:return l.fn.call(l.context,t),!0;case 3:return l.fn.call(l.context,t,n),!0;case 4:return l.fn.call(l.context,t,n,i),!0;case 5:return l.fn.call(l.context,t,n,i,o),!0;case 6:return l.fn.call(l.context,t,n,i,o,a),!0}for(u=1,c=new Array(d-1);u<d;u++)c[u-1]=arguments[u];l.fn.apply(l.context,c)}else{var f,p=l.length;for(u=0;u<p;u++)switch(l[u].once&&this.removeListener(e,l[u].fn,void 0,!0),d){case 1:l[u].fn.call(l[u].context);break;case 2:l[u].fn.call(l[u].context,t);break;case 3:l[u].fn.call(l[u].context,t,n);break;case 4:l[u].fn.call(l[u].context,t,n,i);break;default:if(!c)for(f=1,c=new Array(d-1);f<d;f++)c[f-1]=arguments[f];l[u].fn.apply(l[u].context,c)}}return!0},a.prototype.on=function(e,t,n){var i=new o(t,n||this),a=r?r+e:e;return this._events[a]?this._events[a].fn?this._events[a]=[this._events[a],i]:this._events[a].push(i):(this._events[a]=i,this._eventsCount++),this},a.prototype.once=function(e,t,n){var i=new o(t,n||this,!0),a=r?r+e:e;return this._events[a]?this._events[a].fn?this._events[a]=[this._events[a],i]:this._events[a].push(i):(this._events[a]=i,this._eventsCount++),this},a.prototype.removeListener=function(e,t,n,o){var a=r?r+e:e;if(!this._events[a])return this;if(!t)return 0===--this._eventsCount?this._events=new i:delete this._events[a],this;var s=this._events[a];if(s.fn)s.fn!==t||o&&!s.once||n&&s.context!==n||(0===--this._eventsCount?this._events=new i:delete this._events[a]);else{for(var c=0,u=[],l=s.length;c<l;c++)(s[c].fn!==t||o&&!s[c].once||n&&s[c].context!==n)&&u.push(s[c]);u.length?this._events[a]=1===u.length?u[0]:u:0===--this._eventsCount?this._events=new i:delete this._events[a]}return this},a.prototype.removeAllListeners=function(e){var t;return e?(t=r?r+e:e,this._events[t]&&(0===--this._eventsCount?this._events=new i:delete this._events[t])):(this._events=new i,this._eventsCount=0),this},a.prototype.off=a.prototype.removeListener,a.prototype.addListener=a.prototype.on,a.prototype.setMaxListeners=function(){return this},a.prefixed=r,a.EventEmitter=a,"undefined"!==typeof e&&(e.exports=a)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.matchText=t.matchSpacing=t.matchNewline=t.matchBlot=t.matchAttributor=t.default=void 0;var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(3),s=T(a),c=n(2),u=T(c),l=n(0),d=T(l),f=n(5),p=T(f),h=n(10),m=T(h),b=n(9),v=T(b),y=n(36),M=n(37),_=n(13),g=T(_),w=n(26),A=n(38),L=n(39),O=n(40);function T(e){return e&&e.__esModule?e:{default:e}}function S(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function k(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function x(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function z(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var D=(0,m.default)("quill:clipboard"),N="__ql-matcher",C=[[Node.TEXT_NODE,J],[Node.TEXT_NODE,V],["br",F],[Node.ELEMENT_NODE,V],[Node.ELEMENT_NODE,H],[Node.ELEMENT_NODE,G],[Node.ELEMENT_NODE,I],[Node.ELEMENT_NODE,K],["li",U],["b",R.bind(R,"bold")],["i",R.bind(R,"italic")],["style",X]],E=[y.AlignAttribute,A.DirectionAttribute].reduce((function(e,t){return e[t.keyName]=t,e}),{}),$=[y.AlignStyle,M.BackgroundStyle,w.ColorStyle,A.DirectionStyle,L.FontStyle,O.SizeStyle].reduce((function(e,t){return e[t.keyName]=t,e}),{}),P=function(e){function t(e,n){k(this,t);var r=x(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.quill.root.addEventListener("paste",r.onPaste.bind(r)),r.container=r.quill.addContainer("ql-clipboard"),r.container.setAttribute("contenteditable",!0),r.container.setAttribute("tabindex",-1),r.matchers=[],C.concat(r.options.matchers).forEach((function(e){var t=i(e,2),o=t[0],a=t[1];(n.matchVisual||a!==G)&&r.addMatcher(o,a)})),r}return z(t,e),o(t,[{key:"addMatcher",value:function(e,t){this.matchers.push([e,t])}},{key:"convert",value:function(e){if("string"===typeof e)return this.container.innerHTML=e.replace(/\>\r?\n +\</g,"><"),this.convert();var t=this.quill.getFormat(this.quill.selection.savedRange.index);if(t[g.default.blotName]){var n=this.container.innerText;return this.container.innerHTML="",(new u.default).insert(n,S({},g.default.blotName,t[g.default.blotName]))}var r=this.prepareMatching(),o=i(r,2),a=o[0],s=o[1],c=B(this.container,a,s);return q(c,"\n")&&null==c.ops[c.ops.length-1].attributes&&(c=c.compose((new u.default).retain(c.length()-1).delete(1))),D.log("convert",this.container.innerHTML,c),this.container.innerHTML="",c}},{key:"dangerouslyPasteHTML",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:p.default.sources.API;if("string"===typeof e)this.quill.setContents(this.convert(e),t),this.quill.setSelection(0,p.default.sources.SILENT);else{var r=this.convert(t);this.quill.updateContents((new u.default).retain(e).concat(r),n),this.quill.setSelection(e+r.length(),p.default.sources.SILENT)}}},{key:"onPaste",value:function(e){var t=this;if(!e.defaultPrevented&&this.quill.isEnabled()){var n=this.quill.getSelection(),r=(new u.default).retain(n.index),i=this.quill.scrollingContainer.scrollTop;this.container.focus(),this.quill.selection.update(p.default.sources.SILENT),setTimeout((function(){r=r.concat(t.convert()).delete(n.length),t.quill.updateContents(r,p.default.sources.USER),t.quill.setSelection(r.length()-n.length,p.default.sources.SILENT),t.quill.scrollingContainer.scrollTop=i,t.quill.focus()}),1)}}},{key:"prepareMatching",value:function(){var e=this,t=[],n=[];return this.matchers.forEach((function(r){var o=i(r,2),a=o[0],s=o[1];switch(a){case Node.TEXT_NODE:n.push(s);break;case Node.ELEMENT_NODE:t.push(s);break;default:[].forEach.call(e.container.querySelectorAll(a),(function(e){e[N]=e[N]||[],e[N].push(s)}));break}})),[t,n]}}]),t}(v.default);function j(e,t,n){return"object"===("undefined"===typeof t?"undefined":r(t))?Object.keys(t).reduce((function(e,n){return j(e,n,t[n])}),e):e.reduce((function(e,r){return r.attributes&&r.attributes[t]?e.push(r):e.insert(r.insert,(0,s.default)({},S({},t,n),r.attributes))}),new u.default)}function Y(e){if(e.nodeType!==Node.ELEMENT_NODE)return{};var t="__ql-computed-style";return e[t]||(e[t]=window.getComputedStyle(e))}function q(e,t){for(var n="",r=e.ops.length-1;r>=0&&n.length<t.length;--r){var i=e.ops[r];if("string"!==typeof i.insert)break;n=i.insert+n}return n.slice(-1*t.length)===t}function W(e){if(0===e.childNodes.length)return!1;var t=Y(e);return["block","list-item"].indexOf(t.display)>-1}function B(e,t,n){return e.nodeType===e.TEXT_NODE?n.reduce((function(t,n){return n(e,t)}),new u.default):e.nodeType===e.ELEMENT_NODE?[].reduce.call(e.childNodes||[],(function(r,i){var o=B(i,t,n);return i.nodeType===e.ELEMENT_NODE&&(o=t.reduce((function(e,t){return t(i,e)}),o),o=(i[N]||[]).reduce((function(e,t){return t(i,e)}),o)),r.concat(o)}),new u.default):new u.default}function R(e,t,n){return j(n,e,!0)}function I(e,t){var n=d.default.Attributor.Attribute.keys(e),r=d.default.Attributor.Class.keys(e),i=d.default.Attributor.Style.keys(e),o={};return n.concat(r).concat(i).forEach((function(t){var n=d.default.query(t,d.default.Scope.ATTRIBUTE);null!=n&&(o[n.attrName]=n.value(e),o[n.attrName])||(n=E[t],null==n||n.attrName!==t&&n.keyName!==t||(o[n.attrName]=n.value(e)||void 0),n=$[t],null==n||n.attrName!==t&&n.keyName!==t||(n=$[t],o[n.attrName]=n.value(e)||void 0))})),Object.keys(o).length>0&&(t=j(t,o)),t}function H(e,t){var n=d.default.query(e);if(null==n)return t;if(n.prototype instanceof d.default.Embed){var r={},i=n.value(e);null!=i&&(r[n.blotName]=i,t=(new u.default).insert(r,n.formats(e)))}else"function"===typeof n.formats&&(t=j(t,n.blotName,n.formats(e)));return t}function F(e,t){return q(t,"\n")||t.insert("\n"),t}function X(){return new u.default}function U(e,t){var n=d.default.query(e);if(null==n||"list-item"!==n.blotName||!q(t,"\n"))return t;var r=-1,i=e.parentNode;while(!i.classList.contains("ql-clipboard"))"list"===(d.default.query(i)||{}).blotName&&(r+=1),i=i.parentNode;return r<=0?t:t.compose((new u.default).retain(t.length()-1).retain(1,{indent:r}))}function V(e,t){return q(t,"\n")||(W(e)||t.length()>0&&e.nextSibling&&W(e.nextSibling))&&t.insert("\n"),t}function G(e,t){if(W(e)&&null!=e.nextElementSibling&&!q(t,"\n\n")){var n=e.offsetHeight+parseFloat(Y(e).marginTop)+parseFloat(Y(e).marginBottom);e.nextElementSibling.offsetTop>e.offsetTop+1.5*n&&t.insert("\n")}return t}function K(e,t){var n={},r=e.style||{};return r.fontStyle&&"italic"===Y(e).fontStyle&&(n.italic=!0),r.fontWeight&&(Y(e).fontWeight.startsWith("bold")||parseInt(Y(e).fontWeight)>=700)&&(n.bold=!0),Object.keys(n).length>0&&(t=j(t,n)),parseFloat(r.textIndent||0)>0&&(t=(new u.default).insert("\t").concat(t)),t}function J(e,t){var n=e.data;if("O:P"===e.parentNode.tagName)return t.insert(n.trim());if(0===n.trim().length&&e.parentNode.classList.contains("ql-clipboard"))return t;if(!Y(e.parentNode).whiteSpace.startsWith("pre")){var r=function(e,t){return t=t.replace(/[^\u00a0]/g,""),t.length<1&&e?" ":t};n=n.replace(/\r\n/g," ").replace(/\n/g," "),n=n.replace(/\s\s+/g,r.bind(r,!0)),(null==e.previousSibling&&W(e.parentNode)||null!=e.previousSibling&&W(e.previousSibling))&&(n=n.replace(/^\s+/,r.bind(r,!1))),(null==e.nextSibling&&W(e.parentNode)||null!=e.nextSibling&&W(e.nextSibling))&&(n=n.replace(/\s+$/,r.bind(r,!1)))}return t.insert(n)}P.DEFAULTS={matchers:[],matchVisual:!0},t.default=P,t.matchAttributor=I,t.matchBlot=H,t.matchNewline=V,t.matchSpacing=G,t.matchText=J},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(6),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"optimize",value:function(e){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e),this.domNode.tagName!==this.statics.tagName[0]&&this.replaceWith(this.statics.blotName)}}],[{key:"create",value:function(){return i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this)}},{key:"formats",value:function(){return!0}}]),t}(a.default);d.blotName="bold",d.tagName=["STRONG","B"],t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.addControls=t.default=void 0;var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(2),a=m(o),s=n(0),c=m(s),u=n(5),l=m(u),d=n(10),f=m(d),p=n(9),h=m(p);function m(e){return e&&e.__esModule?e:{default:e}}function b(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function v(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function y(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function M(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var _=(0,f.default)("quill:toolbar"),g=function(e){function t(e,n){v(this,t);var i,o=y(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if(Array.isArray(o.options.container)){var a=document.createElement("div");A(a,o.options.container),e.container.parentNode.insertBefore(a,e.container),o.container=a}else"string"===typeof o.options.container?o.container=document.querySelector(o.options.container):o.container=o.options.container;return o.container instanceof HTMLElement?(o.container.classList.add("ql-toolbar"),o.controls=[],o.handlers={},Object.keys(o.options.handlers).forEach((function(e){o.addHandler(e,o.options.handlers[e])})),[].forEach.call(o.container.querySelectorAll("button, select"),(function(e){o.attach(e)})),o.quill.on(l.default.events.EDITOR_CHANGE,(function(e,t){e===l.default.events.SELECTION_CHANGE&&o.update(t)})),o.quill.on(l.default.events.SCROLL_OPTIMIZE,(function(){var e=o.quill.selection.getRange(),t=r(e,1),n=t[0];o.update(n)})),o):(i=_.error("Container required for toolbar",o.options),y(o,i))}return M(t,e),i(t,[{key:"addHandler",value:function(e,t){this.handlers[e]=t}},{key:"attach",value:function(e){var t=this,n=[].find.call(e.classList,(function(e){return 0===e.indexOf("ql-")}));if(n){if(n=n.slice("ql-".length),"BUTTON"===e.tagName&&e.setAttribute("type","button"),null==this.handlers[n]){if(null!=this.quill.scroll.whitelist&&null==this.quill.scroll.whitelist[n])return void _.warn("ignoring attaching to disabled format",n,e);if(null==c.default.query(n))return void _.warn("ignoring attaching to nonexistent format",n,e)}var i="SELECT"===e.tagName?"change":"click";e.addEventListener(i,(function(i){var o=void 0;if("SELECT"===e.tagName){if(e.selectedIndex<0)return;var s=e.options[e.selectedIndex];o=!s.hasAttribute("selected")&&(s.value||!1)}else o=!e.classList.contains("ql-active")&&(e.value||!e.hasAttribute("value")),i.preventDefault();t.quill.focus();var u=t.quill.selection.getRange(),d=r(u,1),f=d[0];if(null!=t.handlers[n])t.handlers[n].call(t,o);else if(c.default.query(n).prototype instanceof c.default.Embed){if(o=prompt("Enter "+n),!o)return;t.quill.updateContents((new a.default).retain(f.index).delete(f.length).insert(b({},n,o)),l.default.sources.USER)}else t.quill.format(n,o,l.default.sources.USER);t.update(f)})),this.controls.push([n,e])}}},{key:"update",value:function(e){var t=null==e?{}:this.quill.getFormat(e);this.controls.forEach((function(n){var i=r(n,2),o=i[0],a=i[1];if("SELECT"===a.tagName){var s=void 0;if(null==e)s=null;else if(null==t[o])s=a.querySelector("option[selected]");else if(!Array.isArray(t[o])){var c=t[o];"string"===typeof c&&(c=c.replace(/\"/g,'\\"')),s=a.querySelector('option[value="'+c+'"]')}null==s?(a.value="",a.selectedIndex=-1):s.selected=!0}else if(null==e)a.classList.remove("ql-active");else if(a.hasAttribute("value")){var u=t[o]===a.getAttribute("value")||null!=t[o]&&t[o].toString()===a.getAttribute("value")||null==t[o]&&!a.getAttribute("value");a.classList.toggle("ql-active",u)}else a.classList.toggle("ql-active",null!=t[o])}))}}]),t}(h.default);function w(e,t,n){var r=document.createElement("button");r.setAttribute("type","button"),r.classList.add("ql-"+t),null!=n&&(r.value=n),e.appendChild(r)}function A(e,t){Array.isArray(t[0])||(t=[t]),t.forEach((function(t){var n=document.createElement("span");n.classList.add("ql-formats"),t.forEach((function(e){if("string"===typeof e)w(n,e);else{var t=Object.keys(e)[0],r=e[t];Array.isArray(r)?L(n,t,r):w(n,t,r)}})),e.appendChild(n)}))}function L(e,t,n){var r=document.createElement("select");r.classList.add("ql-"+t),n.forEach((function(e){var t=document.createElement("option");!1!==e?t.setAttribute("value",e):t.setAttribute("selected","selected"),r.appendChild(t)})),e.appendChild(r)}g.DEFAULTS={},g.DEFAULTS={container:null,handlers:{clean:function(){var e=this,t=this.quill.getSelection();if(null!=t)if(0==t.length){var n=this.quill.getFormat();Object.keys(n).forEach((function(t){null!=c.default.query(t,c.default.Scope.INLINE)&&e.quill.format(t,!1)}))}else this.quill.removeFormat(t,l.default.sources.USER)},direction:function(e){var t=this.quill.getFormat()["align"];"rtl"===e&&null==t?this.quill.format("align","right",l.default.sources.USER):e||"right"!==t||this.quill.format("align",!1,l.default.sources.USER),this.quill.format("direction",e,l.default.sources.USER)},indent:function(e){var t=this.quill.getSelection(),n=this.quill.getFormat(t),r=parseInt(n.indent||0);if("+1"===e||"-1"===e){var i="+1"===e?1:-1;"rtl"===n.direction&&(i*=-1),this.quill.format("indent",r+i,l.default.sources.USER)}},link:function(e){!0===e&&(e=prompt("Enter link URL:")),this.quill.format("link",e,l.default.sources.USER)},list:function(e){var t=this.quill.getSelection(),n=this.quill.getFormat(t);"check"===e?"checked"===n["list"]||"unchecked"===n["list"]?this.quill.format("list",!1,l.default.sources.USER):this.quill.format("list","unchecked",l.default.sources.USER):this.quill.format("list",e,l.default.sources.USER)}}},t.default=g,t.addControls=A},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polyline class="ql-even ql-stroke" points="5 7 3 9 5 11"></polyline> <polyline class="ql-even ql-stroke" points="13 7 15 9 13 11"></polyline> <line class=ql-stroke x1=10 x2=8 y1=5 y2=13></line> </svg>'},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(28),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(e,n){c(this,t);var r=u(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.label.innerHTML=n,r.container.classList.add("ql-color-picker"),[].slice.call(r.container.querySelectorAll(".ql-picker-item"),0,7).forEach((function(e){e.classList.add("ql-primary")})),r}return l(t,e),r(t,[{key:"buildItem",value:function(e){var n=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"buildItem",this).call(this,e);return n.style.backgroundColor=e.getAttribute("value")||"",n}},{key:"selectItem",value:function(e,n){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"selectItem",this).call(this,e,n);var r=this.label.querySelector(".ql-color-label"),o=e&&e.getAttribute("data-value")||"";r&&("line"===r.tagName?r.style.stroke=o:r.style.fill=o)}}]),t}(a.default);t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(28),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(e,n){c(this,t);var r=u(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.container.classList.add("ql-icon-picker"),[].forEach.call(r.container.querySelectorAll(".ql-picker-item"),(function(e){e.innerHTML=n[e.getAttribute("data-value")||""]})),r.defaultItem=r.container.querySelector(".ql-selected"),r.selectItem(r.defaultItem),r}return l(t,e),r(t,[{key:"selectItem",value:function(e,n){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"selectItem",this).call(this,e,n),e=e||this.defaultItem,this.label.innerHTML=e.innerHTML}}]),t}(a.default);t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var o=function(){function e(t,n){var r=this;i(this,e),this.quill=t,this.boundsContainer=n||document.body,this.root=t.addContainer("ql-tooltip"),this.root.innerHTML=this.constructor.TEMPLATE,this.quill.root===this.quill.scrollingContainer&&this.quill.root.addEventListener("scroll",(function(){r.root.style.marginTop=-1*r.quill.root.scrollTop+"px"})),this.hide()}return r(e,[{key:"hide",value:function(){this.root.classList.add("ql-hidden")}},{key:"position",value:function(e){var t=e.left+e.width/2-this.root.offsetWidth/2,n=e.bottom+this.quill.root.scrollTop;this.root.style.left=t+"px",this.root.style.top=n+"px",this.root.classList.remove("ql-flip");var r=this.boundsContainer.getBoundingClientRect(),i=this.root.getBoundingClientRect(),o=0;if(i.right>r.right&&(o=r.right-i.right,this.root.style.left=t+o+"px"),i.left<r.left&&(o=r.left-i.left,this.root.style.left=t+o+"px"),i.bottom>r.bottom){var a=i.bottom-i.top,s=e.bottom-e.top+a;this.root.style.top=n-s+"px",this.root.classList.add("ql-flip")}return o}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),e}();t.default=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(3),s=v(a),c=n(8),u=v(c),l=n(43),d=v(l),f=n(27),p=v(f),h=n(15),m=n(41),b=v(m);function v(e){return e&&e.__esModule?e:{default:e}}function y(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function M(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function _(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var g=[[{header:["1","2","3",!1]}],["bold","italic","underline","link"],[{list:"ordered"},{list:"bullet"}],["clean"]],w=function(e){function t(e,n){y(this,t),null!=n.modules.toolbar&&null==n.modules.toolbar.container&&(n.modules.toolbar.container=g);var r=M(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.quill.container.classList.add("ql-snow"),r}return _(t,e),o(t,[{key:"extendToolbar",value:function(e){e.container.classList.add("ql-snow"),this.buildButtons([].slice.call(e.container.querySelectorAll("button")),b.default),this.buildPickers([].slice.call(e.container.querySelectorAll("select")),b.default),this.tooltip=new A(this.quill,this.options.bounds),e.container.querySelector(".ql-link")&&this.quill.keyboard.addBinding({key:"K",shortKey:!0},(function(t,n){e.handlers["link"].call(e,!n.format.link)}))}}]),t}(d.default);w.DEFAULTS=(0,s.default)(!0,{},d.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(e){if(e){var t=this.quill.getSelection();if(null==t||0==t.length)return;var n=this.quill.getText(t);/^\S+@\S+\.\S+$/.test(n)&&0!==n.indexOf("mailto:")&&(n="mailto:"+n);var r=this.quill.theme.tooltip;r.edit("link",n)}else this.quill.format("link",!1)}}}}});var A=function(e){function t(e,n){y(this,t);var r=M(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.preview=r.root.querySelector("a.ql-preview"),r}return _(t,e),o(t,[{key:"listen",value:function(){var e=this;i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"listen",this).call(this),this.root.querySelector("a.ql-action").addEventListener("click",(function(t){e.root.classList.contains("ql-editing")?e.save():e.edit("link",e.preview.textContent),t.preventDefault()})),this.root.querySelector("a.ql-remove").addEventListener("click",(function(t){if(null!=e.linkRange){var n=e.linkRange;e.restoreFocus(),e.quill.formatText(n,"link",!1,u.default.sources.USER),delete e.linkRange}t.preventDefault(),e.hide()})),this.quill.on(u.default.events.SELECTION_CHANGE,(function(t,n,i){if(null!=t){if(0===t.length&&i===u.default.sources.USER){var o=e.quill.scroll.descendant(p.default,t.index),a=r(o,2),s=a[0],c=a[1];if(null!=s){e.linkRange=new h.Range(t.index-c,s.length());var l=p.default.formats(s.domNode);return e.preview.textContent=l,e.preview.setAttribute("href",l),e.show(),void e.position(e.quill.getBounds(e.linkRange))}}else delete e.linkRange;e.hide()}}))}},{key:"show",value:function(){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"show",this).call(this),this.root.removeAttribute("data-mode")}}]),t}(l.BaseTooltip);A.TEMPLATE=['<a class="ql-preview" rel="noopener noreferrer" target="_blank" href="about:blank"></a>','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-action"></a>','<a class="ql-remove"></a>'].join(""),t.default=w},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(29),i=ne(r),o=n(36),a=n(38),s=n(64),c=n(65),u=ne(c),l=n(66),d=ne(l),f=n(67),p=ne(f),h=n(37),m=n(26),b=n(39),v=n(40),y=n(56),M=ne(y),_=n(68),g=ne(_),w=n(27),A=ne(w),L=n(69),O=ne(L),T=n(70),S=ne(T),k=n(71),x=ne(k),z=n(72),D=ne(z),N=n(73),C=ne(N),E=n(13),$=ne(E),P=n(74),j=ne(P),Y=n(75),q=ne(Y),W=n(57),B=ne(W),R=n(41),I=ne(R),H=n(28),F=ne(H),X=n(59),U=ne(X),V=n(60),G=ne(V),K=n(61),J=ne(K),Q=n(108),Z=ne(Q),ee=n(62),te=ne(ee);function ne(e){return e&&e.__esModule?e:{default:e}}i.default.register({"attributors/attribute/direction":a.DirectionAttribute,"attributors/class/align":o.AlignClass,"attributors/class/background":h.BackgroundClass,"attributors/class/color":m.ColorClass,"attributors/class/direction":a.DirectionClass,"attributors/class/font":b.FontClass,"attributors/class/size":v.SizeClass,"attributors/style/align":o.AlignStyle,"attributors/style/background":h.BackgroundStyle,"attributors/style/color":m.ColorStyle,"attributors/style/direction":a.DirectionStyle,"attributors/style/font":b.FontStyle,"attributors/style/size":v.SizeStyle},!0),i.default.register({"formats/align":o.AlignClass,"formats/direction":a.DirectionClass,"formats/indent":s.IndentClass,"formats/background":h.BackgroundStyle,"formats/color":m.ColorStyle,"formats/font":b.FontClass,"formats/size":v.SizeClass,"formats/blockquote":u.default,"formats/code-block":$.default,"formats/header":d.default,"formats/list":p.default,"formats/bold":M.default,"formats/code":E.Code,"formats/italic":g.default,"formats/link":A.default,"formats/script":O.default,"formats/strike":S.default,"formats/underline":x.default,"formats/image":D.default,"formats/video":C.default,"formats/list/item":f.ListItem,"modules/formula":j.default,"modules/syntax":q.default,"modules/toolbar":B.default,"themes/bubble":Z.default,"themes/snow":te.default,"ui/icons":I.default,"ui/picker":F.default,"ui/icon-picker":G.default,"ui/color-picker":U.default,"ui/tooltip":J.default},!0),t.default=i.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.IndentClass=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"add",value:function(e,n){if("+1"===n||"-1"===n){var r=this.value(e)||0;n="+1"===n?r+1:r-1}return 0===n?(this.remove(e),!0):i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"add",this).call(this,e,n)}},{key:"canAdd",value:function(e,n){return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"canAdd",this).call(this,e,n)||i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"canAdd",this).call(this,e,parseInt(n))}},{key:"value",value:function(e){return parseInt(i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"value",this).call(this,e))||void 0}}]),t}(a.default.Attributor.Class),f=new d("indent","ql-indent",{scope:a.default.Scope.BLOCK,whitelist:[1,2,3,4,5,6,7,8]});t.IndentClass=f},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(4),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default);u.blotName="blockquote",u.tagName="blockquote",t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=n(4),o=a(i);function a(e){return e&&e.__esModule?e:{default:e}}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function c(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function u(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var l=function(e){function t(){return s(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return u(t,e),r(t,null,[{key:"formats",value:function(e){return this.tagName.indexOf(e.tagName)+1}}]),t}(o.default);l.blotName="header",l.tagName=["H1","H2","H3","H4","H5","H6"],t.default=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.ListItem=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=d(o),s=n(4),c=d(s),u=n(25),l=d(u);function d(e){return e&&e.__esModule?e:{default:e}}function f(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function p(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function h(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function m(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var b=function(e){function t(){return p(this,t),h(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return m(t,e),r(t,[{key:"format",value:function(e,n){e!==v.blotName||n?i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n):this.replaceWith(a.default.create(this.statics.scope))}},{key:"remove",value:function(){null==this.prev&&null==this.next?this.parent.remove():i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"remove",this).call(this)}},{key:"replaceWith",value:function(e,n){return this.parent.isolate(this.offset(this.parent),this.length()),e===this.parent.statics.blotName?(this.parent.replaceWith(e,n),this):(this.parent.unwrap(),i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replaceWith",this).call(this,e,n))}}],[{key:"formats",value:function(e){return e.tagName===this.tagName?void 0:i(t.__proto__||Object.getPrototypeOf(t),"formats",this).call(this,e)}}]),t}(c.default);b.blotName="list-item",b.tagName="LI";var v=function(e){function t(e){p(this,t);var n=h(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e)),r=function(t){if(t.target.parentNode===e){var r=n.statics.formats(e),i=a.default.find(t.target);"checked"===r?i.format("list","unchecked"):"unchecked"===r&&i.format("list","checked")}};return e.addEventListener("touchstart",r),e.addEventListener("mousedown",r),n}return m(t,e),r(t,null,[{key:"create",value:function(e){var n="ordered"===e?"OL":"UL",r=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,n);return"checked"!==e&&"unchecked"!==e||r.setAttribute("data-checked","checked"===e),r}},{key:"formats",value:function(e){return"OL"===e.tagName?"ordered":"UL"===e.tagName?e.hasAttribute("data-checked")?"true"===e.getAttribute("data-checked")?"checked":"unchecked":"bullet":void 0}}]),r(t,[{key:"format",value:function(e,t){this.children.length>0&&this.children.tail.format(e,t)}},{key:"formats",value:function(){return f({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(e,n){if(e instanceof b)i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertBefore",this).call(this,e,n);else{var r=null==n?this.length():n.offset(this),o=this.split(r);o.parent.insertBefore(e,o)}}},{key:"optimize",value:function(e){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&n.domNode.tagName===this.domNode.tagName&&n.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(n.moveChildren(this),n.remove())}},{key:"replace",value:function(e){if(e.statics.blotName!==this.statics.blotName){var n=a.default.create(this.statics.defaultChild);e.moveChildren(n),this.appendChild(n)}i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replace",this).call(this,e)}}]),t}(l.default);v.blotName="list",v.scope=a.default.Scope.BLOCK_BLOT,v.tagName=["OL","UL"],v.defaultChild="list-item",v.allowedChildren=[b],t.ListItem=b,t.default=v},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(56),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default);u.blotName="italic",u.tagName=["EM","I"],t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(6),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,null,[{key:"create",value:function(e){return"super"===e?document.createElement("sup"):"sub"===e?document.createElement("sub"):i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e)}},{key:"formats",value:function(e){return"SUB"===e.tagName?"sub":"SUP"===e.tagName?"super":void 0}}]),t}(a.default);d.blotName="script",d.tagName=["SUB","SUP"],t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(6),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default);u.blotName="strike",u.tagName="S",t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(6),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default);u.blotName="underline",u.tagName="U",t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=c(o),s=n(27);function c(e){return e&&e.__esModule?e:{default:e}}function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function d(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var f=["alt","height","width"],p=function(e){function t(){return u(this,t),l(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return d(t,e),r(t,[{key:"format",value:function(e,n){f.indexOf(e)>-1?n?this.domNode.setAttribute(e,n):this.domNode.removeAttribute(e):i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n)}}],[{key:"create",value:function(e){var n=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return"string"===typeof e&&n.setAttribute("src",this.sanitize(e)),n}},{key:"formats",value:function(e){return f.reduce((function(t,n){return e.hasAttribute(n)&&(t[n]=e.getAttribute(n)),t}),{})}},{key:"match",value:function(e){return/\.(jpe?g|gif|png)$/.test(e)||/^data:image\/.+;base64/.test(e)}},{key:"sanitize",value:function(e){return(0,s.sanitize)(e,["http","https","data"])?e:"//:0"}},{key:"value",value:function(e){return e.getAttribute("src")}}]),t}(a.default.Embed);p.blotName="image",p.tagName="IMG",t.default=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(4),a=n(27),s=c(a);function c(e){return e&&e.__esModule?e:{default:e}}function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function d(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var f=["height","width"],p=function(e){function t(){return u(this,t),l(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return d(t,e),r(t,[{key:"format",value:function(e,n){f.indexOf(e)>-1?n?this.domNode.setAttribute(e,n):this.domNode.removeAttribute(e):i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n)}}],[{key:"create",value:function(e){var n=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return n.setAttribute("frameborder","0"),n.setAttribute("allowfullscreen",!0),n.setAttribute("src",this.sanitize(e)),n}},{key:"formats",value:function(e){return f.reduce((function(t,n){return e.hasAttribute(n)&&(t[n]=e.getAttribute(n)),t}),{})}},{key:"sanitize",value:function(e){return s.default.sanitize(e)}},{key:"value",value:function(e){return e.getAttribute("src")}}]),t}(o.BlockEmbed);p.blotName="video",p.className="ql-video",p.tagName="IFRAME",t.default=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.FormulaBlot=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(35),a=d(o),s=n(5),c=d(s),u=n(9),l=d(u);function d(e){return e&&e.__esModule?e:{default:e}}function f(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function p(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function h(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var m=function(e){function t(){return f(this,t),p(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return h(t,e),r(t,null,[{key:"create",value:function(e){var n=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return"string"===typeof e&&(window.katex.render(e,n,{throwOnError:!1,errorColor:"#f00"}),n.setAttribute("data-value",e)),n}},{key:"value",value:function(e){return e.getAttribute("data-value")}}]),t}(a.default);m.blotName="formula",m.className="ql-formula",m.tagName="SPAN";var b=function(e){function t(){f(this,t);var e=p(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));if(null==window.katex)throw new Error("Formula module requires KaTeX.");return e}return h(t,e),r(t,null,[{key:"register",value:function(){c.default.register(m,!0)}}]),t}(l.default);t.FormulaBlot=m,t.default=b},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.CodeToken=t.CodeBlock=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=p(o),s=n(5),c=p(s),u=n(9),l=p(u),d=n(13),f=p(d);function p(e){return e&&e.__esModule?e:{default:e}}function h(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function m(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function b(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var v=function(e){function t(){return h(this,t),m(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return b(t,e),r(t,[{key:"replaceWith",value:function(e){this.domNode.textContent=this.domNode.textContent,this.attach(),i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replaceWith",this).call(this,e)}},{key:"highlight",value:function(e){var t=this.domNode.textContent;this.cachedText!==t&&((t.trim().length>0||null==this.cachedText)&&(this.domNode.innerHTML=e(t),this.domNode.normalize(),this.attach()),this.cachedText=t)}}]),t}(f.default);v.className="ql-syntax";var y=new a.default.Attributor.Class("token","hljs",{scope:a.default.Scope.INLINE}),M=function(e){function t(e,n){h(this,t);var r=m(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if("function"!==typeof r.options.highlight)throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var i=null;return r.quill.on(c.default.events.SCROLL_OPTIMIZE,(function(){clearTimeout(i),i=setTimeout((function(){r.highlight(),i=null}),r.options.interval)})),r.highlight(),r}return b(t,e),r(t,null,[{key:"register",value:function(){c.default.register(y,!0),c.default.register(v,!0)}}]),r(t,[{key:"highlight",value:function(){var e=this;if(!this.quill.selection.composing){this.quill.update(c.default.sources.USER);var t=this.quill.getSelection();this.quill.scroll.descendants(v).forEach((function(t){t.highlight(e.options.highlight)})),this.quill.update(c.default.sources.SILENT),null!=t&&this.quill.setSelection(t,c.default.sources.SILENT)}}}]),t}(l.default);M.DEFAULTS={highlight:function(){return null==window.hljs?null:function(e){var t=window.hljs.highlightAuto(e);return t.value}}(),interval:1e3},t.CodeBlock=v,t.CodeToken=y,t.default=M},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=13 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=9 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=14 x2=4 y1=14 y2=14></line> <line class=ql-stroke x1=12 x2=6 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=5 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=9 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=3 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=3 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <g class="ql-fill ql-color-label"> <polygon points="6 6.868 6 6 5 6 5 7 5.942 7 6 6.868"></polygon> <rect height=1 width=1 x=4 y=4></rect> <polygon points="6.817 5 6 5 6 6 6.38 6 6.817 5"></polygon> <rect height=1 width=1 x=2 y=6></rect> <rect height=1 width=1 x=3 y=5></rect> <rect height=1 width=1 x=4 y=7></rect> <polygon points="4 11.439 4 11 3 11 3 12 3.755 12 4 11.439"></polygon> <rect height=1 width=1 x=2 y=12></rect> <rect height=1 width=1 x=2 y=9></rect> <rect height=1 width=1 x=2 y=15></rect> <polygon points="4.63 10 4 10 4 11 4.192 11 4.63 10"></polygon> <rect height=1 width=1 x=3 y=8></rect> <path d=M10.832,4.2L11,4.582V4H10.708A1.948,1.948,0,0,1,10.832,4.2Z></path> <path d=M7,4.582L7.168,4.2A1.929,1.929,0,0,1,7.292,4H7V4.582Z></path> <path d=M8,13H7.683l-0.351.8a1.933,1.933,0,0,1-.124.2H8V13Z></path> <rect height=1 width=1 x=12 y=2></rect> <rect height=1 width=1 x=11 y=3></rect> <path d=M9,3H8V3.282A1.985,1.985,0,0,1,9,3Z></path> <rect height=1 width=1 x=2 y=3></rect> <rect height=1 width=1 x=6 y=2></rect> <rect height=1 width=1 x=3 y=2></rect> <rect height=1 width=1 x=5 y=3></rect> <rect height=1 width=1 x=9 y=2></rect> <rect height=1 width=1 x=15 y=14></rect> <polygon points="13.447 10.174 13.469 10.225 13.472 10.232 13.808 11 14 11 14 10 13.37 10 13.447 10.174"></polygon> <rect height=1 width=1 x=13 y=7></rect> <rect height=1 width=1 x=15 y=5></rect> <rect height=1 width=1 x=14 y=6></rect> <rect height=1 width=1 x=15 y=8></rect> <rect height=1 width=1 x=14 y=9></rect> <path d=M3.775,14H3v1H4V14.314A1.97,1.97,0,0,1,3.775,14Z></path> <rect height=1 width=1 x=14 y=3></rect> <polygon points="12 6.868 12 6 11.62 6 12 6.868"></polygon> <rect height=1 width=1 x=15 y=2></rect> <rect height=1 width=1 x=12 y=5></rect> <rect height=1 width=1 x=13 y=4></rect> <polygon points="12.933 9 13 9 13 8 12.495 8 12.933 9"></polygon> <rect height=1 width=1 x=9 y=14></rect> <rect height=1 width=1 x=8 y=15></rect> <path d=M6,14.926V15H7V14.316A1.993,1.993,0,0,1,6,14.926Z></path> <rect height=1 width=1 x=5 y=15></rect> <path d=M10.668,13.8L10.317,13H10v1h0.792A1.947,1.947,0,0,1,10.668,13.8Z></path> <rect height=1 width=1 x=11 y=15></rect> <path d=M14.332,12.2a1.99,1.99,0,0,1,.166.8H15V12H14.245Z></path> <rect height=1 width=1 x=14 y=15></rect> <rect height=1 width=1 x=15 y=11></rect> </g> <polyline class=ql-stroke points="5.5 13 9 5 12.5 13"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=11 y2=11></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <rect class="ql-fill ql-stroke" height=3 width=3 x=4 y=5></rect> <rect class="ql-fill ql-stroke" height=3 width=3 x=11 y=5></rect> <path class="ql-even ql-fill ql-stroke" d=M7,8c0,4.031-3,5-3,5></path> <path class="ql-even ql-fill ql-stroke" d=M14,8c0,4.031-3,5-3,5></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,4H9.5A2.5,2.5,0,0,1,12,6.5v0A2.5,2.5,0,0,1,9.5,9H5A0,0,0,0,1,5,9V4A0,0,0,0,1,5,4Z></path> <path class=ql-stroke d=M5,9h5.5A2.5,2.5,0,0,1,13,11.5v0A2.5,2.5,0,0,1,10.5,14H5a0,0,0,0,1,0,0V9A0,0,0,0,1,5,9Z></path> </svg>'},function(e,t){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=5 x2=13 y1=3 y2=3></line> <line class=ql-stroke x1=6 x2=9.35 y1=12 y2=3></line> <line class=ql-stroke x1=11 x2=15 y1=11 y2=15></line> <line class=ql-stroke x1=15 x2=11 y1=11 y2=15></line> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=7 x=2 y=14></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-color-label ql-stroke ql-transparent" x1=3 x2=15 y1=15 y2=15></line> <polyline class=ql-stroke points="5.5 11 9 3 12.5 11"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=9 y2=9></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="3 11 5 9 3 7 3 11"></polygon> <line class="ql-stroke ql-fill" x1=15 x2=11 y1=4 y2=4></line> <path class=ql-fill d=M11,3a3,3,0,0,0,0,6h1V3H11Z></path> <rect class=ql-fill height=11 width=1 x=11 y=4></rect> <rect class=ql-fill height=11 width=1 x=13 y=4></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="15 12 13 10 15 8 15 12"></polygon> <line class="ql-stroke ql-fill" x1=9 x2=5 y1=4 y2=4></line> <path class=ql-fill d=M5,3A3,3,0,0,0,5,9H6V3H5Z></path> <rect class=ql-fill height=11 width=1 x=5 y=4></rect> <rect class=ql-fill height=11 width=1 x=7 y=4></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M14,16H4a1,1,0,0,1,0-2H14A1,1,0,0,1,14,16Z /> <path class=ql-fill d=M14,4H4A1,1,0,0,1,4,2H14A1,1,0,0,1,14,4Z /> <rect class=ql-fill x=3 y=6 width=12 height=6 rx=1 ry=1 /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M13,16H5a1,1,0,0,1,0-2h8A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H5A1,1,0,0,1,5,2h8A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=2 y=6 width=14 height=6 rx=1 ry=1 /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15,8H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,8Z /> <path class=ql-fill d=M15,12H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,12Z /> <path class=ql-fill d=M15,16H5a1,1,0,0,1,0-2H15A1,1,0,0,1,15,16Z /> <path class=ql-fill d=M15,4H5A1,1,0,0,1,5,2H15A1,1,0,0,1,15,4Z /> <rect class=ql-fill x=2 y=6 width=8 height=6 rx=1 ry=1 /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M5,8H3A1,1,0,0,1,3,6H5A1,1,0,0,1,5,8Z /> <path class=ql-fill d=M5,12H3a1,1,0,0,1,0-2H5A1,1,0,0,1,5,12Z /> <path class=ql-fill d=M13,16H3a1,1,0,0,1,0-2H13A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H3A1,1,0,0,1,3,2H13A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=8 y=6 width=8 height=6 rx=1 ry=1 transform="translate(24 18) rotate(-180)"/> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M11.759,2.482a2.561,2.561,0,0,0-3.53.607A7.656,7.656,0,0,0,6.8,6.2C6.109,9.188,5.275,14.677,4.15,14.927a1.545,1.545,0,0,0-1.3-.933A0.922,0.922,0,0,0,2,15.036S1.954,16,4.119,16s3.091-2.691,3.7-5.553c0.177-.826.36-1.726,0.554-2.6L8.775,6.2c0.381-1.421.807-2.521,1.306-2.676a1.014,1.014,0,0,0,1.02.56A0.966,0.966,0,0,0,11.759,2.482Z></path> <rect class=ql-fill height=1.6 rx=0.8 ry=0.8 width=5 x=5.15 y=6.2></rect> <path class=ql-fill d=M13.663,12.027a1.662,1.662,0,0,1,.266-0.276q0.193,0.069.456,0.138a2.1,2.1,0,0,0,.535.069,1.075,1.075,0,0,0,.767-0.3,1.044,1.044,0,0,0,.314-0.8,0.84,0.84,0,0,0-.238-0.619,0.8,0.8,0,0,0-.594-0.239,1.154,1.154,0,0,0-.781.3,4.607,4.607,0,0,0-.781,1q-0.091.15-.218,0.346l-0.246.38c-0.068-.288-0.137-0.582-0.212-0.885-0.459-1.847-2.494-.984-2.941-0.8-0.482.2-.353,0.647-0.094,0.529a0.869,0.869,0,0,1,1.281.585c0.217,0.751.377,1.436,0.527,2.038a5.688,5.688,0,0,1-.362.467,2.69,2.69,0,0,1-.264.271q-0.221-.08-0.471-0.147a2.029,2.029,0,0,0-.522-0.066,1.079,1.079,0,0,0-.768.3A1.058,1.058,0,0,0,9,15.131a0.82,0.82,0,0,0,.832.852,1.134,1.134,0,0,0,.787-0.3,5.11,5.11,0,0,0,.776-0.993q0.141-.219.215-0.34c0.046-.076.122-0.194,0.223-0.346a2.786,2.786,0,0,0,.918,1.726,2.582,2.582,0,0,0,2.376-.185c0.317-.181.212-0.565,0-0.494A0.807,0.807,0,0,1,14.176,15a5.159,5.159,0,0,1-.913-2.446l0,0Q13.487,12.24,13.663,12.027Z></path> </svg>'},function(e,t){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M10,4V14a1,1,0,0,1-2,0V10H3v4a1,1,0,0,1-2,0V4A1,1,0,0,1,3,4V8H8V4a1,1,0,0,1,2,0Zm6.06787,9.209H14.98975V7.59863a.54085.54085,0,0,0-.605-.60547h-.62744a1.01119,1.01119,0,0,0-.748.29688L11.645,8.56641a.5435.5435,0,0,0-.022.8584l.28613.30762a.53861.53861,0,0,0,.84717.0332l.09912-.08789a1.2137,1.2137,0,0,0,.2417-.35254h.02246s-.01123.30859-.01123.60547V13.209H12.041a.54085.54085,0,0,0-.605.60547v.43945a.54085.54085,0,0,0,.605.60547h4.02686a.54085.54085,0,0,0,.605-.60547v-.43945A.54085.54085,0,0,0,16.06787,13.209Z /> </svg>'},function(e,t){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M16.73975,13.81445v.43945a.54085.54085,0,0,1-.605.60547H11.855a.58392.58392,0,0,1-.64893-.60547V14.0127c0-2.90527,3.39941-3.42187,3.39941-4.55469a.77675.77675,0,0,0-.84717-.78125,1.17684,1.17684,0,0,0-.83594.38477c-.2749.26367-.561.374-.85791.13184l-.4292-.34082c-.30811-.24219-.38525-.51758-.1543-.81445a2.97155,2.97155,0,0,1,2.45361-1.17676,2.45393,2.45393,0,0,1,2.68408,2.40918c0,2.45312-3.1792,2.92676-3.27832,3.93848h2.79443A.54085.54085,0,0,1,16.73975,13.81445ZM9,3A.99974.99974,0,0,0,8,4V8H3V4A1,1,0,0,0,1,4V14a1,1,0,0,0,2,0V10H8v4a1,1,0,0,0,2,0V4A.99974.99974,0,0,0,9,3Z /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=13 y1=4 y2=4></line> <line class=ql-stroke x1=5 x2=11 y1=14 y2=14></line> <line class=ql-stroke x1=8 x2=10 y1=14 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=10 width=12 x=3 y=4></rect> <circle class=ql-fill cx=6 cy=7 r=1></circle> <polyline class="ql-even ql-fill" points="5 12 5 11 7 9 8 10 11 7 13 9 13 12 5 12"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class="ql-fill ql-stroke" points="3 7 3 11 5 9 3 7"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="5 7 5 11 3 9 5 7"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=11 y1=7 y2=11></line> <path class="ql-even ql-stroke" d=M8.9,4.577a3.476,3.476,0,0,1,.36,4.679A3.476,3.476,0,0,1,4.577,8.9C3.185,7.5,2.035,6.4,4.217,4.217S7.5,3.185,8.9,4.577Z></path> <path class="ql-even ql-stroke" d=M13.423,9.1a3.476,3.476,0,0,0-4.679-.36,3.476,3.476,0,0,0,.36,4.679c1.392,1.392,2.5,2.542,4.679.36S14.815,10.5,13.423,9.1Z></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=7 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=7 x2=15 y1=14 y2=14></line> <line class="ql-stroke ql-thin" x1=2.5 x2=4.5 y1=5.5 y2=5.5></line> <path class=ql-fill d=M3.5,6A0.5,0.5,0,0,1,3,5.5V3.085l-0.276.138A0.5,0.5,0,0,1,2.053,3c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,4,2.5v3A0.5,0.5,0,0,1,3.5,6Z></path> <path class="ql-stroke ql-thin" d=M4.5,10.5h-2c0-.234,1.85-1.076,1.85-2.234A0.959,0.959,0,0,0,2.5,8.156></path> <path class="ql-stroke ql-thin" d=M2.5,14.846a0.959,0.959,0,0,0,1.85-.109A0.7,0.7,0,0,0,3.75,14a0.688,0.688,0,0,0,.6-0.736,0.959,0.959,0,0,0-1.85-.109></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=6 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=6 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=6 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=3 y1=4 y2=4></line> <line class=ql-stroke x1=3 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=3 y1=14 y2=14></line> </svg>'},function(e,t){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=9 x2=15 y1=4 y2=4></line> <polyline class=ql-stroke points="3 4 4 5 6 3"></polyline> <line class=ql-stroke x1=9 x2=15 y1=14 y2=14></line> <polyline class=ql-stroke points="3 14 4 15 6 13"></polyline> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="3 9 4 10 6 8"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,15H13.861a3.858,3.858,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.921,1.921,0,0,0,12.021,11.7a0.50013,0.50013,0,1,0,.957.291h0a0.914,0.914,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.076-1.16971,1.86982-1.93971,2.43082A1.45639,1.45639,0,0,0,12,15.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,15Z /> <path class=ql-fill d=M9.65,5.241a1,1,0,0,0-1.409.108L6,7.964,3.759,5.349A1,1,0,0,0,2.192,6.59178Q2.21541,6.6213,2.241,6.649L4.684,9.5,2.241,12.35A1,1,0,0,0,3.71,13.70722q0.02557-.02768.049-0.05722L6,11.036,8.241,13.65a1,1,0,1,0,1.567-1.24277Q9.78459,12.3777,9.759,12.35L7.316,9.5,9.759,6.651A1,1,0,0,0,9.65,5.241Z /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,7H13.861a4.015,4.015,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.922,1.922,0,0,0,12.021,3.7a0.5,0.5,0,1,0,.957.291,0.917,0.917,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.077-1.164,1.925-1.934,2.486A1.423,1.423,0,0,0,12,7.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,7Z /> <path class=ql-fill d=M9.651,5.241a1,1,0,0,0-1.41.108L6,7.964,3.759,5.349a1,1,0,1,0-1.519,1.3L4.683,9.5,2.241,12.35a1,1,0,1,0,1.519,1.3L6,11.036,8.241,13.65a1,1,0,0,0,1.519-1.3L7.317,9.5,9.759,6.651A1,1,0,0,0,9.651,5.241Z /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-stroke ql-thin" x1=15.5 x2=2.5 y1=8.5 y2=9.5></line> <path class=ql-fill d=M9.007,8C6.542,7.791,6,7.519,6,6.5,6,5.792,7.283,5,9,5c1.571,0,2.765.679,2.969,1.309a1,1,0,0,0,1.9-.617C13.356,4.106,11.354,3,9,3,6.2,3,4,4.538,4,6.5a3.2,3.2,0,0,0,.5,1.843Z></path> <path class=ql-fill d=M8.984,10C11.457,10.208,12,10.479,12,11.5c0,0.708-1.283,1.5-3,1.5-1.571,0-2.765-.679-2.969-1.309a1,1,0,1,0-1.9.617C4.644,13.894,6.646,15,9,15c2.8,0,5-1.538,5-3.5a3.2,3.2,0,0,0-.5-1.843Z></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,3V9a4.012,4.012,0,0,0,4,4H9a4.012,4.012,0,0,0,4-4V3></path> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=12 x=3 y=15></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=12 width=12 x=3 y=3></rect> <rect class=ql-fill height=12 width=1 x=5 y=3></rect> <rect class=ql-fill height=12 width=1 x=12 y=3></rect> <rect class=ql-fill height=2 width=8 x=5 y=8></rect> <rect class=ql-fill height=1 width=3 x=3 y=5></rect> <rect class=ql-fill height=1 width=3 x=3 y=7></rect> <rect class=ql-fill height=1 width=3 x=3 y=10></rect> <rect class=ql-fill height=1 width=3 x=3 y=12></rect> <rect class=ql-fill height=1 width=3 x=12 y=5></rect> <rect class=ql-fill height=1 width=3 x=12 y=7></rect> <rect class=ql-fill height=1 width=3 x=12 y=10></rect> <rect class=ql-fill height=1 width=3 x=12 y=12></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polygon class=ql-stroke points="7 11 9 13 11 11 7 11"></polygon> <polygon class=ql-stroke points="7 7 9 5 11 7 7 7"></polygon> </svg>'},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.BubbleTooltip=void 0;var r=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(3),a=h(o),s=n(8),c=h(s),u=n(43),l=h(u),d=n(15),f=n(41),p=h(f);function h(e){return e&&e.__esModule?e:{default:e}}function m(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function b(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function v(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var y=[["bold","italic","link"],[{header:1},{header:2},"blockquote"]],M=function(e){function t(e,n){m(this,t),null!=n.modules.toolbar&&null==n.modules.toolbar.container&&(n.modules.toolbar.container=y);var r=b(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.quill.container.classList.add("ql-bubble"),r}return v(t,e),i(t,[{key:"extendToolbar",value:function(e){this.tooltip=new _(this.quill,this.options.bounds),this.tooltip.root.appendChild(e.container),this.buildButtons([].slice.call(e.container.querySelectorAll("button")),p.default),this.buildPickers([].slice.call(e.container.querySelectorAll("select")),p.default)}}]),t}(l.default);M.DEFAULTS=(0,a.default)(!0,{},l.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(e){e?this.quill.theme.tooltip.edit():this.quill.format("link",!1)}}}}});var _=function(e){function t(e,n){m(this,t);var r=b(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.quill.on(c.default.events.EDITOR_CHANGE,(function(e,t,n,i){if(e===c.default.events.SELECTION_CHANGE)if(null!=t&&t.length>0&&i===c.default.sources.USER){r.show(),r.root.style.left="0px",r.root.style.width="",r.root.style.width=r.root.offsetWidth+"px";var o=r.quill.getLines(t.index,t.length);if(1===o.length)r.position(r.quill.getBounds(t));else{var a=o[o.length-1],s=r.quill.getIndex(a),u=Math.min(a.length()-1,t.index+t.length-s),l=r.quill.getBounds(new d.Range(s,u));r.position(l)}}else document.activeElement!==r.textbox&&r.quill.hasFocus()&&r.hide()})),r}return v(t,e),i(t,[{key:"listen",value:function(){var e=this;r(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",(function(){e.root.classList.remove("ql-editing")})),this.quill.on(c.default.events.SCROLL_OPTIMIZE,(function(){setTimeout((function(){if(!e.root.classList.contains("ql-hidden")){var t=e.quill.getSelection();null!=t&&e.position(e.quill.getBounds(t))}}),1)}))}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(e){var n=r(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"position",this).call(this,e),i=this.root.querySelector(".ql-tooltip-arrow");if(i.style.marginLeft="",0===n)return n;i.style.marginLeft=-1*n-i.offsetWidth/2+"px"}}]),t}(u.BaseTooltip);_.TEMPLATE=['<span class="ql-tooltip-arrow"></span>','<div class="ql-tooltip-editor">','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-close"></a>',"</div>"].join(""),t.BubbleTooltip=_,t.default=M},function(e,t,n){e.exports=n(63)}])["default"]}))}).call(this,n("1c35").Buffer)},9380:function(e,t,n){var r=n("2d7c"),i=n("9f74"),o=n("badf"),a=n("6747");function s(e,t){var n=a(e)?r:i;return n(e,o(t,3))}e.exports=s},"93ed":function(e,t,n){var r=n("42454");function i(e){var t=r(this,e)["delete"](e);return this.size-=t?1:0,t}e.exports=i},"944a":function(e,t,n){var r=n("746f");r("toStringTag")},"94ca":function(e,t,n){var r=n("d039"),i=/#|\.prototype\./,o=function(e,t){var n=s[a(e)];return n==u||n!=c&&("function"==typeof t?r(t):!!t)},a=o.normalize=function(e){return String(e).replace(i,".").toLowerCase()},s=o.data={},c=o.NATIVE="N",u=o.POLYFILL="P";e.exports=o},"950a":function(e,t,n){var r=n("30c9");function i(e,t){return function(n,i){if(null==n)return n;if(!r(n))return e(n,i);var o=n.length,a=t?o:-1,s=Object(n);while(t?a--:++a<o)if(!1===i(s[a],a,s))break;return n}}e.exports=i},9520:function(e,t,n){var r=n("3729"),i=n("1a8c"),o="[object AsyncFunction]",a="[object Function]",s="[object GeneratorFunction]",c="[object Proxy]";function u(e){if(!i(e))return!1;var t=r(e);return t==a||t==s||t==o||t==c}e.exports=u},"95ae":function(e,t,n){var r=n("100e"),i=n("9638"),o=n("9aff"),a=n("9934"),s=Object.prototype,c=s.hasOwnProperty,u=r((function(e,t){e=Object(e);var n=-1,r=t.length,u=r>2?t[2]:void 0;u&&o(t[0],t[1],u)&&(r=1);while(++n<r){var l=t[n],d=a(l),f=-1,p=d.length;while(++f<p){var h=d[f],m=e[h];(void 0===m||i(m,s[h])&&!c.call(e,h))&&(e[h]=l[h])}}return e}));e.exports=u},9638:function(e,t){function n(e,t){return e===t||e!==e&&t!==t}e.exports=n},"966f":function(e,t,n){var r=n("7e64"),i=n("c05f"),o=1,a=2;function s(e,t,n,s){var c=n.length,u=c,l=!s;if(null==e)return!u;e=Object(e);while(c--){var d=n[c];if(l&&d[2]?d[1]!==e[d[0]]:!(d[0]in e))return!1}while(++c<u){d=n[c];var f=d[0],p=e[f],h=d[1];if(l&&d[2]){if(void 0===p&&!(f in e))return!1}else{var m=new r;if(s)var b=s(p,h,f,e,t,m);if(!(void 0===b?i(h,p,o|a,s,m):b))return!1}}return!0}e.exports=s},"96cf":function(e,t,n){var r=function(e){"use strict";var t,n=Object.prototype,r=n.hasOwnProperty,i="function"===typeof Symbol?Symbol:{},o=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(N){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,o=Object.create(i.prototype),a=new x(r||[]);return o._invoke=O(e,n,a),o}function l(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(N){return{type:"throw",arg:N}}}e.wrap=u;var d="suspendedStart",f="suspendedYield",p="executing",h="completed",m={};function b(){}function v(){}function y(){}var M={};M[o]=function(){return this};var _=Object.getPrototypeOf,g=_&&_(_(z([])));g&&g!==n&&r.call(g,o)&&(M=g);var w=y.prototype=b.prototype=Object.create(M);function A(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function L(e,t){function n(i,o,a,s){var c=l(e[i],e,o);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"===typeof d&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(c.arg)}var i;function o(e,r){function o(){return new t((function(t,i){n(e,r,t,i)}))}return i=i?i.then(o,o):o()}this._invoke=o}function O(e,t,n){var r=d;return function(i,o){if(r===p)throw new Error("Generator is already running");if(r===h){if("throw"===i)throw o;return D()}n.method=i,n.arg=o;while(1){var a=n.delegate;if(a){var s=T(a,n);if(s){if(s===m)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===d)throw r=h,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=p;var c=l(e,t,n);if("normal"===c.type){if(r=n.done?h:f,c.arg===m)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(r=h,n.method="throw",n.arg=c.arg)}}}function T(e,n){var r=e.iterator[n.method];if(r===t){if(n.delegate=null,"throw"===n.method){if(e.iterator["return"]&&(n.method="return",n.arg=t,T(e,n),"throw"===n.method))return m;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return m}var i=l(r,e.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var o=i.arg;return o?o.done?(n[e.resultName]=o.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,m):o:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function S(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function k(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(S,this),this.reset(!0)}function z(e){if(e){var n=e[o];if(n)return n.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var i=-1,a=function n(){while(++i<e.length)if(r.call(e,i))return n.value=e[i],n.done=!1,n;return n.value=t,n.done=!0,n};return a.next=a}}return{next:D}}function D(){return{value:t,done:!0}}return v.prototype=w.constructor=y,y.constructor=v,v.displayName=c(y,s,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===v||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,y):(e.__proto__=y,c(e,s,"GeneratorFunction")),e.prototype=Object.create(w),e},e.awrap=function(e){return{__await:e}},A(L.prototype),L.prototype[a]=function(){return this},e.AsyncIterator=L,e.async=function(t,n,r,i,o){void 0===o&&(o=Promise);var a=new L(u(t,n,r,i),o);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},A(w),c(w,s,"Generator"),w[o]=function(){return this},w.toString=function(){return"[object Generator]"},e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){while(t.length){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=z,x.prototype={constructor:x,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(k),!e)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=t)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var n=this;function i(r,i){return s.type="throw",s.arg=e,n.next=r,i&&(n.method="next",n.arg=t),!!i}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return i("end");if(a.tryLoc<=this.prev){var c=r.call(a,"catchLoc"),u=r.call(a,"finallyLoc");if(c&&u){if(this.prev<a.catchLoc)return i(a.catchLoc,!0);if(this.prev<a.finallyLoc)return i(a.finallyLoc)}else if(c){if(this.prev<a.catchLoc)return i(a.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return i(a.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var o=i;break}}o&&("break"===e||"continue"===e)&&o.tryLoc<=t&&t<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=e,a.arg=t,o?(this.method="next",this.next=o.finallyLoc,m):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),m},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),k(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var i=r.arg;k(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={iterator:z(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),m}},e}(e.exports);try{regeneratorRuntime=r}catch(i){Function("r","regeneratorRuntime = r")(r)}},9767:function(e,t,n){"use strict";var r=n("23e7"),i=n("857a"),o=n("af03");r({target:"String",proto:!0,forced:o("fontcolor")},{fontcolor:function(e){return i(this,"font","color",e)}})},"97d3":function(e,t,n){var r=n("48a0"),i=n("30c9");function o(e,t){var n=-1,o=i(e)?Array(e.length):[];return r(e,(function(e,r,i){o[++n]=t(e,r,i)})),o}e.exports=o},9861:function(e,t,n){"use strict";n("e260");var r=n("23e7"),i=n("d066"),o=n("0d3b"),a=n("6eeb"),s=n("e2cc"),c=n("d44e"),u=n("9ed3"),l=n("69f3"),d=n("19aa"),f=n("5135"),p=n("0366"),h=n("f5df"),m=n("825a"),b=n("861d"),v=n("7c73"),y=n("5c6c"),M=n("9a1f"),_=n("35a1"),g=n("b622"),w=i("fetch"),A=i("Headers"),L=g("iterator"),O="URLSearchParams",T=O+"Iterator",S=l.set,k=l.getterFor(O),x=l.getterFor(T),z=/\+/g,D=Array(4),N=function(e){return D[e-1]||(D[e-1]=RegExp("((?:%[\\da-f]{2}){"+e+"})","gi"))},C=function(e){try{return decodeURIComponent(e)}catch(t){return e}},E=function(e){var t=e.replace(z," "),n=4;try{return decodeURIComponent(t)}catch(r){while(n)t=t.replace(N(n--),C);return t}},$=/[!'()~]|%20/g,P={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},j=function(e){return P[e]},Y=function(e){return encodeURIComponent(e).replace($,j)},q=function(e,t){if(t){var n,r,i=t.split("&"),o=0;while(o<i.length)n=i[o++],n.length&&(r=n.split("="),e.push({key:E(r.shift()),value:E(r.join("="))}))}},W=function(e){this.entries.length=0,q(this.entries,e)},B=function(e,t){if(e<t)throw TypeError("Not enough arguments")},R=u((function(e,t){S(this,{type:T,iterator:M(k(e).entries),kind:t})}),"Iterator",(function(){var e=x(this),t=e.kind,n=e.iterator.next(),r=n.value;return n.done||(n.value="keys"===t?r.key:"values"===t?r.value:[r.key,r.value]),n})),I=function(){d(this,I,O);var e,t,n,r,i,o,a,s,c,u=arguments.length>0?arguments[0]:void 0,l=this,p=[];if(S(l,{type:O,entries:p,updateURL:function(){},updateSearchParams:W}),void 0!==u)if(b(u))if(e=_(u),"function"===typeof e){t=e.call(u),n=t.next;while(!(r=n.call(t)).done){if(i=M(m(r.value)),o=i.next,(a=o.call(i)).done||(s=o.call(i)).done||!o.call(i).done)throw TypeError("Expected sequence with length 2");p.push({key:a.value+"",value:s.value+""})}}else for(c in u)f(u,c)&&p.push({key:c,value:u[c]+""});else q(p,"string"===typeof u?"?"===u.charAt(0)?u.slice(1):u:u+"")},H=I.prototype;s(H,{append:function(e,t){B(arguments.length,2);var n=k(this);n.entries.push({key:e+"",value:t+""}),n.updateURL()},delete:function(e){B(arguments.length,1);var t=k(this),n=t.entries,r=e+"",i=0;while(i<n.length)n[i].key===r?n.splice(i,1):i++;t.updateURL()},get:function(e){B(arguments.length,1);for(var t=k(this).entries,n=e+"",r=0;r<t.length;r++)if(t[r].key===n)return t[r].value;return null},getAll:function(e){B(arguments.length,1);for(var t=k(this).entries,n=e+"",r=[],i=0;i<t.length;i++)t[i].key===n&&r.push(t[i].value);return r},has:function(e){B(arguments.length,1);var t=k(this).entries,n=e+"",r=0;while(r<t.length)if(t[r++].key===n)return!0;return!1},set:function(e,t){B(arguments.length,1);for(var n,r=k(this),i=r.entries,o=!1,a=e+"",s=t+"",c=0;c<i.length;c++)n=i[c],n.key===a&&(o?i.splice(c--,1):(o=!0,n.value=s));o||i.push({key:a,value:s}),r.updateURL()},sort:function(){var e,t,n,r=k(this),i=r.entries,o=i.slice();for(i.length=0,n=0;n<o.length;n++){for(e=o[n],t=0;t<n;t++)if(i[t].key>e.key){i.splice(t,0,e);break}t===n&&i.push(e)}r.updateURL()},forEach:function(e){var t,n=k(this).entries,r=p(e,arguments.length>1?arguments[1]:void 0,3),i=0;while(i<n.length)t=n[i++],r(t.value,t.key,this)},keys:function(){return new R(this,"keys")},values:function(){return new R(this,"values")},entries:function(){return new R(this,"entries")}},{enumerable:!0}),a(H,L,H.entries),a(H,"toString",(function(){var e,t=k(this).entries,n=[],r=0;while(r<t.length)e=t[r++],n.push(Y(e.key)+"="+Y(e.value));return n.join("&")}),{enumerable:!0}),c(I,O),r({global:!0,forced:!o},{URLSearchParams:I}),o||"function"!=typeof w||"function"!=typeof A||r({global:!0,enumerable:!0,forced:!0},{fetch:function(e){var t,n,r,i=[e];return arguments.length>1&&(t=arguments[1],b(t)&&(n=t.body,h(n)===O&&(r=t.headers?new A(t.headers):new A,r.has("content-type")||r.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"),t=v(t,{body:y(0,String(n)),headers:y(0,r)}))),i.push(t)),w.apply(this,i)}}),e.exports={URLSearchParams:I,getState:k}},9911:function(e,t,n){"use strict";var r=n("23e7"),i=n("857a"),o=n("af03");r({target:"String",proto:!0,forced:o("link")},{link:function(e){return i(this,"a","href",e)}})},"991b":function(e,t,n){var r=n("5c69"),i=1/0;function o(e){var t=null==e?0:e.length;return t?r(e,i):[]}e.exports=o},9934:function(e,t,n){var r=n("6fcd"),i=n("41c3"),o=n("30c9");function a(e){return o(e)?r(e,!0):i(e)}e.exports=a},"99af":function(e,t,n){"use strict";var r=n("23e7"),i=n("d039"),o=n("e8b5"),a=n("861d"),s=n("7b0b"),c=n("50c4"),u=n("8418"),l=n("65f0"),d=n("1dde"),f=n("b622"),p=n("2d00"),h=f("isConcatSpreadable"),m=9007199254740991,b="Maximum allowed index exceeded",v=p>=51||!i((function(){var e=[];return e[h]=!1,e.concat()[0]!==e})),y=d("concat"),M=function(e){if(!a(e))return!1;var t=e[h];return void 0!==t?!!t:o(e)},_=!v||!y;r({target:"Array",proto:!0,forced:_},{concat:function(e){var t,n,r,i,o,a=s(this),d=l(a,0),f=0;for(t=-1,r=arguments.length;t<r;t++)if(o=-1===t?a:arguments[t],M(o)){if(i=c(o.length),f+i>m)throw TypeError(b);for(n=0;n<i;n++,f++)n in o&&u(d,f,o[n])}else{if(f>=m)throw TypeError(b);u(d,f++,o)}return d.length=f,d}})},"99cd":function(e,t){function n(e){return function(t,n,r){var i=-1,o=Object(t),a=r(t),s=a.length;while(s--){var c=a[e?s:++i];if(!1===n(o[c],c,o))break}return t}}e.exports=n},"99d3":function(e,t,n){(function(e){var r=n("585a"),i=t&&!t.nodeType&&t,o=i&&"object"==typeof e&&e&&!e.nodeType&&e,a=o&&o.exports===i,s=a&&r.process,c=function(){try{var e=o&&o.require&&o.require("util").types;return e||s&&s.binding&&s.binding("util")}catch(t){}}();e.exports=c}).call(this,n("62e4")(e))},"9a0c":function(e,t,n){var r=n("342f");e.exports=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(r)},"9a1f":function(e,t,n){var r=n("825a"),i=n("35a1");e.exports=function(e){var t=i(e);if("function"!=typeof t)throw TypeError(String(e)+" is not iterable");return r(t.call(e))}},"9a8c":function(e,t,n){"use strict";var r=n("ebb5"),i=n("145e"),o=r.aTypedArray,a=r.exportTypedArrayMethod;a("copyWithin",(function(e,t){return i.call(o(this),e,t,arguments.length>2?arguments[2]:void 0)}))},"9aff":function(e,t,n){var r=n("9638"),i=n("30c9"),o=n("c098"),a=n("1a8c");function s(e,t,n){if(!a(n))return!1;var s=typeof t;return!!("number"==s?i(n)&&o(t,n.length):"string"==s&&t in n)&&r(n[t],e)}e.exports=s},"9b02":function(e,t,n){var r=n("656b");function i(e,t,n){var i=null==e?void 0:r(e,t);return void 0===i?n:i}e.exports=i},"9bdd":function(e,t,n){var r=n("825a");e.exports=function(e,t,n,i){try{return i?t(r(n)[0],n[1]):t(n)}catch(a){var o=e["return"];throw void 0!==o&&r(o.call(e)),a}}},"9bf2":function(e,t,n){var r=n("83ab"),i=n("0cfb"),o=n("825a"),a=n("c04e"),s=Object.defineProperty;t.f=r?s:function(e,t,n){if(o(e),t=a(t,!0),o(n),i)try{return s(e,t,n)}catch(r){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},"9c30":function(e,t,n){
41
  /*!
42
  * vue-material v1.0.0-beta-13
43
  * Made with <3 by marcosmoura 2020
37
  * Copyright (c) 2014, Jason Chen
38
  * Copyright (c) 2013, salesforce.com
39
  */
40
+ (function(t,n){e.exports=n()})("undefined"!==typeof self&&self,(function(){return 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}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get: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=109)}([function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(17),i=n(18),o=n(19),a=n(45),s=n(46),c=n(47),u=n(48),l=n(49),d=n(12),f=n(32),p=n(33),h=n(31),m=n(1),b={Scope:m.Scope,create:m.create,find:m.find,query:m.query,register:m.register,Container:r.default,Format:i.default,Leaf:o.default,Embed:u.default,Scroll:a.default,Block:c.default,Inline:s.default,Text:l.default,Attributor:{Attribute:d.default,Class:f.default,Style:p.default,Store:h.default}};t.default=b},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=function(e){function t(t){var n=this;return t="[Parchment] "+t,n=e.call(this,t)||this,n.message=t,n.name=n.constructor.name,n}return r(t,e),t}(Error);t.ParchmentError=i;var o,a={},s={},c={},u={};function l(e,t){var n=f(e);if(null==n)throw new i("Unable to create "+e+" blot");var r=n,o=e instanceof Node||e["nodeType"]===Node.TEXT_NODE?e:r.create(t);return new r(o,t)}function d(e,n){return void 0===n&&(n=!1),null==e?null:null!=e[t.DATA_KEY]?e[t.DATA_KEY].blot:n?d(e.parentNode,n):null}function f(e,t){var n;if(void 0===t&&(t=o.ANY),"string"===typeof e)n=u[e]||a[e];else if(e instanceof Text||e["nodeType"]===Node.TEXT_NODE)n=u["text"];else if("number"===typeof e)e&o.LEVEL&o.BLOCK?n=u["block"]:e&o.LEVEL&o.INLINE&&(n=u["inline"]);else if(e instanceof HTMLElement){var r=(e.getAttribute("class")||"").split(/\s+/);for(var i in r)if(n=s[r[i]],n)break;n=n||c[e.tagName]}return null==n?null:t&o.LEVEL&n.scope&&t&o.TYPE&n.scope?n:null}function p(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];if(e.length>1)return e.map((function(e){return p(e)}));var n=e[0];if("string"!==typeof n.blotName&&"string"!==typeof n.attrName)throw new i("Invalid definition");if("abstract"===n.blotName)throw new i("Cannot register abstract class");if(u[n.blotName||n.attrName]=n,"string"===typeof n.keyName)a[n.keyName]=n;else if(null!=n.className&&(s[n.className]=n),null!=n.tagName){Array.isArray(n.tagName)?n.tagName=n.tagName.map((function(e){return e.toUpperCase()})):n.tagName=n.tagName.toUpperCase();var r=Array.isArray(n.tagName)?n.tagName:[n.tagName];r.forEach((function(e){null!=c[e]&&null!=n.className||(c[e]=n)}))}return n}t.DATA_KEY="__blot",function(e){e[e["TYPE"]=3]="TYPE",e[e["LEVEL"]=12]="LEVEL",e[e["ATTRIBUTE"]=13]="ATTRIBUTE",e[e["BLOT"]=14]="BLOT",e[e["INLINE"]=7]="INLINE",e[e["BLOCK"]=11]="BLOCK",e[e["BLOCK_BLOT"]=10]="BLOCK_BLOT",e[e["INLINE_BLOT"]=6]="INLINE_BLOT",e[e["BLOCK_ATTRIBUTE"]=9]="BLOCK_ATTRIBUTE",e[e["INLINE_ATTRIBUTE"]=5]="INLINE_ATTRIBUTE",e[e["ANY"]=15]="ANY"}(o=t.Scope||(t.Scope={})),t.create=l,t.find=d,t.query=f,t.register=p},function(e,t,n){var r=n(51),i=n(11),o=n(3),a=n(20),s=String.fromCharCode(0),c=function(e){Array.isArray(e)?this.ops=e:null!=e&&Array.isArray(e.ops)?this.ops=e.ops:this.ops=[]};c.prototype.insert=function(e,t){var n={};return 0===e.length?this:(n.insert=e,null!=t&&"object"===typeof t&&Object.keys(t).length>0&&(n.attributes=t),this.push(n))},c.prototype["delete"]=function(e){return e<=0?this:this.push({delete:e})},c.prototype.retain=function(e,t){if(e<=0)return this;var n={retain:e};return null!=t&&"object"===typeof t&&Object.keys(t).length>0&&(n.attributes=t),this.push(n)},c.prototype.push=function(e){var t=this.ops.length,n=this.ops[t-1];if(e=o(!0,{},e),"object"===typeof n){if("number"===typeof e["delete"]&&"number"===typeof n["delete"])return this.ops[t-1]={delete:n["delete"]+e["delete"]},this;if("number"===typeof n["delete"]&&null!=e.insert&&(t-=1,n=this.ops[t-1],"object"!==typeof n))return this.ops.unshift(e),this;if(i(e.attributes,n.attributes)){if("string"===typeof e.insert&&"string"===typeof n.insert)return this.ops[t-1]={insert:n.insert+e.insert},"object"===typeof e.attributes&&(this.ops[t-1].attributes=e.attributes),this;if("number"===typeof e.retain&&"number"===typeof n.retain)return this.ops[t-1]={retain:n.retain+e.retain},"object"===typeof e.attributes&&(this.ops[t-1].attributes=e.attributes),this}}return t===this.ops.length?this.ops.push(e):this.ops.splice(t,0,e),this},c.prototype.chop=function(){var e=this.ops[this.ops.length-1];return e&&e.retain&&!e.attributes&&this.ops.pop(),this},c.prototype.filter=function(e){return this.ops.filter(e)},c.prototype.forEach=function(e){this.ops.forEach(e)},c.prototype.map=function(e){return this.ops.map(e)},c.prototype.partition=function(e){var t=[],n=[];return this.forEach((function(r){var i=e(r)?t:n;i.push(r)})),[t,n]},c.prototype.reduce=function(e,t){return this.ops.reduce(e,t)},c.prototype.changeLength=function(){return this.reduce((function(e,t){return t.insert?e+a.length(t):t.delete?e-t.delete:e}),0)},c.prototype.length=function(){return this.reduce((function(e,t){return e+a.length(t)}),0)},c.prototype.slice=function(e,t){e=e||0,"number"!==typeof t&&(t=1/0);var n=[],r=a.iterator(this.ops),i=0;while(i<t&&r.hasNext()){var o;i<e?o=r.next(e-i):(o=r.next(t-i),n.push(o)),i+=a.length(o)}return new c(n)},c.prototype.compose=function(e){var t=a.iterator(this.ops),n=a.iterator(e.ops),r=[],o=n.peek();if(null!=o&&"number"===typeof o.retain&&null==o.attributes){var s=o.retain;while("insert"===t.peekType()&&t.peekLength()<=s)s-=t.peekLength(),r.push(t.next());o.retain-s>0&&n.next(o.retain-s)}var u=new c(r);while(t.hasNext()||n.hasNext())if("insert"===n.peekType())u.push(n.next());else if("delete"===t.peekType())u.push(t.next());else{var l=Math.min(t.peekLength(),n.peekLength()),d=t.next(l),f=n.next(l);if("number"===typeof f.retain){var p={};"number"===typeof d.retain?p.retain=l:p.insert=d.insert;var h=a.attributes.compose(d.attributes,f.attributes,"number"===typeof d.retain);if(h&&(p.attributes=h),u.push(p),!n.hasNext()&&i(u.ops[u.ops.length-1],p)){var m=new c(t.rest());return u.concat(m).chop()}}else"number"===typeof f["delete"]&&"number"===typeof d.retain&&u.push(f)}return u.chop()},c.prototype.concat=function(e){var t=new c(this.ops.slice());return e.ops.length>0&&(t.push(e.ops[0]),t.ops=t.ops.concat(e.ops.slice(1))),t},c.prototype.diff=function(e,t){if(this.ops===e.ops)return new c;var n=[this,e].map((function(t){return t.map((function(n){if(null!=n.insert)return"string"===typeof n.insert?n.insert:s;var r=t===e?"on":"with";throw new Error("diff() called "+r+" non-document")})).join("")})),o=new c,u=r(n[0],n[1],t),l=a.iterator(this.ops),d=a.iterator(e.ops);return u.forEach((function(e){var t=e[1].length;while(t>0){var n=0;switch(e[0]){case r.INSERT:n=Math.min(d.peekLength(),t),o.push(d.next(n));break;case r.DELETE:n=Math.min(t,l.peekLength()),l.next(n),o["delete"](n);break;case r.EQUAL:n=Math.min(l.peekLength(),d.peekLength(),t);var s=l.next(n),c=d.next(n);i(s.insert,c.insert)?o.retain(n,a.attributes.diff(s.attributes,c.attributes)):o.push(c)["delete"](n);break}t-=n}})),o.chop()},c.prototype.eachLine=function(e,t){t=t||"\n";var n=a.iterator(this.ops),r=new c,i=0;while(n.hasNext()){if("insert"!==n.peekType())return;var o=n.peek(),s=a.length(o)-n.peekLength(),u="string"===typeof o.insert?o.insert.indexOf(t,s)-s:-1;if(u<0)r.push(n.next());else if(u>0)r.push(n.next(u));else{if(!1===e(r,n.next(1).attributes||{},i))return;i+=1,r=new c}}r.length()>0&&e(r,{},i)},c.prototype.transform=function(e,t){if(t=!!t,"number"===typeof e)return this.transformPosition(e,t);var n=a.iterator(this.ops),r=a.iterator(e.ops),i=new c;while(n.hasNext()||r.hasNext())if("insert"!==n.peekType()||!t&&"insert"===r.peekType())if("insert"===r.peekType())i.push(r.next());else{var o=Math.min(n.peekLength(),r.peekLength()),s=n.next(o),u=r.next(o);if(s["delete"])continue;u["delete"]?i.push(u):i.retain(o,a.attributes.transform(s.attributes,u.attributes,t))}else i.retain(a.length(n.next()));return i.chop()},c.prototype.transformPosition=function(e,t){t=!!t;var n=a.iterator(this.ops),r=0;while(n.hasNext()&&r<=e){var i=n.peekLength(),o=n.peekType();n.next(),"delete"!==o?("insert"===o&&(r<e||!t)&&(e+=i),r+=i):e-=Math.min(i,e-r)}return e},e.exports=c},function(e,t){"use strict";var n=Object.prototype.hasOwnProperty,r=Object.prototype.toString,i=Object.defineProperty,o=Object.getOwnPropertyDescriptor,a=function(e){return"function"===typeof Array.isArray?Array.isArray(e):"[object Array]"===r.call(e)},s=function(e){if(!e||"[object Object]"!==r.call(e))return!1;var t,i=n.call(e,"constructor"),o=e.constructor&&e.constructor.prototype&&n.call(e.constructor.prototype,"isPrototypeOf");if(e.constructor&&!i&&!o)return!1;for(t in e);return"undefined"===typeof t||n.call(e,t)},c=function(e,t){i&&"__proto__"===t.name?i(e,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):e[t.name]=t.newValue},u=function(e,t){if("__proto__"===t){if(!n.call(e,t))return;if(o)return o(e,t).value}return e[t]};e.exports=function e(){var t,n,r,i,o,l,d=arguments[0],f=1,p=arguments.length,h=!1;for("boolean"===typeof d&&(h=d,d=arguments[1]||{},f=2),(null==d||"object"!==typeof d&&"function"!==typeof d)&&(d={});f<p;++f)if(t=arguments[f],null!=t)for(n in t)r=u(d,n),i=u(t,n),d!==i&&(h&&i&&(s(i)||(o=a(i)))?(o?(o=!1,l=r&&a(r)?r:[]):l=r&&s(r)?r:{},c(d,{name:n,newValue:e(h,l,i)})):"undefined"!==typeof i&&c(d,{name:n,newValue:i}));return d}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.BlockEmbed=t.bubbleFormats=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(3),a=v(o),s=n(2),c=v(s),u=n(0),l=v(u),d=n(16),f=v(d),p=n(6),h=v(p),m=n(7),b=v(m);function v(e){return e&&e.__esModule?e:{default:e}}function y(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function M(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function _(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var g=1,w=function(e){function t(){return y(this,t),M(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return _(t,e),r(t,[{key:"attach",value:function(){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"attach",this).call(this),this.attributes=new l.default.Attributor.Store(this.domNode)}},{key:"delta",value:function(){return(new c.default).insert(this.value(),(0,a.default)(this.formats(),this.attributes.values()))}},{key:"format",value:function(e,t){var n=l.default.query(e,l.default.Scope.BLOCK_ATTRIBUTE);null!=n&&this.attributes.attribute(n,t)}},{key:"formatAt",value:function(e,t,n,r){this.format(n,r)}},{key:"insertAt",value:function(e,n,r){if("string"===typeof n&&n.endsWith("\n")){var o=l.default.create(A.blotName);this.parent.insertBefore(o,0===e?this:this.next),o.insertAt(0,n.slice(0,-1))}else i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,e,n,r)}}]),t}(l.default.Embed);w.scope=l.default.Scope.BLOCK_BLOT;var A=function(e){function t(e){y(this,t);var n=M(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.cache={},n}return _(t,e),r(t,[{key:"delta",value:function(){return null==this.cache.delta&&(this.cache.delta=this.descendants(l.default.Leaf).reduce((function(e,t){return 0===t.length()?e:e.insert(t.value(),L(t))}),new c.default).insert("\n",L(this))),this.cache.delta}},{key:"deleteAt",value:function(e,n){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"deleteAt",this).call(this,e,n),this.cache={}}},{key:"formatAt",value:function(e,n,r,o){n<=0||(l.default.query(r,l.default.Scope.BLOCK)?e+n===this.length()&&this.format(r,o):i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"formatAt",this).call(this,e,Math.min(n,this.length()-e-1),r,o),this.cache={})}},{key:"insertAt",value:function(e,n,r){if(null!=r)return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,e,n,r);if(0!==n.length){var o=n.split("\n"),a=o.shift();a.length>0&&(e<this.length()-1||null==this.children.tail?i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,Math.min(e,this.length()-1),a):this.children.tail.insertAt(this.children.tail.length(),a),this.cache={});var s=this;o.reduce((function(e,t){return s=s.split(e,!0),s.insertAt(0,t),t.length}),e+a.length)}}},{key:"insertBefore",value:function(e,n){var r=this.children.head;i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertBefore",this).call(this,e,n),r instanceof f.default&&r.remove(),this.cache={}}},{key:"length",value:function(){return null==this.cache.length&&(this.cache.length=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"length",this).call(this)+g),this.cache.length}},{key:"moveChildren",value:function(e,n){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"moveChildren",this).call(this,e,n),this.cache={}}},{key:"optimize",value:function(e){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e),this.cache={}}},{key:"path",value:function(e){return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"path",this).call(this,e,!0)}},{key:"removeChild",value:function(e){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"removeChild",this).call(this,e),this.cache={}}},{key:"split",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(n&&(0===e||e>=this.length()-g)){var r=this.clone();return 0===e?(this.parent.insertBefore(r,this),this):(this.parent.insertBefore(r,this.next),r)}var o=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"split",this).call(this,e,n);return this.cache={},o}}]),t}(l.default.Block);function L(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return null==e?t:("function"===typeof e.formats&&(t=(0,a.default)(t,e.formats())),null==e.parent||"scroll"==e.parent.blotName||e.parent.statics.scope!==e.statics.scope?t:L(e.parent,t))}A.blotName="block",A.tagName="P",A.defaultChild="break",A.allowedChildren=[h.default,l.default.Embed,b.default],t.bubbleFormats=L,t.BlockEmbed=w,t.default=A},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.overload=t.expandConfig=void 0;var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();n(50);var a=n(2),s=L(a),c=n(14),u=L(c),l=n(8),d=L(l),f=n(9),p=L(f),h=n(0),m=L(h),b=n(15),v=L(b),y=n(3),M=L(y),_=n(10),g=L(_),w=n(34),A=L(w);function L(e){return e&&e.__esModule?e:{default:e}}function O(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function T(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var S=(0,g.default)("quill"),k=function(){function e(t){var n=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(T(this,e),this.options=x(t,r),this.container=this.options.container,null==this.container)return S.error("Invalid Quill container",t);this.options.debug&&e.debug(this.options.debug);var i=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new d.default,this.scroll=m.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new u.default(this.scroll),this.selection=new v.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(d.default.events.EDITOR_CHANGE,(function(e){e===d.default.events.TEXT_CHANGE&&n.root.classList.toggle("ql-blank",n.editor.isBlank())})),this.emitter.on(d.default.events.SCROLL_UPDATE,(function(e,t){var r=n.selection.lastRange,i=r&&0===r.length?r.index:void 0;z.call(n,(function(){return n.editor.update(null,t,i)}),e)}));var o=this.clipboard.convert("<div class='ql-editor' style=\"white-space: normal;\">"+i+"<p><br></p></div>");this.setContents(o),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return o(e,null,[{key:"debug",value:function(e){!0===e&&(e="log"),g.default.level(e)}},{key:"find",value:function(e){return e.__quill||m.default.find(e)}},{key:"import",value:function(e){return null==this.imports[e]&&S.error("Cannot import "+e+". Are you sure it was registered?"),this.imports[e]}},{key:"register",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"!==typeof e){var i=e.attrName||e.blotName;"string"===typeof i?this.register("formats/"+i,e,t):Object.keys(e).forEach((function(r){n.register(r,e[r],t)}))}else null==this.imports[e]||r||S.warn("Overwriting "+e+" with",t),this.imports[e]=t,(e.startsWith("blots/")||e.startsWith("formats/"))&&"abstract"!==t.blotName?m.default.register(t):e.startsWith("modules")&&"function"===typeof t.register&&t.register()}}]),o(e,[{key:"addContainer",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"===typeof e){var n=e;e=document.createElement("div"),e.classList.add(n)}return this.container.insertBefore(e,t),e}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(e,t,n){var r=this,o=D(e,t,n),a=i(o,4);return e=a[0],t=a[1],n=a[3],z.call(this,(function(){return r.editor.deleteText(e,t)}),n,e,-1*t)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.scroll.enable(e),this.container.classList.toggle("ql-disabled",!e)}},{key:"focus",value:function(){var e=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=e,this.scrollIntoView()}},{key:"format",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:d.default.sources.API;return z.call(this,(function(){var r=n.getSelection(!0),i=new s.default;if(null==r)return i;if(m.default.query(e,m.default.Scope.BLOCK))i=n.editor.formatLine(r.index,r.length,O({},e,t));else{if(0===r.length)return n.selection.format(e,t),i;i=n.editor.formatText(r.index,r.length,O({},e,t))}return n.setSelection(r,d.default.sources.SILENT),i}),r)}},{key:"formatLine",value:function(e,t,n,r,o){var a=this,s=void 0,c=D(e,t,n,r,o),u=i(c,4);return e=u[0],t=u[1],s=u[2],o=u[3],z.call(this,(function(){return a.editor.formatLine(e,t,s)}),o,e,0)}},{key:"formatText",value:function(e,t,n,r,o){var a=this,s=void 0,c=D(e,t,n,r,o),u=i(c,4);return e=u[0],t=u[1],s=u[2],o=u[3],z.call(this,(function(){return a.editor.formatText(e,t,s)}),o,e,0)}},{key:"getBounds",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=void 0;n="number"===typeof e?this.selection.getBounds(e,t):this.selection.getBounds(e.index,e.length);var r=this.container.getBoundingClientRect();return{bottom:n.bottom-r.top,height:n.height,left:n.left-r.left,right:n.right-r.left,top:n.top-r.top,width:n.width}}},{key:"getContents",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-e,n=D(e,t),r=i(n,2);return e=r[0],t=r[1],this.editor.getContents(e,t)}},{key:"getFormat",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.getSelection(!0),t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return"number"===typeof e?this.editor.getFormat(e,t):this.editor.getFormat(e.index,e.length)}},{key:"getIndex",value:function(e){return e.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(e){return this.scroll.leaf(e)}},{key:"getLine",value:function(e){return this.scroll.line(e)}},{key:"getLines",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return"number"!==typeof e?this.scroll.lines(e.index,e.length):this.scroll.lines(e,t)}},{key:"getModule",value:function(e){return this.theme.modules[e]}},{key:"getSelection",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return e&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-e,n=D(e,t),r=i(n,2);return e=r[0],t=r[1],this.editor.getText(e,t)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:e.sources.API;return z.call(this,(function(){return i.editor.insertEmbed(t,n,r)}),o,t)}},{key:"insertText",value:function(e,t,n,r,o){var a=this,s=void 0,c=D(e,0,n,r,o),u=i(c,4);return e=u[0],s=u[2],o=u[3],z.call(this,(function(){return a.editor.insertText(e,t,s)}),o,e,t.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(e,t,n){this.clipboard.dangerouslyPasteHTML(e,t,n)}},{key:"removeFormat",value:function(e,t,n){var r=this,o=D(e,t,n),a=i(o,4);return e=a[0],t=a[1],n=a[3],z.call(this,(function(){return r.editor.removeFormat(e,t)}),n,e)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.default.sources.API;return z.call(this,(function(){e=new s.default(e);var n=t.getLength(),r=t.editor.deleteText(0,n),i=t.editor.applyDelta(e),o=i.ops[i.ops.length-1];null!=o&&"string"===typeof o.insert&&"\n"===o.insert[o.insert.length-1]&&(t.editor.deleteText(t.getLength()-1,1),i.delete(1));var a=r.compose(i);return a}),n)}},{key:"setSelection",value:function(t,n,r){if(null==t)this.selection.setRange(null,n||e.sources.API);else{var o=D(t,n,r),a=i(o,4);t=a[0],n=a[1],r=a[3],this.selection.setRange(new b.Range(t,n),r),r!==d.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.default.sources.API,n=(new s.default).insert(e);return this.setContents(n,t)}},{key:"update",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:d.default.sources.USER,t=this.scroll.update(e);return this.selection.update(e),t}},{key:"updateContents",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.default.sources.API;return z.call(this,(function(){return e=new s.default(e),t.editor.applyDelta(e,n)}),n,!0)}}]),e}();function x(e,t){if(t=(0,M.default)(!0,{container:e,modules:{clipboard:!0,keyboard:!0,history:!0}},t),t.theme&&t.theme!==k.DEFAULTS.theme){if(t.theme=k.import("themes/"+t.theme),null==t.theme)throw new Error("Invalid theme "+t.theme+". Did you register it?")}else t.theme=A.default;var n=(0,M.default)(!0,{},t.theme.DEFAULTS);[n,t].forEach((function(e){e.modules=e.modules||{},Object.keys(e.modules).forEach((function(t){!0===e.modules[t]&&(e.modules[t]={})}))}));var r=Object.keys(n.modules).concat(Object.keys(t.modules)),i=r.reduce((function(e,t){var n=k.import("modules/"+t);return null==n?S.error("Cannot load "+t+" module. Are you sure you registered it?"):e[t]=n.DEFAULTS||{},e}),{});return null!=t.modules&&t.modules.toolbar&&t.modules.toolbar.constructor!==Object&&(t.modules.toolbar={container:t.modules.toolbar}),t=(0,M.default)(!0,{},k.DEFAULTS,{modules:i},n,t),["bounds","container","scrollingContainer"].forEach((function(e){"string"===typeof t[e]&&(t[e]=document.querySelector(t[e]))})),t.modules=Object.keys(t.modules).reduce((function(e,n){return t.modules[n]&&(e[n]=t.modules[n]),e}),{}),t}function z(e,t,n,r){if(this.options.strict&&!this.isEnabled()&&t===d.default.sources.USER)return new s.default;var i=null==n?null:this.getSelection(),o=this.editor.delta,a=e();if(null!=i&&(!0===n&&(n=i.index),null==r?i=N(i,a,t):0!==r&&(i=N(i,n,r,t)),this.setSelection(i,d.default.sources.SILENT)),a.length()>0){var c,u,l=[d.default.events.TEXT_CHANGE,a,o,t];if((c=this.emitter).emit.apply(c,[d.default.events.EDITOR_CHANGE].concat(l)),t!==d.default.sources.SILENT)(u=this.emitter).emit.apply(u,l)}return a}function D(e,t,n,i,o){var a={};return"number"===typeof e.index&&"number"===typeof e.length?"number"!==typeof t?(o=i,i=n,n=t,t=e.length,e=e.index):(t=e.length,e=e.index):"number"!==typeof t&&(o=i,i=n,n=t,t=0),"object"===("undefined"===typeof n?"undefined":r(n))?(a=n,o=i):"string"===typeof n&&(null!=i?a[n]=i:o=n),o=o||d.default.sources.API,[e,t,a,o]}function N(e,t,n,r){if(null==e)return null;var o=void 0,a=void 0;if(t instanceof s.default){var c=[e.index,e.index+e.length].map((function(e){return t.transformPosition(e,r!==d.default.sources.USER)})),u=i(c,2);o=u[0],a=u[1]}else{var l=[e.index,e.index+e.length].map((function(e){return e<t||e===t&&r===d.default.sources.USER?e:n>=0?e+n:Math.max(t,e+n)})),f=i(l,2);o=f[0],a=f[1]}return new b.Range(o,a-o)}k.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},k.events=d.default.events,k.sources=d.default.sources,k.version="1.3.7",k.imports={delta:s.default,parchment:m.default,"core/module":p.default,"core/theme":A.default},t.expandConfig=x,t.overload=D,t.default=k},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(7),a=u(o),s=n(0),c=u(s);function u(e){return e&&e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function f(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var p=function(e){function t(){return l(this,t),d(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return f(t,e),r(t,[{key:"formatAt",value:function(e,n,r,o){if(t.compare(this.statics.blotName,r)<0&&c.default.query(r,c.default.Scope.BLOT)){var a=this.isolate(e,n);o&&a.wrap(r,o)}else i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"formatAt",this).call(this,e,n,r,o)}},{key:"optimize",value:function(e){if(i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e),this.parent instanceof t&&t.compare(this.statics.blotName,this.parent.statics.blotName)>0){var n=this.parent.isolate(this.offset(),this.length());this.moveChildren(n),n.wrap(this)}}}],[{key:"compare",value:function(e,n){var r=t.order.indexOf(e),i=t.order.indexOf(n);return r>=0||i>=0?r-i:e===n?0:e<n?-1:1}}]),t}(c.default.Inline);p.allowedChildren=[p,c.default.Embed,a.default],p.order=["cursor","inline","underline","strike","italic","bold","script","link","code"],t.default=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default.Text);t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(54),a=u(o),s=n(10),c=u(s);function u(e){return e&&e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function f(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var p=(0,c.default)("quill:events"),h=["selectionchange","mousedown","mouseup","click"];h.forEach((function(e){document.addEventListener(e,(function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];[].slice.call(document.querySelectorAll(".ql-container")).forEach((function(e){var n;e.__quill&&e.__quill.emitter&&(n=e.__quill.emitter).handleDOM.apply(n,t)}))}))}));var m=function(e){function t(){l(this,t);var e=d(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));return e.listeners={},e.on("error",p.error),e}return f(t,e),r(t,[{key:"emit",value:function(){p.log.apply(p,arguments),i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"emit",this).apply(this,arguments)}},{key:"handleDOM",value:function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];(this.listeners[e.type]||[]).forEach((function(t){var r=t.node,i=t.handler;(e.target===r||r.contains(e.target))&&i.apply(void 0,[e].concat(n))}))}},{key:"listenDOM",value:function(e,t,n){this.listeners[e]||(this.listeners[e]=[]),this.listeners[e].push({node:t,handler:n})}}]),t}(a.default);m.events={EDITOR_CHANGE:"editor-change",SCROLL_BEFORE_UPDATE:"scroll-before-update",SCROLL_OPTIMIZE:"scroll-optimize",SCROLL_UPDATE:"scroll-update",SELECTION_CHANGE:"selection-change",TEXT_CHANGE:"text-change"},m.sources={API:"api",SILENT:"silent",USER:"user"},t.default=m},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,e),this.quill=t,this.options=n};i.DEFAULTS={},t.default=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=["error","warn","log","info"],i="warn";function o(e){if(r.indexOf(e)<=r.indexOf(i)){for(var t,n=arguments.length,o=Array(n>1?n-1:0),a=1;a<n;a++)o[a-1]=arguments[a];(t=console)[e].apply(t,o)}}function a(e){return r.reduce((function(t,n){return t[n]=o.bind(console,n,e),t}),{})}o.level=a.level=function(e){i=e},t.default=a},function(e,t,n){var r=Array.prototype.slice,i=n(52),o=n(53),a=e.exports=function(e,t,n){return n||(n={}),e===t||(e instanceof Date&&t instanceof Date?e.getTime()===t.getTime():!e||!t||"object"!=typeof e&&"object"!=typeof t?n.strict?e===t:e==t:u(e,t,n))};function s(e){return null===e||void 0===e}function c(e){return!(!e||"object"!==typeof e||"number"!==typeof e.length)&&("function"===typeof e.copy&&"function"===typeof e.slice&&!(e.length>0&&"number"!==typeof e[0]))}function u(e,t,n){var u,l;if(s(e)||s(t))return!1;if(e.prototype!==t.prototype)return!1;if(o(e))return!!o(t)&&(e=r.call(e),t=r.call(t),a(e,t,n));if(c(e)){if(!c(t))return!1;if(e.length!==t.length)return!1;for(u=0;u<e.length;u++)if(e[u]!==t[u])return!1;return!0}try{var d=i(e),f=i(t)}catch(p){return!1}if(d.length!=f.length)return!1;for(d.sort(),f.sort(),u=d.length-1;u>=0;u--)if(d[u]!=f[u])return!1;for(u=d.length-1;u>=0;u--)if(l=d[u],!a(e[l],t[l],n))return!1;return typeof e===typeof t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=function(){function e(e,t,n){void 0===n&&(n={}),this.attrName=e,this.keyName=t;var i=r.Scope.TYPE&r.Scope.ATTRIBUTE;null!=n.scope?this.scope=n.scope&r.Scope.LEVEL|i:this.scope=r.Scope.ATTRIBUTE,null!=n.whitelist&&(this.whitelist=n.whitelist)}return e.keys=function(e){return[].map.call(e.attributes,(function(e){return e.name}))},e.prototype.add=function(e,t){return!!this.canAdd(e,t)&&(e.setAttribute(this.keyName,t),!0)},e.prototype.canAdd=function(e,t){var n=r.query(e,r.Scope.BLOT&(this.scope|r.Scope.TYPE));return null!=n&&(null==this.whitelist||("string"===typeof t?this.whitelist.indexOf(t.replace(/["']/g,""))>-1:this.whitelist.indexOf(t)>-1))},e.prototype.remove=function(e){e.removeAttribute(this.keyName)},e.prototype.value=function(e){var t=e.getAttribute(this.keyName);return this.canAdd(e,t)&&t?t:""},e}();t.default=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.Code=void 0;var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},a=n(2),s=b(a),c=n(0),u=b(c),l=n(4),d=b(l),f=n(6),p=b(f),h=n(7),m=b(h);function b(e){return e&&e.__esModule?e:{default:e}}function v(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function y(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function M(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var _=function(e){function t(){return v(this,t),y(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return M(t,e),t}(p.default);_.blotName="code",_.tagName="CODE";var g=function(e){function t(){return v(this,t),y(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return M(t,e),i(t,[{key:"delta",value:function(){var e=this,t=this.domNode.textContent;return t.endsWith("\n")&&(t=t.slice(0,-1)),t.split("\n").reduce((function(t,n){return t.insert(n).insert("\n",e.formats())}),new s.default)}},{key:"format",value:function(e,n){if(e!==this.statics.blotName||!n){var i=this.descendant(m.default,this.length()-1),a=r(i,1),s=a[0];null!=s&&s.deleteAt(s.length()-1,1),o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n)}}},{key:"formatAt",value:function(e,n,r,i){if(0!==n&&null!=u.default.query(r,u.default.Scope.BLOCK)&&(r!==this.statics.blotName||i!==this.statics.formats(this.domNode))){var o=this.newlineIndex(e);if(!(o<0||o>=e+n)){var a=this.newlineIndex(e,!0)+1,s=o-a+1,c=this.isolate(a,s),l=c.next;c.format(r,i),l instanceof t&&l.formatAt(0,e-a+n-s,r,i)}}}},{key:"insertAt",value:function(e,t,n){if(null==n){var i=this.descendant(m.default,e),o=r(i,2),a=o[0],s=o[1];a.insertAt(s,t)}}},{key:"length",value:function(){var e=this.domNode.textContent.length;return this.domNode.textContent.endsWith("\n")?e:e+1}},{key:"newlineIndex",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(t)return this.domNode.textContent.slice(0,e).lastIndexOf("\n");var n=this.domNode.textContent.slice(e).indexOf("\n");return n>-1?e+n:-1}},{key:"optimize",value:function(e){this.domNode.textContent.endsWith("\n")||this.appendChild(u.default.create("text","\n")),o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&this.statics.formats(this.domNode)===n.statics.formats(n.domNode)&&(n.optimize(e),n.moveChildren(this),n.remove())}},{key:"replace",value:function(e){o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replace",this).call(this,e),[].slice.call(this.domNode.querySelectorAll("*")).forEach((function(e){var t=u.default.find(e);null==t?e.parentNode.removeChild(e):t instanceof u.default.Embed?t.remove():t.unwrap()}))}}],[{key:"create",value:function(e){var n=o(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return n.setAttribute("spellcheck",!1),n}},{key:"formats",value:function(){return!0}}]),t}(d.default);g.blotName="code-block",g.tagName="PRE",g.TAB=" ",t.Code=_,t.default=g},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(2),s=T(a),c=n(20),u=T(c),l=n(0),d=T(l),f=n(13),p=T(f),h=n(24),m=T(h),b=n(4),v=T(b),y=n(16),M=T(y),_=n(21),g=T(_),w=n(11),A=T(w),L=n(3),O=T(L);function T(e){return e&&e.__esModule?e:{default:e}}function S(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function k(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var x=/^[ -~]*$/,z=function(){function e(t){k(this,e),this.scroll=t,this.delta=this.getDelta()}return o(e,[{key:"applyDelta",value:function(e){var t=this,n=!1;this.scroll.update();var o=this.scroll.length();return this.scroll.batchStart(),e=N(e),e.reduce((function(e,a){var s=a.retain||a.delete||a.insert.length||1,c=a.attributes||{};if(null!=a.insert){if("string"===typeof a.insert){var l=a.insert;l.endsWith("\n")&&n&&(n=!1,l=l.slice(0,-1)),e>=o&&!l.endsWith("\n")&&(n=!0),t.scroll.insertAt(e,l);var f=t.scroll.line(e),p=i(f,2),h=p[0],m=p[1],y=(0,O.default)({},(0,b.bubbleFormats)(h));if(h instanceof v.default){var M=h.descendant(d.default.Leaf,m),_=i(M,1),g=_[0];y=(0,O.default)(y,(0,b.bubbleFormats)(g))}c=u.default.attributes.diff(y,c)||{}}else if("object"===r(a.insert)){var w=Object.keys(a.insert)[0];if(null==w)return e;t.scroll.insertAt(e,w,a.insert[w])}o+=s}return Object.keys(c).forEach((function(n){t.scroll.formatAt(e,s,n,c[n])})),e+s}),0),e.reduce((function(e,n){return"number"===typeof n.delete?(t.scroll.deleteAt(e,n.delete),e):e+(n.retain||n.insert.length||1)}),0),this.scroll.batchEnd(),this.update(e)}},{key:"deleteText",value:function(e,t){return this.scroll.deleteAt(e,t),this.update((new s.default).retain(e).delete(t))}},{key:"formatLine",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.scroll.update(),Object.keys(r).forEach((function(i){if(null==n.scroll.whitelist||n.scroll.whitelist[i]){var o=n.scroll.lines(e,Math.max(t,1)),a=t;o.forEach((function(t){var o=t.length();if(t instanceof p.default){var s=e-t.offset(n.scroll),c=t.newlineIndex(s+a)-s+1;t.formatAt(s,c,i,r[i])}else t.format(i,r[i]);a-=o}))}})),this.scroll.optimize(),this.update((new s.default).retain(e).retain(t,(0,g.default)(r)))}},{key:"formatText",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return Object.keys(r).forEach((function(i){n.scroll.formatAt(e,t,i,r[i])})),this.update((new s.default).retain(e).retain(t,(0,g.default)(r)))}},{key:"getContents",value:function(e,t){return this.delta.slice(e,e+t)}},{key:"getDelta",value:function(){return this.scroll.lines().reduce((function(e,t){return e.concat(t.delta())}),new s.default)}},{key:"getFormat",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[],r=[];0===t?this.scroll.path(e).forEach((function(e){var t=i(e,1),o=t[0];o instanceof v.default?n.push(o):o instanceof d.default.Leaf&&r.push(o)})):(n=this.scroll.lines(e,t),r=this.scroll.descendants(d.default.Leaf,e,t));var o=[n,r].map((function(e){if(0===e.length)return{};var t=(0,b.bubbleFormats)(e.shift());while(Object.keys(t).length>0){var n=e.shift();if(null==n)return t;t=D((0,b.bubbleFormats)(n),t)}return t}));return O.default.apply(O.default,o)}},{key:"getText",value:function(e,t){return this.getContents(e,t).filter((function(e){return"string"===typeof e.insert})).map((function(e){return e.insert})).join("")}},{key:"insertEmbed",value:function(e,t,n){return this.scroll.insertAt(e,t,n),this.update((new s.default).retain(e).insert(S({},t,n)))}},{key:"insertText",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t=t.replace(/\r\n/g,"\n").replace(/\r/g,"\n"),this.scroll.insertAt(e,t),Object.keys(r).forEach((function(i){n.scroll.formatAt(e,t.length,i,r[i])})),this.update((new s.default).retain(e).insert(t,(0,g.default)(r)))}},{key:"isBlank",value:function(){if(0==this.scroll.children.length)return!0;if(this.scroll.children.length>1)return!1;var e=this.scroll.children.head;return e.statics.blotName===v.default.blotName&&(!(e.children.length>1)&&e.children.head instanceof M.default)}},{key:"removeFormat",value:function(e,t){var n=this.getText(e,t),r=this.scroll.line(e+t),o=i(r,2),a=o[0],c=o[1],u=0,l=new s.default;null!=a&&(u=a instanceof p.default?a.newlineIndex(c)-c+1:a.length()-c,l=a.delta().slice(c,c+u-1).insert("\n"));var d=this.getContents(e,t+u),f=d.diff((new s.default).insert(n).concat(l)),h=(new s.default).retain(e).concat(f);return this.applyDelta(h)}},{key:"update",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,r=this.delta;if(1===t.length&&"characterData"===t[0].type&&t[0].target.data.match(x)&&d.default.find(t[0].target)){var i=d.default.find(t[0].target),o=(0,b.bubbleFormats)(i),a=i.offset(this.scroll),c=t[0].oldValue.replace(m.default.CONTENTS,""),u=(new s.default).insert(c),l=(new s.default).insert(i.value()),f=(new s.default).retain(a).concat(u.diff(l,n));e=f.reduce((function(e,t){return t.insert?e.insert(t.insert,o):e.push(t)}),new s.default),this.delta=r.compose(e)}else this.delta=this.getDelta(),e&&(0,A.default)(r.compose(e),this.delta)||(e=r.diff(this.delta,n));return e}}]),e}();function D(e,t){return Object.keys(t).reduce((function(n,r){return null==e[r]||(t[r]===e[r]?n[r]=t[r]:Array.isArray(t[r])?t[r].indexOf(e[r])<0&&(n[r]=t[r].concat([e[r]])):n[r]=[t[r],e[r]]),n}),{})}function N(e){return e.reduce((function(e,t){if(1===t.insert){var n=(0,g.default)(t.attributes);return delete n["image"],e.insert({image:t.attributes.image},n)}if(null==t.attributes||!0!==t.attributes.list&&!0!==t.attributes.bullet||(t=(0,g.default)(t),t.attributes.list?t.attributes.list="ordered":(t.attributes.list="bullet",delete t.attributes.bullet)),"string"===typeof t.insert){var r=t.insert.replace(/\r\n/g,"\n").replace(/\r/g,"\n");return e.insert(r,t.attributes)}return e.push(t)}),new s.default)}t.default=z},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.Range=void 0;var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(0),a=m(o),s=n(21),c=m(s),u=n(11),l=m(u),d=n(8),f=m(d),p=n(10),h=m(p);function m(e){return e&&e.__esModule?e:{default:e}}function b(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function v(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var y=(0,h.default)("quill:selection"),M=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;v(this,e),this.index=t,this.length=n},_=function(){function e(t,n){var r=this;v(this,e),this.emitter=n,this.scroll=t,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=a.default.create("cursor",this),this.lastRange=this.savedRange=new M(0,0),this.handleComposition(),this.handleDragging(),this.emitter.listenDOM("selectionchange",document,(function(){r.mouseDown||setTimeout(r.update.bind(r,f.default.sources.USER),1)})),this.emitter.on(f.default.events.EDITOR_CHANGE,(function(e,t){e===f.default.events.TEXT_CHANGE&&t.length()>0&&r.update(f.default.sources.SILENT)})),this.emitter.on(f.default.events.SCROLL_BEFORE_UPDATE,(function(){if(r.hasFocus()){var e=r.getNativeRange();null!=e&&e.start.node!==r.cursor.textNode&&r.emitter.once(f.default.events.SCROLL_UPDATE,(function(){try{r.setNativeRange(e.start.node,e.start.offset,e.end.node,e.end.offset)}catch(t){}}))}})),this.emitter.on(f.default.events.SCROLL_OPTIMIZE,(function(e,t){if(t.range){var n=t.range,i=n.startNode,o=n.startOffset,a=n.endNode,s=n.endOffset;r.setNativeRange(i,o,a,s)}})),this.update(f.default.sources.SILENT)}return i(e,[{key:"handleComposition",value:function(){var e=this;this.root.addEventListener("compositionstart",(function(){e.composing=!0})),this.root.addEventListener("compositionend",(function(){if(e.composing=!1,e.cursor.parent){var t=e.cursor.restore();if(!t)return;setTimeout((function(){e.setNativeRange(t.startNode,t.startOffset,t.endNode,t.endOffset)}),1)}}))}},{key:"handleDragging",value:function(){var e=this;this.emitter.listenDOM("mousedown",document.body,(function(){e.mouseDown=!0})),this.emitter.listenDOM("mouseup",document.body,(function(){e.mouseDown=!1,e.update(f.default.sources.USER)}))}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(e,t){if(null==this.scroll.whitelist||this.scroll.whitelist[e]){this.scroll.update();var n=this.getNativeRange();if(null!=n&&n.native.collapsed&&!a.default.query(e,a.default.Scope.BLOCK)){if(n.start.node!==this.cursor.textNode){var r=a.default.find(n.start.node,!1);if(null==r)return;if(r instanceof a.default.Leaf){var i=r.split(n.start.offset);r.parent.insertBefore(this.cursor,i)}else r.insertBefore(this.cursor,n.start.node);this.cursor.attach()}this.cursor.format(e,t),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=this.scroll.length();e=Math.min(e,n-1),t=Math.min(e+t,n-1)-e;var i=void 0,o=this.scroll.leaf(e),a=r(o,2),s=a[0],c=a[1];if(null==s)return null;var u=s.position(c,!0),l=r(u,2);i=l[0],c=l[1];var d=document.createRange();if(t>0){d.setStart(i,c);var f=this.scroll.leaf(e+t),p=r(f,2);if(s=p[0],c=p[1],null==s)return null;var h=s.position(c,!0),m=r(h,2);return i=m[0],c=m[1],d.setEnd(i,c),d.getBoundingClientRect()}var b="left",v=void 0;return i instanceof Text?(c<i.data.length?(d.setStart(i,c),d.setEnd(i,c+1)):(d.setStart(i,c-1),d.setEnd(i,c),b="right"),v=d.getBoundingClientRect()):(v=s.domNode.getBoundingClientRect(),c>0&&(b="right")),{bottom:v.top+v.height,height:v.height,left:v[b],right:v[b],top:v.top,width:0}}},{key:"getNativeRange",value:function(){var e=document.getSelection();if(null==e||e.rangeCount<=0)return null;var t=e.getRangeAt(0);if(null==t)return null;var n=this.normalizeNative(t);return y.info("getNativeRange",n),n}},{key:"getRange",value:function(){var e=this.getNativeRange();if(null==e)return[null,null];var t=this.normalizedToRange(e);return[t,e]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(e){var t=this,n=[[e.start.node,e.start.offset]];e.native.collapsed||n.push([e.end.node,e.end.offset]);var i=n.map((function(e){var n=r(e,2),i=n[0],o=n[1],s=a.default.find(i,!0),c=s.offset(t.scroll);return 0===o?c:s instanceof a.default.Container?c+s.length():c+s.index(i,o)})),o=Math.min(Math.max.apply(Math,b(i)),this.scroll.length()-1),s=Math.min.apply(Math,[o].concat(b(i)));return new M(s,o-s)}},{key:"normalizeNative",value:function(e){if(!g(this.root,e.startContainer)||!e.collapsed&&!g(this.root,e.endContainer))return null;var t={start:{node:e.startContainer,offset:e.startOffset},end:{node:e.endContainer,offset:e.endOffset},native:e};return[t.start,t.end].forEach((function(e){var t=e.node,n=e.offset;while(!(t instanceof Text)&&t.childNodes.length>0)if(t.childNodes.length>n)t=t.childNodes[n],n=0;else{if(t.childNodes.length!==n)break;t=t.lastChild,n=t instanceof Text?t.data.length:t.childNodes.length+1}e.node=t,e.offset=n})),t}},{key:"rangeToNative",value:function(e){var t=this,n=e.collapsed?[e.index]:[e.index,e.index+e.length],i=[],o=this.scroll.length();return n.forEach((function(e,n){e=Math.min(o-1,e);var a=void 0,s=t.scroll.leaf(e),c=r(s,2),u=c[0],l=c[1],d=u.position(l,0!==n),f=r(d,2);a=f[0],l=f[1],i.push(a,l)})),i.length<2&&(i=i.concat(i)),i}},{key:"scrollIntoView",value:function(e){var t=this.lastRange;if(null!=t){var n=this.getBounds(t.index,t.length);if(null!=n){var i=this.scroll.length()-1,o=this.scroll.line(Math.min(t.index,i)),a=r(o,1),s=a[0],c=s;if(t.length>0){var u=this.scroll.line(Math.min(t.index+t.length,i)),l=r(u,1);c=l[0]}if(null!=s&&null!=c){var d=e.getBoundingClientRect();n.top<d.top?e.scrollTop-=d.top-n.top:n.bottom>d.bottom&&(e.scrollTop+=n.bottom-d.bottom)}}}}},{key:"setNativeRange",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:t,i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if(y.info("setNativeRange",e,t,n,r),null==e||null!=this.root.parentNode&&null!=e.parentNode&&null!=n.parentNode){var o=document.getSelection();if(null!=o)if(null!=e){this.hasFocus()||this.root.focus();var a=(this.getNativeRange()||{}).native;if(null==a||i||e!==a.startContainer||t!==a.startOffset||n!==a.endContainer||r!==a.endOffset){"BR"==e.tagName&&(t=[].indexOf.call(e.parentNode.childNodes,e),e=e.parentNode),"BR"==n.tagName&&(r=[].indexOf.call(n.parentNode.childNodes,n),n=n.parentNode);var s=document.createRange();s.setStart(e,t),s.setEnd(n,r),o.removeAllRanges(),o.addRange(s)}}else o.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:f.default.sources.API;if("string"===typeof t&&(n=t,t=!1),y.info("setRange",e),null!=e){var r=this.rangeToNative(e);this.setNativeRange.apply(this,b(r).concat([t]))}else this.setNativeRange(null);this.update(n)}},{key:"update",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:f.default.sources.USER,t=this.lastRange,n=this.getRange(),i=r(n,2),o=i[0],a=i[1];if(this.lastRange=o,null!=this.lastRange&&(this.savedRange=this.lastRange),!(0,l.default)(t,this.lastRange)){var s;!this.composing&&null!=a&&a.native.collapsed&&a.start.node!==this.cursor.textNode&&this.cursor.restore();var u,d=[f.default.events.SELECTION_CHANGE,(0,c.default)(this.lastRange),(0,c.default)(t),e];if((s=this.emitter).emit.apply(s,[f.default.events.EDITOR_CHANGE].concat(d)),e!==f.default.sources.SILENT)(u=this.emitter).emit.apply(u,d)}}}]),e}();function g(e,t){try{t.parentNode}catch(n){return!1}return t instanceof Text&&(t=t.parentNode),e.contains(t)}t.Range=M,t.default=_},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"insertInto",value:function(e,n){0===e.children.length?i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertInto",this).call(this,e,n):this.remove()}},{key:"length",value:function(){return 0}},{key:"value",value:function(){return""}}],[{key:"value",value:function(){}}]),t}(a.default.Embed);d.blotName="break",d.tagName="BR",t.default=d},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(44),o=n(30),a=n(1),s=function(e){function t(t){var n=e.call(this,t)||this;return n.build(),n}return r(t,e),t.prototype.appendChild=function(e){this.insertBefore(e)},t.prototype.attach=function(){e.prototype.attach.call(this),this.children.forEach((function(e){e.attach()}))},t.prototype.build=function(){var e=this;this.children=new i.default,[].slice.call(this.domNode.childNodes).reverse().forEach((function(t){try{var n=c(t);e.insertBefore(n,e.children.head||void 0)}catch(r){if(r instanceof a.ParchmentError)return;throw r}}))},t.prototype.deleteAt=function(e,t){if(0===e&&t===this.length())return this.remove();this.children.forEachAt(e,t,(function(e,t,n){e.deleteAt(t,n)}))},t.prototype.descendant=function(e,n){var r=this.children.find(n),i=r[0],o=r[1];return null==e.blotName&&e(i)||null!=e.blotName&&i instanceof e?[i,o]:i instanceof t?i.descendant(e,o):[null,-1]},t.prototype.descendants=function(e,n,r){void 0===n&&(n=0),void 0===r&&(r=Number.MAX_VALUE);var i=[],o=r;return this.children.forEachAt(n,r,(function(n,r,a){(null==e.blotName&&e(n)||null!=e.blotName&&n instanceof e)&&i.push(n),n instanceof t&&(i=i.concat(n.descendants(e,r,o))),o-=a})),i},t.prototype.detach=function(){this.children.forEach((function(e){e.detach()})),e.prototype.detach.call(this)},t.prototype.formatAt=function(e,t,n,r){this.children.forEachAt(e,t,(function(e,t,i){e.formatAt(t,i,n,r)}))},t.prototype.insertAt=function(e,t,n){var r=this.children.find(e),i=r[0],o=r[1];if(i)i.insertAt(o,t,n);else{var s=null==n?a.create("text",t):a.create(t,n);this.appendChild(s)}},t.prototype.insertBefore=function(e,t){if(null!=this.statics.allowedChildren&&!this.statics.allowedChildren.some((function(t){return e instanceof t})))throw new a.ParchmentError("Cannot insert "+e.statics.blotName+" into "+this.statics.blotName);e.insertInto(this,t)},t.prototype.length=function(){return this.children.reduce((function(e,t){return e+t.length()}),0)},t.prototype.moveChildren=function(e,t){this.children.forEach((function(n){e.insertBefore(n,t)}))},t.prototype.optimize=function(t){if(e.prototype.optimize.call(this,t),0===this.children.length)if(null!=this.statics.defaultChild){var n=a.create(this.statics.defaultChild);this.appendChild(n),n.optimize(t)}else this.remove()},t.prototype.path=function(e,n){void 0===n&&(n=!1);var r=this.children.find(e,n),i=r[0],o=r[1],a=[[this,e]];return i instanceof t?a.concat(i.path(o,n)):(null!=i&&a.push([i,o]),a)},t.prototype.removeChild=function(e){this.children.remove(e)},t.prototype.replace=function(n){n instanceof t&&n.moveChildren(this),e.prototype.replace.call(this,n)},t.prototype.split=function(e,t){if(void 0===t&&(t=!1),!t){if(0===e)return this;if(e===this.length())return this.next}var n=this.clone();return this.parent.insertBefore(n,this.next),this.children.forEachAt(e,this.length(),(function(e,r,i){e=e.split(r,t),n.appendChild(e)})),n},t.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},t.prototype.update=function(e,t){var n=this,r=[],i=[];e.forEach((function(e){e.target===n.domNode&&"childList"===e.type&&(r.push.apply(r,e.addedNodes),i.push.apply(i,e.removedNodes))})),i.forEach((function(e){if(!(null!=e.parentNode&&"IFRAME"!==e.tagName&&document.body.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var t=a.find(e);null!=t&&(null!=t.domNode.parentNode&&t.domNode.parentNode!==n.domNode||t.detach())}})),r.filter((function(e){return e.parentNode==n.domNode})).sort((function(e,t){return e===t?0:e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1})).forEach((function(e){var t=null;null!=e.nextSibling&&(t=a.find(e.nextSibling));var r=c(e);r.next==t&&null!=r.next||(null!=r.parent&&r.parent.removeChild(n),n.insertBefore(r,t||void 0))}))},t}(o.default);function c(e){var t=a.find(e);if(null==t)try{t=a.create(e)}catch(n){t=a.create(a.Scope.INLINE),[].slice.call(e.childNodes).forEach((function(e){t.domNode.appendChild(e)})),e.parentNode&&e.parentNode.replaceChild(t.domNode,e),t.attach()}return t}t.default=s},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),o=n(31),a=n(17),s=n(1),c=function(e){function t(t){var n=e.call(this,t)||this;return n.attributes=new o.default(n.domNode),n}return r(t,e),t.formats=function(e){return"string"===typeof this.tagName||(Array.isArray(this.tagName)?e.tagName.toLowerCase():void 0)},t.prototype.format=function(e,t){var n=s.query(e);n instanceof i.default?this.attributes.attribute(n,t):t&&(null==n||e===this.statics.blotName&&this.formats()[e]===t||this.replaceWith(e,t))},t.prototype.formats=function(){var e=this.attributes.values(),t=this.statics.formats(this.domNode);return null!=t&&(e[this.statics.blotName]=t),e},t.prototype.replaceWith=function(t,n){var r=e.prototype.replaceWith.call(this,t,n);return this.attributes.copy(r),r},t.prototype.update=function(t,n){var r=this;e.prototype.update.call(this,t,n),t.some((function(e){return e.target===r.domNode&&"attributes"===e.type}))&&this.attributes.build()},t.prototype.wrap=function(n,r){var i=e.prototype.wrap.call(this,n,r);return i instanceof t&&i.statics.scope===this.statics.scope&&this.attributes.move(i),i},t}(a.default);t.default=c},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(30),o=n(1),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.value=function(e){return!0},t.prototype.index=function(e,t){return this.domNode===e||this.domNode.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(t,1):-1},t.prototype.position=function(e,t){var n=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return e>0&&(n+=1),[this.parent.domNode,n]},t.prototype.value=function(){var e;return e={},e[this.statics.blotName]=this.statics.value(this.domNode)||!0,e},t.scope=o.Scope.INLINE_BLOT,t}(i.default);t.default=a},function(e,t,n){var r=n(11),i=n(3),o={attributes:{compose:function(e,t,n){"object"!==typeof e&&(e={}),"object"!==typeof t&&(t={});var r=i(!0,{},t);for(var o in n||(r=Object.keys(r).reduce((function(e,t){return null!=r[t]&&(e[t]=r[t]),e}),{})),e)void 0!==e[o]&&void 0===t[o]&&(r[o]=e[o]);return Object.keys(r).length>0?r:void 0},diff:function(e,t){"object"!==typeof e&&(e={}),"object"!==typeof t&&(t={});var n=Object.keys(e).concat(Object.keys(t)).reduce((function(n,i){return r(e[i],t[i])||(n[i]=void 0===t[i]?null:t[i]),n}),{});return Object.keys(n).length>0?n:void 0},transform:function(e,t,n){if("object"!==typeof e)return t;if("object"===typeof t){if(!n)return t;var r=Object.keys(t).reduce((function(n,r){return void 0===e[r]&&(n[r]=t[r]),n}),{});return Object.keys(r).length>0?r:void 0}}},iterator:function(e){return new a(e)},length:function(e){return"number"===typeof e["delete"]?e["delete"]:"number"===typeof e.retain?e.retain:"string"===typeof e.insert?e.insert.length:1}};function a(e){this.ops=e,this.index=0,this.offset=0}a.prototype.hasNext=function(){return this.peekLength()<1/0},a.prototype.next=function(e){e||(e=1/0);var t=this.ops[this.index];if(t){var n=this.offset,r=o.length(t);if(e>=r-n?(e=r-n,this.index+=1,this.offset=0):this.offset+=e,"number"===typeof t["delete"])return{delete:e};var i={};return t.attributes&&(i.attributes=t.attributes),"number"===typeof t.retain?i.retain=e:"string"===typeof t.insert?i.insert=t.insert.substr(n,e):i.insert=t.insert,i}return{retain:1/0}},a.prototype.peek=function(){return this.ops[this.index]},a.prototype.peekLength=function(){return this.ops[this.index]?o.length(this.ops[this.index])-this.offset:1/0},a.prototype.peekType=function(){return this.ops[this.index]?"number"===typeof this.ops[this.index]["delete"]?"delete":"number"===typeof this.ops[this.index].retain?"retain":"insert":"retain"},a.prototype.rest=function(){if(this.hasNext()){if(0===this.offset)return this.ops.slice(this.index);var e=this.offset,t=this.index,n=this.next(),r=this.ops.slice(this.index);return this.offset=e,this.index=t,[n].concat(r)}return[]},e.exports=o},function(e,n){var r=function(){"use strict";function e(e,t){return null!=t&&e instanceof t}var n,r,i;try{n=Map}catch(d){n=function(){}}try{r=Set}catch(d){r=function(){}}try{i=Promise}catch(d){i=function(){}}function o(a,s,c,u,d){"object"===typeof s&&(c=s.depth,u=s.prototype,d=s.includeNonEnumerable,s=s.circular);var f=[],p=[],h="undefined"!=typeof t;function m(a,c){if(null===a)return null;if(0===c)return a;var b,v;if("object"!=typeof a)return a;if(e(a,n))b=new n;else if(e(a,r))b=new r;else if(e(a,i))b=new i((function(e,t){a.then((function(t){e(m(t,c-1))}),(function(e){t(m(e,c-1))}))}));else if(o.__isArray(a))b=[];else if(o.__isRegExp(a))b=new RegExp(a.source,l(a)),a.lastIndex&&(b.lastIndex=a.lastIndex);else if(o.__isDate(a))b=new Date(a.getTime());else{if(h&&t.isBuffer(a))return b=t.allocUnsafe?t.allocUnsafe(a.length):new t(a.length),a.copy(b),b;e(a,Error)?b=Object.create(a):"undefined"==typeof u?(v=Object.getPrototypeOf(a),b=Object.create(v)):(b=Object.create(u),v=u)}if(s){var y=f.indexOf(a);if(-1!=y)return p[y];f.push(a),p.push(b)}for(var M in e(a,n)&&a.forEach((function(e,t){var n=m(t,c-1),r=m(e,c-1);b.set(n,r)})),e(a,r)&&a.forEach((function(e){var t=m(e,c-1);b.add(t)})),a){var _;v&&(_=Object.getOwnPropertyDescriptor(v,M)),_&&null==_.set||(b[M]=m(a[M],c-1))}if(Object.getOwnPropertySymbols){var g=Object.getOwnPropertySymbols(a);for(M=0;M<g.length;M++){var w=g[M],A=Object.getOwnPropertyDescriptor(a,w);(!A||A.enumerable||d)&&(b[w]=m(a[w],c-1),A.enumerable||Object.defineProperty(b,w,{enumerable:!1}))}}if(d){var L=Object.getOwnPropertyNames(a);for(M=0;M<L.length;M++){var O=L[M];A=Object.getOwnPropertyDescriptor(a,O);A&&A.enumerable||(b[O]=m(a[O],c-1),Object.defineProperty(b,O,{enumerable:!1}))}}return b}return"undefined"==typeof s&&(s=!0),"undefined"==typeof c&&(c=1/0),m(a,c)}function a(e){return Object.prototype.toString.call(e)}function s(e){return"object"===typeof e&&"[object Date]"===a(e)}function c(e){return"object"===typeof e&&"[object Array]"===a(e)}function u(e){return"object"===typeof e&&"[object RegExp]"===a(e)}function l(e){var t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),t}return o.clonePrototype=function(e){if(null===e)return null;var t=function(){};return t.prototype=e,new t},o.__objToStr=a,o.__isDate=s,o.__isArray=c,o.__isRegExp=u,o.__getRegExpFlags=l,o}();"object"===typeof e&&e.exports&&(e.exports=r)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},a=n(0),s=y(a),c=n(8),u=y(c),l=n(4),d=y(l),f=n(16),p=y(f),h=n(13),m=y(h),b=n(25),v=y(b);function y(e){return e&&e.__esModule?e:{default:e}}function M(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function g(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function w(e){return e instanceof d.default||e instanceof l.BlockEmbed}var A=function(e){function t(e,n){M(this,t);var r=_(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.emitter=n.emitter,Array.isArray(n.whitelist)&&(r.whitelist=n.whitelist.reduce((function(e,t){return e[t]=!0,e}),{})),r.domNode.addEventListener("DOMNodeInserted",(function(){})),r.optimize(),r.enable(),r}return g(t,e),i(t,[{key:"batchStart",value:function(){this.batch=!0}},{key:"batchEnd",value:function(){this.batch=!1,this.optimize()}},{key:"deleteAt",value:function(e,n){var i=this.line(e),a=r(i,2),s=a[0],c=a[1],u=this.line(e+n),d=r(u,1),f=d[0];if(o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"deleteAt",this).call(this,e,n),null!=f&&s!==f&&c>0){if(s instanceof l.BlockEmbed||f instanceof l.BlockEmbed)return void this.optimize();if(s instanceof m.default){var h=s.newlineIndex(s.length(),!0);if(h>-1&&(s=s.split(h+1),s===f))return void this.optimize()}else if(f instanceof m.default){var b=f.newlineIndex(0);b>-1&&f.split(b+1)}var v=f.children.head instanceof p.default?null:f.children.head;s.moveChildren(f,v),s.remove()}this.optimize()}},{key:"enable",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.domNode.setAttribute("contenteditable",e)}},{key:"formatAt",value:function(e,n,r,i){(null==this.whitelist||this.whitelist[r])&&(o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"formatAt",this).call(this,e,n,r,i),this.optimize())}},{key:"insertAt",value:function(e,n,r){if(null==r||null==this.whitelist||this.whitelist[n]){if(e>=this.length())if(null==r||null==s.default.query(n,s.default.Scope.BLOCK)){var i=s.default.create(this.statics.defaultChild);this.appendChild(i),null==r&&n.endsWith("\n")&&(n=n.slice(0,-1)),i.insertAt(0,n,r)}else{var a=s.default.create(n,r);this.appendChild(a)}else o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,e,n,r);this.optimize()}}},{key:"insertBefore",value:function(e,n){if(e.statics.scope===s.default.Scope.INLINE_BLOT){var r=s.default.create(this.statics.defaultChild);r.appendChild(e),e=r}o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertBefore",this).call(this,e,n)}},{key:"leaf",value:function(e){return this.path(e).pop()||[null,-1]}},{key:"line",value:function(e){return e===this.length()?this.line(e-1):this.descendant(w,e)}},{key:"lines",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE,n=function e(t,n,r){var i=[],o=r;return t.children.forEachAt(n,r,(function(t,n,r){w(t)?i.push(t):t instanceof s.default.Container&&(i=i.concat(e(t,n,o))),o-=r})),i};return n(this,e,t)}},{key:"optimize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!0!==this.batch&&(o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e,n),e.length>0&&this.emitter.emit(u.default.events.SCROLL_OPTIMIZE,e,n))}},{key:"path",value:function(e){return o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"path",this).call(this,e).slice(1)}},{key:"update",value:function(e){if(!0!==this.batch){var n=u.default.sources.USER;"string"===typeof e&&(n=e),Array.isArray(e)||(e=this.observer.takeRecords()),e.length>0&&this.emitter.emit(u.default.events.SCROLL_BEFORE_UPDATE,n,e),o(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"update",this).call(this,e.concat([])),e.length>0&&this.emitter.emit(u.default.events.SCROLL_UPDATE,n,e)}}}]),t}(s.default.Scroll);A.blotName="scroll",A.className="ql-editor",A.tagName="DIV",A.defaultChild="block",A.allowedChildren=[d.default,l.BlockEmbed,v.default],t.default=A},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SHORTKEY=t.default=void 0;var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(21),s=L(a),c=n(11),u=L(c),l=n(3),d=L(l),f=n(2),p=L(f),h=n(20),m=L(h),b=n(0),v=L(b),y=n(5),M=L(y),_=n(10),g=L(_),w=n(9),A=L(w);function L(e){return e&&e.__esModule?e:{default:e}}function O(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function T(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function S(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function k(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var x=(0,g.default)("quill:keyboard"),z=/Mac/i.test(navigator.platform)?"metaKey":"ctrlKey",D=function(e){function t(e,n){T(this,t);var r=S(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.bindings={},Object.keys(r.options.bindings).forEach((function(t){("list autofill"!==t||null==e.scroll.whitelist||e.scroll.whitelist["list"])&&r.options.bindings[t]&&r.addBinding(r.options.bindings[t])})),r.addBinding({key:t.keys.ENTER,shiftKey:null},P),r.addBinding({key:t.keys.ENTER,metaKey:null,ctrlKey:null,altKey:null},(function(){})),/Firefox/i.test(navigator.userAgent)?(r.addBinding({key:t.keys.BACKSPACE},{collapsed:!0},C),r.addBinding({key:t.keys.DELETE},{collapsed:!0},E)):(r.addBinding({key:t.keys.BACKSPACE},{collapsed:!0,prefix:/^.?$/},C),r.addBinding({key:t.keys.DELETE},{collapsed:!0,suffix:/^.?$/},E)),r.addBinding({key:t.keys.BACKSPACE},{collapsed:!1},$),r.addBinding({key:t.keys.DELETE},{collapsed:!1},$),r.addBinding({key:t.keys.BACKSPACE,altKey:null,ctrlKey:null,metaKey:null,shiftKey:null},{collapsed:!0,offset:0},C),r.listen(),r}return k(t,e),o(t,null,[{key:"match",value:function(e,t){return t=q(t),!["altKey","ctrlKey","metaKey","shiftKey"].some((function(n){return!!t[n]!==e[n]&&null!==t[n]}))&&t.key===(e.which||e.keyCode)}}]),o(t,[{key:"addBinding",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=q(e);if(null==r||null==r.key)return x.warn("Attempted to add invalid keyboard binding",r);"function"===typeof t&&(t={handler:t}),"function"===typeof n&&(n={handler:n}),r=(0,d.default)(r,t,n),this.bindings[r.key]=this.bindings[r.key]||[],this.bindings[r.key].push(r)}},{key:"listen",value:function(){var e=this;this.quill.root.addEventListener("keydown",(function(n){if(!n.defaultPrevented){var o=n.which||n.keyCode,a=(e.bindings[o]||[]).filter((function(e){return t.match(n,e)}));if(0!==a.length){var s=e.quill.getSelection();if(null!=s&&e.quill.hasFocus()){var c=e.quill.getLine(s.index),l=i(c,2),d=l[0],f=l[1],p=e.quill.getLeaf(s.index),h=i(p,2),m=h[0],b=h[1],y=0===s.length?[m,b]:e.quill.getLeaf(s.index+s.length),M=i(y,2),_=M[0],g=M[1],w=m instanceof v.default.Text?m.value().slice(0,b):"",A=_ instanceof v.default.Text?_.value().slice(g):"",L={collapsed:0===s.length,empty:0===s.length&&d.length()<=1,format:e.quill.getFormat(s),offset:f,prefix:w,suffix:A},O=a.some((function(t){if(null!=t.collapsed&&t.collapsed!==L.collapsed)return!1;if(null!=t.empty&&t.empty!==L.empty)return!1;if(null!=t.offset&&t.offset!==L.offset)return!1;if(Array.isArray(t.format)){if(t.format.every((function(e){return null==L.format[e]})))return!1}else if("object"===r(t.format)&&!Object.keys(t.format).every((function(e){return!0===t.format[e]?null!=L.format[e]:!1===t.format[e]?null==L.format[e]:(0,u.default)(t.format[e],L.format[e])})))return!1;return!(null!=t.prefix&&!t.prefix.test(L.prefix))&&(!(null!=t.suffix&&!t.suffix.test(L.suffix))&&!0!==t.handler.call(e,s,L))}));O&&n.preventDefault()}}}}))}}]),t}(A.default);function N(e,t){var n,r=e===D.keys.LEFT?"prefix":"suffix";return n={key:e,shiftKey:t,altKey:null},O(n,r,/^$/),O(n,"handler",(function(n){var r=n.index;e===D.keys.RIGHT&&(r+=n.length+1);var o=this.quill.getLeaf(r),a=i(o,1),s=a[0];return!(s instanceof v.default.Embed)||(e===D.keys.LEFT?t?this.quill.setSelection(n.index-1,n.length+1,M.default.sources.USER):this.quill.setSelection(n.index-1,M.default.sources.USER):t?this.quill.setSelection(n.index,n.length+1,M.default.sources.USER):this.quill.setSelection(n.index+n.length+1,M.default.sources.USER),!1)})),n}function C(e,t){if(!(0===e.index||this.quill.getLength()<=1)){var n=this.quill.getLine(e.index),r=i(n,1),o=r[0],a={};if(0===t.offset){var s=this.quill.getLine(e.index-1),c=i(s,1),u=c[0];if(null!=u&&u.length()>1){var l=o.formats(),d=this.quill.getFormat(e.index-1,1);a=m.default.attributes.diff(l,d)||{}}}var f=/[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(t.prefix)?2:1;this.quill.deleteText(e.index-f,f,M.default.sources.USER),Object.keys(a).length>0&&this.quill.formatLine(e.index-f,f,a,M.default.sources.USER),this.quill.focus()}}function E(e,t){var n=/^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(t.suffix)?2:1;if(!(e.index>=this.quill.getLength()-n)){var r={},o=0,a=this.quill.getLine(e.index),s=i(a,1),c=s[0];if(t.offset>=c.length()-1){var u=this.quill.getLine(e.index+1),l=i(u,1),d=l[0];if(d){var f=c.formats(),p=this.quill.getFormat(e.index,1);r=m.default.attributes.diff(f,p)||{},o=d.length()}}this.quill.deleteText(e.index,n,M.default.sources.USER),Object.keys(r).length>0&&this.quill.formatLine(e.index+o-1,n,r,M.default.sources.USER)}}function $(e){var t=this.quill.getLines(e),n={};if(t.length>1){var r=t[0].formats(),i=t[t.length-1].formats();n=m.default.attributes.diff(i,r)||{}}this.quill.deleteText(e,M.default.sources.USER),Object.keys(n).length>0&&this.quill.formatLine(e.index,1,n,M.default.sources.USER),this.quill.setSelection(e.index,M.default.sources.SILENT),this.quill.focus()}function P(e,t){var n=this;e.length>0&&this.quill.scroll.deleteAt(e.index,e.length);var r=Object.keys(t.format).reduce((function(e,n){return v.default.query(n,v.default.Scope.BLOCK)&&!Array.isArray(t.format[n])&&(e[n]=t.format[n]),e}),{});this.quill.insertText(e.index,"\n",r,M.default.sources.USER),this.quill.setSelection(e.index+1,M.default.sources.SILENT),this.quill.focus(),Object.keys(t.format).forEach((function(e){null==r[e]&&(Array.isArray(t.format[e])||"link"!==e&&n.quill.format(e,t.format[e],M.default.sources.USER))}))}function j(e){return{key:D.keys.TAB,shiftKey:!e,format:{"code-block":!0},handler:function(t){var n=v.default.query("code-block"),r=t.index,o=t.length,a=this.quill.scroll.descendant(n,r),s=i(a,2),c=s[0],u=s[1];if(null!=c){var l=this.quill.getIndex(c),d=c.newlineIndex(u,!0)+1,f=c.newlineIndex(l+u+o),p=c.domNode.textContent.slice(d,f).split("\n");u=0,p.forEach((function(t,i){e?(c.insertAt(d+u,n.TAB),u+=n.TAB.length,0===i?r+=n.TAB.length:o+=n.TAB.length):t.startsWith(n.TAB)&&(c.deleteAt(d+u,n.TAB.length),u-=n.TAB.length,0===i?r-=n.TAB.length:o-=n.TAB.length),u+=t.length+1})),this.quill.update(M.default.sources.USER),this.quill.setSelection(r,o,M.default.sources.SILENT)}}}}function Y(e){return{key:e[0].toUpperCase(),shortKey:!0,handler:function(t,n){this.quill.format(e,!n.format[e],M.default.sources.USER)}}}function q(e){if("string"===typeof e||"number"===typeof e)return q({key:e});if("object"===("undefined"===typeof e?"undefined":r(e))&&(e=(0,s.default)(e,!1)),"string"===typeof e.key)if(null!=D.keys[e.key.toUpperCase()])e.key=D.keys[e.key.toUpperCase()];else{if(1!==e.key.length)return null;e.key=e.key.toUpperCase().charCodeAt(0)}return e.shortKey&&(e[z]=e.shortKey,delete e.shortKey),e}D.keys={BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46},D.DEFAULTS={bindings:{bold:Y("bold"),italic:Y("italic"),underline:Y("underline"),indent:{key:D.keys.TAB,format:["blockquote","indent","list"],handler:function(e,t){if(t.collapsed&&0!==t.offset)return!0;this.quill.format("indent","+1",M.default.sources.USER)}},outdent:{key:D.keys.TAB,shiftKey:!0,format:["blockquote","indent","list"],handler:function(e,t){if(t.collapsed&&0!==t.offset)return!0;this.quill.format("indent","-1",M.default.sources.USER)}},"outdent backspace":{key:D.keys.BACKSPACE,collapsed:!0,shiftKey:null,metaKey:null,ctrlKey:null,altKey:null,format:["indent","list"],offset:0,handler:function(e,t){null!=t.format.indent?this.quill.format("indent","-1",M.default.sources.USER):null!=t.format.list&&this.quill.format("list",!1,M.default.sources.USER)}},"indent code-block":j(!0),"outdent code-block":j(!1),"remove tab":{key:D.keys.TAB,shiftKey:!0,collapsed:!0,prefix:/\t$/,handler:function(e){this.quill.deleteText(e.index-1,1,M.default.sources.USER)}},tab:{key:D.keys.TAB,handler:function(e){this.quill.history.cutoff();var t=(new p.default).retain(e.index).delete(e.length).insert("\t");this.quill.updateContents(t,M.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(e.index+1,M.default.sources.SILENT)}},"list empty enter":{key:D.keys.ENTER,collapsed:!0,format:["list"],empty:!0,handler:function(e,t){this.quill.format("list",!1,M.default.sources.USER),t.format.indent&&this.quill.format("indent",!1,M.default.sources.USER)}},"checklist enter":{key:D.keys.ENTER,collapsed:!0,format:{list:"checked"},handler:function(e){var t=this.quill.getLine(e.index),n=i(t,2),r=n[0],o=n[1],a=(0,d.default)({},r.formats(),{list:"checked"}),s=(new p.default).retain(e.index).insert("\n",a).retain(r.length()-o-1).retain(1,{list:"unchecked"});this.quill.updateContents(s,M.default.sources.USER),this.quill.setSelection(e.index+1,M.default.sources.SILENT),this.quill.scrollIntoView()}},"header enter":{key:D.keys.ENTER,collapsed:!0,format:["header"],suffix:/^$/,handler:function(e,t){var n=this.quill.getLine(e.index),r=i(n,2),o=r[0],a=r[1],s=(new p.default).retain(e.index).insert("\n",t.format).retain(o.length()-a-1).retain(1,{header:null});this.quill.updateContents(s,M.default.sources.USER),this.quill.setSelection(e.index+1,M.default.sources.SILENT),this.quill.scrollIntoView()}},"list autofill":{key:" ",collapsed:!0,format:{list:!1},prefix:/^\s*?(\d+\.|-|\*|\[ ?\]|\[x\])$/,handler:function(e,t){var n=t.prefix.length,r=this.quill.getLine(e.index),o=i(r,2),a=o[0],s=o[1];if(s>n)return!0;var c=void 0;switch(t.prefix.trim()){case"[]":case"[ ]":c="unchecked";break;case"[x]":c="checked";break;case"-":case"*":c="bullet";break;default:c="ordered"}this.quill.insertText(e.index," ",M.default.sources.USER),this.quill.history.cutoff();var u=(new p.default).retain(e.index-s).delete(n+1).retain(a.length()-2-s).retain(1,{list:c});this.quill.updateContents(u,M.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(e.index-n,M.default.sources.SILENT)}},"code exit":{key:D.keys.ENTER,collapsed:!0,format:["code-block"],prefix:/\n\n$/,suffix:/^\s+$/,handler:function(e){var t=this.quill.getLine(e.index),n=i(t,2),r=n[0],o=n[1],a=(new p.default).retain(e.index+r.length()-o-2).retain(1,{"code-block":null}).delete(1);this.quill.updateContents(a,M.default.sources.USER)}},"embed left":N(D.keys.LEFT,!1),"embed left shift":N(D.keys.LEFT,!0),"embed right":N(D.keys.RIGHT,!1),"embed right shift":N(D.keys.RIGHT,!0)}},t.default=D,t.SHORTKEY=z},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),s=l(a),c=n(7),u=l(c);function l(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function p(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var h=function(e){function t(e,n){d(this,t);var r=f(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.selection=n,r.textNode=document.createTextNode(t.CONTENTS),r.domNode.appendChild(r.textNode),r._length=0,r}return p(t,e),o(t,null,[{key:"value",value:function(){}}]),o(t,[{key:"detach",value:function(){null!=this.parent&&this.parent.removeChild(this)}},{key:"format",value:function(e,n){if(0!==this._length)return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n);var r=this,o=0;while(null!=r&&r.statics.scope!==s.default.Scope.BLOCK_BLOT)o+=r.offset(r.parent),r=r.parent;null!=r&&(this._length=t.CONTENTS.length,r.optimize(),r.formatAt(o,t.CONTENTS.length,e,n),this._length=0)}},{key:"index",value:function(e,n){return e===this.textNode?0:i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"index",this).call(this,e,n)}},{key:"length",value:function(){return this._length}},{key:"position",value:function(){return[this.textNode,this.textNode.data.length]}},{key:"remove",value:function(){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"remove",this).call(this),this.parent=null}},{key:"restore",value:function(){if(!this.selection.composing&&null!=this.parent){var e=this.textNode,n=this.selection.getNativeRange(),i=void 0,o=void 0,a=void 0;if(null!=n&&n.start.node===e&&n.end.node===e){var c=[e,n.start.offset,n.end.offset];i=c[0],o=c[1],a=c[2]}while(null!=this.domNode.lastChild&&this.domNode.lastChild!==this.textNode)this.domNode.parentNode.insertBefore(this.domNode.lastChild,this.domNode);if(this.textNode.data!==t.CONTENTS){var l=this.textNode.data.split(t.CONTENTS).join("");this.next instanceof u.default?(i=this.next.domNode,this.next.insertAt(0,l),this.textNode.data=t.CONTENTS):(this.textNode.data=l,this.parent.insertBefore(s.default.create(this.textNode),this),this.textNode=document.createTextNode(t.CONTENTS),this.domNode.appendChild(this.textNode))}if(this.remove(),null!=o){var d=[o,a].map((function(e){return Math.max(0,Math.min(i.data.length,e-1))})),f=r(d,2);return o=f[0],a=f[1],{startNode:i,startOffset:o,endNode:i,endOffset:a}}}}},{key:"update",value:function(e,t){var n=this;if(e.some((function(e){return"characterData"===e.type&&e.target===n.textNode}))){var r=this.restore();r&&(t.range=r)}}},{key:"value",value:function(){return""}}]),t}(s.default.Embed);h.blotName="cursor",h.className="ql-cursor",h.tagName="span",h.CONTENTS="\ufeff",t.default=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=s(r),o=n(4),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),t}(i.default.Container);d.allowedChildren=[a.default,o.BlockEmbed,d],t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ColorStyle=t.ColorClass=t.ColorAttributor=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"value",value:function(e){var n=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"value",this).call(this,e);return n.startsWith("rgb(")?(n=n.replace(/^[^\d]+/,"").replace(/[^\d]+$/,""),"#"+n.split(",").map((function(e){return("00"+parseInt(e).toString(16)).slice(-2)})).join("")):n}}]),t}(a.default.Attributor.Style),f=new a.default.Attributor.Class("color","ql-color",{scope:a.default.Scope.INLINE}),p=new d("color","color",{scope:a.default.Scope.INLINE});t.ColorAttributor=d,t.ColorClass=f,t.ColorStyle=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.sanitize=t.default=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(6),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"format",value:function(e,n){if(e!==this.statics.blotName||!n)return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n);n=this.constructor.sanitize(n),this.domNode.setAttribute("href",n)}}],[{key:"create",value:function(e){var n=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return e=this.sanitize(e),n.setAttribute("href",e),n.setAttribute("rel","noopener noreferrer"),n.setAttribute("target","_blank"),n}},{key:"formats",value:function(e){return e.getAttribute("href")}},{key:"sanitize",value:function(e){return f(e,this.PROTOCOL_WHITELIST)?e:this.SANITIZED_URL}}]),t}(a.default);function f(e,t){var n=document.createElement("a");n.href=e;var r=n.href.slice(0,n.href.indexOf(":"));return t.indexOf(r)>-1}d.blotName="link",d.tagName="A",d.SANITIZED_URL="about:blank",d.PROTOCOL_WHITELIST=["http","https","mailto","tel"],t.default=d,t.sanitize=f},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(23),a=u(o),s=n(107),c=u(s);function u(e){return e&&e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var d=0;function f(e,t){e.setAttribute(t,!("true"===e.getAttribute(t)))}var p=function(){function e(t){var n=this;l(this,e),this.select=t,this.container=document.createElement("span"),this.buildPicker(),this.select.style.display="none",this.select.parentNode.insertBefore(this.container,this.select),this.label.addEventListener("mousedown",(function(){n.togglePicker()})),this.label.addEventListener("keydown",(function(e){switch(e.keyCode){case a.default.keys.ENTER:n.togglePicker();break;case a.default.keys.ESCAPE:n.escape(),e.preventDefault();break;default:}})),this.select.addEventListener("change",this.update.bind(this))}return i(e,[{key:"togglePicker",value:function(){this.container.classList.toggle("ql-expanded"),f(this.label,"aria-expanded"),f(this.options,"aria-hidden")}},{key:"buildItem",value:function(e){var t=this,n=document.createElement("span");return n.tabIndex="0",n.setAttribute("role","button"),n.classList.add("ql-picker-item"),e.hasAttribute("value")&&n.setAttribute("data-value",e.getAttribute("value")),e.textContent&&n.setAttribute("data-label",e.textContent),n.addEventListener("click",(function(){t.selectItem(n,!0)})),n.addEventListener("keydown",(function(e){switch(e.keyCode){case a.default.keys.ENTER:t.selectItem(n,!0),e.preventDefault();break;case a.default.keys.ESCAPE:t.escape(),e.preventDefault();break;default:}})),n}},{key:"buildLabel",value:function(){var e=document.createElement("span");return e.classList.add("ql-picker-label"),e.innerHTML=c.default,e.tabIndex="0",e.setAttribute("role","button"),e.setAttribute("aria-expanded","false"),this.container.appendChild(e),e}},{key:"buildOptions",value:function(){var e=this,t=document.createElement("span");t.classList.add("ql-picker-options"),t.setAttribute("aria-hidden","true"),t.tabIndex="-1",t.id="ql-picker-options-"+d,d+=1,this.label.setAttribute("aria-controls",t.id),this.options=t,[].slice.call(this.select.options).forEach((function(n){var r=e.buildItem(n);t.appendChild(r),!0===n.selected&&e.selectItem(r)})),this.container.appendChild(t)}},{key:"buildPicker",value:function(){var e=this;[].slice.call(this.select.attributes).forEach((function(t){e.container.setAttribute(t.name,t.value)})),this.container.classList.add("ql-picker"),this.label=this.buildLabel(),this.buildOptions()}},{key:"escape",value:function(){var e=this;this.close(),setTimeout((function(){return e.label.focus()}),1)}},{key:"close",value:function(){this.container.classList.remove("ql-expanded"),this.label.setAttribute("aria-expanded","false"),this.options.setAttribute("aria-hidden","true")}},{key:"selectItem",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.container.querySelector(".ql-selected");if(e!==n&&(null!=n&&n.classList.remove("ql-selected"),null!=e&&(e.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(e.parentNode.children,e),e.hasAttribute("data-value")?this.label.setAttribute("data-value",e.getAttribute("data-value")):this.label.removeAttribute("data-value"),e.hasAttribute("data-label")?this.label.setAttribute("data-label",e.getAttribute("data-label")):this.label.removeAttribute("data-label"),t))){if("function"===typeof Event)this.select.dispatchEvent(new Event("change"));else if("object"===("undefined"===typeof Event?"undefined":r(Event))){var i=document.createEvent("Event");i.initEvent("change",!0,!0),this.select.dispatchEvent(i)}this.close()}}},{key:"update",value:function(){var e=void 0;if(this.select.selectedIndex>-1){var t=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];e=this.select.options[this.select.selectedIndex],this.selectItem(t)}else this.selectItem(null);var n=null!=e&&e!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",n)}}]),e}();t.default=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=x(r),o=n(5),a=x(o),s=n(4),c=x(s),u=n(16),l=x(u),d=n(25),f=x(d),p=n(24),h=x(p),m=n(35),b=x(m),v=n(6),y=x(v),M=n(22),_=x(M),g=n(7),w=x(g),A=n(55),L=x(A),O=n(42),T=x(O),S=n(23),k=x(S);function x(e){return e&&e.__esModule?e:{default:e}}a.default.register({"blots/block":c.default,"blots/block/embed":s.BlockEmbed,"blots/break":l.default,"blots/container":f.default,"blots/cursor":h.default,"blots/embed":b.default,"blots/inline":y.default,"blots/scroll":_.default,"blots/text":w.default,"modules/clipboard":L.default,"modules/history":T.default,"modules/keyboard":k.default}),i.default.register(c.default,l.default,h.default,y.default,_.default,w.default),t.default=a.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=function(){function e(e){this.domNode=e,this.domNode[r.DATA_KEY]={blot:this}}return Object.defineProperty(e.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),e.create=function(e){if(null==this.tagName)throw new r.ParchmentError("Blot definition missing tagName");var t;return Array.isArray(this.tagName)?("string"===typeof e&&(e=e.toUpperCase(),parseInt(e).toString()===e&&(e=parseInt(e))),t="number"===typeof e?document.createElement(this.tagName[e-1]):this.tagName.indexOf(e)>-1?document.createElement(e):document.createElement(this.tagName[0])):t=document.createElement(this.tagName),this.className&&t.classList.add(this.className),t},e.prototype.attach=function(){null!=this.parent&&(this.scroll=this.parent.scroll)},e.prototype.clone=function(){var e=this.domNode.cloneNode(!1);return r.create(e)},e.prototype.detach=function(){null!=this.parent&&this.parent.removeChild(this),delete this.domNode[r.DATA_KEY]},e.prototype.deleteAt=function(e,t){var n=this.isolate(e,t);n.remove()},e.prototype.formatAt=function(e,t,n,i){var o=this.isolate(e,t);if(null!=r.query(n,r.Scope.BLOT)&&i)o.wrap(n,i);else if(null!=r.query(n,r.Scope.ATTRIBUTE)){var a=r.create(this.statics.scope);o.wrap(a),a.format(n,i)}},e.prototype.insertAt=function(e,t,n){var i=null==n?r.create("text",t):r.create(t,n),o=this.split(e);this.parent.insertBefore(i,o)},e.prototype.insertInto=function(e,t){void 0===t&&(t=null),null!=this.parent&&this.parent.children.remove(this);var n=null;e.children.insertBefore(this,t),null!=t&&(n=t.domNode),this.domNode.parentNode==e.domNode&&this.domNode.nextSibling==n||e.domNode.insertBefore(this.domNode,n),this.parent=e,this.attach()},e.prototype.isolate=function(e,t){var n=this.split(e);return n.split(t),n},e.prototype.length=function(){return 1},e.prototype.offset=function(e){return void 0===e&&(e=this.parent),null==this.parent||this==e?0:this.parent.children.offset(this)+this.parent.offset(e)},e.prototype.optimize=function(e){null!=this.domNode[r.DATA_KEY]&&delete this.domNode[r.DATA_KEY].mutations},e.prototype.remove=function(){null!=this.domNode.parentNode&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},e.prototype.replace=function(e){null!=e.parent&&(e.parent.insertBefore(this,e.next),e.remove())},e.prototype.replaceWith=function(e,t){var n="string"===typeof e?r.create(e,t):e;return n.replace(this),n},e.prototype.split=function(e,t){return 0===e?this:this.next},e.prototype.update=function(e,t){},e.prototype.wrap=function(e,t){var n="string"===typeof e?r.create(e,t):e;return null!=this.parent&&this.parent.insertBefore(n,this.next),n.appendChild(this),n},e.blotName="abstract",e}();t.default=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(12),i=n(32),o=n(33),a=n(1),s=function(){function e(e){this.attributes={},this.domNode=e,this.build()}return e.prototype.attribute=function(e,t){t?e.add(this.domNode,t)&&(null!=e.value(this.domNode)?this.attributes[e.attrName]=e:delete this.attributes[e.attrName]):(e.remove(this.domNode),delete this.attributes[e.attrName])},e.prototype.build=function(){var e=this;this.attributes={};var t=r.default.keys(this.domNode),n=i.default.keys(this.domNode),s=o.default.keys(this.domNode);t.concat(n).concat(s).forEach((function(t){var n=a.query(t,a.Scope.ATTRIBUTE);n instanceof r.default&&(e.attributes[n.attrName]=n)}))},e.prototype.copy=function(e){var t=this;Object.keys(this.attributes).forEach((function(n){var r=t.attributes[n].value(t.domNode);e.format(n,r)}))},e.prototype.move=function(e){var t=this;this.copy(e),Object.keys(this.attributes).forEach((function(e){t.attributes[e].remove(t.domNode)})),this.attributes={}},e.prototype.values=function(){var e=this;return Object.keys(this.attributes).reduce((function(t,n){return t[n]=e.attributes[n].value(e.domNode),t}),{})},e}();t.default=s},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(12);function o(e,t){var n=e.getAttribute("class")||"";return n.split(/\s+/).filter((function(e){return 0===e.indexOf(t+"-")}))}var a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.keys=function(e){return(e.getAttribute("class")||"").split(/\s+/).map((function(e){return e.split("-").slice(0,-1).join("-")}))},t.prototype.add=function(e,t){return!!this.canAdd(e,t)&&(this.remove(e),e.classList.add(this.keyName+"-"+t),!0)},t.prototype.remove=function(e){var t=o(e,this.keyName);t.forEach((function(t){e.classList.remove(t)})),0===e.classList.length&&e.removeAttribute("class")},t.prototype.value=function(e){var t=o(e,this.keyName)[0]||"",n=t.slice(this.keyName.length+1);return this.canAdd(e,n)?n:""},t}(i.default);t.default=a},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(12);function o(e){var t=e.split("-"),n=t.slice(1).map((function(e){return e[0].toUpperCase()+e.slice(1)})).join("");return t[0]+n}var a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.keys=function(e){return(e.getAttribute("style")||"").split(";").map((function(e){var t=e.split(":");return t[0].trim()}))},t.prototype.add=function(e,t){return!!this.canAdd(e,t)&&(e.style[o(this.keyName)]=t,!0)},t.prototype.remove=function(e){e.style[o(this.keyName)]="",e.getAttribute("style")||e.removeAttribute("style")},t.prototype.value=function(e){var t=e.style[o(this.keyName)];return this.canAdd(e,t)?t:""},t}(i.default);t.default=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var o=function(){function e(t,n){i(this,e),this.quill=t,this.options=n,this.modules={}}return r(e,[{key:"init",value:function(){var e=this;Object.keys(this.options.modules).forEach((function(t){null==e.modules[t]&&e.addModule(t)}))}},{key:"addModule",value:function(e){var t=this.quill.constructor.import("modules/"+e);return this.modules[e]=new t(this.quill,this.options.modules[e]||{}),this.modules[e]}}]),e}();o.DEFAULTS={modules:{}},o.themes={default:o},t.default=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=u(o),s=n(7),c=u(s);function u(e){return e&&e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function f(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var p="\ufeff",h=function(e){function t(e){l(this,t);var n=d(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.contentNode=document.createElement("span"),n.contentNode.setAttribute("contenteditable",!1),[].slice.call(n.domNode.childNodes).forEach((function(e){n.contentNode.appendChild(e)})),n.leftGuard=document.createTextNode(p),n.rightGuard=document.createTextNode(p),n.domNode.appendChild(n.leftGuard),n.domNode.appendChild(n.contentNode),n.domNode.appendChild(n.rightGuard),n}return f(t,e),r(t,[{key:"index",value:function(e,n){return e===this.leftGuard?0:e===this.rightGuard?1:i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"index",this).call(this,e,n)}},{key:"restore",value:function(e){var t=void 0,n=void 0,r=e.data.split(p).join("");if(e===this.leftGuard)if(this.prev instanceof c.default){var i=this.prev.length();this.prev.insertAt(i,r),t={startNode:this.prev.domNode,startOffset:i+r.length}}else n=document.createTextNode(r),this.parent.insertBefore(a.default.create(n),this),t={startNode:n,startOffset:r.length};else e===this.rightGuard&&(this.next instanceof c.default?(this.next.insertAt(0,r),t={startNode:this.next.domNode,startOffset:r.length}):(n=document.createTextNode(r),this.parent.insertBefore(a.default.create(n),this.next),t={startNode:n,startOffset:r.length}));return e.data=p,t}},{key:"update",value:function(e,t){var n=this;e.forEach((function(e){if("characterData"===e.type&&(e.target===n.leftGuard||e.target===n.rightGuard)){var r=n.restore(e.target);r&&(t.range=r)}}))}}]),t}(a.default.Embed);t.default=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AlignStyle=t.AlignClass=t.AlignAttribute=void 0;var r=n(0),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var a={scope:i.default.Scope.BLOCK,whitelist:["right","center","justify"]},s=new i.default.Attributor.Attribute("align","align",a),c=new i.default.Attributor.Class("align","ql-align",a),u=new i.default.Attributor.Style("align","text-align",a);t.AlignAttribute=s,t.AlignClass=c,t.AlignStyle=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BackgroundStyle=t.BackgroundClass=void 0;var r=n(0),i=a(r),o=n(26);function a(e){return e&&e.__esModule?e:{default:e}}var s=new i.default.Attributor.Class("background","ql-bg",{scope:i.default.Scope.INLINE}),c=new o.ColorAttributor("background","background-color",{scope:i.default.Scope.INLINE});t.BackgroundClass=s,t.BackgroundStyle=c},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DirectionStyle=t.DirectionClass=t.DirectionAttribute=void 0;var r=n(0),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var a={scope:i.default.Scope.BLOCK,whitelist:["rtl"]},s=new i.default.Attributor.Attribute("direction","dir",a),c=new i.default.Attributor.Class("direction","ql-direction",a),u=new i.default.Attributor.Style("direction","direction",a);t.DirectionAttribute=s,t.DirectionClass=c,t.DirectionStyle=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FontClass=t.FontStyle=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d={scope:a.default.Scope.INLINE,whitelist:["serif","monospace"]},f=new a.default.Attributor.Class("font","ql-font",d),p=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"value",value:function(e){return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"value",this).call(this,e).replace(/["']/g,"")}}]),t}(a.default.Attributor.Style),h=new p("font","font-family",d);t.FontStyle=h,t.FontClass=f},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SizeStyle=t.SizeClass=void 0;var r=n(0),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var a=new i.default.Attributor.Class("size","ql-size",{scope:i.default.Scope.INLINE,whitelist:["small","large","huge"]}),s=new i.default.Attributor.Style("size","font-size",{scope:i.default.Scope.INLINE,whitelist:["10px","18px","32px"]});t.SizeClass=a,t.SizeStyle=s},function(e,t,n){"use strict";e.exports={align:{"":n(76),center:n(77),right:n(78),justify:n(79)},background:n(80),blockquote:n(81),bold:n(82),clean:n(83),code:n(58),"code-block":n(58),color:n(84),direction:{"":n(85),rtl:n(86)},float:{center:n(87),full:n(88),left:n(89),right:n(90)},formula:n(91),header:{1:n(92),2:n(93)},italic:n(94),image:n(95),indent:{"+1":n(96),"-1":n(97)},link:n(98),list:{ordered:n(99),bullet:n(100),check:n(101)},script:{sub:n(102),super:n(103)},strike:n(104),underline:n(105),video:n(106)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getLastChangeIndex=t.default=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=n(0),o=l(i),a=n(5),s=l(a),c=n(9),u=l(c);function l(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function p(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var h=function(e){function t(e,n){d(this,t);var r=f(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.lastRecorded=0,r.ignoreChange=!1,r.clear(),r.quill.on(s.default.events.EDITOR_CHANGE,(function(e,t,n,i){e!==s.default.events.TEXT_CHANGE||r.ignoreChange||(r.options.userOnly&&i!==s.default.sources.USER?r.transform(t):r.record(t,n))})),r.quill.keyboard.addBinding({key:"Z",shortKey:!0},r.undo.bind(r)),r.quill.keyboard.addBinding({key:"Z",shortKey:!0,shiftKey:!0},r.redo.bind(r)),/Win/i.test(navigator.platform)&&r.quill.keyboard.addBinding({key:"Y",shortKey:!0},r.redo.bind(r)),r}return p(t,e),r(t,[{key:"change",value:function(e,t){if(0!==this.stack[e].length){var n=this.stack[e].pop();this.stack[t].push(n),this.lastRecorded=0,this.ignoreChange=!0,this.quill.updateContents(n[e],s.default.sources.USER),this.ignoreChange=!1;var r=b(n[e]);this.quill.setSelection(r)}}},{key:"clear",value:function(){this.stack={undo:[],redo:[]}}},{key:"cutoff",value:function(){this.lastRecorded=0}},{key:"record",value:function(e,t){if(0!==e.ops.length){this.stack.redo=[];var n=this.quill.getContents().diff(t),r=Date.now();if(this.lastRecorded+this.options.delay>r&&this.stack.undo.length>0){var i=this.stack.undo.pop();n=n.compose(i.undo),e=i.redo.compose(e)}else this.lastRecorded=r;this.stack.undo.push({redo:e,undo:n}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(e){this.stack.undo.forEach((function(t){t.undo=e.transform(t.undo,!0),t.redo=e.transform(t.redo,!0)})),this.stack.redo.forEach((function(t){t.undo=e.transform(t.undo,!0),t.redo=e.transform(t.redo,!0)}))}},{key:"undo",value:function(){this.change("undo","redo")}}]),t}(u.default);function m(e){var t=e.ops[e.ops.length-1];return null!=t&&(null!=t.insert?"string"===typeof t.insert&&t.insert.endsWith("\n"):null!=t.attributes&&Object.keys(t.attributes).some((function(e){return null!=o.default.query(e,o.default.Scope.BLOCK)})))}function b(e){var t=e.reduce((function(e,t){return e+=t.delete||0,e}),0),n=e.length()-t;return m(e)&&(n-=1),n}h.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1},t.default=h,t.getLastChangeIndex=b},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.BaseTooltip=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(3),a=A(o),s=n(2),c=A(s),u=n(8),l=A(u),d=n(23),f=A(d),p=n(34),h=A(p),m=n(59),b=A(m),v=n(60),y=A(v),M=n(28),_=A(M),g=n(61),w=A(g);function A(e){return e&&e.__esModule?e:{default:e}}function L(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function O(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function T(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var S=[!1,"center","right","justify"],k=["#000000","#e60000","#ff9900","#ffff00","#008a00","#0066cc","#9933ff","#ffffff","#facccc","#ffebcc","#ffffcc","#cce8cc","#cce0f5","#ebd6ff","#bbbbbb","#f06666","#ffc266","#ffff66","#66b966","#66a3e0","#c285ff","#888888","#a10000","#b26b00","#b2b200","#006100","#0047b2","#6b24b2","#444444","#5c0000","#663d00","#666600","#003700","#002966","#3d1466"],x=[!1,"serif","monospace"],z=["1","2","3",!1],D=["small",!1,"large","huge"],N=function(e){function t(e,n){L(this,t);var r=O(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n)),i=function t(n){if(!document.body.contains(e.root))return document.body.removeEventListener("click",t);null==r.tooltip||r.tooltip.root.contains(n.target)||document.activeElement===r.tooltip.textbox||r.quill.hasFocus()||r.tooltip.hide(),null!=r.pickers&&r.pickers.forEach((function(e){e.container.contains(n.target)||e.close()}))};return e.emitter.listenDOM("click",document.body,i),r}return T(t,e),r(t,[{key:"addModule",value:function(e){var n=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"addModule",this).call(this,e);return"toolbar"===e&&this.extendToolbar(n),n}},{key:"buildButtons",value:function(e,t){e.forEach((function(e){var n=e.getAttribute("class")||"";n.split(/\s+/).forEach((function(n){if(n.startsWith("ql-")&&(n=n.slice("ql-".length),null!=t[n]))if("direction"===n)e.innerHTML=t[n][""]+t[n]["rtl"];else if("string"===typeof t[n])e.innerHTML=t[n];else{var r=e.value||"";null!=r&&t[n][r]&&(e.innerHTML=t[n][r])}}))}))}},{key:"buildPickers",value:function(e,t){var n=this;this.pickers=e.map((function(e){if(e.classList.contains("ql-align"))return null==e.querySelector("option")&&$(e,S),new y.default(e,t.align);if(e.classList.contains("ql-background")||e.classList.contains("ql-color")){var n=e.classList.contains("ql-background")?"background":"color";return null==e.querySelector("option")&&$(e,k,"background"===n?"#ffffff":"#000000"),new b.default(e,t[n])}return null==e.querySelector("option")&&(e.classList.contains("ql-font")?$(e,x):e.classList.contains("ql-header")?$(e,z):e.classList.contains("ql-size")&&$(e,D)),new _.default(e)}));var r=function(){n.pickers.forEach((function(e){e.update()}))};this.quill.on(l.default.events.EDITOR_CHANGE,r)}}]),t}(h.default);N.DEFAULTS=(0,a.default)(!0,{},h.default.DEFAULTS,{modules:{toolbar:{handlers:{formula:function(){this.quill.theme.tooltip.edit("formula")},image:function(){var e=this,t=this.container.querySelector("input.ql-image[type=file]");null==t&&(t=document.createElement("input"),t.setAttribute("type","file"),t.setAttribute("accept","image/png, image/gif, image/jpeg, image/bmp, image/x-icon"),t.classList.add("ql-image"),t.addEventListener("change",(function(){if(null!=t.files&&null!=t.files[0]){var n=new FileReader;n.onload=function(n){var r=e.quill.getSelection(!0);e.quill.updateContents((new c.default).retain(r.index).delete(r.length).insert({image:n.target.result}),l.default.sources.USER),e.quill.setSelection(r.index+1,l.default.sources.SILENT),t.value=""},n.readAsDataURL(t.files[0])}})),this.container.appendChild(t)),t.click()},video:function(){this.quill.theme.tooltip.edit("video")}}}}});var C=function(e){function t(e,n){L(this,t);var r=O(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.textbox=r.root.querySelector('input[type="text"]'),r.listen(),r}return T(t,e),r(t,[{key:"listen",value:function(){var e=this;this.textbox.addEventListener("keydown",(function(t){f.default.match(t,"enter")?(e.save(),t.preventDefault()):f.default.match(t,"escape")&&(e.cancel(),t.preventDefault())}))}},{key:"cancel",value:function(){this.hide()}},{key:"edit",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"link",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),null!=t?this.textbox.value=t:e!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+e)||""),this.root.setAttribute("data-mode",e)}},{key:"restoreFocus",value:function(){var e=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=e}},{key:"save",value:function(){var e=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":var t=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",e,l.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",e,l.default.sources.USER)),this.quill.root.scrollTop=t;break;case"video":e=E(e);case"formula":if(!e)break;var n=this.quill.getSelection(!0);if(null!=n){var r=n.index+n.length;this.quill.insertEmbed(r,this.root.getAttribute("data-mode"),e,l.default.sources.USER),"formula"===this.root.getAttribute("data-mode")&&this.quill.insertText(r+1," ",l.default.sources.USER),this.quill.setSelection(r+2,l.default.sources.USER)}break;default:}this.textbox.value="",this.hide()}}]),t}(w.default);function E(e){var t=e.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||e.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return t?(t[1]||"https")+"://www.youtube.com/embed/"+t[2]+"?showinfo=0":(t=e.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(t[1]||"https")+"://player.vimeo.com/video/"+t[2]+"/":e}function $(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];t.forEach((function(t){var r=document.createElement("option");t===n?r.setAttribute("selected","selected"):r.setAttribute("value",t),e.appendChild(r)}))}t.BaseTooltip=C,t.default=N},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(){this.head=this.tail=null,this.length=0}return e.prototype.append=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.insertBefore(e[0],null),e.length>1&&this.append.apply(this,e.slice(1))},e.prototype.contains=function(e){var t,n=this.iterator();while(t=n())if(t===e)return!0;return!1},e.prototype.insertBefore=function(e,t){e&&(e.next=t,null!=t?(e.prev=t.prev,null!=t.prev&&(t.prev.next=e),t.prev=e,t===this.head&&(this.head=e)):null!=this.tail?(this.tail.next=e,e.prev=this.tail,this.tail=e):(e.prev=null,this.head=this.tail=e),this.length+=1)},e.prototype.offset=function(e){var t=0,n=this.head;while(null!=n){if(n===e)return t;t+=n.length(),n=n.next}return-1},e.prototype.remove=function(e){this.contains(e)&&(null!=e.prev&&(e.prev.next=e.next),null!=e.next&&(e.next.prev=e.prev),e===this.head&&(this.head=e.next),e===this.tail&&(this.tail=e.prev),this.length-=1)},e.prototype.iterator=function(e){return void 0===e&&(e=this.head),function(){var t=e;return null!=e&&(e=e.next),t}},e.prototype.find=function(e,t){void 0===t&&(t=!1);var n,r=this.iterator();while(n=r()){var i=n.length();if(e<i||t&&e===i&&(null==n.next||0!==n.next.length()))return[n,e];e-=i}return[null,0]},e.prototype.forEach=function(e){var t,n=this.iterator();while(t=n())e(t)},e.prototype.forEachAt=function(e,t,n){if(!(t<=0)){var r,i=this.find(e),o=i[0],a=i[1],s=e-a,c=this.iterator(o);while((r=c())&&s<e+t){var u=r.length();e>s?n(r,e-s,Math.min(t,s+u-e)):n(r,0,Math.min(u,e+t-s)),s+=u}}},e.prototype.map=function(e){return this.reduce((function(t,n){return t.push(e(n)),t}),[])},e.prototype.reduce=function(e,t){var n,r=this.iterator();while(n=r())t=e(t,n);return t},e}();t.default=r},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(17),o=n(1),a={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},s=100,c=function(e){function t(t){var n=e.call(this,t)||this;return n.scroll=n,n.observer=new MutationObserver((function(e){n.update(e)})),n.observer.observe(n.domNode,a),n.attach(),n}return r(t,e),t.prototype.detach=function(){e.prototype.detach.call(this),this.observer.disconnect()},t.prototype.deleteAt=function(t,n){this.update(),0===t&&n===this.length()?this.children.forEach((function(e){e.remove()})):e.prototype.deleteAt.call(this,t,n)},t.prototype.formatAt=function(t,n,r,i){this.update(),e.prototype.formatAt.call(this,t,n,r,i)},t.prototype.insertAt=function(t,n,r){this.update(),e.prototype.insertAt.call(this,t,n,r)},t.prototype.optimize=function(t,n){var r=this;void 0===t&&(t=[]),void 0===n&&(n={}),e.prototype.optimize.call(this,n);var a=[].slice.call(this.observer.takeRecords());while(a.length>0)t.push(a.pop());for(var c=function(e,t){void 0===t&&(t=!0),null!=e&&e!==r&&null!=e.domNode.parentNode&&(null==e.domNode[o.DATA_KEY].mutations&&(e.domNode[o.DATA_KEY].mutations=[]),t&&c(e.parent))},u=function(e){null!=e.domNode[o.DATA_KEY]&&null!=e.domNode[o.DATA_KEY].mutations&&(e instanceof i.default&&e.children.forEach(u),e.optimize(n))},l=t,d=0;l.length>0;d+=1){if(d>=s)throw new Error("[Parchment] Maximum optimize iterations reached");l.forEach((function(e){var t=o.find(e.target,!0);null!=t&&(t.domNode===e.target&&("childList"===e.type?(c(o.find(e.previousSibling,!1)),[].forEach.call(e.addedNodes,(function(e){var t=o.find(e,!1);c(t,!1),t instanceof i.default&&t.children.forEach((function(e){c(e,!1)}))}))):"attributes"===e.type&&c(t.prev)),c(t))})),this.children.forEach(u),l=[].slice.call(this.observer.takeRecords()),a=l.slice();while(a.length>0)t.push(a.pop())}},t.prototype.update=function(t,n){var r=this;void 0===n&&(n={}),t=t||this.observer.takeRecords(),t.map((function(e){var t=o.find(e.target,!0);return null==t?null:null==t.domNode[o.DATA_KEY].mutations?(t.domNode[o.DATA_KEY].mutations=[e],t):(t.domNode[o.DATA_KEY].mutations.push(e),null)})).forEach((function(e){null!=e&&e!==r&&null!=e.domNode[o.DATA_KEY]&&e.update(e.domNode[o.DATA_KEY].mutations||[],n)})),null!=this.domNode[o.DATA_KEY].mutations&&e.prototype.update.call(this,this.domNode[o.DATA_KEY].mutations,n),this.optimize(t,n)},t.blotName="scroll",t.defaultChild="block",t.scope=o.Scope.BLOCK_BLOT,t.tagName="DIV",t}(i.default);t.default=c},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(18),o=n(1);function a(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(e[n]!==t[n])return!1;return!0}var s=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.formats=function(n){if(n.tagName!==t.tagName)return e.formats.call(this,n)},t.prototype.format=function(n,r){var o=this;n!==this.statics.blotName||r?e.prototype.format.call(this,n,r):(this.children.forEach((function(e){e instanceof i.default||(e=e.wrap(t.blotName,!0)),o.attributes.copy(e)})),this.unwrap())},t.prototype.formatAt=function(t,n,r,i){if(null!=this.formats()[r]||o.query(r,o.Scope.ATTRIBUTE)){var a=this.isolate(t,n);a.format(r,i)}else e.prototype.formatAt.call(this,t,n,r,i)},t.prototype.optimize=function(n){e.prototype.optimize.call(this,n);var r=this.formats();if(0===Object.keys(r).length)return this.unwrap();var i=this.next;i instanceof t&&i.prev===this&&a(r,i.formats())&&(i.moveChildren(this),i.remove())},t.blotName="inline",t.scope=o.Scope.INLINE_BLOT,t.tagName="SPAN",t}(i.default);t.default=s},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(18),o=n(1),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.formats=function(n){var r=o.query(t.blotName).tagName;if(n.tagName!==r)return e.formats.call(this,n)},t.prototype.format=function(n,r){null!=o.query(n,o.Scope.BLOCK)&&(n!==this.statics.blotName||r?e.prototype.format.call(this,n,r):this.replaceWith(t.blotName))},t.prototype.formatAt=function(t,n,r,i){null!=o.query(r,o.Scope.BLOCK)?this.format(r,i):e.prototype.formatAt.call(this,t,n,r,i)},t.prototype.insertAt=function(t,n,r){if(null==r||null!=o.query(n,o.Scope.INLINE))e.prototype.insertAt.call(this,t,n,r);else{var i=this.split(t),a=o.create(n,r);i.parent.insertBefore(a,i)}},t.prototype.update=function(t,n){navigator.userAgent.match(/Trident/)?this.build():e.prototype.update.call(this,t,n)},t.blotName="block",t.scope=o.Scope.BLOCK_BLOT,t.tagName="P",t}(i.default);t.default=a},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(19),o=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.formats=function(e){},t.prototype.format=function(t,n){e.prototype.formatAt.call(this,0,this.length(),t,n)},t.prototype.formatAt=function(t,n,r,i){0===t&&n===this.length()?this.format(r,i):e.prototype.formatAt.call(this,t,n,r,i)},t.prototype.formats=function(){return this.statics.formats(this.domNode)},t}(i.default);t.default=o},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(19),o=n(1),a=function(e){function t(t){var n=e.call(this,t)||this;return n.text=n.statics.value(n.domNode),n}return r(t,e),t.create=function(e){return document.createTextNode(e)},t.value=function(e){var t=e.data;return t["normalize"]&&(t=t["normalize"]()),t},t.prototype.deleteAt=function(e,t){this.domNode.data=this.text=this.text.slice(0,e)+this.text.slice(e+t)},t.prototype.index=function(e,t){return this.domNode===e?t:-1},t.prototype.insertAt=function(t,n,r){null==r?(this.text=this.text.slice(0,t)+n+this.text.slice(t),this.domNode.data=this.text):e.prototype.insertAt.call(this,t,n,r)},t.prototype.length=function(){return this.text.length},t.prototype.optimize=function(n){e.prototype.optimize.call(this,n),this.text=this.statics.value(this.domNode),0===this.text.length?this.remove():this.next instanceof t&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},t.prototype.position=function(e,t){return void 0===t&&(t=!1),[this.domNode,e]},t.prototype.split=function(e,t){if(void 0===t&&(t=!1),!t){if(0===e)return this;if(e===this.length())return this.next}var n=o.create(this.domNode.splitText(e));return this.parent.insertBefore(n,this.next),this.text=this.statics.value(this.domNode),n},t.prototype.update=function(e,t){var n=this;e.some((function(e){return"characterData"===e.type&&e.target===n.domNode}))&&(this.text=this.statics.value(this.domNode))},t.prototype.value=function(){return this.text},t.blotName="text",t.scope=o.Scope.INLINE_BLOT,t}(i.default);t.default=a},function(e,t,n){"use strict";var r=document.createElement("div");if(r.classList.toggle("test-class",!1),r.classList.contains("test-class")){var i=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(e,t){return arguments.length>1&&!this.contains(e)===!t?t:i.call(this,e)}}String.prototype.startsWith||(String.prototype.startsWith=function(e,t){return t=t||0,this.substr(t,e.length)===e}),String.prototype.endsWith||(String.prototype.endsWith=function(e,t){var n=this.toString();("number"!==typeof t||!isFinite(t)||Math.floor(t)!==t||t>n.length)&&(t=n.length),t-=e.length;var r=n.indexOf(e,t);return-1!==r&&r===t}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null===this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!==typeof e)throw new TypeError("predicate must be a function");for(var t,n=Object(this),r=n.length>>>0,i=arguments[1],o=0;o<r;o++)if(t=n[o],e.call(i,t,o,n))return t}}),document.addEventListener("DOMContentLoaded",(function(){document.execCommand("enableObjectResizing",!1,!1),document.execCommand("autoUrlDetect",!1,!1)}))},function(e,t){var n=-1,r=1,i=0;function o(e,t,n){if(e==t)return e?[[i,e]]:[];(n<0||e.length<n)&&(n=null);var r=u(e,t),o=e.substring(0,r);e=e.substring(r),t=t.substring(r),r=l(e,t);var s=e.substring(e.length-r);e=e.substring(0,e.length-r),t=t.substring(0,t.length-r);var c=a(e,t);return o&&c.unshift([i,o]),s&&c.push([i,s]),f(c),null!=n&&(c=m(c,n)),c=b(c),c}function a(e,t){var a;if(!e)return[[r,t]];if(!t)return[[n,e]];var c=e.length>t.length?e:t,u=e.length>t.length?t:e,l=c.indexOf(u);if(-1!=l)return a=[[r,c.substring(0,l)],[i,u],[r,c.substring(l+u.length)]],e.length>t.length&&(a[0][0]=a[2][0]=n),a;if(1==u.length)return[[n,e],[r,t]];var f=d(e,t);if(f){var p=f[0],h=f[1],m=f[2],b=f[3],v=f[4],y=o(p,m),M=o(h,b);return y.concat([[i,v]],M)}return s(e,t)}function s(e,t){for(var i=e.length,o=t.length,a=Math.ceil((i+o)/2),s=a,u=2*a,l=new Array(u),d=new Array(u),f=0;f<u;f++)l[f]=-1,d[f]=-1;l[s+1]=0,d[s+1]=0;for(var p=i-o,h=p%2!=0,m=0,b=0,v=0,y=0,M=0;M<a;M++){for(var _=-M+m;_<=M-b;_+=2){var g=s+_;S=_==-M||_!=M&&l[g-1]<l[g+1]?l[g+1]:l[g-1]+1;var w=S-_;while(S<i&&w<o&&e.charAt(S)==t.charAt(w))S++,w++;if(l[g]=S,S>i)b+=2;else if(w>o)m+=2;else if(h){var A=s+p-_;if(A>=0&&A<u&&-1!=d[A]){var L=i-d[A];if(S>=L)return c(e,t,S,w)}}}for(var O=-M+v;O<=M-y;O+=2){A=s+O;L=O==-M||O!=M&&d[A-1]<d[A+1]?d[A+1]:d[A-1]+1;var T=L-O;while(L<i&&T<o&&e.charAt(i-L-1)==t.charAt(o-T-1))L++,T++;if(d[A]=L,L>i)y+=2;else if(T>o)v+=2;else if(!h){g=s+p-O;if(g>=0&&g<u&&-1!=l[g]){var S=l[g];w=s+S-g;if(L=i-L,S>=L)return c(e,t,S,w)}}}}return[[n,e],[r,t]]}function c(e,t,n,r){var i=e.substring(0,n),a=t.substring(0,r),s=e.substring(n),c=t.substring(r),u=o(i,a),l=o(s,c);return u.concat(l)}function u(e,t){if(!e||!t||e.charAt(0)!=t.charAt(0))return 0;var n=0,r=Math.min(e.length,t.length),i=r,o=0;while(n<i)e.substring(o,i)==t.substring(o,i)?(n=i,o=n):r=i,i=Math.floor((r-n)/2+n);return i}function l(e,t){if(!e||!t||e.charAt(e.length-1)!=t.charAt(t.length-1))return 0;var n=0,r=Math.min(e.length,t.length),i=r,o=0;while(n<i)e.substring(e.length-i,e.length-o)==t.substring(t.length-i,t.length-o)?(n=i,o=n):r=i,i=Math.floor((r-n)/2+n);return i}function d(e,t){var n=e.length>t.length?e:t,r=e.length>t.length?t:e;if(n.length<4||2*r.length<n.length)return null;function i(e,t,n){var r,i,o,a,s=e.substring(n,n+Math.floor(e.length/4)),c=-1,d="";while(-1!=(c=t.indexOf(s,c+1))){var f=u(e.substring(n),t.substring(c)),p=l(e.substring(0,n),t.substring(0,c));d.length<p+f&&(d=t.substring(c-p,c)+t.substring(c,c+f),r=e.substring(0,n-p),i=e.substring(n+f),o=t.substring(0,c-p),a=t.substring(c+f))}return 2*d.length>=e.length?[r,i,o,a,d]:null}var o,a,s,c,d,f=i(n,r,Math.ceil(n.length/4)),p=i(n,r,Math.ceil(n.length/2));if(!f&&!p)return null;o=p?f&&f[4].length>p[4].length?f:p:f,e.length>t.length?(a=o[0],s=o[1],c=o[2],d=o[3]):(c=o[0],d=o[1],a=o[2],s=o[3]);var h=o[4];return[a,s,c,d,h]}function f(e){e.push([i,""]);var t,o=0,a=0,s=0,c="",d="";while(o<e.length)switch(e[o][0]){case r:s++,d+=e[o][1],o++;break;case n:a++,c+=e[o][1],o++;break;case i:a+s>1?(0!==a&&0!==s&&(t=u(d,c),0!==t&&(o-a-s>0&&e[o-a-s-1][0]==i?e[o-a-s-1][1]+=d.substring(0,t):(e.splice(0,0,[i,d.substring(0,t)]),o++),d=d.substring(t),c=c.substring(t)),t=l(d,c),0!==t&&(e[o][1]=d.substring(d.length-t)+e[o][1],d=d.substring(0,d.length-t),c=c.substring(0,c.length-t))),0===a?e.splice(o-s,a+s,[r,d]):0===s?e.splice(o-a,a+s,[n,c]):e.splice(o-a-s,a+s,[n,c],[r,d]),o=o-a-s+(a?1:0)+(s?1:0)+1):0!==o&&e[o-1][0]==i?(e[o-1][1]+=e[o][1],e.splice(o,1)):o++,s=0,a=0,c="",d="";break}""===e[e.length-1][1]&&e.pop();var p=!1;o=1;while(o<e.length-1)e[o-1][0]==i&&e[o+1][0]==i&&(e[o][1].substring(e[o][1].length-e[o-1][1].length)==e[o-1][1]?(e[o][1]=e[o-1][1]+e[o][1].substring(0,e[o][1].length-e[o-1][1].length),e[o+1][1]=e[o-1][1]+e[o+1][1],e.splice(o-1,1),p=!0):e[o][1].substring(0,e[o+1][1].length)==e[o+1][1]&&(e[o-1][1]+=e[o+1][1],e[o][1]=e[o][1].substring(e[o+1][1].length)+e[o+1][1],e.splice(o+1,1),p=!0)),o++;p&&f(e)}var p=o;function h(e,t){if(0===t)return[i,e];for(var r=0,o=0;o<e.length;o++){var a=e[o];if(a[0]===n||a[0]===i){var s=r+a[1].length;if(t===s)return[o+1,e];if(t<s){e=e.slice();var c=t-r,u=[a[0],a[1].slice(0,c)],l=[a[0],a[1].slice(c)];return e.splice(o,1,u,l),[o+1,e]}r=s}}throw new Error("cursor_pos is out of bounds!")}function m(e,t){var n=h(e,t),r=n[1],o=n[0],a=r[o],s=r[o+1];if(null==a)return e;if(a[0]!==i)return e;if(null!=s&&a[1]+s[1]===s[1]+a[1])return r.splice(o,2,s,a),v(r,o,2);if(null!=s&&0===s[1].indexOf(a[1])){r.splice(o,2,[s[0],a[1]],[0,a[1]]);var c=s[1].slice(a[1].length);return c.length>0&&r.splice(o+2,0,[s[0],c]),v(r,o,3)}return e}function b(e){for(var t=!1,o=function(e){return e.charCodeAt(0)>=56320&&e.charCodeAt(0)<=57343},a=function(e){return e.charCodeAt(e.length-1)>=55296&&e.charCodeAt(e.length-1)<=56319},s=2;s<e.length;s+=1)e[s-2][0]===i&&a(e[s-2][1])&&e[s-1][0]===n&&o(e[s-1][1])&&e[s][0]===r&&o(e[s][1])&&(t=!0,e[s-1][1]=e[s-2][1].slice(-1)+e[s-1][1],e[s][1]=e[s-2][1].slice(-1)+e[s][1],e[s-2][1]=e[s-2][1].slice(0,-1));if(!t)return e;var c=[];for(s=0;s<e.length;s+=1)e[s][1].length>0&&c.push(e[s]);return c}function v(e,t,n){for(var r=t+n-1;r>=0&&r>=t-1;r--)if(r+1<e.length){var i=e[r],o=e[r+1];i[0]===o[1]&&e.splice(r,2,[i[0],i[1]+o[1]])}return e}p.INSERT=r,p.DELETE=n,p.EQUAL=i,e.exports=p},function(e,t){function n(e){var t=[];for(var n in e)t.push(n);return t}t=e.exports="function"===typeof Object.keys?Object.keys:n,t.shim=n},function(e,t){var n="[object Arguments]"==function(){return Object.prototype.toString.call(arguments)}();function r(e){return"[object Arguments]"==Object.prototype.toString.call(e)}function i(e){return e&&"object"==typeof e&&"number"==typeof e.length&&Object.prototype.hasOwnProperty.call(e,"callee")&&!Object.prototype.propertyIsEnumerable.call(e,"callee")||!1}t=e.exports=n?r:i,t.supported=r,t.unsupported=i},function(e,t){"use strict";var n=Object.prototype.hasOwnProperty,r="~";function i(){}function o(e,t,n){this.fn=e,this.context=t,this.once=n||!1}function a(){this._events=new i,this._eventsCount=0}Object.create&&(i.prototype=Object.create(null),(new i).__proto__||(r=!1)),a.prototype.eventNames=function(){var e,t,i=[];if(0===this._eventsCount)return i;for(t in e=this._events)n.call(e,t)&&i.push(r?t.slice(1):t);return Object.getOwnPropertySymbols?i.concat(Object.getOwnPropertySymbols(e)):i},a.prototype.listeners=function(e,t){var n=r?r+e:e,i=this._events[n];if(t)return!!i;if(!i)return[];if(i.fn)return[i.fn];for(var o=0,a=i.length,s=new Array(a);o<a;o++)s[o]=i[o].fn;return s},a.prototype.emit=function(e,t,n,i,o,a){var s=r?r+e:e;if(!this._events[s])return!1;var c,u,l=this._events[s],d=arguments.length;if(l.fn){switch(l.once&&this.removeListener(e,l.fn,void 0,!0),d){case 1:return l.fn.call(l.context),!0;case 2:return l.fn.call(l.context,t),!0;case 3:return l.fn.call(l.context,t,n),!0;case 4:return l.fn.call(l.context,t,n,i),!0;case 5:return l.fn.call(l.context,t,n,i,o),!0;case 6:return l.fn.call(l.context,t,n,i,o,a),!0}for(u=1,c=new Array(d-1);u<d;u++)c[u-1]=arguments[u];l.fn.apply(l.context,c)}else{var f,p=l.length;for(u=0;u<p;u++)switch(l[u].once&&this.removeListener(e,l[u].fn,void 0,!0),d){case 1:l[u].fn.call(l[u].context);break;case 2:l[u].fn.call(l[u].context,t);break;case 3:l[u].fn.call(l[u].context,t,n);break;case 4:l[u].fn.call(l[u].context,t,n,i);break;default:if(!c)for(f=1,c=new Array(d-1);f<d;f++)c[f-1]=arguments[f];l[u].fn.apply(l[u].context,c)}}return!0},a.prototype.on=function(e,t,n){var i=new o(t,n||this),a=r?r+e:e;return this._events[a]?this._events[a].fn?this._events[a]=[this._events[a],i]:this._events[a].push(i):(this._events[a]=i,this._eventsCount++),this},a.prototype.once=function(e,t,n){var i=new o(t,n||this,!0),a=r?r+e:e;return this._events[a]?this._events[a].fn?this._events[a]=[this._events[a],i]:this._events[a].push(i):(this._events[a]=i,this._eventsCount++),this},a.prototype.removeListener=function(e,t,n,o){var a=r?r+e:e;if(!this._events[a])return this;if(!t)return 0===--this._eventsCount?this._events=new i:delete this._events[a],this;var s=this._events[a];if(s.fn)s.fn!==t||o&&!s.once||n&&s.context!==n||(0===--this._eventsCount?this._events=new i:delete this._events[a]);else{for(var c=0,u=[],l=s.length;c<l;c++)(s[c].fn!==t||o&&!s[c].once||n&&s[c].context!==n)&&u.push(s[c]);u.length?this._events[a]=1===u.length?u[0]:u:0===--this._eventsCount?this._events=new i:delete this._events[a]}return this},a.prototype.removeAllListeners=function(e){var t;return e?(t=r?r+e:e,this._events[t]&&(0===--this._eventsCount?this._events=new i:delete this._events[t])):(this._events=new i,this._eventsCount=0),this},a.prototype.off=a.prototype.removeListener,a.prototype.addListener=a.prototype.on,a.prototype.setMaxListeners=function(){return this},a.prefixed=r,a.EventEmitter=a,"undefined"!==typeof e&&(e.exports=a)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.matchText=t.matchSpacing=t.matchNewline=t.matchBlot=t.matchAttributor=t.default=void 0;var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(3),s=T(a),c=n(2),u=T(c),l=n(0),d=T(l),f=n(5),p=T(f),h=n(10),m=T(h),b=n(9),v=T(b),y=n(36),M=n(37),_=n(13),g=T(_),w=n(26),A=n(38),L=n(39),O=n(40);function T(e){return e&&e.__esModule?e:{default:e}}function S(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function k(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function x(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function z(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var D=(0,m.default)("quill:clipboard"),N="__ql-matcher",C=[[Node.TEXT_NODE,J],[Node.TEXT_NODE,V],["br",F],[Node.ELEMENT_NODE,V],[Node.ELEMENT_NODE,H],[Node.ELEMENT_NODE,G],[Node.ELEMENT_NODE,I],[Node.ELEMENT_NODE,K],["li",U],["b",R.bind(R,"bold")],["i",R.bind(R,"italic")],["style",X]],E=[y.AlignAttribute,A.DirectionAttribute].reduce((function(e,t){return e[t.keyName]=t,e}),{}),$=[y.AlignStyle,M.BackgroundStyle,w.ColorStyle,A.DirectionStyle,L.FontStyle,O.SizeStyle].reduce((function(e,t){return e[t.keyName]=t,e}),{}),P=function(e){function t(e,n){k(this,t);var r=x(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.quill.root.addEventListener("paste",r.onPaste.bind(r)),r.container=r.quill.addContainer("ql-clipboard"),r.container.setAttribute("contenteditable",!0),r.container.setAttribute("tabindex",-1),r.matchers=[],C.concat(r.options.matchers).forEach((function(e){var t=i(e,2),o=t[0],a=t[1];(n.matchVisual||a!==G)&&r.addMatcher(o,a)})),r}return z(t,e),o(t,[{key:"addMatcher",value:function(e,t){this.matchers.push([e,t])}},{key:"convert",value:function(e){if("string"===typeof e)return this.container.innerHTML=e.replace(/\>\r?\n +\</g,"><"),console.log("internal",this.container.innerHTML),this.convert();var t=this.quill.getFormat(this.quill.selection.savedRange.index);if(t[g.default.blotName]){var n=this.container.innerText;return this.container.innerHTML="",(new u.default).insert(n,S({},g.default.blotName,t[g.default.blotName]))}var r=this.prepareMatching(),o=i(r,2),a=o[0],s=o[1],c=B(this.container,a,s);return q(c,"\n")&&null==c.ops[c.ops.length-1].attributes&&(c=c.compose((new u.default).retain(c.length()-1).delete(1))),D.log("convert",this.container.innerHTML,c),this.container.innerHTML="",c}},{key:"dangerouslyPasteHTML",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:p.default.sources.API;if("string"===typeof e)this.quill.setContents(this.convert(e),t),this.quill.setSelection(0,p.default.sources.SILENT);else{var r=this.convert(t);this.quill.updateContents((new u.default).retain(e).concat(r),n),this.quill.setSelection(e+r.length(),p.default.sources.SILENT)}}},{key:"onPaste",value:function(e){var t=this;if(!e.defaultPrevented&&this.quill.isEnabled()){var n=this.quill.getSelection(),r=(new u.default).retain(n.index),i=this.quill.scrollingContainer.scrollTop;this.container.focus(),this.quill.selection.update(p.default.sources.SILENT),setTimeout((function(){r=r.concat(t.convert()).delete(n.length),t.quill.updateContents(r,p.default.sources.USER),t.quill.setSelection(r.length()-n.length,p.default.sources.SILENT),t.quill.scrollingContainer.scrollTop=i,t.quill.focus()}),1)}}},{key:"prepareMatching",value:function(){var e=this,t=[],n=[];return this.matchers.forEach((function(r){var o=i(r,2),a=o[0],s=o[1];switch(a){case Node.TEXT_NODE:n.push(s);break;case Node.ELEMENT_NODE:t.push(s);break;default:[].forEach.call(e.container.querySelectorAll(a),(function(e){e[N]=e[N]||[],e[N].push(s)}));break}})),[t,n]}}]),t}(v.default);function j(e,t,n){return"object"===("undefined"===typeof t?"undefined":r(t))?Object.keys(t).reduce((function(e,n){return j(e,n,t[n])}),e):e.reduce((function(e,r){return r.attributes&&r.attributes[t]?e.push(r):e.insert(r.insert,(0,s.default)({},S({},t,n),r.attributes))}),new u.default)}function Y(e){if(e.nodeType!==Node.ELEMENT_NODE)return{};var t="__ql-computed-style";return e[t]||(e[t]=window.getComputedStyle(e))}function q(e,t){for(var n="",r=e.ops.length-1;r>=0&&n.length<t.length;--r){var i=e.ops[r];if("string"!==typeof i.insert)break;n=i.insert+n}return n.slice(-1*t.length)===t}function W(e){if(0===e.childNodes.length)return!1;var t=Y(e);return["block","list-item"].indexOf(t.display)>-1}function B(e,t,n){return e.nodeType===e.TEXT_NODE?n.reduce((function(t,n){return n(e,t)}),new u.default):e.nodeType===e.ELEMENT_NODE?[].reduce.call(e.childNodes||[],(function(r,i){var o=B(i,t,n);return i.nodeType===e.ELEMENT_NODE&&(o=t.reduce((function(e,t){return t(i,e)}),o),o=(i[N]||[]).reduce((function(e,t){return t(i,e)}),o)),r.concat(o)}),new u.default):new u.default}function R(e,t,n){return j(n,e,!0)}function I(e,t){var n=d.default.Attributor.Attribute.keys(e),r=d.default.Attributor.Class.keys(e),i=d.default.Attributor.Style.keys(e),o={};return n.concat(r).concat(i).forEach((function(t){var n=d.default.query(t,d.default.Scope.ATTRIBUTE);null!=n&&(o[n.attrName]=n.value(e),o[n.attrName])||(n=E[t],null==n||n.attrName!==t&&n.keyName!==t||(o[n.attrName]=n.value(e)||void 0),n=$[t],null==n||n.attrName!==t&&n.keyName!==t||(n=$[t],o[n.attrName]=n.value(e)||void 0))})),Object.keys(o).length>0&&(t=j(t,o)),t}function H(e,t){var n=d.default.query(e);if(null==n)return t;if(n.prototype instanceof d.default.Embed){var r={},i=n.value(e);null!=i&&(r[n.blotName]=i,t=(new u.default).insert(r,n.formats(e)))}else"function"===typeof n.formats&&(t=j(t,n.blotName,n.formats(e)));return t}function F(e,t){return q(t,"\n")||t.insert("\n"),t}function X(){return new u.default}function U(e,t){var n=d.default.query(e);if(null==n||"list-item"!==n.blotName||!q(t,"\n"))return t;var r=-1,i=e.parentNode;while(!i.classList.contains("ql-clipboard"))"list"===(d.default.query(i)||{}).blotName&&(r+=1),i=i.parentNode;return r<=0?t:t.compose((new u.default).retain(t.length()-1).retain(1,{indent:r}))}function V(e,t){return q(t,"\n")||(W(e)||t.length()>0&&e.nextSibling&&W(e.nextSibling))&&t.insert("\n"),t}function G(e,t){if(W(e)&&null!=e.nextElementSibling&&!q(t,"\n\n")){var n=e.offsetHeight+parseFloat(Y(e).marginTop)+parseFloat(Y(e).marginBottom);e.nextElementSibling.offsetTop>e.offsetTop+1.5*n&&t.insert("\n")}return t}function K(e,t){var n={},r=e.style||{};return r.fontStyle&&"italic"===Y(e).fontStyle&&(n.italic=!0),r.fontWeight&&(Y(e).fontWeight.startsWith("bold")||parseInt(Y(e).fontWeight)>=700)&&(n.bold=!0),Object.keys(n).length>0&&(t=j(t,n)),parseFloat(r.textIndent||0)>0&&(t=(new u.default).insert("\t").concat(t)),t}function J(e,t){var n=e.data;if(console.log("internal",e,t),"O:P"===e.parentNode.tagName)return t.insert(n.trim());if(0===n.trim().length&&e.parentNode.classList.contains("ql-clipboard"))return t;if(!Y(e.parentNode).whiteSpace.startsWith("pre")){var r=function(e,t){return t=t.replace(/[^\u00a0]/g,""),t.length<1&&e?" ":t};n=n.replace(/\r\n/g," ").replace(/\n/g," "),n=n.replace(/\s\s+/g,r.bind(r,!0)),(null==e.previousSibling&&W(e.parentNode)||null!=e.previousSibling&&W(e.previousSibling))&&(n=n.replace(/^\s+/,r.bind(r,!1))),(null==e.nextSibling&&W(e.parentNode)||null!=e.nextSibling&&W(e.nextSibling))&&(n=n.replace(/\s+$/,r.bind(r,!1)))}return t.insert(n)}P.DEFAULTS={matchers:[],matchVisual:!0},t.default=P,t.matchAttributor=I,t.matchBlot=H,t.matchNewline=V,t.matchSpacing=G,t.matchText=J},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(6),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"optimize",value:function(e){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e),this.domNode.tagName!==this.statics.tagName[0]&&this.replaceWith(this.statics.blotName)}}],[{key:"create",value:function(){return i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this)}},{key:"formats",value:function(){return!0}}]),t}(a.default);d.blotName="bold",d.tagName=["STRONG","B"],t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.addControls=t.default=void 0;var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(2),a=m(o),s=n(0),c=m(s),u=n(5),l=m(u),d=n(10),f=m(d),p=n(9),h=m(p);function m(e){return e&&e.__esModule?e:{default:e}}function b(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function v(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function y(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function M(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var _=(0,f.default)("quill:toolbar"),g=function(e){function t(e,n){v(this,t);var i,o=y(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if(Array.isArray(o.options.container)){var a=document.createElement("div");A(a,o.options.container),e.container.parentNode.insertBefore(a,e.container),o.container=a}else"string"===typeof o.options.container?o.container=document.querySelector(o.options.container):o.container=o.options.container;return o.container instanceof HTMLElement?(o.container.classList.add("ql-toolbar"),o.controls=[],o.handlers={},Object.keys(o.options.handlers).forEach((function(e){o.addHandler(e,o.options.handlers[e])})),[].forEach.call(o.container.querySelectorAll("button, select"),(function(e){o.attach(e)})),o.quill.on(l.default.events.EDITOR_CHANGE,(function(e,t){e===l.default.events.SELECTION_CHANGE&&o.update(t)})),o.quill.on(l.default.events.SCROLL_OPTIMIZE,(function(){var e=o.quill.selection.getRange(),t=r(e,1),n=t[0];o.update(n)})),o):(i=_.error("Container required for toolbar",o.options),y(o,i))}return M(t,e),i(t,[{key:"addHandler",value:function(e,t){this.handlers[e]=t}},{key:"attach",value:function(e){var t=this,n=[].find.call(e.classList,(function(e){return 0===e.indexOf("ql-")}));if(n){if(n=n.slice("ql-".length),"BUTTON"===e.tagName&&e.setAttribute("type","button"),null==this.handlers[n]){if(null!=this.quill.scroll.whitelist&&null==this.quill.scroll.whitelist[n])return void _.warn("ignoring attaching to disabled format",n,e);if(null==c.default.query(n))return void _.warn("ignoring attaching to nonexistent format",n,e)}var i="SELECT"===e.tagName?"change":"click";e.addEventListener(i,(function(i){var o=void 0;if("SELECT"===e.tagName){if(e.selectedIndex<0)return;var s=e.options[e.selectedIndex];o=!s.hasAttribute("selected")&&(s.value||!1)}else o=!e.classList.contains("ql-active")&&(e.value||!e.hasAttribute("value")),i.preventDefault();t.quill.focus();var u=t.quill.selection.getRange(),d=r(u,1),f=d[0];if(null!=t.handlers[n])t.handlers[n].call(t,o);else if(c.default.query(n).prototype instanceof c.default.Embed){if(o=prompt("Enter "+n),!o)return;t.quill.updateContents((new a.default).retain(f.index).delete(f.length).insert(b({},n,o)),l.default.sources.USER)}else t.quill.format(n,o,l.default.sources.USER);t.update(f)})),this.controls.push([n,e])}}},{key:"update",value:function(e){var t=null==e?{}:this.quill.getFormat(e);this.controls.forEach((function(n){var i=r(n,2),o=i[0],a=i[1];if("SELECT"===a.tagName){var s=void 0;if(null==e)s=null;else if(null==t[o])s=a.querySelector("option[selected]");else if(!Array.isArray(t[o])){var c=t[o];"string"===typeof c&&(c=c.replace(/\"/g,'\\"')),s=a.querySelector('option[value="'+c+'"]')}null==s?(a.value="",a.selectedIndex=-1):s.selected=!0}else if(null==e)a.classList.remove("ql-active");else if(a.hasAttribute("value")){var u=t[o]===a.getAttribute("value")||null!=t[o]&&t[o].toString()===a.getAttribute("value")||null==t[o]&&!a.getAttribute("value");a.classList.toggle("ql-active",u)}else a.classList.toggle("ql-active",null!=t[o])}))}}]),t}(h.default);function w(e,t,n){var r=document.createElement("button");r.setAttribute("type","button"),r.classList.add("ql-"+t),null!=n&&(r.value=n),e.appendChild(r)}function A(e,t){Array.isArray(t[0])||(t=[t]),t.forEach((function(t){var n=document.createElement("span");n.classList.add("ql-formats"),t.forEach((function(e){if("string"===typeof e)w(n,e);else{var t=Object.keys(e)[0],r=e[t];Array.isArray(r)?L(n,t,r):w(n,t,r)}})),e.appendChild(n)}))}function L(e,t,n){var r=document.createElement("select");r.classList.add("ql-"+t),n.forEach((function(e){var t=document.createElement("option");!1!==e?t.setAttribute("value",e):t.setAttribute("selected","selected"),r.appendChild(t)})),e.appendChild(r)}g.DEFAULTS={},g.DEFAULTS={container:null,handlers:{clean:function(){var e=this,t=this.quill.getSelection();if(null!=t)if(0==t.length){var n=this.quill.getFormat();Object.keys(n).forEach((function(t){null!=c.default.query(t,c.default.Scope.INLINE)&&e.quill.format(t,!1)}))}else this.quill.removeFormat(t,l.default.sources.USER)},direction:function(e){var t=this.quill.getFormat()["align"];"rtl"===e&&null==t?this.quill.format("align","right",l.default.sources.USER):e||"right"!==t||this.quill.format("align",!1,l.default.sources.USER),this.quill.format("direction",e,l.default.sources.USER)},indent:function(e){var t=this.quill.getSelection(),n=this.quill.getFormat(t),r=parseInt(n.indent||0);if("+1"===e||"-1"===e){var i="+1"===e?1:-1;"rtl"===n.direction&&(i*=-1),this.quill.format("indent",r+i,l.default.sources.USER)}},link:function(e){!0===e&&(e=prompt("Enter link URL:")),this.quill.format("link",e,l.default.sources.USER)},list:function(e){var t=this.quill.getSelection(),n=this.quill.getFormat(t);"check"===e?"checked"===n["list"]||"unchecked"===n["list"]?this.quill.format("list",!1,l.default.sources.USER):this.quill.format("list","unchecked",l.default.sources.USER):this.quill.format("list",e,l.default.sources.USER)}}},t.default=g,t.addControls=A},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polyline class="ql-even ql-stroke" points="5 7 3 9 5 11"></polyline> <polyline class="ql-even ql-stroke" points="13 7 15 9 13 11"></polyline> <line class=ql-stroke x1=10 x2=8 y1=5 y2=13></line> </svg>'},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(28),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(e,n){c(this,t);var r=u(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.label.innerHTML=n,r.container.classList.add("ql-color-picker"),[].slice.call(r.container.querySelectorAll(".ql-picker-item"),0,7).forEach((function(e){e.classList.add("ql-primary")})),r}return l(t,e),r(t,[{key:"buildItem",value:function(e){var n=i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"buildItem",this).call(this,e);return n.style.backgroundColor=e.getAttribute("value")||"",n}},{key:"selectItem",value:function(e,n){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"selectItem",this).call(this,e,n);var r=this.label.querySelector(".ql-color-label"),o=e&&e.getAttribute("data-value")||"";r&&("line"===r.tagName?r.style.stroke=o:r.style.fill=o)}}]),t}(a.default);t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(28),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(e,n){c(this,t);var r=u(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.container.classList.add("ql-icon-picker"),[].forEach.call(r.container.querySelectorAll(".ql-picker-item"),(function(e){e.innerHTML=n[e.getAttribute("data-value")||""]})),r.defaultItem=r.container.querySelector(".ql-selected"),r.selectItem(r.defaultItem),r}return l(t,e),r(t,[{key:"selectItem",value:function(e,n){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"selectItem",this).call(this,e,n),e=e||this.defaultItem,this.label.innerHTML=e.innerHTML}}]),t}(a.default);t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var o=function(){function e(t,n){var r=this;i(this,e),this.quill=t,this.boundsContainer=n||document.body,this.root=t.addContainer("ql-tooltip"),this.root.innerHTML=this.constructor.TEMPLATE,this.quill.root===this.quill.scrollingContainer&&this.quill.root.addEventListener("scroll",(function(){r.root.style.marginTop=-1*r.quill.root.scrollTop+"px"})),this.hide()}return r(e,[{key:"hide",value:function(){this.root.classList.add("ql-hidden")}},{key:"position",value:function(e){var t=e.left+e.width/2-this.root.offsetWidth/2,n=e.bottom+this.quill.root.scrollTop;this.root.style.left=t+"px",this.root.style.top=n+"px",this.root.classList.remove("ql-flip");var r=this.boundsContainer.getBoundingClientRect(),i=this.root.getBoundingClientRect(),o=0;if(i.right>r.right&&(o=r.right-i.right,this.root.style.left=t+o+"px"),i.left<r.left&&(o=r.left-i.left,this.root.style.left=t+o+"px"),i.bottom>r.bottom){var a=i.bottom-i.top,s=e.bottom-e.top+a;this.root.style.top=n-s+"px",this.root.classList.add("ql-flip")}return o}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),e}();t.default=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(c){i=!0,o=c}finally{try{!r&&s["return"]&&s["return"]()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(3),s=v(a),c=n(8),u=v(c),l=n(43),d=v(l),f=n(27),p=v(f),h=n(15),m=n(41),b=v(m);function v(e){return e&&e.__esModule?e:{default:e}}function y(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function M(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function _(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var g=[[{header:["1","2","3",!1]}],["bold","italic","underline","link"],[{list:"ordered"},{list:"bullet"}],["clean"]],w=function(e){function t(e,n){y(this,t),null!=n.modules.toolbar&&null==n.modules.toolbar.container&&(n.modules.toolbar.container=g);var r=M(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.quill.container.classList.add("ql-snow"),r}return _(t,e),o(t,[{key:"extendToolbar",value:function(e){e.container.classList.add("ql-snow"),this.buildButtons([].slice.call(e.container.querySelectorAll("button")),b.default),this.buildPickers([].slice.call(e.container.querySelectorAll("select")),b.default),this.tooltip=new A(this.quill,this.options.bounds),e.container.querySelector(".ql-link")&&this.quill.keyboard.addBinding({key:"K",shortKey:!0},(function(t,n){e.handlers["link"].call(e,!n.format.link)}))}}]),t}(d.default);w.DEFAULTS=(0,s.default)(!0,{},d.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(e){if(e){var t=this.quill.getSelection();if(null==t||0==t.length)return;var n=this.quill.getText(t);/^\S+@\S+\.\S+$/.test(n)&&0!==n.indexOf("mailto:")&&(n="mailto:"+n);var r=this.quill.theme.tooltip;r.edit("link",n)}else this.quill.format("link",!1)}}}}});var A=function(e){function t(e,n){y(this,t);var r=M(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.preview=r.root.querySelector("a.ql-preview"),r}return _(t,e),o(t,[{key:"listen",value:function(){var e=this;i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"listen",this).call(this),this.root.querySelector("a.ql-action").addEventListener("click",(function(t){e.root.classList.contains("ql-editing")?e.save():e.edit("link",e.preview.textContent),t.preventDefault()})),this.root.querySelector("a.ql-remove").addEventListener("click",(function(t){if(null!=e.linkRange){var n=e.linkRange;e.restoreFocus(),e.quill.formatText(n,"link",!1,u.default.sources.USER),delete e.linkRange}t.preventDefault(),e.hide()})),this.quill.on(u.default.events.SELECTION_CHANGE,(function(t,n,i){if(null!=t){if(0===t.length&&i===u.default.sources.USER){var o=e.quill.scroll.descendant(p.default,t.index),a=r(o,2),s=a[0],c=a[1];if(null!=s){e.linkRange=new h.Range(t.index-c,s.length());var l=p.default.formats(s.domNode);return e.preview.textContent=l,e.preview.setAttribute("href",l),e.show(),void e.position(e.quill.getBounds(e.linkRange))}}else delete e.linkRange;e.hide()}}))}},{key:"show",value:function(){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"show",this).call(this),this.root.removeAttribute("data-mode")}}]),t}(l.BaseTooltip);A.TEMPLATE=['<a class="ql-preview" rel="noopener noreferrer" target="_blank" href="about:blank"></a>','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-action"></a>','<a class="ql-remove"></a>'].join(""),t.default=w},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(29),i=ne(r),o=n(36),a=n(38),s=n(64),c=n(65),u=ne(c),l=n(66),d=ne(l),f=n(67),p=ne(f),h=n(37),m=n(26),b=n(39),v=n(40),y=n(56),M=ne(y),_=n(68),g=ne(_),w=n(27),A=ne(w),L=n(69),O=ne(L),T=n(70),S=ne(T),k=n(71),x=ne(k),z=n(72),D=ne(z),N=n(73),C=ne(N),E=n(13),$=ne(E),P=n(74),j=ne(P),Y=n(75),q=ne(Y),W=n(57),B=ne(W),R=n(41),I=ne(R),H=n(28),F=ne(H),X=n(59),U=ne(X),V=n(60),G=ne(V),K=n(61),J=ne(K),Q=n(108),Z=ne(Q),ee=n(62),te=ne(ee);function ne(e){return e&&e.__esModule?e:{default:e}}i.default.register({"attributors/attribute/direction":a.DirectionAttribute,"attributors/class/align":o.AlignClass,"attributors/class/background":h.BackgroundClass,"attributors/class/color":m.ColorClass,"attributors/class/direction":a.DirectionClass,"attributors/class/font":b.FontClass,"attributors/class/size":v.SizeClass,"attributors/style/align":o.AlignStyle,"attributors/style/background":h.BackgroundStyle,"attributors/style/color":m.ColorStyle,"attributors/style/direction":a.DirectionStyle,"attributors/style/font":b.FontStyle,"attributors/style/size":v.SizeStyle},!0),i.default.register({"formats/align":o.AlignClass,"formats/direction":a.DirectionClass,"formats/indent":s.IndentClass,"formats/background":h.BackgroundStyle,"formats/color":m.ColorStyle,"formats/font":b.FontClass,"formats/size":v.SizeClass,"formats/blockquote":u.default,"formats/code-block":$.default,"formats/header":d.default,"formats/list":p.default,"formats/bold":M.default,"formats/code":E.Code,"formats/italic":g.default,"formats/link":A.default,"formats/script":O.default,"formats/strike":S.default,"formats/underline":x.default,"formats/image":D.default,"formats/video":C.default,"formats/list/item":f.ListItem,"modules/formula":j.default,"modules/syntax":q.default,"modules/toolbar":B.default,"themes/bubble":Z.default,"themes/snow":te.default,"ui/icons":I.default,"ui/picker":F.default,"ui/icon-picker":G.default,"ui/color-picker":U.default,"ui/tooltip":J.default},!0),t.default=i.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.IndentClass=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,[{key:"add",value:function(e,n){if("+1"===n||"-1"===n){var r=this.value(e)||0;n="+1"===n?r+1:r-1}return 0===n?(this.remove(e),!0):i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"add",this).call(this,e,n)}},{key:"canAdd",value:function(e,n){return i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"canAdd",this).call(this,e,n)||i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"canAdd",this).call(this,e,parseInt(n))}},{key:"value",value:function(e){return parseInt(i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"value",this).call(this,e))||void 0}}]),t}(a.default.Attributor.Class),f=new d("indent","ql-indent",{scope:a.default.Scope.BLOCK,whitelist:[1,2,3,4,5,6,7,8]});t.IndentClass=f},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(4),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default);u.blotName="blockquote",u.tagName="blockquote",t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=n(4),o=a(i);function a(e){return e&&e.__esModule?e:{default:e}}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function c(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function u(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var l=function(e){function t(){return s(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return u(t,e),r(t,null,[{key:"formats",value:function(e){return this.tagName.indexOf(e.tagName)+1}}]),t}(o.default);l.blotName="header",l.tagName=["H1","H2","H3","H4","H5","H6"],t.default=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.ListItem=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=d(o),s=n(4),c=d(s),u=n(25),l=d(u);function d(e){return e&&e.__esModule?e:{default:e}}function f(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function p(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function h(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function m(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var b=function(e){function t(){return p(this,t),h(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return m(t,e),r(t,[{key:"format",value:function(e,n){e!==v.blotName||n?i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n):this.replaceWith(a.default.create(this.statics.scope))}},{key:"remove",value:function(){null==this.prev&&null==this.next?this.parent.remove():i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"remove",this).call(this)}},{key:"replaceWith",value:function(e,n){return this.parent.isolate(this.offset(this.parent),this.length()),e===this.parent.statics.blotName?(this.parent.replaceWith(e,n),this):(this.parent.unwrap(),i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replaceWith",this).call(this,e,n))}}],[{key:"formats",value:function(e){return e.tagName===this.tagName?void 0:i(t.__proto__||Object.getPrototypeOf(t),"formats",this).call(this,e)}}]),t}(c.default);b.blotName="list-item",b.tagName="LI";var v=function(e){function t(e){p(this,t);var n=h(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e)),r=function(t){if(t.target.parentNode===e){var r=n.statics.formats(e),i=a.default.find(t.target);"checked"===r?i.format("list","unchecked"):"unchecked"===r&&i.format("list","checked")}};return e.addEventListener("touchstart",r),e.addEventListener("mousedown",r),n}return m(t,e),r(t,null,[{key:"create",value:function(e){var n="ordered"===e?"OL":"UL",r=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,n);return"checked"!==e&&"unchecked"!==e||r.setAttribute("data-checked","checked"===e),r}},{key:"formats",value:function(e){return"OL"===e.tagName?"ordered":"UL"===e.tagName?e.hasAttribute("data-checked")?"true"===e.getAttribute("data-checked")?"checked":"unchecked":"bullet":void 0}}]),r(t,[{key:"format",value:function(e,t){this.children.length>0&&this.children.tail.format(e,t)}},{key:"formats",value:function(){return f({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(e,n){if(e instanceof b)i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertBefore",this).call(this,e,n);else{var r=null==n?this.length():n.offset(this),o=this.split(r);o.parent.insertBefore(e,o)}}},{key:"optimize",value:function(e){i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&n.domNode.tagName===this.domNode.tagName&&n.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(n.moveChildren(this),n.remove())}},{key:"replace",value:function(e){if(e.statics.blotName!==this.statics.blotName){var n=a.default.create(this.statics.defaultChild);e.moveChildren(n),this.appendChild(n)}i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replace",this).call(this,e)}}]),t}(l.default);v.blotName="list",v.scope=a.default.Scope.BLOCK_BLOT,v.tagName=["OL","UL"],v.defaultChild="list-item",v.allowedChildren=[b],t.ListItem=b,t.default=v},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(56),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default);u.blotName="italic",u.tagName=["EM","I"],t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(6),a=s(o);function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function l(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var d=function(e){function t(){return c(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),r(t,null,[{key:"create",value:function(e){return"super"===e?document.createElement("sup"):"sub"===e?document.createElement("sub"):i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e)}},{key:"formats",value:function(e){return"SUB"===e.tagName?"sub":"SUP"===e.tagName?"super":void 0}}]),t}(a.default);d.blotName="script",d.tagName=["SUB","SUP"],t.default=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(6),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default);u.blotName="strike",u.tagName="S",t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(6),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function c(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=function(e){function t(){return a(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return c(t,e),t}(i.default);u.blotName="underline",u.tagName="U",t.default=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=c(o),s=n(27);function c(e){return e&&e.__esModule?e:{default:e}}function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function d(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var f=["alt","height","width"],p=function(e){function t(){return u(this,t),l(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return d(t,e),r(t,[{key:"format",value:function(e,n){f.indexOf(e)>-1?n?this.domNode.setAttribute(e,n):this.domNode.removeAttribute(e):i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n)}}],[{key:"create",value:function(e){var n=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return"string"===typeof e&&n.setAttribute("src",this.sanitize(e)),n}},{key:"formats",value:function(e){return f.reduce((function(t,n){return e.hasAttribute(n)&&(t[n]=e.getAttribute(n)),t}),{})}},{key:"match",value:function(e){return/\.(jpe?g|gif|png)$/.test(e)||/^data:image\/.+;base64/.test(e)}},{key:"sanitize",value:function(e){return(0,s.sanitize)(e,["http","https","data"])?e:"//:0"}},{key:"value",value:function(e){return e.getAttribute("src")}}]),t}(a.default.Embed);p.blotName="image",p.tagName="IMG",t.default=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(4),a=n(27),s=c(a);function c(e){return e&&e.__esModule?e:{default:e}}function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function d(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var f=["height","width"],p=function(e){function t(){return u(this,t),l(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return d(t,e),r(t,[{key:"format",value:function(e,n){f.indexOf(e)>-1?n?this.domNode.setAttribute(e,n):this.domNode.removeAttribute(e):i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n)}}],[{key:"create",value:function(e){var n=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return n.setAttribute("frameborder","0"),n.setAttribute("allowfullscreen",!0),n.setAttribute("src",this.sanitize(e)),n}},{key:"formats",value:function(e){return f.reduce((function(t,n){return e.hasAttribute(n)&&(t[n]=e.getAttribute(n)),t}),{})}},{key:"sanitize",value:function(e){return s.default.sanitize(e)}},{key:"value",value:function(e){return e.getAttribute("src")}}]),t}(o.BlockEmbed);p.blotName="video",p.className="ql-video",p.tagName="IFRAME",t.default=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.FormulaBlot=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(35),a=d(o),s=n(5),c=d(s),u=n(9),l=d(u);function d(e){return e&&e.__esModule?e:{default:e}}function f(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function p(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function h(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var m=function(e){function t(){return f(this,t),p(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return h(t,e),r(t,null,[{key:"create",value:function(e){var n=i(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return"string"===typeof e&&(window.katex.render(e,n,{throwOnError:!1,errorColor:"#f00"}),n.setAttribute("data-value",e)),n}},{key:"value",value:function(e){return e.getAttribute("data-value")}}]),t}(a.default);m.blotName="formula",m.className="ql-formula",m.tagName="SPAN";var b=function(e){function t(){f(this,t);var e=p(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));if(null==window.katex)throw new Error("Formula module requires KaTeX.");return e}return h(t,e),r(t,null,[{key:"register",value:function(){c.default.register(m,!0)}}]),t}(l.default);t.FormulaBlot=m,t.default=b},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.CodeToken=t.CodeBlock=void 0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},o=n(0),a=p(o),s=n(5),c=p(s),u=n(9),l=p(u),d=n(13),f=p(d);function p(e){return e&&e.__esModule?e:{default:e}}function h(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function m(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function b(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var v=function(e){function t(){return h(this,t),m(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return b(t,e),r(t,[{key:"replaceWith",value:function(e){this.domNode.textContent=this.domNode.textContent,this.attach(),i(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replaceWith",this).call(this,e)}},{key:"highlight",value:function(e){var t=this.domNode.textContent;this.cachedText!==t&&((t.trim().length>0||null==this.cachedText)&&(this.domNode.innerHTML=e(t),this.domNode.normalize(),this.attach()),this.cachedText=t)}}]),t}(f.default);v.className="ql-syntax";var y=new a.default.Attributor.Class("token","hljs",{scope:a.default.Scope.INLINE}),M=function(e){function t(e,n){h(this,t);var r=m(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if("function"!==typeof r.options.highlight)throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var i=null;return r.quill.on(c.default.events.SCROLL_OPTIMIZE,(function(){clearTimeout(i),i=setTimeout((function(){r.highlight(),i=null}),r.options.interval)})),r.highlight(),r}return b(t,e),r(t,null,[{key:"register",value:function(){c.default.register(y,!0),c.default.register(v,!0)}}]),r(t,[{key:"highlight",value:function(){var e=this;if(!this.quill.selection.composing){this.quill.update(c.default.sources.USER);var t=this.quill.getSelection();this.quill.scroll.descendants(v).forEach((function(t){t.highlight(e.options.highlight)})),this.quill.update(c.default.sources.SILENT),null!=t&&this.quill.setSelection(t,c.default.sources.SILENT)}}}]),t}(l.default);M.DEFAULTS={highlight:function(){return null==window.hljs?null:function(e){var t=window.hljs.highlightAuto(e);return t.value}}(),interval:1e3},t.CodeBlock=v,t.CodeToken=y,t.default=M},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=13 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=9 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=14 x2=4 y1=14 y2=14></line> <line class=ql-stroke x1=12 x2=6 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=5 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=9 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=3 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=3 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <g class="ql-fill ql-color-label"> <polygon points="6 6.868 6 6 5 6 5 7 5.942 7 6 6.868"></polygon> <rect height=1 width=1 x=4 y=4></rect> <polygon points="6.817 5 6 5 6 6 6.38 6 6.817 5"></polygon> <rect height=1 width=1 x=2 y=6></rect> <rect height=1 width=1 x=3 y=5></rect> <rect height=1 width=1 x=4 y=7></rect> <polygon points="4 11.439 4 11 3 11 3 12 3.755 12 4 11.439"></polygon> <rect height=1 width=1 x=2 y=12></rect> <rect height=1 width=1 x=2 y=9></rect> <rect height=1 width=1 x=2 y=15></rect> <polygon points="4.63 10 4 10 4 11 4.192 11 4.63 10"></polygon> <rect height=1 width=1 x=3 y=8></rect> <path d=M10.832,4.2L11,4.582V4H10.708A1.948,1.948,0,0,1,10.832,4.2Z></path> <path d=M7,4.582L7.168,4.2A1.929,1.929,0,0,1,7.292,4H7V4.582Z></path> <path d=M8,13H7.683l-0.351.8a1.933,1.933,0,0,1-.124.2H8V13Z></path> <rect height=1 width=1 x=12 y=2></rect> <rect height=1 width=1 x=11 y=3></rect> <path d=M9,3H8V3.282A1.985,1.985,0,0,1,9,3Z></path> <rect height=1 width=1 x=2 y=3></rect> <rect height=1 width=1 x=6 y=2></rect> <rect height=1 width=1 x=3 y=2></rect> <rect height=1 width=1 x=5 y=3></rect> <rect height=1 width=1 x=9 y=2></rect> <rect height=1 width=1 x=15 y=14></rect> <polygon points="13.447 10.174 13.469 10.225 13.472 10.232 13.808 11 14 11 14 10 13.37 10 13.447 10.174"></polygon> <rect height=1 width=1 x=13 y=7></rect> <rect height=1 width=1 x=15 y=5></rect> <rect height=1 width=1 x=14 y=6></rect> <rect height=1 width=1 x=15 y=8></rect> <rect height=1 width=1 x=14 y=9></rect> <path d=M3.775,14H3v1H4V14.314A1.97,1.97,0,0,1,3.775,14Z></path> <rect height=1 width=1 x=14 y=3></rect> <polygon points="12 6.868 12 6 11.62 6 12 6.868"></polygon> <rect height=1 width=1 x=15 y=2></rect> <rect height=1 width=1 x=12 y=5></rect> <rect height=1 width=1 x=13 y=4></rect> <polygon points="12.933 9 13 9 13 8 12.495 8 12.933 9"></polygon> <rect height=1 width=1 x=9 y=14></rect> <rect height=1 width=1 x=8 y=15></rect> <path d=M6,14.926V15H7V14.316A1.993,1.993,0,0,1,6,14.926Z></path> <rect height=1 width=1 x=5 y=15></rect> <path d=M10.668,13.8L10.317,13H10v1h0.792A1.947,1.947,0,0,1,10.668,13.8Z></path> <rect height=1 width=1 x=11 y=15></rect> <path d=M14.332,12.2a1.99,1.99,0,0,1,.166.8H15V12H14.245Z></path> <rect height=1 width=1 x=14 y=15></rect> <rect height=1 width=1 x=15 y=11></rect> </g> <polyline class=ql-stroke points="5.5 13 9 5 12.5 13"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=11 y2=11></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <rect class="ql-fill ql-stroke" height=3 width=3 x=4 y=5></rect> <rect class="ql-fill ql-stroke" height=3 width=3 x=11 y=5></rect> <path class="ql-even ql-fill ql-stroke" d=M7,8c0,4.031-3,5-3,5></path> <path class="ql-even ql-fill ql-stroke" d=M14,8c0,4.031-3,5-3,5></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,4H9.5A2.5,2.5,0,0,1,12,6.5v0A2.5,2.5,0,0,1,9.5,9H5A0,0,0,0,1,5,9V4A0,0,0,0,1,5,4Z></path> <path class=ql-stroke d=M5,9h5.5A2.5,2.5,0,0,1,13,11.5v0A2.5,2.5,0,0,1,10.5,14H5a0,0,0,0,1,0,0V9A0,0,0,0,1,5,9Z></path> </svg>'},function(e,t){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=5 x2=13 y1=3 y2=3></line> <line class=ql-stroke x1=6 x2=9.35 y1=12 y2=3></line> <line class=ql-stroke x1=11 x2=15 y1=11 y2=15></line> <line class=ql-stroke x1=15 x2=11 y1=11 y2=15></line> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=7 x=2 y=14></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-color-label ql-stroke ql-transparent" x1=3 x2=15 y1=15 y2=15></line> <polyline class=ql-stroke points="5.5 11 9 3 12.5 11"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=9 y2=9></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="3 11 5 9 3 7 3 11"></polygon> <line class="ql-stroke ql-fill" x1=15 x2=11 y1=4 y2=4></line> <path class=ql-fill d=M11,3a3,3,0,0,0,0,6h1V3H11Z></path> <rect class=ql-fill height=11 width=1 x=11 y=4></rect> <rect class=ql-fill height=11 width=1 x=13 y=4></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="15 12 13 10 15 8 15 12"></polygon> <line class="ql-stroke ql-fill" x1=9 x2=5 y1=4 y2=4></line> <path class=ql-fill d=M5,3A3,3,0,0,0,5,9H6V3H5Z></path> <rect class=ql-fill height=11 width=1 x=5 y=4></rect> <rect class=ql-fill height=11 width=1 x=7 y=4></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M14,16H4a1,1,0,0,1,0-2H14A1,1,0,0,1,14,16Z /> <path class=ql-fill d=M14,4H4A1,1,0,0,1,4,2H14A1,1,0,0,1,14,4Z /> <rect class=ql-fill x=3 y=6 width=12 height=6 rx=1 ry=1 /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M13,16H5a1,1,0,0,1,0-2h8A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H5A1,1,0,0,1,5,2h8A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=2 y=6 width=14 height=6 rx=1 ry=1 /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15,8H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,8Z /> <path class=ql-fill d=M15,12H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,12Z /> <path class=ql-fill d=M15,16H5a1,1,0,0,1,0-2H15A1,1,0,0,1,15,16Z /> <path class=ql-fill d=M15,4H5A1,1,0,0,1,5,2H15A1,1,0,0,1,15,4Z /> <rect class=ql-fill x=2 y=6 width=8 height=6 rx=1 ry=1 /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M5,8H3A1,1,0,0,1,3,6H5A1,1,0,0,1,5,8Z /> <path class=ql-fill d=M5,12H3a1,1,0,0,1,0-2H5A1,1,0,0,1,5,12Z /> <path class=ql-fill d=M13,16H3a1,1,0,0,1,0-2H13A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H3A1,1,0,0,1,3,2H13A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=8 y=6 width=8 height=6 rx=1 ry=1 transform="translate(24 18) rotate(-180)"/> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M11.759,2.482a2.561,2.561,0,0,0-3.53.607A7.656,7.656,0,0,0,6.8,6.2C6.109,9.188,5.275,14.677,4.15,14.927a1.545,1.545,0,0,0-1.3-.933A0.922,0.922,0,0,0,2,15.036S1.954,16,4.119,16s3.091-2.691,3.7-5.553c0.177-.826.36-1.726,0.554-2.6L8.775,6.2c0.381-1.421.807-2.521,1.306-2.676a1.014,1.014,0,0,0,1.02.56A0.966,0.966,0,0,0,11.759,2.482Z></path> <rect class=ql-fill height=1.6 rx=0.8 ry=0.8 width=5 x=5.15 y=6.2></rect> <path class=ql-fill d=M13.663,12.027a1.662,1.662,0,0,1,.266-0.276q0.193,0.069.456,0.138a2.1,2.1,0,0,0,.535.069,1.075,1.075,0,0,0,.767-0.3,1.044,1.044,0,0,0,.314-0.8,0.84,0.84,0,0,0-.238-0.619,0.8,0.8,0,0,0-.594-0.239,1.154,1.154,0,0,0-.781.3,4.607,4.607,0,0,0-.781,1q-0.091.15-.218,0.346l-0.246.38c-0.068-.288-0.137-0.582-0.212-0.885-0.459-1.847-2.494-.984-2.941-0.8-0.482.2-.353,0.647-0.094,0.529a0.869,0.869,0,0,1,1.281.585c0.217,0.751.377,1.436,0.527,2.038a5.688,5.688,0,0,1-.362.467,2.69,2.69,0,0,1-.264.271q-0.221-.08-0.471-0.147a2.029,2.029,0,0,0-.522-0.066,1.079,1.079,0,0,0-.768.3A1.058,1.058,0,0,0,9,15.131a0.82,0.82,0,0,0,.832.852,1.134,1.134,0,0,0,.787-0.3,5.11,5.11,0,0,0,.776-0.993q0.141-.219.215-0.34c0.046-.076.122-0.194,0.223-0.346a2.786,2.786,0,0,0,.918,1.726,2.582,2.582,0,0,0,2.376-.185c0.317-.181.212-0.565,0-0.494A0.807,0.807,0,0,1,14.176,15a5.159,5.159,0,0,1-.913-2.446l0,0Q13.487,12.24,13.663,12.027Z></path> </svg>'},function(e,t){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M10,4V14a1,1,0,0,1-2,0V10H3v4a1,1,0,0,1-2,0V4A1,1,0,0,1,3,4V8H8V4a1,1,0,0,1,2,0Zm6.06787,9.209H14.98975V7.59863a.54085.54085,0,0,0-.605-.60547h-.62744a1.01119,1.01119,0,0,0-.748.29688L11.645,8.56641a.5435.5435,0,0,0-.022.8584l.28613.30762a.53861.53861,0,0,0,.84717.0332l.09912-.08789a1.2137,1.2137,0,0,0,.2417-.35254h.02246s-.01123.30859-.01123.60547V13.209H12.041a.54085.54085,0,0,0-.605.60547v.43945a.54085.54085,0,0,0,.605.60547h4.02686a.54085.54085,0,0,0,.605-.60547v-.43945A.54085.54085,0,0,0,16.06787,13.209Z /> </svg>'},function(e,t){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M16.73975,13.81445v.43945a.54085.54085,0,0,1-.605.60547H11.855a.58392.58392,0,0,1-.64893-.60547V14.0127c0-2.90527,3.39941-3.42187,3.39941-4.55469a.77675.77675,0,0,0-.84717-.78125,1.17684,1.17684,0,0,0-.83594.38477c-.2749.26367-.561.374-.85791.13184l-.4292-.34082c-.30811-.24219-.38525-.51758-.1543-.81445a2.97155,2.97155,0,0,1,2.45361-1.17676,2.45393,2.45393,0,0,1,2.68408,2.40918c0,2.45312-3.1792,2.92676-3.27832,3.93848h2.79443A.54085.54085,0,0,1,16.73975,13.81445ZM9,3A.99974.99974,0,0,0,8,4V8H3V4A1,1,0,0,0,1,4V14a1,1,0,0,0,2,0V10H8v4a1,1,0,0,0,2,0V4A.99974.99974,0,0,0,9,3Z /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=13 y1=4 y2=4></line> <line class=ql-stroke x1=5 x2=11 y1=14 y2=14></line> <line class=ql-stroke x1=8 x2=10 y1=14 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=10 width=12 x=3 y=4></rect> <circle class=ql-fill cx=6 cy=7 r=1></circle> <polyline class="ql-even ql-fill" points="5 12 5 11 7 9 8 10 11 7 13 9 13 12 5 12"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class="ql-fill ql-stroke" points="3 7 3 11 5 9 3 7"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="5 7 5 11 3 9 5 7"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=11 y1=7 y2=11></line> <path class="ql-even ql-stroke" d=M8.9,4.577a3.476,3.476,0,0,1,.36,4.679A3.476,3.476,0,0,1,4.577,8.9C3.185,7.5,2.035,6.4,4.217,4.217S7.5,3.185,8.9,4.577Z></path> <path class="ql-even ql-stroke" d=M13.423,9.1a3.476,3.476,0,0,0-4.679-.36,3.476,3.476,0,0,0,.36,4.679c1.392,1.392,2.5,2.542,4.679.36S14.815,10.5,13.423,9.1Z></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=7 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=7 x2=15 y1=14 y2=14></line> <line class="ql-stroke ql-thin" x1=2.5 x2=4.5 y1=5.5 y2=5.5></line> <path class=ql-fill d=M3.5,6A0.5,0.5,0,0,1,3,5.5V3.085l-0.276.138A0.5,0.5,0,0,1,2.053,3c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,4,2.5v3A0.5,0.5,0,0,1,3.5,6Z></path> <path class="ql-stroke ql-thin" d=M4.5,10.5h-2c0-.234,1.85-1.076,1.85-2.234A0.959,0.959,0,0,0,2.5,8.156></path> <path class="ql-stroke ql-thin" d=M2.5,14.846a0.959,0.959,0,0,0,1.85-.109A0.7,0.7,0,0,0,3.75,14a0.688,0.688,0,0,0,.6-0.736,0.959,0.959,0,0,0-1.85-.109></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=6 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=6 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=6 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=3 y1=4 y2=4></line> <line class=ql-stroke x1=3 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=3 y1=14 y2=14></line> </svg>'},function(e,t){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=9 x2=15 y1=4 y2=4></line> <polyline class=ql-stroke points="3 4 4 5 6 3"></polyline> <line class=ql-stroke x1=9 x2=15 y1=14 y2=14></line> <polyline class=ql-stroke points="3 14 4 15 6 13"></polyline> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="3 9 4 10 6 8"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,15H13.861a3.858,3.858,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.921,1.921,0,0,0,12.021,11.7a0.50013,0.50013,0,1,0,.957.291h0a0.914,0.914,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.076-1.16971,1.86982-1.93971,2.43082A1.45639,1.45639,0,0,0,12,15.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,15Z /> <path class=ql-fill d=M9.65,5.241a1,1,0,0,0-1.409.108L6,7.964,3.759,5.349A1,1,0,0,0,2.192,6.59178Q2.21541,6.6213,2.241,6.649L4.684,9.5,2.241,12.35A1,1,0,0,0,3.71,13.70722q0.02557-.02768.049-0.05722L6,11.036,8.241,13.65a1,1,0,1,0,1.567-1.24277Q9.78459,12.3777,9.759,12.35L7.316,9.5,9.759,6.651A1,1,0,0,0,9.65,5.241Z /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,7H13.861a4.015,4.015,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.922,1.922,0,0,0,12.021,3.7a0.5,0.5,0,1,0,.957.291,0.917,0.917,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.077-1.164,1.925-1.934,2.486A1.423,1.423,0,0,0,12,7.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,7Z /> <path class=ql-fill d=M9.651,5.241a1,1,0,0,0-1.41.108L6,7.964,3.759,5.349a1,1,0,1,0-1.519,1.3L4.683,9.5,2.241,12.35a1,1,0,1,0,1.519,1.3L6,11.036,8.241,13.65a1,1,0,0,0,1.519-1.3L7.317,9.5,9.759,6.651A1,1,0,0,0,9.651,5.241Z /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-stroke ql-thin" x1=15.5 x2=2.5 y1=8.5 y2=9.5></line> <path class=ql-fill d=M9.007,8C6.542,7.791,6,7.519,6,6.5,6,5.792,7.283,5,9,5c1.571,0,2.765.679,2.969,1.309a1,1,0,0,0,1.9-.617C13.356,4.106,11.354,3,9,3,6.2,3,4,4.538,4,6.5a3.2,3.2,0,0,0,.5,1.843Z></path> <path class=ql-fill d=M8.984,10C11.457,10.208,12,10.479,12,11.5c0,0.708-1.283,1.5-3,1.5-1.571,0-2.765-.679-2.969-1.309a1,1,0,1,0-1.9.617C4.644,13.894,6.646,15,9,15c2.8,0,5-1.538,5-3.5a3.2,3.2,0,0,0-.5-1.843Z></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,3V9a4.012,4.012,0,0,0,4,4H9a4.012,4.012,0,0,0,4-4V3></path> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=12 x=3 y=15></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=12 width=12 x=3 y=3></rect> <rect class=ql-fill height=12 width=1 x=5 y=3></rect> <rect class=ql-fill height=12 width=1 x=12 y=3></rect> <rect class=ql-fill height=2 width=8 x=5 y=8></rect> <rect class=ql-fill height=1 width=3 x=3 y=5></rect> <rect class=ql-fill height=1 width=3 x=3 y=7></rect> <rect class=ql-fill height=1 width=3 x=3 y=10></rect> <rect class=ql-fill height=1 width=3 x=3 y=12></rect> <rect class=ql-fill height=1 width=3 x=12 y=5></rect> <rect class=ql-fill height=1 width=3 x=12 y=7></rect> <rect class=ql-fill height=1 width=3 x=12 y=10></rect> <rect class=ql-fill height=1 width=3 x=12 y=12></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polygon class=ql-stroke points="7 11 9 13 11 11 7 11"></polygon> <polygon class=ql-stroke points="7 7 9 5 11 7 7 7"></polygon> </svg>'},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.BubbleTooltip=void 0;var r=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;return void 0!==a?a.call(r):void 0},i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(3),a=h(o),s=n(8),c=h(s),u=n(43),l=h(u),d=n(15),f=n(41),p=h(f);function h(e){return e&&e.__esModule?e:{default:e}}function m(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function b(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function v(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var y=[["bold","italic","link"],[{header:1},{header:2},"blockquote"]],M=function(e){function t(e,n){m(this,t),null!=n.modules.toolbar&&null==n.modules.toolbar.container&&(n.modules.toolbar.container=y);var r=b(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.quill.container.classList.add("ql-bubble"),r}return v(t,e),i(t,[{key:"extendToolbar",value:function(e){this.tooltip=new _(this.quill,this.options.bounds),this.tooltip.root.appendChild(e.container),this.buildButtons([].slice.call(e.container.querySelectorAll("button")),p.default),this.buildPickers([].slice.call(e.container.querySelectorAll("select")),p.default)}}]),t}(l.default);M.DEFAULTS=(0,a.default)(!0,{},l.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(e){e?this.quill.theme.tooltip.edit():this.quill.format("link",!1)}}}}});var _=function(e){function t(e,n){m(this,t);var r=b(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.quill.on(c.default.events.EDITOR_CHANGE,(function(e,t,n,i){if(e===c.default.events.SELECTION_CHANGE)if(null!=t&&t.length>0&&i===c.default.sources.USER){r.show(),r.root.style.left="0px",r.root.style.width="",r.root.style.width=r.root.offsetWidth+"px";var o=r.quill.getLines(t.index,t.length);if(1===o.length)r.position(r.quill.getBounds(t));else{var a=o[o.length-1],s=r.quill.getIndex(a),u=Math.min(a.length()-1,t.index+t.length-s),l=r.quill.getBounds(new d.Range(s,u));r.position(l)}}else document.activeElement!==r.textbox&&r.quill.hasFocus()&&r.hide()})),r}return v(t,e),i(t,[{key:"listen",value:function(){var e=this;r(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",(function(){e.root.classList.remove("ql-editing")})),this.quill.on(c.default.events.SCROLL_OPTIMIZE,(function(){setTimeout((function(){if(!e.root.classList.contains("ql-hidden")){var t=e.quill.getSelection();null!=t&&e.position(e.quill.getBounds(t))}}),1)}))}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(e){var n=r(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"position",this).call(this,e),i=this.root.querySelector(".ql-tooltip-arrow");if(i.style.marginLeft="",0===n)return n;i.style.marginLeft=-1*n-i.offsetWidth/2+"px"}}]),t}(u.BaseTooltip);_.TEMPLATE=['<span class="ql-tooltip-arrow"></span>','<div class="ql-tooltip-editor">','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-close"></a>',"</div>"].join(""),t.BubbleTooltip=_,t.default=M},function(e,t,n){e.exports=n(63)}])["default"]}))}).call(this,n("1c35").Buffer)},9380:function(e,t,n){var r=n("2d7c"),i=n("9f74"),o=n("badf"),a=n("6747");function s(e,t){var n=a(e)?r:i;return n(e,o(t,3))}e.exports=s},"93ed":function(e,t,n){var r=n("42454");function i(e){var t=r(this,e)["delete"](e);return this.size-=t?1:0,t}e.exports=i},"944a":function(e,t,n){var r=n("746f");r("toStringTag")},"94ca":function(e,t,n){var r=n("d039"),i=/#|\.prototype\./,o=function(e,t){var n=s[a(e)];return n==u||n!=c&&("function"==typeof t?r(t):!!t)},a=o.normalize=function(e){return String(e).replace(i,".").toLowerCase()},s=o.data={},c=o.NATIVE="N",u=o.POLYFILL="P";e.exports=o},"950a":function(e,t,n){var r=n("30c9");function i(e,t){return function(n,i){if(null==n)return n;if(!r(n))return e(n,i);var o=n.length,a=t?o:-1,s=Object(n);while(t?a--:++a<o)if(!1===i(s[a],a,s))break;return n}}e.exports=i},9520:function(e,t,n){var r=n("3729"),i=n("1a8c"),o="[object AsyncFunction]",a="[object Function]",s="[object GeneratorFunction]",c="[object Proxy]";function u(e){if(!i(e))return!1;var t=r(e);return t==a||t==s||t==o||t==c}e.exports=u},"95ae":function(e,t,n){var r=n("100e"),i=n("9638"),o=n("9aff"),a=n("9934"),s=Object.prototype,c=s.hasOwnProperty,u=r((function(e,t){e=Object(e);var n=-1,r=t.length,u=r>2?t[2]:void 0;u&&o(t[0],t[1],u)&&(r=1);while(++n<r){var l=t[n],d=a(l),f=-1,p=d.length;while(++f<p){var h=d[f],m=e[h];(void 0===m||i(m,s[h])&&!c.call(e,h))&&(e[h]=l[h])}}return e}));e.exports=u},9638:function(e,t){function n(e,t){return e===t||e!==e&&t!==t}e.exports=n},"966f":function(e,t,n){var r=n("7e64"),i=n("c05f"),o=1,a=2;function s(e,t,n,s){var c=n.length,u=c,l=!s;if(null==e)return!u;e=Object(e);while(c--){var d=n[c];if(l&&d[2]?d[1]!==e[d[0]]:!(d[0]in e))return!1}while(++c<u){d=n[c];var f=d[0],p=e[f],h=d[1];if(l&&d[2]){if(void 0===p&&!(f in e))return!1}else{var m=new r;if(s)var b=s(p,h,f,e,t,m);if(!(void 0===b?i(h,p,o|a,s,m):b))return!1}}return!0}e.exports=s},"96cf":function(e,t,n){var r=function(e){"use strict";var t,n=Object.prototype,r=n.hasOwnProperty,i="function"===typeof Symbol?Symbol:{},o=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(N){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,o=Object.create(i.prototype),a=new x(r||[]);return o._invoke=O(e,n,a),o}function l(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(N){return{type:"throw",arg:N}}}e.wrap=u;var d="suspendedStart",f="suspendedYield",p="executing",h="completed",m={};function b(){}function v(){}function y(){}var M={};M[o]=function(){return this};var _=Object.getPrototypeOf,g=_&&_(_(z([])));g&&g!==n&&r.call(g,o)&&(M=g);var w=y.prototype=b.prototype=Object.create(M);function A(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function L(e,t){function n(i,o,a,s){var c=l(e[i],e,o);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"===typeof d&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(c.arg)}var i;function o(e,r){function o(){return new t((function(t,i){n(e,r,t,i)}))}return i=i?i.then(o,o):o()}this._invoke=o}function O(e,t,n){var r=d;return function(i,o){if(r===p)throw new Error("Generator is already running");if(r===h){if("throw"===i)throw o;return D()}n.method=i,n.arg=o;while(1){var a=n.delegate;if(a){var s=T(a,n);if(s){if(s===m)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===d)throw r=h,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=p;var c=l(e,t,n);if("normal"===c.type){if(r=n.done?h:f,c.arg===m)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(r=h,n.method="throw",n.arg=c.arg)}}}function T(e,n){var r=e.iterator[n.method];if(r===t){if(n.delegate=null,"throw"===n.method){if(e.iterator["return"]&&(n.method="return",n.arg=t,T(e,n),"throw"===n.method))return m;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return m}var i=l(r,e.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var o=i.arg;return o?o.done?(n[e.resultName]=o.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,m):o:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function S(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function k(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function x(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(S,this),this.reset(!0)}function z(e){if(e){var n=e[o];if(n)return n.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var i=-1,a=function n(){while(++i<e.length)if(r.call(e,i))return n.value=e[i],n.done=!1,n;return n.value=t,n.done=!0,n};return a.next=a}}return{next:D}}function D(){return{value:t,done:!0}}return v.prototype=w.constructor=y,y.constructor=v,v.displayName=c(y,s,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===v||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,y):(e.__proto__=y,c(e,s,"GeneratorFunction")),e.prototype=Object.create(w),e},e.awrap=function(e){return{__await:e}},A(L.prototype),L.prototype[a]=function(){return this},e.AsyncIterator=L,e.async=function(t,n,r,i,o){void 0===o&&(o=Promise);var a=new L(u(t,n,r,i),o);return e.isGeneratorFunction(n)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},A(w),c(w,s,"Generator"),w[o]=function(){return this},w.toString=function(){return"[object Generator]"},e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){while(t.length){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=z,x.prototype={constructor:x,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(k),!e)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=t)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var n=this;function i(r,i){return s.type="throw",s.arg=e,n.next=r,i&&(n.method="next",n.arg=t),!!i}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return i("end");if(a.tryLoc<=this.prev){var c=r.call(a,"catchLoc"),u=r.call(a,"finallyLoc");if(c&&u){if(this.prev<a.catchLoc)return i(a.catchLoc,!0);if(this.prev<a.finallyLoc)return i(a.finallyLoc)}else if(c){if(this.prev<a.catchLoc)return i(a.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return i(a.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var o=i;break}}o&&("break"===e||"continue"===e)&&o.tryLoc<=t&&t<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=e,a.arg=t,o?(this.method="next",this.next=o.finallyLoc,m):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),m},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),k(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var i=r.arg;k(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={iterator:z(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),m}},e}(e.exports);try{regeneratorRuntime=r}catch(i){Function("r","regeneratorRuntime = r")(r)}},9767:function(e,t,n){"use strict";var r=n("23e7"),i=n("857a"),o=n("af03");r({target:"String",proto:!0,forced:o("fontcolor")},{fontcolor:function(e){return i(this,"font","color",e)}})},"97d3":function(e,t,n){var r=n("48a0"),i=n("30c9");function o(e,t){var n=-1,o=i(e)?Array(e.length):[];return r(e,(function(e,r,i){o[++n]=t(e,r,i)})),o}e.exports=o},9861:function(e,t,n){"use strict";n("e260");var r=n("23e7"),i=n("d066"),o=n("0d3b"),a=n("6eeb"),s=n("e2cc"),c=n("d44e"),u=n("9ed3"),l=n("69f3"),d=n("19aa"),f=n("5135"),p=n("0366"),h=n("f5df"),m=n("825a"),b=n("861d"),v=n("7c73"),y=n("5c6c"),M=n("9a1f"),_=n("35a1"),g=n("b622"),w=i("fetch"),A=i("Headers"),L=g("iterator"),O="URLSearchParams",T=O+"Iterator",S=l.set,k=l.getterFor(O),x=l.getterFor(T),z=/\+/g,D=Array(4),N=function(e){return D[e-1]||(D[e-1]=RegExp("((?:%[\\da-f]{2}){"+e+"})","gi"))},C=function(e){try{return decodeURIComponent(e)}catch(t){return e}},E=function(e){var t=e.replace(z," "),n=4;try{return decodeURIComponent(t)}catch(r){while(n)t=t.replace(N(n--),C);return t}},$=/[!'()~]|%20/g,P={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},j=function(e){return P[e]},Y=function(e){return encodeURIComponent(e).replace($,j)},q=function(e,t){if(t){var n,r,i=t.split("&"),o=0;while(o<i.length)n=i[o++],n.length&&(r=n.split("="),e.push({key:E(r.shift()),value:E(r.join("="))}))}},W=function(e){this.entries.length=0,q(this.entries,e)},B=function(e,t){if(e<t)throw TypeError("Not enough arguments")},R=u((function(e,t){S(this,{type:T,iterator:M(k(e).entries),kind:t})}),"Iterator",(function(){var e=x(this),t=e.kind,n=e.iterator.next(),r=n.value;return n.done||(n.value="keys"===t?r.key:"values"===t?r.value:[r.key,r.value]),n})),I=function(){d(this,I,O);var e,t,n,r,i,o,a,s,c,u=arguments.length>0?arguments[0]:void 0,l=this,p=[];if(S(l,{type:O,entries:p,updateURL:function(){},updateSearchParams:W}),void 0!==u)if(b(u))if(e=_(u),"function"===typeof e){t=e.call(u),n=t.next;while(!(r=n.call(t)).done){if(i=M(m(r.value)),o=i.next,(a=o.call(i)).done||(s=o.call(i)).done||!o.call(i).done)throw TypeError("Expected sequence with length 2");p.push({key:a.value+"",value:s.value+""})}}else for(c in u)f(u,c)&&p.push({key:c,value:u[c]+""});else q(p,"string"===typeof u?"?"===u.charAt(0)?u.slice(1):u:u+"")},H=I.prototype;s(H,{append:function(e,t){B(arguments.length,2);var n=k(this);n.entries.push({key:e+"",value:t+""}),n.updateURL()},delete:function(e){B(arguments.length,1);var t=k(this),n=t.entries,r=e+"",i=0;while(i<n.length)n[i].key===r?n.splice(i,1):i++;t.updateURL()},get:function(e){B(arguments.length,1);for(var t=k(this).entries,n=e+"",r=0;r<t.length;r++)if(t[r].key===n)return t[r].value;return null},getAll:function(e){B(arguments.length,1);for(var t=k(this).entries,n=e+"",r=[],i=0;i<t.length;i++)t[i].key===n&&r.push(t[i].value);return r},has:function(e){B(arguments.length,1);var t=k(this).entries,n=e+"",r=0;while(r<t.length)if(t[r++].key===n)return!0;return!1},set:function(e,t){B(arguments.length,1);for(var n,r=k(this),i=r.entries,o=!1,a=e+"",s=t+"",c=0;c<i.length;c++)n=i[c],n.key===a&&(o?i.splice(c--,1):(o=!0,n.value=s));o||i.push({key:a,value:s}),r.updateURL()},sort:function(){var e,t,n,r=k(this),i=r.entries,o=i.slice();for(i.length=0,n=0;n<o.length;n++){for(e=o[n],t=0;t<n;t++)if(i[t].key>e.key){i.splice(t,0,e);break}t===n&&i.push(e)}r.updateURL()},forEach:function(e){var t,n=k(this).entries,r=p(e,arguments.length>1?arguments[1]:void 0,3),i=0;while(i<n.length)t=n[i++],r(t.value,t.key,this)},keys:function(){return new R(this,"keys")},values:function(){return new R(this,"values")},entries:function(){return new R(this,"entries")}},{enumerable:!0}),a(H,L,H.entries),a(H,"toString",(function(){var e,t=k(this).entries,n=[],r=0;while(r<t.length)e=t[r++],n.push(Y(e.key)+"="+Y(e.value));return n.join("&")}),{enumerable:!0}),c(I,O),r({global:!0,forced:!o},{URLSearchParams:I}),o||"function"!=typeof w||"function"!=typeof A||r({global:!0,enumerable:!0,forced:!0},{fetch:function(e){var t,n,r,i=[e];return arguments.length>1&&(t=arguments[1],b(t)&&(n=t.body,h(n)===O&&(r=t.headers?new A(t.headers):new A,r.has("content-type")||r.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"),t=v(t,{body:y(0,String(n)),headers:y(0,r)}))),i.push(t)),w.apply(this,i)}}),e.exports={URLSearchParams:I,getState:k}},9911:function(e,t,n){"use strict";var r=n("23e7"),i=n("857a"),o=n("af03");r({target:"String",proto:!0,forced:o("link")},{link:function(e){return i(this,"a","href",e)}})},"991b":function(e,t,n){var r=n("5c69"),i=1/0;function o(e){var t=null==e?0:e.length;return t?r(e,i):[]}e.exports=o},9934:function(e,t,n){var r=n("6fcd"),i=n("41c3"),o=n("30c9");function a(e){return o(e)?r(e,!0):i(e)}e.exports=a},"99af":function(e,t,n){"use strict";var r=n("23e7"),i=n("d039"),o=n("e8b5"),a=n("861d"),s=n("7b0b"),c=n("50c4"),u=n("8418"),l=n("65f0"),d=n("1dde"),f=n("b622"),p=n("2d00"),h=f("isConcatSpreadable"),m=9007199254740991,b="Maximum allowed index exceeded",v=p>=51||!i((function(){var e=[];return e[h]=!1,e.concat()[0]!==e})),y=d("concat"),M=function(e){if(!a(e))return!1;var t=e[h];return void 0!==t?!!t:o(e)},_=!v||!y;r({target:"Array",proto:!0,forced:_},{concat:function(e){var t,n,r,i,o,a=s(this),d=l(a,0),f=0;for(t=-1,r=arguments.length;t<r;t++)if(o=-1===t?a:arguments[t],M(o)){if(i=c(o.length),f+i>m)throw TypeError(b);for(n=0;n<i;n++,f++)n in o&&u(d,f,o[n])}else{if(f>=m)throw TypeError(b);u(d,f++,o)}return d.length=f,d}})},"99cd":function(e,t){function n(e){return function(t,n,r){var i=-1,o=Object(t),a=r(t),s=a.length;while(s--){var c=a[e?s:++i];if(!1===n(o[c],c,o))break}return t}}e.exports=n},"99d3":function(e,t,n){(function(e){var r=n("585a"),i=t&&!t.nodeType&&t,o=i&&"object"==typeof e&&e&&!e.nodeType&&e,a=o&&o.exports===i,s=a&&r.process,c=function(){try{var e=o&&o.require&&o.require("util").types;return e||s&&s.binding&&s.binding("util")}catch(t){}}();e.exports=c}).call(this,n("62e4")(e))},"9a0c":function(e,t,n){var r=n("342f");e.exports=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(r)},"9a1f":function(e,t,n){var r=n("825a"),i=n("35a1");e.exports=function(e){var t=i(e);if("function"!=typeof t)throw TypeError(String(e)+" is not iterable");return r(t.call(e))}},"9a8c":function(e,t,n){"use strict";var r=n("ebb5"),i=n("145e"),o=r.aTypedArray,a=r.exportTypedArrayMethod;a("copyWithin",(function(e,t){return i.call(o(this),e,t,arguments.length>2?arguments[2]:void 0)}))},"9aff":function(e,t,n){var r=n("9638"),i=n("30c9"),o=n("c098"),a=n("1a8c");function s(e,t,n){if(!a(n))return!1;var s=typeof t;return!!("number"==s?i(n)&&o(t,n.length):"string"==s&&t in n)&&r(n[t],e)}e.exports=s},"9b02":function(e,t,n){var r=n("656b");function i(e,t,n){var i=null==e?void 0:r(e,t);return void 0===i?n:i}e.exports=i},"9bdd":function(e,t,n){var r=n("825a");e.exports=function(e,t,n,i){try{return i?t(r(n)[0],n[1]):t(n)}catch(a){var o=e["return"];throw void 0!==o&&r(o.call(e)),a}}},"9bf2":function(e,t,n){var r=n("83ab"),i=n("0cfb"),o=n("825a"),a=n("c04e"),s=Object.defineProperty;t.f=r?s:function(e,t,n){if(o(e),t=a(t,!0),o(n),i)try{return s(e,t,n)}catch(r){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},"9c30":function(e,t,n){
41
  /*!
42
  * vue-material v1.0.0-beta-13
43
  * Made with <3 by marcosmoura 2020
dist/Lite/assets/js/connect-pro.js CHANGED
@@ -1 +1 @@
1
- (function(e){function t(t){for(var r,o,u=t[0],i=t[1],s=t[2],l=0,f=[];l<u.length;l++)o=u[l],Object.prototype.hasOwnProperty.call(a,o)&&a[o]&&f.push(a[o][0]),a[o]=0;for(r in i)Object.prototype.hasOwnProperty.call(i,r)&&(e[r]=i[r]);p&&p(t);while(f.length)f.shift()();return c.push.apply(c,s||[]),n()}function n(){for(var e,t=0;t<c.length;t++){for(var n=c[t],r=!0,o=1;o<n.length;o++){var u=n[o];0!==a[u]&&(r=!1)}r&&(c.splice(t--,1),e=i(i.s=n[0]))}return e}var r={},o={"connect-pro":0},a=(o={"connect-pro":0},{"connect-pro":0}),c=[];function u(e){return i.p+"js/"+({"connect-pro-Main-vue":"connect-pro-Main-vue"}[e]||e)+".js?ver="+{"connect-pro-Main-vue":"bca25534"}[e]}function i(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,i),n.l=!0,n.exports}i.e=function(e){var t=[],n={"connect-pro-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var r="css/"+({"connect-pro-Main-vue":"connect-pro-Main-vue"}[e]||e)+".css?ver="+{"connect-pro-Main-vue":"bca25534"}[e],a=i.p+r,c=document.getElementsByTagName("link"),u=0;u<c.length;u++){var s=c[u],l=s.getAttribute("data-href")||s.getAttribute("href");if("stylesheet"===s.rel&&(l===r||l===a))return t()}var f=document.getElementsByTagName("style");for(u=0;u<f.length;u++){s=f[u],l=s.getAttribute("data-href");if(l===r||l===a)return t()}var p=document.createElement("link");p.rel="stylesheet",p.type="text/css",p.onload=t,p.onerror=function(t){var r=t&&t.target&&t.target.src||a,c=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");c.code="CSS_CHUNK_LOAD_FAILED",c.request=r,delete o[e],p.parentNode.removeChild(p),n(c)},p.href=a;var d=document.getElementsByTagName("head")[0];d.appendChild(p)})).then((function(){o[e]=0})));n={"connect-pro-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var r=({"connect-pro-Main-vue":"connect-pro-Main-vue"}[e]||e)+".css",a=i.p+r,c=document.getElementsByTagName("link"),u=0;u<c.length;u++){var s=c[u],l=s.getAttribute("data-href")||s.getAttribute("href");if("stylesheet"===s.rel&&(l===r||l===a))return t()}var f=document.getElementsByTagName("style");for(u=0;u<f.length;u++){s=f[u],l=s.getAttribute("data-href");if(l===r||l===a)return t()}var p=document.createElement("link");p.rel="stylesheet",p.type="text/css";var d=function(r){if(p.onerror=p.onload=null,"load"===r.type)t();else{var c=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.href||a,i=new Error("Loading CSS chunk "+e+" failed.\n("+u+")");i.code="CSS_CHUNK_LOAD_FAILED",i.type=c,i.request=u,delete o[e],p.parentNode.removeChild(p),n(i)}};p.onerror=p.onload=d,p.href=a,document.head.appendChild(p)})).then((function(){o[e]=0})));var r=a[e];if(0!==r)if(r)t.push(r[2]);else{var c=new Promise((function(t,n){r=a[e]=[t,n]}));t.push(r[2]=c);var s,l=document.createElement("script");l.charset="utf-8",l.timeout=120,i.nc&&l.setAttribute("nonce",i.nc),l.src=u(e);var f=new Error;s=function(t){l.onerror=l.onload=null,clearTimeout(p);var n=a[e];if(0!==n){if(n){var r=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;f.message="Loading chunk "+e+" failed.\n("+r+": "+o+")",f.name="ChunkLoadError",f.type=r,f.request=o,n[1](f)}a[e]=void 0}};var p=setTimeout((function(){s({type:"timeout",target:l})}),12e4);l.onerror=l.onload=s,document.head.appendChild(l)}return Promise.all(t)},i.m=e,i.c=r,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)i.d(n,r,function(t){return e[t]}.bind(null,r));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/",i.oe=function(e){throw console.error(e),e};var s=window["aioseopjsonp"]=window["aioseopjsonp"]||[],l=s.push.bind(s);s.push=t,s=s.slice();for(var f=0;f<s.length;f++)t(s[f]);var p=l;c.push([2,"chunk-vendors","chunk-common"]),n()})({2:function(e,t,n){e.exports=n("f296")},"4ebc":function(e,t,n){var r={"./Main.vue":["0cb4","connect-pro-Main-vue"]};function o(e){if(!n.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],o=t[0];return n.e(t[1]).then((function(){return n(o)}))}o.keys=function(){return Object.keys(r)},o.id="4ebc",e.exports=o},f296:function(e,t,n){"use strict";n.r(t);n("e260"),n("e6cf"),n("cca6"),n("a79d");var r=n("a026"),o=(n("1725"),n("75b9"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"aioseo-app"},[n("router-view")],1)}),a=[],c=n("2877"),u={},i=Object(c["a"])(u,o,a,!1,null,null,null),s=i.exports,l=n("cf27"),f=n("71ae"),p=(n("d3b7"),n("3ca3"),n("ddb0"),n("561c")),d="all-in-one-seo-pack",h=function(e){return function(){return n("4ebc")("./"+e+".vue")}},v=[{path:"*",redirect:"/"},{path:"/",name:"main",component:h("Main"),meta:{access:"aioseo_manage_seo",name:Object(p["sprintf"])(Object(p["__"])("Connect with %1$s",d),"AIOSEO")}}],m=n("31bd"),g=(n("2d26"),n("96cf"),Object(f["a"])(v));Object(m["sync"])(l["a"],g),r["default"].config.productionTip=!1,new r["default"]({router:g,store:l["a"],render:function(e){return e(s)}}).$mount("#aioseo-app")}});
1
+ (function(e){function t(t){for(var r,o,a=t[0],i=t[1],s=t[2],l=0,f=[];l<a.length;l++)o=a[l],Object.prototype.hasOwnProperty.call(c,o)&&c[o]&&f.push(c[o][0]),c[o]=0;for(r in i)Object.prototype.hasOwnProperty.call(i,r)&&(e[r]=i[r]);d&&d(t);while(f.length)f.shift()();return u.push.apply(u,s||[]),n()}function n(){for(var e,t=0;t<u.length;t++){for(var n=u[t],r=!0,o=1;o<n.length;o++){var a=n[o];0!==c[a]&&(r=!1)}r&&(u.splice(t--,1),e=s(s.s=n[0]))}return e}var r={},o={"connect-pro":0},a=(o={"connect-pro":0},function(){return"rtl"===document.dir}),c={"connect-pro":0},u=[];function i(e){return s.p+"js/"+({"connect-pro-Main-vue":"connect-pro-Main-vue"}[e]||e)+".js?ver="+{"connect-pro-Main-vue":"4276e91d"}[e]}function s(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,s),n.l=!0,n.exports}s.e=function(e){var t=[],n={"connect-pro-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var r="css/"+({"connect-pro-Main-vue":"connect-pro-Main-vue"}[e]||e)+".css",a=s.p+r,c=document.getElementsByTagName("link"),u=0;u<c.length;u++){var i=c[u],l=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(l===r||l===a))return t()}var f=document.getElementsByTagName("style");for(u=0;u<f.length;u++){i=f[u],l=i.getAttribute("data-href");if(l===r||l===a)return t()}var p=document.createElement("link");p.rel="stylesheet",p.type="text/css",p.onload=t,p.onerror=function(t){var r=t&&t.target&&t.target.src||a,c=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");c.code="CSS_CHUNK_LOAD_FAILED",c.request=r,delete o[e],p.parentNode.removeChild(p),n(c)},p.href=a;var d=document.getElementsByTagName("head")[0];d.appendChild(p)})).then((function(){o[e]=0})));n={"connect-pro-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var r=(a(),"css/"+({"connect-pro-Main-vue":"connect-pro-Main-vue"}[e]||e)+".css?ver="+{"connect-pro-Main-vue":"4276e91d"}[e]),o=s.p+r,c=document.getElementsByTagName("link"),u=0;u<c.length;u++){var i=c[u],l=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(l===r||l===o))return t()}var f=document.getElementsByTagName("style");for(u=0;u<f.length;u++){i=f[u],l=i.getAttribute("data-href");if(l===r||l===o)return t()}var p=document.createElement("link");p.rel="stylesheet",p.type="text/css",p.onload=t,p.onerror=function(t){var r=t&&t.target&&t.target.src||o,a=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");a.request=r,n(a)},p.href=o;var d=document.getElementsByTagName("head")[0];d.appendChild(p)})).then((function(){o[e]=0})));var r=c[e];if(0!==r)if(r)t.push(r[2]);else{var u=new Promise((function(t,n){r=c[e]=[t,n]}));t.push(r[2]=u);var l,f=document.createElement("script");f.charset="utf-8",f.timeout=120,s.nc&&f.setAttribute("nonce",s.nc),f.src=i(e);var p=new Error;l=function(t){f.onerror=f.onload=null,clearTimeout(d);var n=c[e];if(0!==n){if(n){var r=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;p.message="Loading chunk "+e+" failed.\n("+r+": "+o+")",p.name="ChunkLoadError",p.type=r,p.request=o,n[1](p)}c[e]=void 0}};var d=setTimeout((function(){l({type:"timeout",target:f})}),12e4);f.onerror=f.onload=l,document.head.appendChild(f)}return Promise.all(t)},s.m=e,s.c=r,s.d=function(e,t,n){s.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},s.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.t=function(e,t){if(1&t&&(e=s(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(s.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)s.d(n,r,function(t){return e[t]}.bind(null,r));return n},s.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return s.d(t,"a",t),t},s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},s.p="/",s.oe=function(e){throw console.error(e),e};var l=window["aioseopjsonp"]=window["aioseopjsonp"]||[],f=l.push.bind(l);l.push=t,l=l.slice();for(var p=0;p<l.length;p++)t(l[p]);var d=f;u.push([2,"chunk-vendors","chunk-common"]),n()})({2:function(e,t,n){e.exports=n("f296")},"4ebc":function(e,t,n){var r={"./Main.vue":["0cb4","connect-pro-Main-vue"]};function o(e){if(!n.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],o=t[0];return n.e(t[1]).then((function(){return n(o)}))}o.keys=function(){return Object.keys(r)},o.id="4ebc",e.exports=o},f296:function(e,t,n){"use strict";n.r(t);n("e260"),n("e6cf"),n("cca6"),n("a79d");var r=n("a026"),o=(n("1725"),n("75b9"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"aioseo-app"},[n("router-view")],1)}),a=[],c=n("2877"),u={},i=Object(c["a"])(u,o,a,!1,null,null,null),s=i.exports,l=n("cf27"),f=n("71ae"),p=(n("d3b7"),n("3ca3"),n("ddb0"),n("561c")),d="all-in-one-seo-pack",h=function(e){return function(){return n("4ebc")("./"+e+".vue")}},v=[{path:"*",redirect:"/"},{path:"/",name:"main",component:h("Main"),meta:{access:"aioseo_manage_seo",name:Object(p["sprintf"])(Object(p["__"])("Connect with %1$s",d),"AIOSEO")}}],m=n("31bd"),g=(n("2d26"),n("96cf"),Object(f["a"])(v));Object(m["sync"])(l["a"],g),r["default"].config.productionTip=!1,new r["default"]({router:g,store:l["a"],render:function(e){return e(s)}}).$mount("#aioseo-app")}});
dist/Lite/assets/js/connect.js CHANGED
@@ -1 +1 @@
1
- (function(e){function t(t){for(var r,o,u=t[0],i=t[1],s=t[2],l=0,f=[];l<u.length;l++)o=u[l],Object.prototype.hasOwnProperty.call(a,o)&&a[o]&&f.push(a[o][0]),a[o]=0;for(r in i)Object.prototype.hasOwnProperty.call(i,r)&&(e[r]=i[r]);d&&d(t);while(f.length)f.shift()();return c.push.apply(c,s||[]),n()}function n(){for(var e,t=0;t<c.length;t++){for(var n=c[t],r=!0,o=1;o<n.length;o++){var u=n[o];0!==a[u]&&(r=!1)}r&&(c.splice(t--,1),e=i(i.s=n[0]))}return e}var r={},o={connect:0},a=(o={connect:0},{connect:0}),c=[];function u(e){return i.p+"js/"+({"connect-Main-vue":"connect-Main-vue"}[e]||e)+".js?ver="+{"connect-Main-vue":"d48f1285"}[e]}function i(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,i),n.l=!0,n.exports}i.e=function(e){var t=[],n={"connect-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var r="css/"+({"connect-Main-vue":"connect-Main-vue"}[e]||e)+".css?ver="+{"connect-Main-vue":"d48f1285"}[e],a=i.p+r,c=document.getElementsByTagName("link"),u=0;u<c.length;u++){var s=c[u],l=s.getAttribute("data-href")||s.getAttribute("href");if("stylesheet"===s.rel&&(l===r||l===a))return t()}var f=document.getElementsByTagName("style");for(u=0;u<f.length;u++){s=f[u],l=s.getAttribute("data-href");if(l===r||l===a)return t()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css",d.onload=t,d.onerror=function(t){var r=t&&t.target&&t.target.src||a,c=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");c.code="CSS_CHUNK_LOAD_FAILED",c.request=r,delete o[e],d.parentNode.removeChild(d),n(c)},d.href=a;var p=document.getElementsByTagName("head")[0];p.appendChild(d)})).then((function(){o[e]=0})));n={"connect-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var r=({"connect-Main-vue":"connect-Main-vue"}[e]||e)+".css",a=i.p+r,c=document.getElementsByTagName("link"),u=0;u<c.length;u++){var s=c[u],l=s.getAttribute("data-href")||s.getAttribute("href");if("stylesheet"===s.rel&&(l===r||l===a))return t()}var f=document.getElementsByTagName("style");for(u=0;u<f.length;u++){s=f[u],l=s.getAttribute("data-href");if(l===r||l===a)return t()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css";var p=function(r){if(d.onerror=d.onload=null,"load"===r.type)t();else{var c=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.href||a,i=new Error("Loading CSS chunk "+e+" failed.\n("+u+")");i.code="CSS_CHUNK_LOAD_FAILED",i.type=c,i.request=u,delete o[e],d.parentNode.removeChild(d),n(i)}};d.onerror=d.onload=p,d.href=a,document.head.appendChild(d)})).then((function(){o[e]=0})));var r=a[e];if(0!==r)if(r)t.push(r[2]);else{var c=new Promise((function(t,n){r=a[e]=[t,n]}));t.push(r[2]=c);var s,l=document.createElement("script");l.charset="utf-8",l.timeout=120,i.nc&&l.setAttribute("nonce",i.nc),l.src=u(e);var f=new Error;s=function(t){l.onerror=l.onload=null,clearTimeout(d);var n=a[e];if(0!==n){if(n){var r=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;f.message="Loading chunk "+e+" failed.\n("+r+": "+o+")",f.name="ChunkLoadError",f.type=r,f.request=o,n[1](f)}a[e]=void 0}};var d=setTimeout((function(){s({type:"timeout",target:l})}),12e4);l.onerror=l.onload=s,document.head.appendChild(l)}return Promise.all(t)},i.m=e,i.c=r,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)i.d(n,r,function(t){return e[t]}.bind(null,r));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/",i.oe=function(e){throw console.error(e),e};var s=window["aioseopjsonp"]=window["aioseopjsonp"]||[],l=s.push.bind(s);s.push=t,s=s.slice();for(var f=0;f<s.length;f++)t(s[f]);var d=l;c.push([1,"chunk-vendors","chunk-common"]),n()})({1:function(e,t,n){e.exports=n("b342")},b342:function(e,t,n){"use strict";n.r(t);n("e260"),n("e6cf"),n("cca6"),n("a79d");var r=n("a026"),o=(n("1725"),n("75b9"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"aioseo-app"},[n("router-view")],1)}),a=[],c=n("2877"),u={},i=Object(c["a"])(u,o,a,!1,null,null,null),s=i.exports,l=n("cf27"),f=n("71ae"),d=(n("d3b7"),n("3ca3"),n("ddb0"),n("561c")),p="all-in-one-seo-pack",h=function(e){return function(){return n("f0e1")("./"+e+".vue")}},v=[{path:"*",redirect:"/"},{path:"/",name:"main",component:h("Main"),meta:{access:"aioseo_manage_seo",name:Object(d["sprintf"])(Object(d["__"])("Connect with %1$s",p),"AIOSEO")}}],m=n("31bd"),g=(n("2d26"),n("96cf"),Object(f["a"])(v));Object(m["sync"])(l["a"],g),r["default"].config.productionTip=!1,new r["default"]({router:g,store:l["a"],render:function(e){return e(s)}}).$mount("#aioseo-app")},f0e1:function(e,t,n){var r={"./Main.vue":["c933","connect-Main-vue"]};function o(e){if(!n.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],o=t[0];return n.e(t[1]).then((function(){return n(o)}))}o.keys=function(){return Object.keys(r)},o.id="f0e1",e.exports=o}});
1
+ (function(e){function t(t){for(var r,o,a=t[0],i=t[1],s=t[2],l=0,f=[];l<a.length;l++)o=a[l],Object.prototype.hasOwnProperty.call(c,o)&&c[o]&&f.push(c[o][0]),c[o]=0;for(r in i)Object.prototype.hasOwnProperty.call(i,r)&&(e[r]=i[r]);p&&p(t);while(f.length)f.shift()();return u.push.apply(u,s||[]),n()}function n(){for(var e,t=0;t<u.length;t++){for(var n=u[t],r=!0,o=1;o<n.length;o++){var a=n[o];0!==c[a]&&(r=!1)}r&&(u.splice(t--,1),e=s(s.s=n[0]))}return e}var r={},o={connect:0},a=(o={connect:0},function(){return"rtl"===document.dir}),c={connect:0},u=[];function i(e){return s.p+"js/"+({"connect-Main-vue":"connect-Main-vue"}[e]||e)+".js?ver="+{"connect-Main-vue":"967c4efb"}[e]}function s(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,s),n.l=!0,n.exports}s.e=function(e){var t=[],n={"connect-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var r="css/"+({"connect-Main-vue":"connect-Main-vue"}[e]||e)+".css",a=s.p+r,c=document.getElementsByTagName("link"),u=0;u<c.length;u++){var i=c[u],l=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(l===r||l===a))return t()}var f=document.getElementsByTagName("style");for(u=0;u<f.length;u++){i=f[u],l=i.getAttribute("data-href");if(l===r||l===a)return t()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css",d.onload=t,d.onerror=function(t){var r=t&&t.target&&t.target.src||a,c=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");c.code="CSS_CHUNK_LOAD_FAILED",c.request=r,delete o[e],d.parentNode.removeChild(d),n(c)},d.href=a;var p=document.getElementsByTagName("head")[0];p.appendChild(d)})).then((function(){o[e]=0})));n={"connect-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var r=(a(),"css/"+({"connect-Main-vue":"connect-Main-vue"}[e]||e)+".css?ver="+{"connect-Main-vue":"967c4efb"}[e]),o=s.p+r,c=document.getElementsByTagName("link"),u=0;u<c.length;u++){var i=c[u],l=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(l===r||l===o))return t()}var f=document.getElementsByTagName("style");for(u=0;u<f.length;u++){i=f[u],l=i.getAttribute("data-href");if(l===r||l===o)return t()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css",d.onload=t,d.onerror=function(t){var r=t&&t.target&&t.target.src||o,a=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");a.request=r,n(a)},d.href=o;var p=document.getElementsByTagName("head")[0];p.appendChild(d)})).then((function(){o[e]=0})));var r=c[e];if(0!==r)if(r)t.push(r[2]);else{var u=new Promise((function(t,n){r=c[e]=[t,n]}));t.push(r[2]=u);var l,f=document.createElement("script");f.charset="utf-8",f.timeout=120,s.nc&&f.setAttribute("nonce",s.nc),f.src=i(e);var d=new Error;l=function(t){f.onerror=f.onload=null,clearTimeout(p);var n=c[e];if(0!==n){if(n){var r=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;d.message="Loading chunk "+e+" failed.\n("+r+": "+o+")",d.name="ChunkLoadError",d.type=r,d.request=o,n[1](d)}c[e]=void 0}};var p=setTimeout((function(){l({type:"timeout",target:f})}),12e4);f.onerror=f.onload=l,document.head.appendChild(f)}return Promise.all(t)},s.m=e,s.c=r,s.d=function(e,t,n){s.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},s.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.t=function(e,t){if(1&t&&(e=s(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(s.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)s.d(n,r,function(t){return e[t]}.bind(null,r));return n},s.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return s.d(t,"a",t),t},s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},s.p="/",s.oe=function(e){throw console.error(e),e};var l=window["aioseopjsonp"]=window["aioseopjsonp"]||[],f=l.push.bind(l);l.push=t,l=l.slice();for(var d=0;d<l.length;d++)t(l[d]);var p=f;u.push([1,"chunk-vendors","chunk-common"]),n()})({1:function(e,t,n){e.exports=n("b342")},b342:function(e,t,n){"use strict";n.r(t);n("e260"),n("e6cf"),n("cca6"),n("a79d");var r=n("a026"),o=(n("1725"),n("75b9"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"aioseo-app"},[n("router-view")],1)}),a=[],c=n("2877"),u={},i=Object(c["a"])(u,o,a,!1,null,null,null),s=i.exports,l=n("cf27"),f=n("71ae"),d=(n("d3b7"),n("3ca3"),n("ddb0"),n("561c")),p="all-in-one-seo-pack",h=function(e){return function(){return n("f0e1")("./"+e+".vue")}},v=[{path:"*",redirect:"/"},{path:"/",name:"main",component:h("Main"),meta:{access:"aioseo_manage_seo",name:Object(d["sprintf"])(Object(d["__"])("Connect with %1$s",p),"AIOSEO")}}],m=n("31bd"),g=(n("2d26"),n("96cf"),Object(f["a"])(v));Object(m["sync"])(l["a"],g),r["default"].config.productionTip=!1,new r["default"]({router:g,store:l["a"],render:function(e){return e(s)}}).$mount("#aioseo-app")},f0e1:function(e,t,n){var r={"./Main.vue":["c933","connect-Main-vue"]};function o(e){if(!n.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],o=t[0];return n.e(t[1]).then((function(){return n(o)}))}o.keys=function(){return Object.keys(r)},o.id="f0e1",e.exports=o}});
dist/Lite/assets/js/dashboard.js CHANGED
@@ -1 +1 @@
1
- (function(e){function t(t){for(var n,o,i=t[0],s=t[1],d=t[2],c=0,l=[];c<i.length;c++)o=i[c],Object.prototype.hasOwnProperty.call(a,o)&&a[o]&&l.push(a[o][0]),a[o]=0;for(n in s)Object.prototype.hasOwnProperty.call(s,n)&&(e[n]=s[n]);f&&f(t);while(l.length)l.shift()();return u.push.apply(u,d||[]),r()}function r(){for(var e,t=0;t<u.length;t++){for(var r=u[t],n=!0,o=1;o<r.length;o++){var i=r[o];0!==a[i]&&(n=!1)}n&&(u.splice(t--,1),e=s(s.s=r[0]))}return e}var n={},o={dashboard:0},a=(o={dashboard:0},{dashboard:0}),u=[];function i(e){return s.p+"js/"+({"dashboard-Main-vue":"dashboard-Main-vue"}[e]||e)+".js?ver="+{"dashboard-Main-vue":"7abf0a58"}[e]}function s(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,s),r.l=!0,r.exports}s.e=function(e){var t=[],r={"dashboard-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&r[e]&&t.push(o[e]=new Promise((function(t,r){for(var n="css/"+({"dashboard-Main-vue":"dashboard-Main-vue"}[e]||e)+".css?ver="+{"dashboard-Main-vue":"7abf0a58"}[e],a=s.p+n,u=document.getElementsByTagName("link"),i=0;i<u.length;i++){var d=u[i],c=d.getAttribute("data-href")||d.getAttribute("href");if("stylesheet"===d.rel&&(c===n||c===a))return t()}var l=document.getElementsByTagName("style");for(i=0;i<l.length;i++){d=l[i],c=d.getAttribute("data-href");if(c===n||c===a)return t()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css",f.onload=t,f.onerror=function(t){var n=t&&t.target&&t.target.src||a,u=new Error("Loading CSS chunk "+e+" failed.\n("+n+")");u.code="CSS_CHUNK_LOAD_FAILED",u.request=n,delete o[e],f.parentNode.removeChild(f),r(u)},f.href=a;var h=document.getElementsByTagName("head")[0];h.appendChild(f)})).then((function(){o[e]=0})));r={"dashboard-Main-vue":1};o[e]?t.push(o[e]):0!==o[e]&&r[e]&&t.push(o[e]=new Promise((function(t,r){for(var n=({"dashboard-Main-vue":"dashboard-Main-vue"}[e]||e)+".css",a=s.p+n,u=document.getElementsByTagName("link"),i=0;i<u.length;i++){var d=u[i],c=d.getAttribute("data-href")||d.getAttribute("href");if("stylesheet"===d.rel&&(c===n||c===a))return t()}var l=document.getElementsByTagName("style");for(i=0;i<l.length;i++){d=l[i],c=d.getAttribute("data-href");if(c===n||c===a)return t()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css";var h=function(n){if(f.onerror=f.onload=null,"load"===n.type)t();else{var u=n&&("load"===n.type?"missing":n.type),i=n&&n.target&&n.target.href||a,s=new Error("Loading CSS chunk "+e+" failed.\n("+i+")");s.code="CSS_CHUNK_LOAD_FAILED",s.type=u,s.request=i,delete o[e],f.parentNode.removeChild(f),r(s)}};f.onerror=f.onload=h,f.href=a,document.head.appendChild(f)})).then((function(){o[e]=0})));var n=a[e];if(0!==n)if(n)t.push(n[2]);else{var u=new Promise((function(t,r){n=a[e]=[t,r]}));t.push(n[2]=u);var d,c=document.createElement("script");c.charset="utf-8",c.timeout=120,s.nc&&c.setAttribute("nonce",s.nc),c.src=i(e);var l=new Error;d=function(t){c.onerror=c.onload=null,clearTimeout(f);var r=a[e];if(0!==r){if(r){var n=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;l.message="Loading chunk "+e+" failed.\n("+n+": "+o+")",l.name="ChunkLoadError",l.type=n,l.request=o,r[1](l)}a[e]=void 0}};var f=setTimeout((function(){d({type:"timeout",target:c})}),12e4);c.onerror=c.onload=d,document.head.appendChild(c)}return Promise.all(t)},s.m=e,s.c=n,s.d=function(e,t,r){s.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},s.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.t=function(e,t){if(1&t&&(e=s(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(s.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)s.d(r,n,function(t){return e[t]}.bind(null,n));return r},s.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return s.d(t,"a",t),t},s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},s.p="/",s.oe=function(e){throw console.error(e),e};var d=window["aioseopjsonp"]=window["aioseopjsonp"]||[],c=d.push.bind(d);d.push=t,d=d.slice();for(var l=0;l<d.length;l++)t(d[l]);var f=c;u.push([3,"chunk-vendors","chunk-common"]),r()})({3:function(e,t,r){e.exports=r("487a")},"487a":function(e,t,r){"use strict";r.r(t);r("e260"),r("e6cf"),r("cca6"),r("a79d");var n=r("a026"),o=(r("1725"),r("75b9"),function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticClass:"aioseo-app"},[r("router-view")],1)}),a=[],u=r("2877"),i={},s=Object(u["a"])(i,o,a,!1,null,null,null),d=s.exports,c=r("cf27"),l=r("71ae"),f=(r("d3b7"),r("3ca3"),r("ddb0"),r("561c")),h="all-in-one-seo-pack",p=function(e){return function(){return r("be86")("./"+e+".vue")}},v=[{path:"*",redirect:"/"},{path:"/",name:"dashboard",component:p("Main"),meta:{access:"aioseo_dashboard",name:Object(f["__"])("Dashboard",h)}}],b=r("31bd"),m=(r("2d26"),r("96cf"),Object(l["a"])(v));Object(b["sync"])(c["a"],m),n["default"].config.productionTip=!1,new n["default"]({router:m,store:c["a"],render:function(e){return e(d)}}).$mount("#aioseo-app")},be86:function(e,t,r){var n={"./Main.vue":["c1f4","dashboard-Main-vue"]};function o(e){if(!r.o(n,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=n[e],o=t[0];return r.e(t[1]).then((function(){return r(o)}))}o.keys=function(){return Object.keys(n)},o.id="be86",e.exports=o}});
1
+ (function(e){function t(t){for(var n,a,o=t[0],s=t[1],c=t[2],d=0,l=[];d<o.length;d++)a=o[d],Object.prototype.hasOwnProperty.call(u,a)&&u[a]&&l.push(u[a][0]),u[a]=0;for(n in s)Object.prototype.hasOwnProperty.call(s,n)&&(e[n]=s[n]);h&&h(t);while(l.length)l.shift()();return i.push.apply(i,c||[]),r()}function r(){for(var e,t=0;t<i.length;t++){for(var r=i[t],n=!0,a=1;a<r.length;a++){var o=r[a];0!==u[o]&&(n=!1)}n&&(i.splice(t--,1),e=c(c.s=r[0]))}return e}var n={},a={dashboard:0},o=(a={dashboard:0},function(){return"rtl"===document.dir}),u={dashboard:0},i=[];function s(e){return c.p+"js/"+({"dashboard-Main-vue":"dashboard-Main-vue"}[e]||e)+".js?ver="+{"dashboard-Main-vue":"89d0cd3c"}[e]}function c(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,c),r.l=!0,r.exports}c.e=function(e){var t=[],r={"dashboard-Main-vue":1};a[e]?t.push(a[e]):0!==a[e]&&r[e]&&t.push(a[e]=new Promise((function(t,r){for(var n="css/"+({"dashboard-Main-vue":"dashboard-Main-vue"}[e]||e)+".css",o=c.p+n,u=document.getElementsByTagName("link"),i=0;i<u.length;i++){var s=u[i],d=s.getAttribute("data-href")||s.getAttribute("href");if("stylesheet"===s.rel&&(d===n||d===o))return t()}var l=document.getElementsByTagName("style");for(i=0;i<l.length;i++){s=l[i],d=s.getAttribute("data-href");if(d===n||d===o)return t()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css",f.onload=t,f.onerror=function(t){var n=t&&t.target&&t.target.src||o,u=new Error("Loading CSS chunk "+e+" failed.\n("+n+")");u.code="CSS_CHUNK_LOAD_FAILED",u.request=n,delete a[e],f.parentNode.removeChild(f),r(u)},f.href=o;var h=document.getElementsByTagName("head")[0];h.appendChild(f)})).then((function(){a[e]=0})));r={"dashboard-Main-vue":1};a[e]?t.push(a[e]):0!==a[e]&&r[e]&&t.push(a[e]=new Promise((function(t,r){for(var n=(o(),"css/"+({"dashboard-Main-vue":"dashboard-Main-vue"}[e]||e)+".css?ver="+{"dashboard-Main-vue":"89d0cd3c"}[e]),a=c.p+n,u=document.getElementsByTagName("link"),i=0;i<u.length;i++){var s=u[i],d=s.getAttribute("data-href")||s.getAttribute("href");if("stylesheet"===s.rel&&(d===n||d===a))return t()}var l=document.getElementsByTagName("style");for(i=0;i<l.length;i++){s=l[i],d=s.getAttribute("data-href");if(d===n||d===a)return t()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css",f.onload=t,f.onerror=function(t){var n=t&&t.target&&t.target.src||a,o=new Error("Loading CSS chunk "+e+" failed.\n("+n+")");o.request=n,r(o)},f.href=a;var h=document.getElementsByTagName("head")[0];h.appendChild(f)})).then((function(){a[e]=0})));var n=u[e];if(0!==n)if(n)t.push(n[2]);else{var i=new Promise((function(t,r){n=u[e]=[t,r]}));t.push(n[2]=i);var d,l=document.createElement("script");l.charset="utf-8",l.timeout=120,c.nc&&l.setAttribute("nonce",c.nc),l.src=s(e);var f=new Error;d=function(t){l.onerror=l.onload=null,clearTimeout(h);var r=u[e];if(0!==r){if(r){var n=t&&("load"===t.type?"missing":t.type),a=t&&t.target&&t.target.src;f.message="Loading chunk "+e+" failed.\n("+n+": "+a+")",f.name="ChunkLoadError",f.type=n,f.request=a,r[1](f)}u[e]=void 0}};var h=setTimeout((function(){d({type:"timeout",target:l})}),12e4);l.onerror=l.onload=d,document.head.appendChild(l)}return Promise.all(t)},c.m=e,c.c=n,c.d=function(e,t,r){c.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},c.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,t){if(1&t&&(e=c(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(c.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)c.d(r,n,function(t){return e[t]}.bind(null,n));return r},c.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return c.d(t,"a",t),t},c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},c.p="/",c.oe=function(e){throw console.error(e),e};var d=window["aioseopjsonp"]=window["aioseopjsonp"]||[],l=d.push.bind(d);d.push=t,d=d.slice();for(var f=0;f<d.length;f++)t(d[f]);var h=l;i.push([3,"chunk-vendors","chunk-common"]),r()})({3:function(e,t,r){e.exports=r("487a")},"487a":function(e,t,r){"use strict";r.r(t);r("e260"),r("e6cf"),r("cca6"),r("a79d");var n=r("a026"),a=(r("1725"),r("75b9"),function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticClass:"aioseo-app"},[r("router-view")],1)}),o=[],u=r("2877"),i={},s=Object(u["a"])(i,a,o,!1,null,null,null),c=s.exports,d=r("cf27"),l=r("71ae"),f=(r("d3b7"),r("3ca3"),r("ddb0"),r("561c")),h="all-in-one-seo-pack",p=function(e){return function(){return r("be86")("./"+e+".vue")}},v=[{path:"*",redirect:"/"},{path:"/",name:"dashboard",component:p("Main"),meta:{access:"aioseo_dashboard",name:Object(f["__"])("Dashboard",h)}}],m=r("31bd"),b=(r("2d26"),r("96cf"),Object(l["a"])(v));Object(m["sync"])(d["a"],b),n["default"].config.productionTip=!1,new n["default"]({router:b,store:d["a"],render:function(e){return e(c)}}).$mount("#aioseo-app")},be86:function(e,t,r){var n={"./Main.vue":["c1f4","dashboard-Main-vue"]};function a(e){if(!r.o(n,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=n[e],a=t[0];return r.e(t[1]).then((function(){return r(a)}))}a.keys=function(){return Object.keys(n)},a.id="be86",e.exports=a}});
dist/Lite/assets/js/feature-manager.js CHANGED
@@ -1 +1 @@
1
- (function(e){function r(r){for(var a,n,i=r[0],f=r[1],c=r[2],l=0,s=[];l<i.length;l++)n=i[l],Object.prototype.hasOwnProperty.call(u,n)&&u[n]&&s.push(u[n][0]),u[n]=0;for(a in f)Object.prototype.hasOwnProperty.call(f,a)&&(e[a]=f[a]);g&&g(r);while(s.length)s.shift()();return o.push.apply(o,c||[]),t()}function t(){for(var e,r=0;r<o.length;r++){for(var t=o[r],a=!0,n=1;n<t.length;n++){var i=t[n];0!==u[i]&&(a=!1)}a&&(o.splice(r--,1),e=f(f.s=t[0]))}return e}var a={},n={"feature-manager":0},u=(n={"feature-manager":0},{"feature-manager":0}),o=[];function i(e){return f.p+"js/"+({"feature-manager-FeatureManager-vue":"feature-manager-FeatureManager-vue","feature-manager-Main-vue":"feature-manager-Main-vue"}[e]||e)+".js?ver="+{"feature-manager-FeatureManager-vue":"c89f8d6a","feature-manager-Main-vue":"bac335e6"}[e]}function f(r){if(a[r])return a[r].exports;var t=a[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,f),t.l=!0,t.exports}f.e=function(e){var r=[],t={"feature-manager-FeatureManager-vue":1,"feature-manager-Main-vue":1};n[e]?r.push(n[e]):0!==n[e]&&t[e]&&r.push(n[e]=new Promise((function(r,t){for(var a="css/"+({"feature-manager-FeatureManager-vue":"feature-manager-FeatureManager-vue","feature-manager-Main-vue":"feature-manager-Main-vue"}[e]||e)+".css?ver="+{"feature-manager-FeatureManager-vue":"c89f8d6a","feature-manager-Main-vue":"bac335e6"}[e],u=f.p+a,o=document.getElementsByTagName("link"),i=0;i<o.length;i++){var c=o[i],l=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(l===a||l===u))return r()}var s=document.getElementsByTagName("style");for(i=0;i<s.length;i++){c=s[i],l=c.getAttribute("data-href");if(l===a||l===u)return r()}var g=document.createElement("link");g.rel="stylesheet",g.type="text/css",g.onload=r,g.onerror=function(r){var a=r&&r.target&&r.target.src||u,o=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");o.code="CSS_CHUNK_LOAD_FAILED",o.request=a,delete n[e],g.parentNode.removeChild(g),t(o)},g.href=u;var d=document.getElementsByTagName("head")[0];d.appendChild(g)})).then((function(){n[e]=0})));t={"feature-manager-FeatureManager-vue":1,"feature-manager-Main-vue":1};n[e]?r.push(n[e]):0!==n[e]&&t[e]&&r.push(n[e]=new Promise((function(r,t){for(var a=({"feature-manager-FeatureManager-vue":"feature-manager-FeatureManager-vue","feature-manager-Main-vue":"feature-manager-Main-vue"}[e]||e)+".css",u=f.p+a,o=document.getElementsByTagName("link"),i=0;i<o.length;i++){var c=o[i],l=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(l===a||l===u))return r()}var s=document.getElementsByTagName("style");for(i=0;i<s.length;i++){c=s[i],l=c.getAttribute("data-href");if(l===a||l===u)return r()}var g=document.createElement("link");g.rel="stylesheet",g.type="text/css";var d=function(a){if(g.onerror=g.onload=null,"load"===a.type)r();else{var o=a&&("load"===a.type?"missing":a.type),i=a&&a.target&&a.target.href||u,f=new Error("Loading CSS chunk "+e+" failed.\n("+i+")");f.code="CSS_CHUNK_LOAD_FAILED",f.type=o,f.request=i,delete n[e],g.parentNode.removeChild(g),t(f)}};g.onerror=g.onload=d,g.href=u,document.head.appendChild(g)})).then((function(){n[e]=0})));var a=u[e];if(0!==a)if(a)r.push(a[2]);else{var o=new Promise((function(r,t){a=u[e]=[r,t]}));r.push(a[2]=o);var c,l=document.createElement("script");l.charset="utf-8",l.timeout=120,f.nc&&l.setAttribute("nonce",f.nc),l.src=i(e);var s=new Error;c=function(r){l.onerror=l.onload=null,clearTimeout(g);var t=u[e];if(0!==t){if(t){var a=r&&("load"===r.type?"missing":r.type),n=r&&r.target&&r.target.src;s.message="Loading chunk "+e+" failed.\n("+a+": "+n+")",s.name="ChunkLoadError",s.type=a,s.request=n,t[1](s)}u[e]=void 0}};var g=setTimeout((function(){c({type:"timeout",target:l})}),12e4);l.onerror=l.onload=c,document.head.appendChild(l)}return Promise.all(r)},f.m=e,f.c=a,f.d=function(e,r,t){f.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},f.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},f.t=function(e,r){if(1&r&&(e=f(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(f.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var a in e)f.d(t,a,function(r){return e[r]}.bind(null,a));return t},f.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return f.d(r,"a",r),r},f.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},f.p="/",f.oe=function(e){throw console.error(e),e};var c=window["aioseopjsonp"]=window["aioseopjsonp"]||[],l=c.push.bind(c);c.push=r,c=c.slice();for(var s=0;s<c.length;s++)r(c[s]);var g=l;o.push([4,"chunk-vendors","chunk-common"]),t()})({"3bf5":function(e,r,t){"use strict";t.r(r);t("e260"),t("e6cf"),t("cca6"),t("a79d");var a=t("a026"),n=(t("1725"),t("75b9"),function(){var e=this,r=e.$createElement,t=e._self._c||r;return t("div",{staticClass:"aioseo-app"},[t("router-view")],1)}),u=[],o=t("2877"),i={},f=Object(o["a"])(i,n,u,!1,null,null,null),c=f.exports,l=t("cf27"),s=t("71ae"),g=(t("d3b7"),t("3ca3"),t("ddb0"),t("561c")),d="all-in-one-seo-pack",m=function(e){return function(){return t("a4ba")("./"+e+".vue")}},p=[{path:"*",redirect:"/"},{path:"/",name:"feature-manager",component:m("Main"),meta:{access:"aioseo_feature_manager_settings",name:Object(g["__"])("Feature Manager",d)}}],v=t("31bd"),h=(t("2d26"),t("96cf"),Object(s["a"])(p));Object(v["sync"])(l["a"],h),a["default"].config.productionTip=!1,new a["default"]({router:h,store:l["a"],render:function(e){return e(c)}}).$mount("#aioseo-app")},4:function(e,r,t){e.exports=t("3bf5")},a4ba:function(e,r,t){var a={"./FeatureManager.vue":["11e8","feature-manager-FeatureManager-vue"],"./Main.vue":["208a","feature-manager-Main-vue"]};function n(e){if(!t.o(a,e))return Promise.resolve().then((function(){var r=new Error("Cannot find module '"+e+"'");throw r.code="MODULE_NOT_FOUND",r}));var r=a[e],n=r[0];return t.e(r[1]).then((function(){return t(n)}))}n.keys=function(){return Object.keys(a)},n.id="a4ba",e.exports=n}});
1
+ (function(e){function r(r){for(var a,n,u=r[0],f=r[1],c=r[2],s=0,l=[];s<u.length;s++)n=u[s],Object.prototype.hasOwnProperty.call(o,n)&&o[n]&&l.push(o[n][0]),o[n]=0;for(a in f)Object.prototype.hasOwnProperty.call(f,a)&&(e[a]=f[a]);m&&m(r);while(l.length)l.shift()();return i.push.apply(i,c||[]),t()}function t(){for(var e,r=0;r<i.length;r++){for(var t=i[r],a=!0,n=1;n<t.length;n++){var u=t[n];0!==o[u]&&(a=!1)}a&&(i.splice(r--,1),e=c(c.s=t[0]))}return e}var a={},n={"feature-manager":0},u=(n={"feature-manager":0},function(){return"rtl"===document.dir}),o={"feature-manager":0},i=[];function f(e){return c.p+"js/"+({"feature-manager-FeatureManager-vue":"feature-manager-FeatureManager-vue","feature-manager-Main-vue":"feature-manager-Main-vue"}[e]||e)+".js?ver="+{"feature-manager-FeatureManager-vue":"f8af6b4c","feature-manager-Main-vue":"72bbe3ae"}[e]}function c(r){if(a[r])return a[r].exports;var t=a[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,c),t.l=!0,t.exports}c.e=function(e){var r=[],t={"feature-manager-FeatureManager-vue":1,"feature-manager-Main-vue":1};n[e]?r.push(n[e]):0!==n[e]&&t[e]&&r.push(n[e]=new Promise((function(r,t){for(var a="css/"+({"feature-manager-FeatureManager-vue":"feature-manager-FeatureManager-vue","feature-manager-Main-vue":"feature-manager-Main-vue"}[e]||e)+".css",u=c.p+a,o=document.getElementsByTagName("link"),i=0;i<o.length;i++){var f=o[i],s=f.getAttribute("data-href")||f.getAttribute("href");if("stylesheet"===f.rel&&(s===a||s===u))return r()}var l=document.getElementsByTagName("style");for(i=0;i<l.length;i++){f=l[i],s=f.getAttribute("data-href");if(s===a||s===u)return r()}var g=document.createElement("link");g.rel="stylesheet",g.type="text/css",g.onload=r,g.onerror=function(r){var a=r&&r.target&&r.target.src||u,o=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");o.code="CSS_CHUNK_LOAD_FAILED",o.request=a,delete n[e],g.parentNode.removeChild(g),t(o)},g.href=u;var m=document.getElementsByTagName("head")[0];m.appendChild(g)})).then((function(){n[e]=0})));t={"feature-manager-FeatureManager-vue":1,"feature-manager-Main-vue":1};n[e]?r.push(n[e]):0!==n[e]&&t[e]&&r.push(n[e]=new Promise((function(r,t){for(var a=(u(),"css/"+({"feature-manager-FeatureManager-vue":"feature-manager-FeatureManager-vue","feature-manager-Main-vue":"feature-manager-Main-vue"}[e]||e)+".css?ver="+{"feature-manager-FeatureManager-vue":"f8af6b4c","feature-manager-Main-vue":"72bbe3ae"}[e]),n=c.p+a,o=document.getElementsByTagName("link"),i=0;i<o.length;i++){var f=o[i],s=f.getAttribute("data-href")||f.getAttribute("href");if("stylesheet"===f.rel&&(s===a||s===n))return r()}var l=document.getElementsByTagName("style");for(i=0;i<l.length;i++){f=l[i],s=f.getAttribute("data-href");if(s===a||s===n)return r()}var g=document.createElement("link");g.rel="stylesheet",g.type="text/css",g.onload=r,g.onerror=function(r){var a=r&&r.target&&r.target.src||n,u=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");u.request=a,t(u)},g.href=n;var m=document.getElementsByTagName("head")[0];m.appendChild(g)})).then((function(){n[e]=0})));var a=o[e];if(0!==a)if(a)r.push(a[2]);else{var i=new Promise((function(r,t){a=o[e]=[r,t]}));r.push(a[2]=i);var s,l=document.createElement("script");l.charset="utf-8",l.timeout=120,c.nc&&l.setAttribute("nonce",c.nc),l.src=f(e);var g=new Error;s=function(r){l.onerror=l.onload=null,clearTimeout(m);var t=o[e];if(0!==t){if(t){var a=r&&("load"===r.type?"missing":r.type),n=r&&r.target&&r.target.src;g.message="Loading chunk "+e+" failed.\n("+a+": "+n+")",g.name="ChunkLoadError",g.type=a,g.request=n,t[1](g)}o[e]=void 0}};var m=setTimeout((function(){s({type:"timeout",target:l})}),12e4);l.onerror=l.onload=s,document.head.appendChild(l)}return Promise.all(r)},c.m=e,c.c=a,c.d=function(e,r,t){c.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},c.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,r){if(1&r&&(e=c(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(c.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var a in e)c.d(t,a,function(r){return e[r]}.bind(null,a));return t},c.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return c.d(r,"a",r),r},c.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},c.p="/",c.oe=function(e){throw console.error(e),e};var s=window["aioseopjsonp"]=window["aioseopjsonp"]||[],l=s.push.bind(s);s.push=r,s=s.slice();for(var g=0;g<s.length;g++)r(s[g]);var m=l;i.push([4,"chunk-vendors","chunk-common"]),t()})({"3bf5":function(e,r,t){"use strict";t.r(r);t("e260"),t("e6cf"),t("cca6"),t("a79d");var a=t("a026"),n=(t("1725"),t("75b9"),function(){var e=this,r=e.$createElement,t=e._self._c||r;return t("div",{staticClass:"aioseo-app"},[t("router-view")],1)}),u=[],o=t("2877"),i={},f=Object(o["a"])(i,n,u,!1,null,null,null),c=f.exports,s=t("cf27"),l=t("71ae"),g=(t("d3b7"),t("3ca3"),t("ddb0"),t("561c")),m="all-in-one-seo-pack",d=function(e){return function(){return t("a4ba")("./"+e+".vue")}},v=[{path:"*",redirect:"/"},{path:"/",name:"feature-manager",component:d("Main"),meta:{access:"aioseo_feature_manager_settings",name:Object(g["__"])("Feature Manager",m)}}],p=t("31bd"),h=(t("2d26"),t("96cf"),Object(l["a"])(v));Object(p["sync"])(s["a"],h),a["default"].config.productionTip=!1,new a["default"]({router:h,store:s["a"],render:function(e){return e(c)}}).$mount("#aioseo-app")},4:function(e,r,t){e.exports=t("3bf5")},a4ba:function(e,r,t){var a={"./FeatureManager.vue":["11e8","feature-manager-FeatureManager-vue"],"./Main.vue":["208a","feature-manager-Main-vue"]};function n(e){if(!t.o(a,e))return Promise.resolve().then((function(){var r=new Error("Cannot find module '"+e+"'");throw r.code="MODULE_NOT_FOUND",r}));var r=a[e],n=r[0];return t.e(r[1]).then((function(){return t(n)}))}n.keys=function(){return Object.keys(a)},n.id="a4ba",e.exports=n}});
dist/Lite/assets/js/headline-analyzer.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Tuesday, November 9th 2021, 10:20:20 am */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.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 a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));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=66)}([function(e,t){e.exports=window.wp.element},,function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o,i=typeof r;if("string"==i||"number"==i)e.push(r);else if(Array.isArray(r))!r.length||(o=a.apply(null,r))&&e.push(o);else if("object"==i)if(r.toString===Object.prototype.toString)for(var s in r)n.call(r,s)&&r[s]&&e.push(s);else e.push(r.toString())}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(r=function(){return a}.apply(t,[]))||(e.exports=r)}()},,,,,,,function(e,t,n){"use strict";var r=n(0);(n={}).headline=Object(r.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.817 2H22v.038l-6.183 4.226V2.001zm-7.62 9.473V2H2.016v4.683-.267l6.126 5.094.057-.038zm-6.182 5.061l6.183 4.213v1.252H2.015v-5.465zm13.802-.857L22 11.559v10.437h-6.183v-6.32z",fill:"#141B38"}),Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.198 11.435l-.057.039L2.016 6.38v.265-4.644h6.182v9.434zm0 9.226L2.015 16.45v5.55h6.183v-1.337zm7.62-5.07L22 11.474v10.522h-6.183v-6.405zM22 2.001l-6.183 4.226V2H22z",fill:"#141B38"}),Object(r.createElement)("path",{d:"M8.141 13.537L22 4.064v5.432l-13.8 9.19L2 14.46l.016-6.018 6.125 5.094z",fill:"#141B38"})),n.headlineBlack=Object(r.createElement)("svg",{width:"15",height:"14",viewBox:"0 0 15 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M13.5 2V12H14.5C14.6458 12 14.7604 12.0521 14.8438 12.1562C14.9479 12.2396 15 12.3542 15 12.5V13.5C15 13.6458 14.9479 13.7604 14.8438 13.8438C14.7604 13.9479 14.6458 14 14.5 14H9.5C9.35417 14 9.22917 13.9479 9.125 13.8438C9.04167 13.7604 9 13.6458 9 13.5V12.5C9 12.3542 9.04167 12.2396 9.125 12.1562C9.22917 12.0521 9.35417 12 9.5 12H10.5V8H4.5V12H5.5C5.64583 12 5.76042 12.0521 5.84375 12.1562C5.94792 12.2396 6 12.3542 6 12.5V13.5C6 13.6458 5.94792 13.7604 5.84375 13.8438C5.76042 13.9479 5.64583 14 5.5 14H0.5C0.354167 14 0.229167 13.9479 0.125 13.8438C0.0416667 13.7604 0 13.6458 0 13.5V12.5C0 12.3542 0.0416667 12.2396 0.125 12.1562C0.229167 12.0521 0.354167 12 0.5 12H1.5V2H0.5C0.354167 2 0.229167 1.95833 0.125 1.875C0.0416667 1.77083 0 1.64583 0 1.5V0.5C0 0.354167 0.0416667 0.239583 0.125 0.15625C0.229167 0.0520833 0.354167 0 0.5 0H5.5C5.64583 0 5.76042 0.0520833 5.84375 0.15625C5.94792 0.239583 6 0.354167 6 0.5V1.5C6 1.64583 5.94792 1.77083 5.84375 1.875C5.76042 1.95833 5.64583 2 5.5 2H4.5V6H10.5V2H9.5C9.35417 2 9.22917 1.95833 9.125 1.875C9.04167 1.77083 9 1.64583 9 1.5V0.5C9 0.354167 9.04167 0.239583 9.125 0.15625C9.22917 0.0520833 9.35417 0 9.5 0H14.5C14.6458 0 14.7604 0.0520833 14.8438 0.15625C14.9479 0.239583 15 0.354167 15 0.5V1.5C15 1.64583 14.9479 1.77083 14.8438 1.875C14.7604 1.95833 14.6458 2 14.5 2H13.5Z",fill:"#000"})),n.warning=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM11 5.00002H9V11H11V5.00002ZM11 13H9V15H11V13ZM2.00002 10C2.00002 14.42 5.58002 18 10 18C14.42 18 18 14.42 18 10C18 5.58002 14.42 2.00002 10 2.00002C5.58002 2.00002 2.00002 5.58002 2.00002 10Z",fill:"#005AE0"})),n.smile=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM6.55 12C7.25 13.19 8.52 14 10 14C11.48 14 12.75 13.19 13.45 12H15.12C14.32 14.05 12.33 15.5 10 15.5C7.67 15.5 5.68 14.05 4.88 12H6.55ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#00AA63"})),n.neutral=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM5 7.5C5 6.67157 5.67157 6 6.5 6C7.32843 6 8 6.67157 8 7.5C8 8.32843 7.32843 9 6.5 9C5.67157 9 5 8.32843 5 7.5ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM7 13.5V12H13V13.5H7ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#005AE0"})),n.negative=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM4.88 15.5C5.68 13.45 7.67 12 10 12C12.33 12 14.32 13.45 15.12 15.5H13.45C12.75 14.31 11.48 13.5 10 13.5C8.52 13.5 7.24 14.31 6.55 15.5H4.88ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#DF2A4A"})),n.check=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM8 12.17L14.59 5.58L16 7L8 15L4 11L5.41 9.59L8 12.17Z",fill:"#00AA63"})),t.a=n},function(e,t){var n,r;e=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function i(e){if(n===setTimeout)return setTimeout(e,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch(e){n=a}try{r="function"==typeof clearTimeout?clearTimeout:o}catch(e){r=o}}();var s,l=[],c=!1,u=-1;function d(){c&&s&&(c=!1,s.length?l=s.concat(l):u=-1,l.length&&h())}function h(){if(!c){var e=i(d);c=!0;for(var t=l.length;t;){for(s=l,l=[];++u<t;)s&&s[u].run();u=-1,t=l.length}s=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===o||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function f(){}e.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||c||i(h)},p.prototype.run=function(){this.fun.apply(null,this.array)},e.title="browser",e.browser=!0,e.env={},e.argv=[],e.version="",e.versions={},e.on=f,e.addListener=f,e.once=f,e.off=f,e.removeListener=f,e.removeAllListeners=f,e.emit=f,e.prependListener=f,e.prependOnceListener=f,e.listeners=function(e){return[]},e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")},e.umask=function(){return 0}},,,,,,,,,,,,function(e,t,n){"use strict";function r(e){return e.replace(/\/$/,"")}function a(e){return r(e)+"/"}n.d(t,"a",(function(){return s})),n.d(t,"b",(function(){return l})),n.d(t,"c",(function(){return c}));t=n(44);var o,i=n.n(t),s=function(e,t){return function(){for(var n=arguments.length,r=new Array(n),a=0;a<n;a++)r[a]=arguments[a];clearTimeout(o),o=setTimeout((function(){return e.apply(void 0,r)}),t)}.call()},l=function(e){return i.a.agent().set("X-WP-Nonce",e).use((function(e){e.on("response",(function(e){(401===e.status||403===e.status)&&console.error(e)}))}))},c=function(e){return e=(window.aioseo.data.hasUrlTrailingSlash?a:r)(e),a(window.aioseo.urls.restUrl)+a("aioseo/v1")+e.replace(/^\//,"")}},,,function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__;t.a=function(t){var n=i("Goal: ",e.env.VUE_APP_TEXTDOMAIN),a={width:t.value+"%"};return Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h5",null,t.title),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block-data"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage",t.classOnScore)},t.value,"%"),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage-right-column",t.classOnScore)},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-goal"},n," ",t.goalValue),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-progressbar"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-progressbar-bg"}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-progressbar-part",t.classOnScoreBg),style:a})))),Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-words-tag-list"},0<t.words.length?t.words.map((function(e,t){return Object(r.createElement)("li",{key:t},e)})):""),Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},t.guideLine))}}).call(this,n(10))},function(e,t,n){var r=n(68),a=n(69),o=n(33),i=n(70);e.exports=function(e,t){return r(e)||a(e,t)||o(e,t)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(71),a=n(72),o=n(33),i=n(73);e.exports=function(e){return r(e)||a(e)||o(e)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";var r=n(0),a=window.wp.element.Fragment;t.a=function(e){var t=e.barScore;e=e.color;return Object(r.createElement)(a,null,Object(r.createElement)("div",{className:"aioseo-donut-container",style:{flexDirection:"column"}},Object(r.createElement)("svg",{className:"aioseo-donut-score-svg",viewBox:"0 0 33.83098862 33.83098862",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__background",stroke:"#e8e8eb",strokeWidth:"2",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}),Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__circle",stroke:e,strokeWidth:"2",strokeDasharray:"".concat(t,", 100"),strokeLinecap:"round",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}))))}},,,,,function(e,t,n){var r=n(34);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"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!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},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return null!==e&&"object"===r(e)}},,,,,,,,function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a="undefined"!=typeof window?window:"undefined"==typeof self?void console.warn("Using browser-only version of superagent in non-browser environment"):self,o=n(74),i=n(75),s=n(76),l=n(35),c=n(77),u=n(79);function d(){}e.exports=function(e,n){return"function"==typeof n?new t.Request("GET",e).end(n):1===arguments.length?new t.Request("GET",e):new t.Request(e,n)};var h=t=e.exports;t.Request=w,h.getXHR=function(){if(a.XMLHttpRequest&&(!a.location||"file:"!==a.location.protocol||!a.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(e){}throw new Error("Browser-only version of superagent could not find XHR")};var p="".trim?function(e){return e.trim()}:function(e){return e.replace(/(^\s*|\s*$)/g,"")};function f(e){if(!l(e))return e;var t,n=[];for(t in e)Object.prototype.hasOwnProperty.call(e,t)&&function e(t,n,r){if(void 0!==r)if(null!==r)if(Array.isArray(r))r.forEach((function(r){e(t,n,r)}));else if(l(r))for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&e(t,"".concat(n,"[").concat(a,"]"),r[a]);else t.push(encodeURI(n)+"="+encodeURIComponent(r));else t.push(encodeURI(n))}(n,t,e[t]);return n.join("&")}function m(e){for(var t,n,r={},a=e.split("&"),o=0,i=a.length;o<i;++o)-1===(n=(t=a[o]).indexOf("="))?r[decodeURIComponent(t)]="":r[decodeURIComponent(t.slice(0,n))]=decodeURIComponent(t.slice(n+1));return r}function y(e){return/[/+]json($|[^-\w])/.test(e)}function b(e){this.req=e,this.xhr=this.req.xhr,this.text="HEAD"!==this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var t=this.xhr.status;this._setStatusProperties(t=1223===t?204:t),this.headers=function(e){for(var t,n,r,a=e.split(/\r?\n/),o={},i=0,s=a.length;i<s;++i)-1!==(r=(t=a[i]).indexOf(":"))&&(n=t.slice(0,r).toLowerCase(),r=p(t.slice(r+1)),o[n]=r);return o}(this.xhr.getAllResponseHeaders()),this.header=this.headers,this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&e._responseType?this.body=this.xhr.response:this.body="HEAD"===this.req.method?null:this._parseBody(this.text||this.xhr.response)}function w(e,t){var n=this;this._query=this._query||[],this.method=e,this.url=t,this.header={},this._header={},this.on("end",(function(){var e,t=null,r=null;try{r=new b(n)}catch(r){return(t=new Error("Parser is unable to parse the response")).parse=!0,t.original=r,n.xhr?(t.rawResponse=void 0===n.xhr.responseType?n.xhr.responseText:n.xhr.response,t.status=n.xhr.status||null,t.statusCode=t.status):(t.rawResponse=null,t.status=null),n.callback(t)}n.emit("response",r);try{n._isResponseOK(r)||(e=new Error(r.statusText||r.text||"Unsuccessful HTTP response"))}catch(r){e=r}e?(e.original=t,e.response=r,e.status=r.status,n.callback(e,r)):n.callback(null,r)}))}function g(e,t,n){return e=h("DELETE",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}h.serializeObject=f,h.parseString=m,h.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},h.serialize={"application/x-www-form-urlencoded":f,"application/json":i},h.parse={"application/x-www-form-urlencoded":m,"application/json":JSON.parse},c(b.prototype),b.prototype._parseBody=function(e){var t=h.parse[this.type];return this.req._parser?this.req._parser(this,e):(t=!t&&y(this.type)?h.parse["application/json"]:t)&&e&&(0<e.length||e instanceof Object)?t(e):null},b.prototype.toError=function(){var e=(n=this.req).method,t=n.url,n="cannot ".concat(e," ").concat(t," (").concat(this.status,")");return(n=new Error(n)).status=this.status,n.method=e,n.url=t,n},h.Response=b,o(w.prototype),s(w.prototype),w.prototype.type=function(e){return this.set("Content-Type",h.types[e]||e),this},w.prototype.accept=function(e){return this.set("Accept",h.types[e]||e),this},w.prototype.auth=function(e,t,n){return"object"===r(t=1===arguments.length?"":t)&&null!==t&&(n=t,t=""),n=n||{type:"function"==typeof btoa?"basic":"auto"},this._auth(e,t,n,(function(e){if("function"==typeof btoa)return btoa(e);throw new Error("Cannot use basic auth, btoa is not a function")}))},w.prototype.query=function(e){return(e="string"!=typeof e?f(e):e)&&this._query.push(e),this},w.prototype.attach=function(e,t,n){if(t){if(this._data)throw new Error("superagent can't mix .send() and .attach()");this._getFormData().append(e,t,n||t.name)}return this},w.prototype._getFormData=function(){return this._formData||(this._formData=new a.FormData),this._formData},w.prototype.callback=function(e,t){if(this._shouldRetry(e,t))return this._retry();var n=this._callback;this.clearTimeout(),e&&(this._maxRetries&&(e.retries=this._retries-1),this.emit("error",e)),n(e,t)},w.prototype.crossDomainError=function(){var e=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");e.crossDomain=!0,e.status=this.status,e.method=this.method,e.url=this.url,this.callback(e)},w.prototype.buffer=w.prototype.ca=w.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},w.prototype.pipe=w.prototype.write=function(){throw new Error("Streaming is not supported in browser version of superagent")},w.prototype._isHost=function(e){return e&&"object"===r(e)&&!Array.isArray(e)&&"[object Object]"!==Object.prototype.toString.call(e)},w.prototype.end=function(e){this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=e||d,this._finalizeQueryString(),this._end()},w.prototype._setUploadTimeout=function(){var e=this;this._uploadTimeout&&!this._uploadTimeoutTimer&&(this._uploadTimeoutTimer=setTimeout((function(){e._timeoutError("Upload timeout of ",e._uploadTimeout,"ETIMEDOUT")}),this._uploadTimeout))},w.prototype._end=function(){if(this._aborted)return this.callback(new Error("The request has been aborted even before .end() was called"));var e=this;this.xhr=h.getXHR();var t=this.xhr,n=this._formData||this._data;this._setTimeouts(),t.onreadystatechange=function(){var n,r=t.readyState;if(2<=r&&e._responseTimeoutTimer&&clearTimeout(e._responseTimeoutTimer),4===r){try{n=t.status}catch(r){n=0}if(!n)return e.timedout||e._aborted?void 0:e.crossDomainError();e.emit("end")}};var r,a,o=function(t,n){0<n.total&&(n.percent=n.loaded/n.total*100,100===n.percent&&clearTimeout(e._uploadTimeoutTimer)),n.direction=t,e.emit("progress",n)};if(this.hasListeners("progress"))try{t.addEventListener("progress",o.bind(null,"download")),t.upload&&t.upload.addEventListener("progress",o.bind(null,"upload"))}catch(n){}t.upload&&this._setUploadTimeout();try{this.username&&this.password?t.open(this.method,this.url,!0,this.username,this.password):t.open(this.method,this.url,!0)}catch(n){return this.callback(n)}for(a in this._withCredentials&&(t.withCredentials=!0),this._formData||"GET"===this.method||"HEAD"===this.method||"string"==typeof n||this._isHost(n)||(r=this._header["content-type"],(o=!(o=this._serializer||h.serialize[r?r.split(";")[0]:""])&&y(r)?h.serialize["application/json"]:o)&&(n=o(n))),this.header)null!==this.header[a]&&Object.prototype.hasOwnProperty.call(this.header,a)&&t.setRequestHeader(a,this.header[a]);this._responseType&&(t.responseType=this._responseType),this.emit("request",this),t.send(void 0===n?null:n)},h.agent=function(){return new u},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach((function(e){u.prototype[e.toLowerCase()]=function(t,n){return t=new h.Request(e,t),this._setDefaults(t),n&&t.end(n),t}})),u.prototype.del=u.prototype.delete,h.get=function(e,t,n){return e=h("GET",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.head=function(e,t,n){return e=h("HEAD",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.options=function(e,t,n){return e=h("OPTIONS",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.del=g,h.delete=g,h.patch=function(e,t,n){return e=h("PATCH",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.post=function(e,t,n){return e=h("POST",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.put=function(e,t,n){return e=h("PUT",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}},function(e,t,n){"use strict";(function(e){var r=n(26),a=n.n(r),o=n(0),i=(r=n(2),n.n(r)),s=n(46),l=n(47),c=n(48),u=window.wp.i18n.__,d=(r=window.wp.element).Fragment,h=r.useState,p=r.useEffect;t.a=function(t){var n=u("Current Score",e.env.VUE_APP_TEXTDOMAIN),r=u("Try New Headline",e.env.VUE_APP_TEXTDOMAIN),f=h("current-score"),m=(f=a()(f,2))[0],y=f[1];f=void 0!==t.analyzer.isNewData&&t.analyzer.isNewData;return p((function(){t.setAnalyzer({activeTab:m})}),[m]),Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-inline-buttons"},Object(o.createElement)("button",{onClick:function(){return y("current-score")},className:i()("aioseo-switcher-button",{active:"current-score"===m})},n),Object(o.createElement)("button",{onClick:function(){return y("new-headline")},className:i()("aioseo-switcher-button",{active:"new-headline"===m})},r)),"new-headline"===m?Object(o.createElement)(d,null,Object(o.createElement)(l.a,{analyzer:t.analyzer,setAnalyzer:t.setAnalyzer})):Object(o.createElement)(s.a,{analyzer:t.analyzer}),f?Object(o.createElement)(c.a,{analyzer:t.analyzer}):"")}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=e.analyzer.currentHeadlineData.score,f=p<40?"red":p<=60?"orange":"green";e="red"==f?"#df2a4a":"orange"==f?"#F2994A":"#00aa63";switch(!0){case p<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case p<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case p<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case p<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<p:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{className:"aioseo-headline-analyzer-panel-score",title:a},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-tab aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",{className:"aioseo-headline-analyzer-current-title"},"“",n,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-current-score",f)},p,Object(r.createElement)("span",{className:"aioseo-headline-analyzer-total-out-of-score"},"/ 100")),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",f)},t),Object(r.createElement)(i.a,{barScore:p,color:e})),Object(r.createElement)("p",null,h)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(27),a=n.n(r),o=n(0),i=n(22),s=(r=n(2),n.n(r)),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(r=window.wp.components).PanelBody,d=r.PanelRow,h=r.TextControl,p=r.Button,f=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){function t(t){(t=t.trim())&&Object(i.b)(window.aioseo.nonce).post(Object(i.c)("analyze_headline")).send({title:t}).then((function(t){e.setAnalyzer({newHeadlineData:t.body,headlineData:t.body,previousHeadlinesData:[e.analyzer.headlineData].concat(a()(b)),isNewData:!0})})).catch((function(t){e.setAnalyzer({isNewData:!1}),console.log(t)}))}var n=l("Try New Headline",f),r=l("Enter a different headline than your post title to see how it compares.",f),m=l("Analyze Headline",f),y=void 0!==e.analyzer.newHeadline?e.analyzer.newHeadline:"",b=void 0!==e.analyzer.previousHeadlinesData?e.analyzer.previousHeadlinesData:[],w=!y;return Object(o.createElement)(c,null,Object(o.createElement)(u,{title:n,className:s()("aioseo-headline-analyzer-panel-tab-new-score-form")},Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-tab"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-score-form-block"},Object(o.createElement)("form",{onSubmit:function(e){e.preventDefault(),t(y)}},Object(o.createElement)(h,{label:r,value:y,onChange:function(t){" "!==t&&e.setAnalyzer({newHeadline:t})},className:"aioseo-headline-analyzer-input-field"}),Object(o.createElement)(p,{className:s()("aioseo-headline-analyzer-button"),onClick:function(){t(y)},disabled:w},m)))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("New Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=s("Current Score",d),f=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.sentence:"",m=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.score:"",y=void 0!==e.analyzer.currentHeadlineData.score?e.analyzer.currentHeadlineData.score:"",b=m<40?"red":m<=60?"orange":"green",w="red"==b?"#df2a4a":"orange"==b?"#F2994A":"#00aa63",g=y<40?"red-bg":y<=60?"orange-bg":"green-bg";e=Math.abs(m-y);switch(!0){case m<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case m<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case m<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case m<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<m:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:a,className:"aioseo-headline-analyzer-panel-tab-new-score"},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-new-score-panel"},Object(r.createElement)("p",null,h),Object(r.createElement)("h4",null,"“",f,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-new-score",b)},m),Object(r.createElement)(i.a,{barScore:m,color:w}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score-difference",b)},y<m?"+ ":m===y?"":"- ",e),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",b)},t)),Object(r.createElement)("div",{className:"current-score"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",g)},y),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-content"},Object(r.createElement)("h5",null,p),Object(r.createElement)("p",null,n))))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(a=window.wp.components).PanelBody,c=a.PanelRow;t.a=function(t){var n=i("Previous Scores",e.env.VUE_APP_TEXTDOMAIN),a="undefined"!==t.analyzer.previousHeadlinesData?t.analyzer.previousHeadlinesData:[],u=document.querySelector(".edit-post-sidebar"),d="current-score"===("undefined"!==t.analyzer.activeTab?t.analyzer.activeTab:"current-score")?390:300;return Object(r.createElement)(s,null,Object(r.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-previous-scores"},Object(r.createElement)(c,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-previous-scores"},a.map((function(e,n){if(n<10&&(void 0!==e.sentence||void 0!==e.score)){var i=e.score<40?"red-bg":e.score<=60?"orange-bg":"green-bg";return Object(r.createElement)("li",{key:n,onClick:function(){t.setAnalyzer({newHeadlineData:a[n],headlineData:a[n],newHeadline:a[n].sentence,isNewData:!0}),u&&(u.scrollTop=d)}},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",i)},e.score),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-score-text"},e.sentence))}return null})))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=n(25),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(o=window.wp.components).PanelBody,d=o.PanelRow,h=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=l("Word Balance",h),o=l("Compare the percentages of your results to the goal for each category and adjust as necessary.",h),p=e.data.score,f=e.data.score<40?"red":e.data.score<=60?"orange":"green",m=0===e.data.result.commonWordsPercentage?"red":e.data.result.commonWordsPercentage<.2?"orange":"green",y=0===e.data.result.commonWordsPercentage?"red-bg":e.data.result.commonWordsPercentage<.2?"orange-bg":"green-bg",b=e.data.result.commonWordsPercentage<.2?l("Your headline would be more likely to get clicks if it had more common words.",h):l("Headlines with 20-30% common words are more likely to get clicks.",h),w=0===e.data.result.uncommonWordsPercentage?"red":e.data.result.uncommonWordsPercentage<.1?"orange":"green",g=0===e.data.result.uncommonWordsPercentage?"red-bg":e.data.result.uncommonWordsPercentage<.1?"orange-bg":"green-bg",v=e.data.result.uncommonWordsPercentage<.1?l("Your headline would be more likely to get clicks if it had more uncommon words.",h):l("Headlines with uncommon words are more likely to get clicks.",h),E=0===e.data.result.emotionalWordsPercentage?"red":e.data.result.emotionalWordsPercentage<.1?"orange":"green",O=0===e.data.result.emotionalWordsPercentage?"red-bg":e.data.result.emotionalWordsPercentage<.1?"orange-bg":"green-bg",j=l("Emotionally triggered headlines are likely to drive more clicks.",h),_=0===e.data.result.powerWords.length?"orange":"green",T=0===e.data.result.powerWords.length?"orange":"green-bg",x=l("Headlines with Power Words are more likely to get clicks.",h),C=l("Common Words",h),z=l("20-30%",h),k=l("Uncommon Words",h),P=l("10-20%",h),A=l("Emotional Words",h),N=l("10-15%",h),S=l("Power Words",h),D=l("At least one",h);switch(!0){case p<25:t=Object(r.createElement)("span",null,l("Not Looking Great",h));break;case p<50:t=Object(r.createElement)("span",null,l("Could Be Better",h));break;case p<60:t=Object(r.createElement)("span",null,l("Getting There",h));break;case p<75:t=Object(r.createElement)("span",null,l("Looks Good! 👍👍",h));break;case 75<p:t=Object(r.createElement)("span",null,l("Super! 🔥🔥🔥",h));break;default:t=!1}return Object(r.createElement)(c,null,Object(r.createElement)(u,{title:n,className:i()("aioseo-headline-analyzer-panel-word-balance","aioseo-headline-analyzer-panel-has-icon",f),icon:"green"==f?a.a.check:a.a.warning},Object(r.createElement)(d,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h4",null,t),Object(r.createElement)("p",null,o)),Object(r.createElement)(s.a,{title:C,value:Math.round(100*e.data.result.commonWordsPercentage),goalValue:z,words:e.data.result.commonWords,guideLine:b,classOnScore:m,classOnScoreBg:y}),Object(r.createElement)(s.a,{title:k,value:Math.round(100*e.data.result.uncommonWordsPercentage),goalValue:P,words:e.data.result.uncommonWords,guideLine:v,classOnScore:w,classOnScoreBg:g}),Object(r.createElement)(s.a,{title:A,value:Math.round(100*e.data.result.emotionalWordsPercentage),goalValue:N,words:e.data.result.emotionWords,guideLine:j,classOnScore:E,classOnScoreBg:O}),Object(r.createElement)(s.a,{title:S,value:Math.round(100*e.data.result.powerWordsPercentage),goalValue:D,words:e.data.result.powerWords,guideLine:x,classOnScore:_,classOnScoreBg:T}))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(o=window.wp.components).PanelBody,u=o.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=s("Your headline has a neutral sentiment.",d),n=s("Headlines that are strongly positive or negative tend to get more engagement then neutral ones.",d),o=s("Your headline has a positive sentiment.",d),h=s("Positive headlines tend to get better engagement than neutral or negative ones.",d),p=s("Your headline has a negative sentiment.",d),f=s("Negative headlines are attention-grabbing and tend to perform better than neutral ones.",d),m=s("Sentiment",d),y="neu"===e.data.result.sentiment?s("Neutral",d):"pos"===e.data.result.sentiment?s("Positive",d):s("Negative",d),b="neu"===e.data.result.sentiment?a.a.neutral:"pos"===e.data.result.sentiment?a.a.smile:a.a.negative,w="neu"===e.data.result.sentiment?"orange":"pos"===e.data.result.sentiment?"green":"red";return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:m,className:i()("aioseo-headline-analyzer-panel-sentiment","aioseo-headline-analyzer-panel-has-icon",w),icon:b},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",null,y),"neu"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,t),Object(r.createElement)("br",null),n):"","pos"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,o),Object(r.createElement)("br",null),h):"","neg"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,p),Object(r.createElement)("br",null)," ",f):""))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r,a=n(0),o=(r=window.wp.i18n).__,i=r.sprintf,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow;t.a=function(t){var n=t.data.result.headlineTypes.join(", "),r=o("Headline Type",e.env.VUE_APP_TEXTDOMAIN);t=Object(a.createElement)("span",{className:"aioseo-headline-analyzer-panel-types-title"},r,Object(a.createElement)("span",null,n)),r=i(o("Headlines that are lists and how-to get more engagement on average than other types of headlines. %1sRead more about %2sdifferent types of headlines here%3s →%4s",e.env.VUE_APP_TEXTDOMAIN),"<br/><br/>",'<a href="https://optinmonster.com/why-these-21-headlines-went-viral-and-how-you-can-copy-their-success/" target="_blank" className="aioseo-headline-analyzer-link"><span>',"</span>","</a>");return Object(a.createElement)(s,null,Object(a.createElement)(l,{title:t,className:"aioseo-headline-analyzer-panel-types"},Object(a.createElement)(c,null,Object(a.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(a.createElement)("h4",null,n),Object(a.createElement)("p",{dangerouslySetInnerHTML:{__html:r}})))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(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}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Character Count",p),n=e.data.result.length,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===n.toString().length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=19?l="red":20<=n&&n<=34?l="orange":35<=n&&n<=66?l="green":67<=n&&n<=79?l="orange":80<=n&&(l="red"),n<=34?(f=c("Too Short 🙃",p),e=c("You have space to add more keywords and power words to boost your rankings and click-through rate.",p)):35<=n&&n<=66?(f=c("Good 🙂",p),e=c("Headlines that are about 55 characters long will display fully in search results and tend to get more clicks.",p)):67<=n&&(f=c("Too Long 😑",p),e=c("At this length, it will get cut off in search results. Try reducing it to about 55 characters.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-character-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-character-count-container"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-character-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-character-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(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}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Word Count",p),n=e.data.result.wordCount,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===o.length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=4?(l="red",f=c("Not Enough Words 🙃",p),e=c("Your headline doesn’t use enough words. You have more space to add keywords and power words to improve your SEO and get more engagement.",p)):5<=n&&n<=9?(l="green",f=c("Good 🙂",p),e=c("Your headline has the right amount of words. Headlines are more likely to be clicked on in search results if they have about 6 words.",p)):10<=n&&n<=11?(l="orange",f=c("Reduce Word Count 🙂",p)):(l="red",f=c("Too Many Words 😑",p),e=c("Your headline has too many words. Long headlines will get cut off in search results and won’t get as many clicks.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-word-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-word-counter"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-word-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-word-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=window.wp.i18n.__,o=window.wp.element.Fragment,i=window.wp.components,s=i.PanelBody,l=i.PanelRow,c=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=a("Beginning & Ending Words",c),n=e.data.result.originalExplodedHeadline,i=a("Most readers only look at the first and last 3 words of a headline before deciding whether to click.",c),u="";e="";return 6<=n.length?(u=n.slice(0,3).join(" "),e=n.slice(-3).join(" ")):3<n.length&&n.length<=5?(u=n.slice(0,3).join(" "),e=n.slice(3).join(" ")):u=n.slice(0,3).join(" "),Object(r.createElement)(o,null,Object(r.createElement)(s,{title:t,className:"aioseo-headline-analyzer-panel-beginning-ending-words"},Object(r.createElement)(l,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},u?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-begining-title"},Object(r.createElement)("li",null,a("Beginning Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words beginning"},Object(r.createElement)("span",null,u))):"",e?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-ending-title"},Object(r.createElement)("li",null,a("Ending Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words ending"},Object(r.createElement)("span",null,e))):"",Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},i)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(57),a=n.n(r),o=n(0),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow,u=window.wp.data.select;t.a=function(t){var n=i("Search Preview",e.env.VUE_APP_TEXTDOMAIN),r=i("Here is how your headline will look like in Google search results page.",e.env.VUE_APP_TEXTDOMAIN),d=u("core/editor").getPermalink(),h={href:d};return Object(o.createElement)(s,null,Object(o.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-search-preview"},Object(o.createElement)(c,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-search-prevew-wrap"},Object(o.createElement)("p",{className:"aioseo-headline-analyzer-post-url"},Object(o.createElement)("a",a()({},h,{target:"_blank"}),d)),Object(o.createElement)("h4",null,t.data.sentence),Object(o.createElement)("p",null,r))))))}}).call(this,n(10))},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.default=e.exports,e.exports.__esModule=!0,n.apply(this,arguments)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},,,,,,,,,function(e,t,n){n(67),e.exports=n(80)},function(e,t,n){"use strict";n.r(t),function(e){var t=n(26),r=n.n(t),a=n(27),o=n.n(a),i=n(43),s=n.n(i),l=n(0),c=(t=n(9),n(22)),u=n(45),d=n(49),h=n(50),p=n(51),f=n(52),m=n(53),y=n(54),b=n(55),w=n(56);function g(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function v(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?g(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var E=(a=window.wp.i18n).__,O=a.sprintf,j=(i=window.wp.element).Fragment,_=i.useState,T=i.useEffect,x=(a=window.wp.plugins.registerPlugin,(i=window.wp.editPost).PluginSidebar),C=i.PluginSidebarMoreMenuItem,z=window.wp.data.select,k=e.env.VUE_APP_TEXTDOMAIN;a("aioseo-headline-analyzer",{icon:t.a.headline,render:function(){function e(){t?Object(c.b)(window.aioseo.nonce).post(Object(c.c)("analyze_headline")).send({title:t}).then((function(e){var t={dataExist:!1};e.body.analysed&&(t.currentHeadlineData=e.body,t.headlineData=e.body,t.dataExist=!0,void 0!==g.headlineData&&(t.previousHeadlinesData=[g.headlineData].concat(o()(A)))),P(v(v({},g),t))})).catch((function(e){P(v(v({},g),{dataExist:!1})),console.log("Couldn't fetch score for headline:",e)})):P(v(v({},g),{dataExist:!1}))}var t=z("core/editor").getEditedPostAttribute("title");T(e,[]),window.wp.data.subscribe((function(){t!==z("core/editor").getEditedPostAttribute("title")&&(t=z("core/editor").getEditedPostAttribute("title"),Object(c.a)(e,2e3))}));var n=E("SEO Headline Analyzer",k),a=E("Write your post title to see the analyzer data. This Headline Analyzer tool enables you to write irresistible SEO headlines that drive traffic, shares, and rank better in search results.",k),i=_({}),s=r()(i,2),g=s[0],P=s[1],A=void 0!==g.previousHeadlinesData?g.previousHeadlinesData:[],N=O(E("This headline analyzer is part of AIOSEO to help you increase your traffic. %1sAnalyze your site further here%2s →%3s",k),O('<a href="%1$s" className="aioseo-headline-analyzer-link" target="_blank"><span>',window.aioseo.urls.aio.seoAnalysis),"</span>","</a>"),S=document.querySelector(".components-button[aria-label='".concat(n,"'] svg"));S&&(i=document.createElement("span"),g.dataExist&&void 0!==g.currentHeadlineData.score?(s=g.currentHeadlineData.score,S.parentNode.setAttribute("aioseo-button-color",s<40?"red":s<=60?"orange":"green"),S.nextElementSibling?S.nextElementSibling.innerHTML="".concat(s,"/100"):(i.innerHTML="".concat(s,"/100"),S.parentNode.insertBefore(i,S.nextSibling))):(S.parentNode.setAttribute("aioseo-button-color","red"),S.nextElementSibling?S.nextElementSibling.innerHTML="00/100":(i.innerHTML="00/100",S.parentNode.insertBefore(i,S.nextSibling)))),!(S=document.querySelector(".aioseo-headline-analyzer-wrapper"))||(D=S.parentNode.querySelectorAll(".components-panel__header"))&&D.forEach((function(e){(e=e.querySelector('[aria-pressed="true"]'))&&null!==e&&(e.style.display="none")}));var D=function(e){P(v(v({},g),e))};return Object(l.createElement)(j,null,Object(l.createElement)(C,{target:"aioseo-headline-analyzer"},n),Object(l.createElement)(x,{name:"aioseo-headline-analyzer",title:n,className:"aioseo-headline-analyzer-wrapper"},void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(u.a,{analyzer:g,setAnalyzer:D}):Object(l.createElement)("p",{className:"aioseo-headline-analyzer-empty-title-warning"},a),void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed&&0<A.length?Object(l.createElement)(d.a,{analyzer:g,setAnalyzer:D}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(h.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(p.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(f.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(m.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(y.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(b.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(w.a,{data:g.headlineData}):"",Object(l.createElement)("div",{className:"aioseo-headline-analyzer-bottom-notice"},Object(l.createElement)("p",{dangerouslySetInnerHTML:{__html:N}}))))}})}.call(this,n(10))},function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,o=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){s=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw a}}return o}},e.exports.default=e.exports,e.exports.__esModule=!0},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.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(34);e.exports=function(e){if(Array.isArray(e))return r(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){function r(e){if(e)return function(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}(e)}(e.exports=r).prototype.on=r.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},r.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},r.prototype.off=r.prototype.removeListener=r.prototype.removeAllListeners=r.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+e];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var a=0;a<r.length;a++)if((n=r[a])===t||n.fn===t){r.splice(a,1);break}return 0===r.length&&delete this._callbacks["$"+e],this},r.prototype.emit=function(e){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),n=this._callbacks["$"+e],r=1;r<arguments.length;r++)t[r-1]=arguments[r];if(n){r=0;for(var a=(n=n.slice(0)).length;r<a;++r)n[r].apply(this,t)}return this},r.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},r.prototype.hasListeners=function(e){return!!this.listeners(e).length}},function(e,t){((e.exports=a).default=a).stable=i,a.stableStringify=i;var n=[],r=[];function a(e,t,a){for(function e(t,a,o,i){var s;if("object"==typeof t&&null!==t){for(s=0;s<o.length;s++)if(o[s]===t){var l=Object.getOwnPropertyDescriptor(i,a);return void(void 0!==l.get?l.configurable?(Object.defineProperty(i,a,{value:"[Circular]"}),n.push([i,a,t,l])):r.push([t,a]):(i[a]="[Circular]",n.push([i,a,t])))}if(o.push(t),Array.isArray(t))for(s=0;s<t.length;s++)e(t[s],s,o,t);else{var c=Object.keys(t);for(s=0;s<c.length;s++){var u=c[s];e(t[u],u,o,t)}}o.pop()}}(e,"",[],void 0),a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var o=n.pop();4===o.length?Object.defineProperty(o[0],o[1],o[3]):o[0][o[1]]=o[2]}return a}function o(e,t){return e<t?-1:t<e?1:0}function i(e,t,a){for(e=function e(t,a,i,s){var l;if("object"==typeof t&&null!==t){for(l=0;l<i.length;l++)if(i[l]===t){var c=Object.getOwnPropertyDescriptor(s,a);return void(void 0!==c.get?c.configurable?(Object.defineProperty(s,a,{value:"[Circular]"}),n.push([s,a,t,c])):r.push([t,a]):(s[a]="[Circular]",n.push([s,a,t])))}if("function"!=typeof t.toJSON){if(i.push(t),Array.isArray(t))for(l=0;l<t.length;l++)e(t[l],l,i,t);else{var u={},d=Object.keys(t).sort(o);for(l=0;l<d.length;l++){var h=d[l];e(t[h],h,i,t),u[h]=t[h]}if(void 0===s)return u;n.push([s,a,t]),s[a]=u}i.pop()}}}(e,"",[],void 0)||e,a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var i=n.pop();4===i.length?Object.defineProperty(i[0],i[1],i[3]):i[0][i[1]]=i[2]}return a}function s(e){return e=void 0!==e?e:function(e,t){return t},function(t,n){if(0<r.length)for(var a=0;a<r.length;a++){var o=r[a];if(o[1]===t&&o[0]===n){n="[Circular]",r.splice(a,1);break}}return e.call(this,t,n)}}},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a=n(35);function o(e){if(e)return function(e){for(var t in o.prototype)Object.prototype.hasOwnProperty.call(o.prototype,t)&&(e[t]=o.prototype[t]);return e}(e)}(e.exports=o).prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),clearTimeout(this._uploadTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,delete this._uploadTimeoutTimer,this},o.prototype.parse=function(e){return this._parser=e,this},o.prototype.responseType=function(e){return this._responseType=e,this},o.prototype.serialize=function(e){return this._serializer=e,this},o.prototype.timeout=function(e){if(!e||"object"!==r(e))return this._timeout=e,this._responseTimeout=0,this._uploadTimeout=0,this;for(var t in e)if(Object.prototype.hasOwnProperty.call(e,t))switch(t){case"deadline":this._timeout=e.deadline;break;case"response":this._responseTimeout=e.response;break;case"upload":this._uploadTimeout=e.upload;break;default:console.warn("Unknown timeout option",t)}return this},o.prototype.retry=function(e,t){return this._maxRetries=e=(e=0===arguments.length||!0===e?1:e)<=0?0:e,this._retries=0,this._retryCallback=t,this};var i=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];o.prototype._shouldRetry=function(e,t){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var n=this._retryCallback(e,t);if(!0===n)return!0;if(!1===n)return!1}catch(e){console.error(e)}if(t&&t.status&&500<=t.status&&501!==t.status)return!0;if(e){if(e.code&&i.includes(e.code))return!0;if(e.timeout&&"ECONNABORTED"===e.code)return!0;if(e.crossDomain)return!0}return!1},o.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this.timedoutError=null,this._end()},o.prototype.then=function(e,t){var n,r=this;return this._fullfilledPromise||((n=this)._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise((function(e,t){n.on("abort",(function(){var e;r.timedout&&r.timedoutError?t(r.timedoutError):((e=new Error("Aborted")).code="ABORTED",e.status=r.status,e.method=r.method,e.url=r.url,t(e))})),n.end((function(n,r){n?t(n):e(r)}))}))),this._fullfilledPromise.then(e,t)},o.prototype.catch=function(e){return this.then(void 0,e)},o.prototype.use=function(e){return e(this),this},o.prototype.ok=function(e){if("function"!=typeof e)throw new Error("Callback required");return this._okCallback=e,this},o.prototype._isResponseOK=function(e){return!!e&&(this._okCallback?this._okCallback(e):200<=e.status&&e.status<300)},o.prototype.getHeader=o.prototype.get=function(e){return this._header[e.toLowerCase()]},o.prototype.set=function(e,t){if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.set(n,e[n]);return this}return this._header[e.toLowerCase()]=t,this.header[e]=t,this},o.prototype.unset=function(e){return delete this._header[e.toLowerCase()],delete this.header[e],this},o.prototype.field=function(e,t){if(null==e)throw new Error(".field(name, val) name can not be empty");if(this._data)throw new Error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()");if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.field(n,e[n]);return this}if(Array.isArray(t)){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&this.field(e,t[r]);return this}if(null==t)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof t&&(t=String(t)),this._getFormData().append(e,t),this},o.prototype.abort=function(){return this._aborted||(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort")),this},o.prototype._auth=function(e,t,n,r){switch(n.type){case"basic":this.set("Authorization","Basic ".concat(r("".concat(e,":").concat(t))));break;case"auto":this.username=e,this.password=t;break;case"bearer":this.set("Authorization","Bearer ".concat(e))}return this},o.prototype.withCredentials=function(e){return this._withCredentials=e=void 0===e||e,this},o.prototype.redirects=function(e){return this._maxRedirects=e,this},o.prototype.maxResponseSize=function(e){if("number"!=typeof e)throw new TypeError("Invalid argument");return this._maxResponseSize=e,this},o.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},o.prototype.send=function(e){var t=a(e),n=this._header["content-type"];if(this._formData)throw new Error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()");if(t&&!this._data)Array.isArray(e)?this._data=[]:this._isHost(e)||(this._data={});else if(e&&this._data&&this._isHost(this._data))throw new Error("Can't merge these send calls");if(t&&a(this._data))for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(this._data[r]=e[r]);else"string"==typeof e?(n||this.type("form"),n=this._header["content-type"],this._data="application/x-www-form-urlencoded"===n?this._data?"".concat(this._data,"&").concat(e):e:(this._data||"")+e):this._data=e;return!t||this._isHost(e)||n||this.type("json"),this},o.prototype.sortQuery=function(e){return this._sort=void 0===e||e,this},o.prototype._finalizeQueryString=function(){var e,t=this._query.join("&");t&&(this.url+=(this.url.includes("?")?"&":"?")+t),this._query.length=0,!this._sort||0<=(e=this.url.indexOf("?"))&&(t=this.url.slice(e+1).split("&"),"function"==typeof this._sort?t.sort(this._sort):t.sort(),this.url=this.url.slice(0,e)+"?"+t.join("&"))},o.prototype._appendQueryString=function(){console.warn("Unsupported")},o.prototype._timeoutError=function(e,t,n){this._aborted||((e=new Error("".concat(e+t,"ms exceeded"))).timeout=t,e.code="ECONNABORTED",e.errno=n,this.timedout=!0,this.timedoutError=e,this.abort(),this.callback(e))},o.prototype._setTimeouts=function(){var e=this;this._timeout&&!this._timer&&(this._timer=setTimeout((function(){e._timeoutError("Timeout of ",e._timeout,"ETIME")}),this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout((function(){e._timeoutError("Response timeout of ",e._responseTimeout,"ETIMEDOUT")}),this._responseTimeout))}},function(e,t,n){"use strict";var r=n(78);function a(e){if(e)return function(e){for(var t in a.prototype)Object.prototype.hasOwnProperty.call(a.prototype,t)&&(e[t]=a.prototype[t]);return e}(e)}(e.exports=a).prototype.get=function(e){return this.header[e.toLowerCase()]},a.prototype._setHeaderProperties=function(e){var t=e["content-type"]||"";this.type=r.type(t);var n,a=r.params(t);for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(this[n]=a[n]);this.links={};try{e.link&&(this.links=r.parseLinks(e.link))}catch(e){}},a.prototype._setStatusProperties=function(e){var t=e/100|0;this.statusCode=e,this.status=this.statusCode,this.statusType=t,this.info=1==t,this.ok=2==t,this.redirect=3==t,this.clientError=4==t,this.serverError=5==t,this.error=(4==t||5==t)&&this.toError(),this.created=201===e,this.accepted=202===e,this.noContent=204===e,this.badRequest=400===e,this.unauthorized=401===e,this.notAcceptable=406===e,this.forbidden=403===e,this.notFound=404===e,this.unprocessableEntity=422===e}},function(e,t,n){"use strict";t.type=function(e){return e.split(/ *; */).shift()},t.params=function(e){return e.split(/ *; */).reduce((function(e,t){t=(n=t.split(/ *= */)).shift();var n=n.shift();return t&&n&&(e[t]=n),e}),{})},t.parseLinks=function(e){return e.split(/ *, */).reduce((function(e,t){var n=t.split(/ *; */);t=n[0].slice(1,-1);return e[n[1].split(/ *= */)[1].slice(1,-1)]=t,e}),{})},t.cleanHeader=function(e,t){return delete e["content-type"],delete e["content-length"],delete e["transfer-encoding"],delete e.host,t&&(delete e.authorization,delete e.cookie),e}},function(e,t,n){"use strict";function r(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert","disableTLSCerts"].forEach((function(e){r.prototype[e]=function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return this._defaults.push({fn:e,args:n}),this}})),r.prototype._setDefaults=function(e){this._defaults.forEach((function(t){e[t.fn].apply(e,function(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t.args))}))},e.exports=r},function(e,t,n){"use strict";n.r(t)}]);
1
+ /*! ! built on Tuesday, November 16th 2021, 3:05:17 pm */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.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 a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));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=66)}([function(e,t){e.exports=window.wp.element},,function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o,i=typeof r;if("string"==i||"number"==i)e.push(r);else if(Array.isArray(r))!r.length||(o=a.apply(null,r))&&e.push(o);else if("object"==i)if(r.toString===Object.prototype.toString)for(var s in r)n.call(r,s)&&r[s]&&e.push(s);else e.push(r.toString())}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(r=function(){return a}.apply(t,[]))||(e.exports=r)}()},,,,,,,function(e,t,n){"use strict";var r=n(0);(n={}).headline=Object(r.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.817 2H22v.038l-6.183 4.226V2.001zm-7.62 9.473V2H2.016v4.683-.267l6.126 5.094.057-.038zm-6.182 5.061l6.183 4.213v1.252H2.015v-5.465zm13.802-.857L22 11.559v10.437h-6.183v-6.32z",fill:"#141B38"}),Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.198 11.435l-.057.039L2.016 6.38v.265-4.644h6.182v9.434zm0 9.226L2.015 16.45v5.55h6.183v-1.337zm7.62-5.07L22 11.474v10.522h-6.183v-6.405zM22 2.001l-6.183 4.226V2H22z",fill:"#141B38"}),Object(r.createElement)("path",{d:"M8.141 13.537L22 4.064v5.432l-13.8 9.19L2 14.46l.016-6.018 6.125 5.094z",fill:"#141B38"})),n.headlineBlack=Object(r.createElement)("svg",{width:"15",height:"14",viewBox:"0 0 15 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M13.5 2V12H14.5C14.6458 12 14.7604 12.0521 14.8438 12.1562C14.9479 12.2396 15 12.3542 15 12.5V13.5C15 13.6458 14.9479 13.7604 14.8438 13.8438C14.7604 13.9479 14.6458 14 14.5 14H9.5C9.35417 14 9.22917 13.9479 9.125 13.8438C9.04167 13.7604 9 13.6458 9 13.5V12.5C9 12.3542 9.04167 12.2396 9.125 12.1562C9.22917 12.0521 9.35417 12 9.5 12H10.5V8H4.5V12H5.5C5.64583 12 5.76042 12.0521 5.84375 12.1562C5.94792 12.2396 6 12.3542 6 12.5V13.5C6 13.6458 5.94792 13.7604 5.84375 13.8438C5.76042 13.9479 5.64583 14 5.5 14H0.5C0.354167 14 0.229167 13.9479 0.125 13.8438C0.0416667 13.7604 0 13.6458 0 13.5V12.5C0 12.3542 0.0416667 12.2396 0.125 12.1562C0.229167 12.0521 0.354167 12 0.5 12H1.5V2H0.5C0.354167 2 0.229167 1.95833 0.125 1.875C0.0416667 1.77083 0 1.64583 0 1.5V0.5C0 0.354167 0.0416667 0.239583 0.125 0.15625C0.229167 0.0520833 0.354167 0 0.5 0H5.5C5.64583 0 5.76042 0.0520833 5.84375 0.15625C5.94792 0.239583 6 0.354167 6 0.5V1.5C6 1.64583 5.94792 1.77083 5.84375 1.875C5.76042 1.95833 5.64583 2 5.5 2H4.5V6H10.5V2H9.5C9.35417 2 9.22917 1.95833 9.125 1.875C9.04167 1.77083 9 1.64583 9 1.5V0.5C9 0.354167 9.04167 0.239583 9.125 0.15625C9.22917 0.0520833 9.35417 0 9.5 0H14.5C14.6458 0 14.7604 0.0520833 14.8438 0.15625C14.9479 0.239583 15 0.354167 15 0.5V1.5C15 1.64583 14.9479 1.77083 14.8438 1.875C14.7604 1.95833 14.6458 2 14.5 2H13.5Z",fill:"#000"})),n.warning=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM11 5.00002H9V11H11V5.00002ZM11 13H9V15H11V13ZM2.00002 10C2.00002 14.42 5.58002 18 10 18C14.42 18 18 14.42 18 10C18 5.58002 14.42 2.00002 10 2.00002C5.58002 2.00002 2.00002 5.58002 2.00002 10Z",fill:"#005AE0"})),n.smile=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM6.55 12C7.25 13.19 8.52 14 10 14C11.48 14 12.75 13.19 13.45 12H15.12C14.32 14.05 12.33 15.5 10 15.5C7.67 15.5 5.68 14.05 4.88 12H6.55ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#00AA63"})),n.neutral=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM5 7.5C5 6.67157 5.67157 6 6.5 6C7.32843 6 8 6.67157 8 7.5C8 8.32843 7.32843 9 6.5 9C5.67157 9 5 8.32843 5 7.5ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM7 13.5V12H13V13.5H7ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#005AE0"})),n.negative=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM4.88 15.5C5.68 13.45 7.67 12 10 12C12.33 12 14.32 13.45 15.12 15.5H13.45C12.75 14.31 11.48 13.5 10 13.5C8.52 13.5 7.24 14.31 6.55 15.5H4.88ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#DF2A4A"})),n.check=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM8 12.17L14.59 5.58L16 7L8 15L4 11L5.41 9.59L8 12.17Z",fill:"#00AA63"})),t.a=n},function(e,t){var n,r;e=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function i(e){if(n===setTimeout)return setTimeout(e,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch(e){n=a}try{r="function"==typeof clearTimeout?clearTimeout:o}catch(e){r=o}}();var s,l=[],c=!1,u=-1;function d(){c&&s&&(c=!1,s.length?l=s.concat(l):u=-1,l.length&&h())}function h(){if(!c){var e=i(d);c=!0;for(var t=l.length;t;){for(s=l,l=[];++u<t;)s&&s[u].run();u=-1,t=l.length}s=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===o||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function f(){}e.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||c||i(h)},p.prototype.run=function(){this.fun.apply(null,this.array)},e.title="browser",e.browser=!0,e.env={},e.argv=[],e.version="",e.versions={},e.on=f,e.addListener=f,e.once=f,e.off=f,e.removeListener=f,e.removeAllListeners=f,e.emit=f,e.prependListener=f,e.prependOnceListener=f,e.listeners=function(e){return[]},e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")},e.umask=function(){return 0}},,,,,,,,,,,,function(e,t,n){"use strict";function r(e){return e.replace(/\/$/,"")}function a(e){return r(e)+"/"}n.d(t,"a",(function(){return s})),n.d(t,"b",(function(){return l})),n.d(t,"c",(function(){return c}));t=n(44);var o,i=n.n(t),s=function(e,t){return function(){for(var n=arguments.length,r=new Array(n),a=0;a<n;a++)r[a]=arguments[a];clearTimeout(o),o=setTimeout((function(){return e.apply(void 0,r)}),t)}.call()},l=function(e){return i.a.agent().set("X-WP-Nonce",e).use((function(e){e.on("response",(function(e){(401===e.status||403===e.status)&&console.error(e)}))}))},c=function(e){return e=(window.aioseo.data.hasUrlTrailingSlash?a:r)(e),a(window.aioseo.urls.restUrl)+a("aioseo/v1")+e.replace(/^\//,"")}},,,function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__;t.a=function(t){var n=i("Goal: ",e.env.VUE_APP_TEXTDOMAIN),a={width:t.value+"%"};return Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h5",null,t.title),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block-data"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage",t.classOnScore)},t.value,"%"),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage-right-column",t.classOnScore)},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-goal"},n," ",t.goalValue),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-progressbar"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-progressbar-bg"}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-progressbar-part",t.classOnScoreBg),style:a})))),Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-words-tag-list"},0<t.words.length?t.words.map((function(e,t){return Object(r.createElement)("li",{key:t},e)})):""),Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},t.guideLine))}}).call(this,n(10))},function(e,t,n){var r=n(68),a=n(69),o=n(33),i=n(70);e.exports=function(e,t){return r(e)||a(e,t)||o(e,t)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(71),a=n(72),o=n(33),i=n(73);e.exports=function(e){return r(e)||a(e)||o(e)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";var r=n(0),a=window.wp.element.Fragment;t.a=function(e){var t=e.barScore;e=e.color;return Object(r.createElement)(a,null,Object(r.createElement)("div",{className:"aioseo-donut-container",style:{flexDirection:"column"}},Object(r.createElement)("svg",{className:"aioseo-donut-score-svg",viewBox:"0 0 33.83098862 33.83098862",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__background",stroke:"#e8e8eb",strokeWidth:"2",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}),Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__circle",stroke:e,strokeWidth:"2",strokeDasharray:"".concat(t,", 100"),strokeLinecap:"round",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}))))}},,,,,function(e,t,n){var r=n(34);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"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!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},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return null!==e&&"object"===r(e)}},,,,,,,,function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a="undefined"!=typeof window?window:"undefined"==typeof self?void console.warn("Using browser-only version of superagent in non-browser environment"):self,o=n(74),i=n(75),s=n(76),l=n(35),c=n(77),u=n(79);function d(){}e.exports=function(e,n){return"function"==typeof n?new t.Request("GET",e).end(n):1===arguments.length?new t.Request("GET",e):new t.Request(e,n)};var h=t=e.exports;t.Request=w,h.getXHR=function(){if(a.XMLHttpRequest&&(!a.location||"file:"!==a.location.protocol||!a.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(e){}throw new Error("Browser-only version of superagent could not find XHR")};var p="".trim?function(e){return e.trim()}:function(e){return e.replace(/(^\s*|\s*$)/g,"")};function f(e){if(!l(e))return e;var t,n=[];for(t in e)Object.prototype.hasOwnProperty.call(e,t)&&function e(t,n,r){if(void 0!==r)if(null!==r)if(Array.isArray(r))r.forEach((function(r){e(t,n,r)}));else if(l(r))for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&e(t,"".concat(n,"[").concat(a,"]"),r[a]);else t.push(encodeURI(n)+"="+encodeURIComponent(r));else t.push(encodeURI(n))}(n,t,e[t]);return n.join("&")}function m(e){for(var t,n,r={},a=e.split("&"),o=0,i=a.length;o<i;++o)-1===(n=(t=a[o]).indexOf("="))?r[decodeURIComponent(t)]="":r[decodeURIComponent(t.slice(0,n))]=decodeURIComponent(t.slice(n+1));return r}function y(e){return/[/+]json($|[^-\w])/.test(e)}function b(e){this.req=e,this.xhr=this.req.xhr,this.text="HEAD"!==this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var t=this.xhr.status;this._setStatusProperties(t=1223===t?204:t),this.headers=function(e){for(var t,n,r,a=e.split(/\r?\n/),o={},i=0,s=a.length;i<s;++i)-1!==(r=(t=a[i]).indexOf(":"))&&(n=t.slice(0,r).toLowerCase(),r=p(t.slice(r+1)),o[n]=r);return o}(this.xhr.getAllResponseHeaders()),this.header=this.headers,this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&e._responseType?this.body=this.xhr.response:this.body="HEAD"===this.req.method?null:this._parseBody(this.text||this.xhr.response)}function w(e,t){var n=this;this._query=this._query||[],this.method=e,this.url=t,this.header={},this._header={},this.on("end",(function(){var e,t=null,r=null;try{r=new b(n)}catch(r){return(t=new Error("Parser is unable to parse the response")).parse=!0,t.original=r,n.xhr?(t.rawResponse=void 0===n.xhr.responseType?n.xhr.responseText:n.xhr.response,t.status=n.xhr.status||null,t.statusCode=t.status):(t.rawResponse=null,t.status=null),n.callback(t)}n.emit("response",r);try{n._isResponseOK(r)||(e=new Error(r.statusText||r.text||"Unsuccessful HTTP response"))}catch(r){e=r}e?(e.original=t,e.response=r,e.status=r.status,n.callback(e,r)):n.callback(null,r)}))}function g(e,t,n){return e=h("DELETE",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}h.serializeObject=f,h.parseString=m,h.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},h.serialize={"application/x-www-form-urlencoded":f,"application/json":i},h.parse={"application/x-www-form-urlencoded":m,"application/json":JSON.parse},c(b.prototype),b.prototype._parseBody=function(e){var t=h.parse[this.type];return this.req._parser?this.req._parser(this,e):(t=!t&&y(this.type)?h.parse["application/json"]:t)&&e&&(0<e.length||e instanceof Object)?t(e):null},b.prototype.toError=function(){var e=(n=this.req).method,t=n.url,n="cannot ".concat(e," ").concat(t," (").concat(this.status,")");return(n=new Error(n)).status=this.status,n.method=e,n.url=t,n},h.Response=b,o(w.prototype),s(w.prototype),w.prototype.type=function(e){return this.set("Content-Type",h.types[e]||e),this},w.prototype.accept=function(e){return this.set("Accept",h.types[e]||e),this},w.prototype.auth=function(e,t,n){return"object"===r(t=1===arguments.length?"":t)&&null!==t&&(n=t,t=""),n=n||{type:"function"==typeof btoa?"basic":"auto"},this._auth(e,t,n,(function(e){if("function"==typeof btoa)return btoa(e);throw new Error("Cannot use basic auth, btoa is not a function")}))},w.prototype.query=function(e){return(e="string"!=typeof e?f(e):e)&&this._query.push(e),this},w.prototype.attach=function(e,t,n){if(t){if(this._data)throw new Error("superagent can't mix .send() and .attach()");this._getFormData().append(e,t,n||t.name)}return this},w.prototype._getFormData=function(){return this._formData||(this._formData=new a.FormData),this._formData},w.prototype.callback=function(e,t){if(this._shouldRetry(e,t))return this._retry();var n=this._callback;this.clearTimeout(),e&&(this._maxRetries&&(e.retries=this._retries-1),this.emit("error",e)),n(e,t)},w.prototype.crossDomainError=function(){var e=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");e.crossDomain=!0,e.status=this.status,e.method=this.method,e.url=this.url,this.callback(e)},w.prototype.buffer=w.prototype.ca=w.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},w.prototype.pipe=w.prototype.write=function(){throw new Error("Streaming is not supported in browser version of superagent")},w.prototype._isHost=function(e){return e&&"object"===r(e)&&!Array.isArray(e)&&"[object Object]"!==Object.prototype.toString.call(e)},w.prototype.end=function(e){this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=e||d,this._finalizeQueryString(),this._end()},w.prototype._setUploadTimeout=function(){var e=this;this._uploadTimeout&&!this._uploadTimeoutTimer&&(this._uploadTimeoutTimer=setTimeout((function(){e._timeoutError("Upload timeout of ",e._uploadTimeout,"ETIMEDOUT")}),this._uploadTimeout))},w.prototype._end=function(){if(this._aborted)return this.callback(new Error("The request has been aborted even before .end() was called"));var e=this;this.xhr=h.getXHR();var t=this.xhr,n=this._formData||this._data;this._setTimeouts(),t.onreadystatechange=function(){var n,r=t.readyState;if(2<=r&&e._responseTimeoutTimer&&clearTimeout(e._responseTimeoutTimer),4===r){try{n=t.status}catch(r){n=0}if(!n)return e.timedout||e._aborted?void 0:e.crossDomainError();e.emit("end")}};var r,a,o=function(t,n){0<n.total&&(n.percent=n.loaded/n.total*100,100===n.percent&&clearTimeout(e._uploadTimeoutTimer)),n.direction=t,e.emit("progress",n)};if(this.hasListeners("progress"))try{t.addEventListener("progress",o.bind(null,"download")),t.upload&&t.upload.addEventListener("progress",o.bind(null,"upload"))}catch(n){}t.upload&&this._setUploadTimeout();try{this.username&&this.password?t.open(this.method,this.url,!0,this.username,this.password):t.open(this.method,this.url,!0)}catch(n){return this.callback(n)}for(a in this._withCredentials&&(t.withCredentials=!0),this._formData||"GET"===this.method||"HEAD"===this.method||"string"==typeof n||this._isHost(n)||(r=this._header["content-type"],(o=!(o=this._serializer||h.serialize[r?r.split(";")[0]:""])&&y(r)?h.serialize["application/json"]:o)&&(n=o(n))),this.header)null!==this.header[a]&&Object.prototype.hasOwnProperty.call(this.header,a)&&t.setRequestHeader(a,this.header[a]);this._responseType&&(t.responseType=this._responseType),this.emit("request",this),t.send(void 0===n?null:n)},h.agent=function(){return new u},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach((function(e){u.prototype[e.toLowerCase()]=function(t,n){return t=new h.Request(e,t),this._setDefaults(t),n&&t.end(n),t}})),u.prototype.del=u.prototype.delete,h.get=function(e,t,n){return e=h("GET",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.head=function(e,t,n){return e=h("HEAD",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.options=function(e,t,n){return e=h("OPTIONS",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.del=g,h.delete=g,h.patch=function(e,t,n){return e=h("PATCH",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.post=function(e,t,n){return e=h("POST",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.put=function(e,t,n){return e=h("PUT",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}},function(e,t,n){"use strict";(function(e){var r=n(26),a=n.n(r),o=n(0),i=(r=n(2),n.n(r)),s=n(46),l=n(47),c=n(48),u=window.wp.i18n.__,d=(r=window.wp.element).Fragment,h=r.useState,p=r.useEffect;t.a=function(t){var n=u("Current Score",e.env.VUE_APP_TEXTDOMAIN),r=u("Try New Headline",e.env.VUE_APP_TEXTDOMAIN),f=h("current-score"),m=(f=a()(f,2))[0],y=f[1];f=void 0!==t.analyzer.isNewData&&t.analyzer.isNewData;return p((function(){t.setAnalyzer({activeTab:m})}),[m]),Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-inline-buttons"},Object(o.createElement)("button",{onClick:function(){return y("current-score")},className:i()("aioseo-switcher-button",{active:"current-score"===m})},n),Object(o.createElement)("button",{onClick:function(){return y("new-headline")},className:i()("aioseo-switcher-button",{active:"new-headline"===m})},r)),"new-headline"===m?Object(o.createElement)(d,null,Object(o.createElement)(l.a,{analyzer:t.analyzer,setAnalyzer:t.setAnalyzer})):Object(o.createElement)(s.a,{analyzer:t.analyzer}),f?Object(o.createElement)(c.a,{analyzer:t.analyzer}):"")}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=e.analyzer.currentHeadlineData.score,f=p<40?"red":p<=60?"orange":"green";e="red"==f?"#df2a4a":"orange"==f?"#F2994A":"#00aa63";switch(!0){case p<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case p<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case p<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case p<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<p:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{className:"aioseo-headline-analyzer-panel-score",title:a},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-tab aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",{className:"aioseo-headline-analyzer-current-title"},"“",n,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-current-score",f)},p,Object(r.createElement)("span",{className:"aioseo-headline-analyzer-total-out-of-score"},"/ 100")),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",f)},t),Object(r.createElement)(i.a,{barScore:p,color:e})),Object(r.createElement)("p",null,h)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(27),a=n.n(r),o=n(0),i=n(22),s=(r=n(2),n.n(r)),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(r=window.wp.components).PanelBody,d=r.PanelRow,h=r.TextControl,p=r.Button,f=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){function t(t){(t=t.trim())&&Object(i.b)(window.aioseo.nonce).post(Object(i.c)("analyze_headline")).send({title:t}).then((function(t){e.setAnalyzer({newHeadlineData:t.body,headlineData:t.body,previousHeadlinesData:[e.analyzer.headlineData].concat(a()(b)),isNewData:!0})})).catch((function(t){e.setAnalyzer({isNewData:!1}),console.log(t)}))}var n=l("Try New Headline",f),r=l("Enter a different headline than your post title to see how it compares.",f),m=l("Analyze Headline",f),y=void 0!==e.analyzer.newHeadline?e.analyzer.newHeadline:"",b=void 0!==e.analyzer.previousHeadlinesData?e.analyzer.previousHeadlinesData:[],w=!y;return Object(o.createElement)(c,null,Object(o.createElement)(u,{title:n,className:s()("aioseo-headline-analyzer-panel-tab-new-score-form")},Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-tab"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-score-form-block"},Object(o.createElement)("form",{onSubmit:function(e){e.preventDefault(),t(y)}},Object(o.createElement)(h,{label:r,value:y,onChange:function(t){" "!==t&&e.setAnalyzer({newHeadline:t})},className:"aioseo-headline-analyzer-input-field"}),Object(o.createElement)(p,{className:s()("aioseo-headline-analyzer-button"),onClick:function(){t(y)},disabled:w},m)))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("New Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=s("Current Score",d),f=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.sentence:"",m=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.score:"",y=void 0!==e.analyzer.currentHeadlineData.score?e.analyzer.currentHeadlineData.score:"",b=m<40?"red":m<=60?"orange":"green",w="red"==b?"#df2a4a":"orange"==b?"#F2994A":"#00aa63",g=y<40?"red-bg":y<=60?"orange-bg":"green-bg";e=Math.abs(m-y);switch(!0){case m<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case m<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case m<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case m<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<m:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:a,className:"aioseo-headline-analyzer-panel-tab-new-score"},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-new-score-panel"},Object(r.createElement)("p",null,h),Object(r.createElement)("h4",null,"“",f,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-new-score",b)},m),Object(r.createElement)(i.a,{barScore:m,color:w}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score-difference",b)},y<m?"+ ":m===y?"":"- ",e),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",b)},t)),Object(r.createElement)("div",{className:"current-score"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",g)},y),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-content"},Object(r.createElement)("h5",null,p),Object(r.createElement)("p",null,n))))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(a=window.wp.components).PanelBody,c=a.PanelRow;t.a=function(t){var n=i("Previous Scores",e.env.VUE_APP_TEXTDOMAIN),a="undefined"!==t.analyzer.previousHeadlinesData?t.analyzer.previousHeadlinesData:[],u=document.querySelector(".edit-post-sidebar"),d="current-score"===("undefined"!==t.analyzer.activeTab?t.analyzer.activeTab:"current-score")?390:300;return Object(r.createElement)(s,null,Object(r.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-previous-scores"},Object(r.createElement)(c,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-previous-scores"},a.map((function(e,n){if(n<10&&(void 0!==e.sentence||void 0!==e.score)){var i=e.score<40?"red-bg":e.score<=60?"orange-bg":"green-bg";return Object(r.createElement)("li",{key:n,onClick:function(){t.setAnalyzer({newHeadlineData:a[n],headlineData:a[n],newHeadline:a[n].sentence,isNewData:!0}),u&&(u.scrollTop=d)}},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",i)},e.score),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-score-text"},e.sentence))}return null})))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=n(25),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(o=window.wp.components).PanelBody,d=o.PanelRow,h=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=l("Word Balance",h),o=l("Compare the percentages of your results to the goal for each category and adjust as necessary.",h),p=e.data.score,f=e.data.score<40?"red":e.data.score<=60?"orange":"green",m=0===e.data.result.commonWordsPercentage?"red":e.data.result.commonWordsPercentage<.2?"orange":"green",y=0===e.data.result.commonWordsPercentage?"red-bg":e.data.result.commonWordsPercentage<.2?"orange-bg":"green-bg",b=e.data.result.commonWordsPercentage<.2?l("Your headline would be more likely to get clicks if it had more common words.",h):l("Headlines with 20-30% common words are more likely to get clicks.",h),w=0===e.data.result.uncommonWordsPercentage?"red":e.data.result.uncommonWordsPercentage<.1?"orange":"green",g=0===e.data.result.uncommonWordsPercentage?"red-bg":e.data.result.uncommonWordsPercentage<.1?"orange-bg":"green-bg",v=e.data.result.uncommonWordsPercentage<.1?l("Your headline would be more likely to get clicks if it had more uncommon words.",h):l("Headlines with uncommon words are more likely to get clicks.",h),E=0===e.data.result.emotionalWordsPercentage?"red":e.data.result.emotionalWordsPercentage<.1?"orange":"green",O=0===e.data.result.emotionalWordsPercentage?"red-bg":e.data.result.emotionalWordsPercentage<.1?"orange-bg":"green-bg",j=l("Emotionally triggered headlines are likely to drive more clicks.",h),_=0===e.data.result.powerWords.length?"orange":"green",T=0===e.data.result.powerWords.length?"orange":"green-bg",x=l("Headlines with Power Words are more likely to get clicks.",h),C=l("Common Words",h),z=l("20-30%",h),k=l("Uncommon Words",h),P=l("10-20%",h),A=l("Emotional Words",h),N=l("10-15%",h),S=l("Power Words",h),D=l("At least one",h);switch(!0){case p<25:t=Object(r.createElement)("span",null,l("Not Looking Great",h));break;case p<50:t=Object(r.createElement)("span",null,l("Could Be Better",h));break;case p<60:t=Object(r.createElement)("span",null,l("Getting There",h));break;case p<75:t=Object(r.createElement)("span",null,l("Looks Good! 👍👍",h));break;case 75<p:t=Object(r.createElement)("span",null,l("Super! 🔥🔥🔥",h));break;default:t=!1}return Object(r.createElement)(c,null,Object(r.createElement)(u,{title:n,className:i()("aioseo-headline-analyzer-panel-word-balance","aioseo-headline-analyzer-panel-has-icon",f),icon:"green"==f?a.a.check:a.a.warning},Object(r.createElement)(d,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h4",null,t),Object(r.createElement)("p",null,o)),Object(r.createElement)(s.a,{title:C,value:Math.round(100*e.data.result.commonWordsPercentage),goalValue:z,words:e.data.result.commonWords,guideLine:b,classOnScore:m,classOnScoreBg:y}),Object(r.createElement)(s.a,{title:k,value:Math.round(100*e.data.result.uncommonWordsPercentage),goalValue:P,words:e.data.result.uncommonWords,guideLine:v,classOnScore:w,classOnScoreBg:g}),Object(r.createElement)(s.a,{title:A,value:Math.round(100*e.data.result.emotionalWordsPercentage),goalValue:N,words:e.data.result.emotionWords,guideLine:j,classOnScore:E,classOnScoreBg:O}),Object(r.createElement)(s.a,{title:S,value:Math.round(100*e.data.result.powerWordsPercentage),goalValue:D,words:e.data.result.powerWords,guideLine:x,classOnScore:_,classOnScoreBg:T}))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(o=window.wp.components).PanelBody,u=o.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=s("Your headline has a neutral sentiment.",d),n=s("Headlines that are strongly positive or negative tend to get more engagement then neutral ones.",d),o=s("Your headline has a positive sentiment.",d),h=s("Positive headlines tend to get better engagement than neutral or negative ones.",d),p=s("Your headline has a negative sentiment.",d),f=s("Negative headlines are attention-grabbing and tend to perform better than neutral ones.",d),m=s("Sentiment",d),y="neu"===e.data.result.sentiment?s("Neutral",d):"pos"===e.data.result.sentiment?s("Positive",d):s("Negative",d),b="neu"===e.data.result.sentiment?a.a.neutral:"pos"===e.data.result.sentiment?a.a.smile:a.a.negative,w="neu"===e.data.result.sentiment?"orange":"pos"===e.data.result.sentiment?"green":"red";return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:m,className:i()("aioseo-headline-analyzer-panel-sentiment","aioseo-headline-analyzer-panel-has-icon",w),icon:b},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",null,y),"neu"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,t),Object(r.createElement)("br",null),n):"","pos"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,o),Object(r.createElement)("br",null),h):"","neg"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,p),Object(r.createElement)("br",null)," ",f):""))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r,a=n(0),o=(r=window.wp.i18n).__,i=r.sprintf,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow;t.a=function(t){var n=t.data.result.headlineTypes.join(", "),r=o("Headline Type",e.env.VUE_APP_TEXTDOMAIN);t=Object(a.createElement)("span",{className:"aioseo-headline-analyzer-panel-types-title"},r,Object(a.createElement)("span",null,n)),r=i(o("Headlines that are lists and how-to get more engagement on average than other types of headlines. %1sRead more about %2sdifferent types of headlines here%3s →%4s",e.env.VUE_APP_TEXTDOMAIN),"<br/><br/>",'<a href="https://optinmonster.com/why-these-21-headlines-went-viral-and-how-you-can-copy-their-success/" target="_blank" className="aioseo-headline-analyzer-link"><span>',"</span>","</a>");return Object(a.createElement)(s,null,Object(a.createElement)(l,{title:t,className:"aioseo-headline-analyzer-panel-types"},Object(a.createElement)(c,null,Object(a.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(a.createElement)("h4",null,n),Object(a.createElement)("p",{dangerouslySetInnerHTML:{__html:r}})))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(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}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Character Count",p),n=e.data.result.length,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===n.toString().length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=19?l="red":20<=n&&n<=34?l="orange":35<=n&&n<=66?l="green":67<=n&&n<=79?l="orange":80<=n&&(l="red"),n<=34?(f=c("Too Short 🙃",p),e=c("You have space to add more keywords and power words to boost your rankings and click-through rate.",p)):35<=n&&n<=66?(f=c("Good 🙂",p),e=c("Headlines that are about 55 characters long will display fully in search results and tend to get more clicks.",p)):67<=n&&(f=c("Too Long 😑",p),e=c("At this length, it will get cut off in search results. Try reducing it to about 55 characters.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-character-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-character-count-container"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-character-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-character-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(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}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Word Count",p),n=e.data.result.wordCount,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===o.length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=4?(l="red",f=c("Not Enough Words 🙃",p),e=c("Your headline doesn’t use enough words. You have more space to add keywords and power words to improve your SEO and get more engagement.",p)):5<=n&&n<=9?(l="green",f=c("Good 🙂",p),e=c("Your headline has the right amount of words. Headlines are more likely to be clicked on in search results if they have about 6 words.",p)):10<=n&&n<=11?(l="orange",f=c("Reduce Word Count 🙂",p)):(l="red",f=c("Too Many Words 😑",p),e=c("Your headline has too many words. Long headlines will get cut off in search results and won’t get as many clicks.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-word-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-word-counter"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-word-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-word-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=window.wp.i18n.__,o=window.wp.element.Fragment,i=window.wp.components,s=i.PanelBody,l=i.PanelRow,c=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=a("Beginning & Ending Words",c),n=e.data.result.originalExplodedHeadline,i=a("Most readers only look at the first and last 3 words of a headline before deciding whether to click.",c),u="";e="";return 6<=n.length?(u=n.slice(0,3).join(" "),e=n.slice(-3).join(" ")):3<n.length&&n.length<=5?(u=n.slice(0,3).join(" "),e=n.slice(3).join(" ")):u=n.slice(0,3).join(" "),Object(r.createElement)(o,null,Object(r.createElement)(s,{title:t,className:"aioseo-headline-analyzer-panel-beginning-ending-words"},Object(r.createElement)(l,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},u?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-begining-title"},Object(r.createElement)("li",null,a("Beginning Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words beginning"},Object(r.createElement)("span",null,u))):"",e?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-ending-title"},Object(r.createElement)("li",null,a("Ending Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words ending"},Object(r.createElement)("span",null,e))):"",Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},i)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(57),a=n.n(r),o=n(0),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow,u=window.wp.data.select;t.a=function(t){var n=i("Search Preview",e.env.VUE_APP_TEXTDOMAIN),r=i("Here is how your headline will look like in Google search results page.",e.env.VUE_APP_TEXTDOMAIN),d=u("core/editor").getPermalink(),h={href:d};return Object(o.createElement)(s,null,Object(o.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-search-preview"},Object(o.createElement)(c,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-search-prevew-wrap"},Object(o.createElement)("p",{className:"aioseo-headline-analyzer-post-url"},Object(o.createElement)("a",a()({},h,{target:"_blank"}),d)),Object(o.createElement)("h4",null,t.data.sentence),Object(o.createElement)("p",null,r))))))}}).call(this,n(10))},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.default=e.exports,e.exports.__esModule=!0,n.apply(this,arguments)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},,,,,,,,,function(e,t,n){n(67),e.exports=n(80)},function(e,t,n){"use strict";n.r(t),function(e){var t=n(26),r=n.n(t),a=n(27),o=n.n(a),i=n(43),s=n.n(i),l=n(0),c=(t=n(9),n(22)),u=n(45),d=n(49),h=n(50),p=n(51),f=n(52),m=n(53),y=n(54),b=n(55),w=n(56);function g(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function v(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?g(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var E=(a=window.wp.i18n).__,O=a.sprintf,j=(i=window.wp.element).Fragment,_=i.useState,T=i.useEffect,x=(a=window.wp.plugins.registerPlugin,(i=window.wp.editPost).PluginSidebar),C=i.PluginSidebarMoreMenuItem,z=window.wp.data.select,k=e.env.VUE_APP_TEXTDOMAIN;a("aioseo-headline-analyzer",{icon:t.a.headline,render:function(){function e(){t?Object(c.b)(window.aioseo.nonce).post(Object(c.c)("analyze_headline")).send({title:t}).then((function(e){var t={dataExist:!1};e.body.analysed&&(t.currentHeadlineData=e.body,t.headlineData=e.body,t.dataExist=!0,void 0!==g.headlineData&&(t.previousHeadlinesData=[g.headlineData].concat(o()(A)))),P(v(v({},g),t))})).catch((function(e){P(v(v({},g),{dataExist:!1})),console.log("Couldn't fetch score for headline:",e)})):P(v(v({},g),{dataExist:!1}))}var t=z("core/editor").getEditedPostAttribute("title");T(e,[]),window.wp.data.subscribe((function(){t!==z("core/editor").getEditedPostAttribute("title")&&(t=z("core/editor").getEditedPostAttribute("title"),Object(c.a)(e,2e3))}));var n=E("SEO Headline Analyzer",k),a=E("Write your post title to see the analyzer data. This Headline Analyzer tool enables you to write irresistible SEO headlines that drive traffic, shares, and rank better in search results.",k),i=_({}),s=r()(i,2),g=s[0],P=s[1],A=void 0!==g.previousHeadlinesData?g.previousHeadlinesData:[],N=O(E("This headline analyzer is part of AIOSEO to help you increase your traffic. %1sAnalyze your site further here%2s →%3s",k),O('<a href="%1$s" className="aioseo-headline-analyzer-link" target="_blank"><span>',window.aioseo.urls.aio.seoAnalysis),"</span>","</a>"),S=document.querySelector(".components-button[aria-label='".concat(n,"'] svg"));S&&(i=document.createElement("span"),g.dataExist&&void 0!==g.currentHeadlineData.score?(s=g.currentHeadlineData.score,S.parentNode.setAttribute("aioseo-button-color",s<40?"red":s<=60?"orange":"green"),S.nextElementSibling?S.nextElementSibling.innerHTML="".concat(s,"/100"):(i.innerHTML="".concat(s,"/100"),S.parentNode.insertBefore(i,S.nextSibling))):(S.parentNode.setAttribute("aioseo-button-color","red"),S.nextElementSibling?S.nextElementSibling.innerHTML="00/100":(i.innerHTML="00/100",S.parentNode.insertBefore(i,S.nextSibling)))),!(S=document.querySelector(".aioseo-headline-analyzer-wrapper"))||(D=S.parentNode.querySelectorAll(".components-panel__header"))&&D.forEach((function(e){(e=e.querySelector('[aria-pressed="true"]'))&&null!==e&&(e.style.display="none")}));var D=function(e){P(v(v({},g),e))};return Object(l.createElement)(j,null,Object(l.createElement)(C,{target:"aioseo-headline-analyzer"},n),Object(l.createElement)(x,{name:"aioseo-headline-analyzer",title:n,className:"aioseo-headline-analyzer-wrapper"},void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(u.a,{analyzer:g,setAnalyzer:D}):Object(l.createElement)("p",{className:"aioseo-headline-analyzer-empty-title-warning"},a),void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed&&0<A.length?Object(l.createElement)(d.a,{analyzer:g,setAnalyzer:D}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(h.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(p.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(f.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(m.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(y.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(b.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(w.a,{data:g.headlineData}):"",Object(l.createElement)("div",{className:"aioseo-headline-analyzer-bottom-notice"},Object(l.createElement)("p",{dangerouslySetInnerHTML:{__html:N}}))))}})}.call(this,n(10))},function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,o=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){s=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw a}}return o}},e.exports.default=e.exports,e.exports.__esModule=!0},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.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(34);e.exports=function(e){if(Array.isArray(e))return r(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){function r(e){if(e)return function(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}(e)}(e.exports=r).prototype.on=r.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},r.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},r.prototype.off=r.prototype.removeListener=r.prototype.removeAllListeners=r.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+e];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var a=0;a<r.length;a++)if((n=r[a])===t||n.fn===t){r.splice(a,1);break}return 0===r.length&&delete this._callbacks["$"+e],this},r.prototype.emit=function(e){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),n=this._callbacks["$"+e],r=1;r<arguments.length;r++)t[r-1]=arguments[r];if(n){r=0;for(var a=(n=n.slice(0)).length;r<a;++r)n[r].apply(this,t)}return this},r.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},r.prototype.hasListeners=function(e){return!!this.listeners(e).length}},function(e,t){((e.exports=a).default=a).stable=i,a.stableStringify=i;var n=[],r=[];function a(e,t,a){for(function e(t,a,o,i){var s;if("object"==typeof t&&null!==t){for(s=0;s<o.length;s++)if(o[s]===t){var l=Object.getOwnPropertyDescriptor(i,a);return void(void 0!==l.get?l.configurable?(Object.defineProperty(i,a,{value:"[Circular]"}),n.push([i,a,t,l])):r.push([t,a]):(i[a]="[Circular]",n.push([i,a,t])))}if(o.push(t),Array.isArray(t))for(s=0;s<t.length;s++)e(t[s],s,o,t);else{var c=Object.keys(t);for(s=0;s<c.length;s++){var u=c[s];e(t[u],u,o,t)}}o.pop()}}(e,"",[],void 0),a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var o=n.pop();4===o.length?Object.defineProperty(o[0],o[1],o[3]):o[0][o[1]]=o[2]}return a}function o(e,t){return e<t?-1:t<e?1:0}function i(e,t,a){for(e=function e(t,a,i,s){var l;if("object"==typeof t&&null!==t){for(l=0;l<i.length;l++)if(i[l]===t){var c=Object.getOwnPropertyDescriptor(s,a);return void(void 0!==c.get?c.configurable?(Object.defineProperty(s,a,{value:"[Circular]"}),n.push([s,a,t,c])):r.push([t,a]):(s[a]="[Circular]",n.push([s,a,t])))}if("function"!=typeof t.toJSON){if(i.push(t),Array.isArray(t))for(l=0;l<t.length;l++)e(t[l],l,i,t);else{var u={},d=Object.keys(t).sort(o);for(l=0;l<d.length;l++){var h=d[l];e(t[h],h,i,t),u[h]=t[h]}if(void 0===s)return u;n.push([s,a,t]),s[a]=u}i.pop()}}}(e,"",[],void 0)||e,a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var i=n.pop();4===i.length?Object.defineProperty(i[0],i[1],i[3]):i[0][i[1]]=i[2]}return a}function s(e){return e=void 0!==e?e:function(e,t){return t},function(t,n){if(0<r.length)for(var a=0;a<r.length;a++){var o=r[a];if(o[1]===t&&o[0]===n){n="[Circular]",r.splice(a,1);break}}return e.call(this,t,n)}}},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a=n(35);function o(e){if(e)return function(e){for(var t in o.prototype)Object.prototype.hasOwnProperty.call(o.prototype,t)&&(e[t]=o.prototype[t]);return e}(e)}(e.exports=o).prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),clearTimeout(this._uploadTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,delete this._uploadTimeoutTimer,this},o.prototype.parse=function(e){return this._parser=e,this},o.prototype.responseType=function(e){return this._responseType=e,this},o.prototype.serialize=function(e){return this._serializer=e,this},o.prototype.timeout=function(e){if(!e||"object"!==r(e))return this._timeout=e,this._responseTimeout=0,this._uploadTimeout=0,this;for(var t in e)if(Object.prototype.hasOwnProperty.call(e,t))switch(t){case"deadline":this._timeout=e.deadline;break;case"response":this._responseTimeout=e.response;break;case"upload":this._uploadTimeout=e.upload;break;default:console.warn("Unknown timeout option",t)}return this},o.prototype.retry=function(e,t){return this._maxRetries=e=(e=0===arguments.length||!0===e?1:e)<=0?0:e,this._retries=0,this._retryCallback=t,this};var i=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];o.prototype._shouldRetry=function(e,t){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var n=this._retryCallback(e,t);if(!0===n)return!0;if(!1===n)return!1}catch(e){console.error(e)}if(t&&t.status&&500<=t.status&&501!==t.status)return!0;if(e){if(e.code&&i.includes(e.code))return!0;if(e.timeout&&"ECONNABORTED"===e.code)return!0;if(e.crossDomain)return!0}return!1},o.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this.timedoutError=null,this._end()},o.prototype.then=function(e,t){var n,r=this;return this._fullfilledPromise||((n=this)._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise((function(e,t){n.on("abort",(function(){var e;r.timedout&&r.timedoutError?t(r.timedoutError):((e=new Error("Aborted")).code="ABORTED",e.status=r.status,e.method=r.method,e.url=r.url,t(e))})),n.end((function(n,r){n?t(n):e(r)}))}))),this._fullfilledPromise.then(e,t)},o.prototype.catch=function(e){return this.then(void 0,e)},o.prototype.use=function(e){return e(this),this},o.prototype.ok=function(e){if("function"!=typeof e)throw new Error("Callback required");return this._okCallback=e,this},o.prototype._isResponseOK=function(e){return!!e&&(this._okCallback?this._okCallback(e):200<=e.status&&e.status<300)},o.prototype.getHeader=o.prototype.get=function(e){return this._header[e.toLowerCase()]},o.prototype.set=function(e,t){if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.set(n,e[n]);return this}return this._header[e.toLowerCase()]=t,this.header[e]=t,this},o.prototype.unset=function(e){return delete this._header[e.toLowerCase()],delete this.header[e],this},o.prototype.field=function(e,t){if(null==e)throw new Error(".field(name, val) name can not be empty");if(this._data)throw new Error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()");if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.field(n,e[n]);return this}if(Array.isArray(t)){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&this.field(e,t[r]);return this}if(null==t)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof t&&(t=String(t)),this._getFormData().append(e,t),this},o.prototype.abort=function(){return this._aborted||(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort")),this},o.prototype._auth=function(e,t,n,r){switch(n.type){case"basic":this.set("Authorization","Basic ".concat(r("".concat(e,":").concat(t))));break;case"auto":this.username=e,this.password=t;break;case"bearer":this.set("Authorization","Bearer ".concat(e))}return this},o.prototype.withCredentials=function(e){return this._withCredentials=e=void 0===e||e,this},o.prototype.redirects=function(e){return this._maxRedirects=e,this},o.prototype.maxResponseSize=function(e){if("number"!=typeof e)throw new TypeError("Invalid argument");return this._maxResponseSize=e,this},o.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},o.prototype.send=function(e){var t=a(e),n=this._header["content-type"];if(this._formData)throw new Error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()");if(t&&!this._data)Array.isArray(e)?this._data=[]:this._isHost(e)||(this._data={});else if(e&&this._data&&this._isHost(this._data))throw new Error("Can't merge these send calls");if(t&&a(this._data))for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(this._data[r]=e[r]);else"string"==typeof e?(n||this.type("form"),n=this._header["content-type"],this._data="application/x-www-form-urlencoded"===n?this._data?"".concat(this._data,"&").concat(e):e:(this._data||"")+e):this._data=e;return!t||this._isHost(e)||n||this.type("json"),this},o.prototype.sortQuery=function(e){return this._sort=void 0===e||e,this},o.prototype._finalizeQueryString=function(){var e,t=this._query.join("&");t&&(this.url+=(this.url.includes("?")?"&":"?")+t),this._query.length=0,!this._sort||0<=(e=this.url.indexOf("?"))&&(t=this.url.slice(e+1).split("&"),"function"==typeof this._sort?t.sort(this._sort):t.sort(),this.url=this.url.slice(0,e)+"?"+t.join("&"))},o.prototype._appendQueryString=function(){console.warn("Unsupported")},o.prototype._timeoutError=function(e,t,n){this._aborted||((e=new Error("".concat(e+t,"ms exceeded"))).timeout=t,e.code="ECONNABORTED",e.errno=n,this.timedout=!0,this.timedoutError=e,this.abort(),this.callback(e))},o.prototype._setTimeouts=function(){var e=this;this._timeout&&!this._timer&&(this._timer=setTimeout((function(){e._timeoutError("Timeout of ",e._timeout,"ETIME")}),this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout((function(){e._timeoutError("Response timeout of ",e._responseTimeout,"ETIMEDOUT")}),this._responseTimeout))}},function(e,t,n){"use strict";var r=n(78);function a(e){if(e)return function(e){for(var t in a.prototype)Object.prototype.hasOwnProperty.call(a.prototype,t)&&(e[t]=a.prototype[t]);return e}(e)}(e.exports=a).prototype.get=function(e){return this.header[e.toLowerCase()]},a.prototype._setHeaderProperties=function(e){var t=e["content-type"]||"";this.type=r.type(t);var n,a=r.params(t);for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(this[n]=a[n]);this.links={};try{e.link&&(this.links=r.parseLinks(e.link))}catch(e){}},a.prototype._setStatusProperties=function(e){var t=e/100|0;this.statusCode=e,this.status=this.statusCode,this.statusType=t,this.info=1==t,this.ok=2==t,this.redirect=3==t,this.clientError=4==t,this.serverError=5==t,this.error=(4==t||5==t)&&this.toError(),this.created=201===e,this.accepted=202===e,this.noContent=204===e,this.badRequest=400===e,this.unauthorized=401===e,this.notAcceptable=406===e,this.forbidden=403===e,this.notFound=404===e,this.unprocessableEntity=422===e}},function(e,t,n){"use strict";t.type=function(e){return e.split(/ *; */).shift()},t.params=function(e){return e.split(/ *; */).reduce((function(e,t){t=(n=t.split(/ *= */)).shift();var n=n.shift();return t&&n&&(e[t]=n),e}),{})},t.parseLinks=function(e){return e.split(/ *, */).reduce((function(e,t){var n=t.split(/ *; */);t=n[0].slice(1,-1);return e[n[1].split(/ *= */)[1].slice(1,-1)]=t,e}),{})},t.cleanHeader=function(e,t){return delete e["content-type"],delete e["content-length"],delete e["transfer-encoding"],delete e.host,t&&(delete e.authorization,delete e.cookie),e}},function(e,t,n){"use strict";function r(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert","disableTLSCerts"].forEach((function(e){r.prototype[e]=function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return this._defaults.push({fn:e,args:n}),this}})),r.prototype._setDefaults=function(e){this._defaults.forEach((function(t){e[t.fn].apply(e,function(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t.args))}))},e.exports=r},function(e,t,n){"use strict";n.r(t)}]);
dist/Lite/assets/js/headline-analyzer.js.gz CHANGED
Binary file
dist/Lite/assets/js/link-format-block-old.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Tuesday, November 9th 2021, 10:20:20 am */
2
  !function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},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 o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},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=82)}({0:function(e,t){e.exports=window.wp.element},12:function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,o=arguments[t];for(n in o)Object.prototype.hasOwnProperty.call(o,n)&&(e[n]=o[n])}return e},n.apply(this,arguments)}e.exports=n},14:function(e,t,n){var o=n(29);e.exports=function(e,t){if(null==e)return{};var n,r=o(e,t);if(Object.getOwnPropertySymbols)for(var i=Object.getOwnPropertySymbols(e),s=0;s<i.length;s++)n=i[s],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}},15:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},16:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}e.exports=function(e,t,o){return t&&n(e.prototype,t),o&&n(e,o),e}},17:function(e,t,n){var o=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&o(e,t)}},18:function(e,t,n){var o=n(31),r=n(3);e.exports=function(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?r(e):t}},19:function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},29:function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,o={},r=Object.keys(e),i=0;i<r.length;i++)n=r[i],0<=t.indexOf(n)||(o[n]=e[n]);return o}},3:function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},30:function(e,t){function n(t,o){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,o)}e.exports=n},31:function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},6:function(e,t){e.exports=window.lodash},7:function(e,t,n){var o;!function(){"use strict";var n={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var o=arguments[t];if(o){var i=typeof o;if("string"==i||"number"==i)e.push(o);else if(Array.isArray(o)&&o.length){var s=r.apply(null,o);s&&e.push(s)}else if("object"==i)for(var a in o)n.call(o,a)&&o[a]&&e.push(a)}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(o=function(){return r}.apply(t,[]))||(e.exports=o)}()},8:function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},82:function(e,t,n){"use strict";n.r(t),n.d(t,"link",(function(){return Et}));var o=n(14),r=n.n(o),i=n(19),s=n.n(i),a=n(15),l=n.n(a),c=(t=n(16),n.n(t)),u=(o=n(3),n.n(o)),p=(i=n(17),n.n(i)),f=(a=n(18),n.n(a)),d=(t=n(8),n.n(t)),h=n(0),g=n(6),v=(o=n(12),n.n(o)),b=(a=(i=window.wp).url).getProtocol,y=a.isValidProtocol,m=a.getAuthority,w=a.isValidAuthority,k=a.getPath,O=a.isValidPath,S=a.getQueryString,j=a.isValidQueryString,L=a.getFragment,R=a.isValidFragment,E=(t=i.i18n).__,C=t.sprintf;function P(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=b(t),!y(e))return;if(Object(g.startsWith)(e,"http")&&!/^https?:\/\/[^\/\s]/i.test(t))return;if(e=m(t),!w(e))return;if((e=k(t))&&!O(e))return;if((e=S(t))&&!j(e))return;if((e=L(t))&&!R(e))return}return!Object(g.startsWith)(t,"#")||R(t)?1:void 0}}}function x(e){var t=e.url,n=e.opensInNewWindow,o=e.noFollow,r=e.sponsored,i=e.ugc,s=e.text;e={type:"core/link",attributes:{url:t}},t=[];return n&&(s=C(E("%s (opens in a new tab)","all-in-one-seo-pack"),s),e.attributes.target="_blank",e.attributes["aria-label"]=s,t.push("noreferrer noopener")),o&&t.push("nofollow"),r&&t.push("sponsored"),i&&t.push("ugc"),0<t.length&&(e.attributes.rel=t.join(" ")),e}o=wp.element.Component;var N=(a=wp.dom).getOffsetParent,_=a.getRectangleFromRange,F=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).state={style:function(){var e=window.getSelection();if(0===e.rangeCount)return{};var t=(n=_(e.getRangeAt(0))).top+n.height,n=n.left+n.width/2;return(e=N(e.anchorNode))&&(t-=(e=e.getBoundingClientRect()).top,n-=e.left),{top:t,left:n}}()},e}return c()(n,[{key:"render",value:function(){var e=this.props.children,t=this.state.style;return Object(h.createElement)("div",{className:"editor-format-toolbar__selection-position",style:t},e)}}]),n}(o),T=(i=n(7),n.n(i));function W(e){return(W="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function A(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}function I(e,t){var n=e["page".concat(t?"Y":"X","Offset")];t="scroll".concat(t?"Top":"Left");return"number"==typeof n||"number"!=typeof(n=(e=e.document).documentElement[t])&&(n=e.body[t]),n}function D(e){return I(e)}function V(e){return I(e,!0)}function B(e){var t,n,o,r=(n=(r=(t=e).ownerDocument).body,o=r&&r.documentElement,t=(r=t.getBoundingClientRect()).left,r=r.top,{left:t-=o.clientLeft||n.clientLeft||0,top:r-=o.clientTop||n.clientTop||0});e=(e=e.ownerDocument).defaultView||e.parentWindow;return r.left+=D(e),r.top+=V(e),r}var M,U=new RegExp("^(".concat(/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,")(?!px)[a-z%]+$"),"i"),K=/^(top|right|bottom|left)$/,H="currentStyle",z="runtimeStyle",q="left";function Q(e,t){for(var n=0;n<e.length;n++)t(e[n])}function $(e){return"border-box"===M(e,"boxSizing")}"undefined"!=typeof window&&(M=window.getComputedStyle?function(e,t,n){var o="",r=e.ownerDocument;return(e=n||r.defaultView.getComputedStyle(e,null))?e.getPropertyValue(t)||e[t]:o}:function(e,t){var n,o,r,i=e[H]&&e[H][t];return U.test(i)&&!K.test(t)&&(o=(n=e.style)[q],r=e[z][q],e[z][q]=e[H][q],n[q]="fontSize"===t?"1em":i||0,i=n.pixelLeft+"px",n[q]=o,e[z][q]=r),""===i?"auto":i});var G=["margin","border","padding"];function X(e,t,n){for(var o,r,i=0,s=0;s<t.length;s++)if(o=t[s])for(r=0;r<n.length;r++){var a="border"===o?"".concat(o+n[r],"Width"):o+n[r];i+=parseFloat(M(e,a))||0}return i}function Y(e){return null!=e&&e==e.window}var J={};function Z(e,t,n){if(Y(e))return"width"===t?J.viewportWidth(e):J.viewportHeight(e);if(9===e.nodeType)return"width"===t?J.docWidth(e):J.docHeight(e);var o="width"===t?["Left","Right"]:["Top","Bottom"],r="width"===t?e.offsetWidth:e.offsetHeight,i=(M(e),$(e)),s=0;return(null==r||r<=0)&&(r=void 0,(null==(s=M(e,t))||Number(s)<0)&&(s=e.style[t]||0),s=parseFloat(s)||0),t=void 0!==r||i,r=r||s,-1===(n=void 0===n?i?1:-1:n)?t?r-X(e,["border","padding"],o):s:t?(t=2===n?-X(e,["border"],o):X(e,["margin"],o),r+(1===n?0:t)):s+X(e,G.slice(n),o)}Q(["Width","Height"],(function(e){J["doc".concat(e)]=function(t){return t=t.document,Math.max(t.documentElement["scroll".concat(e)],t.body["scroll".concat(e)],J["viewport".concat(e)](t))},J["viewport".concat(e)]=function(t){var n="client".concat(e),o=t.document,r=o.body;t=o.documentElement[n];return"CSS1Compat"===o.compatMode&&t||r&&r[n]||t}}));var ee={position:"absolute",visibility:"hidden",display:"block"};function te(e){var t,n=arguments;return 0!==e.offsetWidth?t=Z.apply(void 0,n):function(e,t,n){var o,r={},i=e.style;for(o in t)t.hasOwnProperty(o)&&(r[o]=i[o],i[o]=t[o]);for(o in n.call(e),t)t.hasOwnProperty(o)&&(i[o]=r[o])}(e,ee,(function(){t=Z.apply(void 0,n)})),t}function ne(e,t,n){var o;n=n;if("object"!==W(t))return void 0!==n?("number"==typeof n&&(n+="px"),void(e.style[t]=n)):M(e,t);for(o in t)t.hasOwnProperty(o)&&ne(e,o,t[o])}Q(["width","height"],(function(e){var t=e.charAt(0).toUpperCase()+e.slice(1);J["outer".concat(t)]=function(t,n){return t&&te(t,e,n?0:1)};var n="width"===e?["Left","Right"]:["Top","Bottom"];J[e]=function(t,o){return void 0===o?t&&te(t,e,-1):t?(M(t),$(t)&&(o+=X(t,["padding","border"],n)),ne(t,e,o)):void 0}}));var oe=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?A(n,!0).forEach((function(t){var o,r;o=e,t=n[r=t],r in o?Object.defineProperty(o,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):o[r]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):A(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({getWindow:function(e){return(e=e.ownerDocument||e).defaultView||e.parentWindow},offset:function(e,t){if(void 0===t)return B(e);!function(e,t){"static"===ne(e,"position")&&(e.style.position="relative");var n,o,r=B(e),i={};for(o in t)t.hasOwnProperty(o)&&(n=parseFloat(ne(e,o))||0,i[o]=n+t[o]-r[o]);ne(e,i)}(e,t)},isWindow:Y,each:Q,css:ne,clone:function(e){var t,n={};for(t in e)e.hasOwnProperty(t)&&(n[t]=e[t]);if(e.overflow)for(var o in e)e.hasOwnProperty(o)&&(n.overflow[o]=e.overflow[o]);return n},scrollLeft:function(e,t){if(Y(e)){if(void 0===t)return D(e);window.scrollTo(t,V(e))}else{if(void 0===t)return e.scrollLeft;e.scrollLeft=t}},scrollTop:function(e,t){if(Y(e)){if(void 0===t)return V(e);window.scrollTo(D(e),t)}else{if(void 0===t)return e.scrollTop;e.scrollTop=t}},viewportWidth:0,viewportHeight:0},J);function re(e){return e.stopPropagation()}var ie=(a=(t=window.wp).i18n).__,se=a.sprintf,ae=a._n,le=(n=(o=t.element).Component,o.createRef),ce=t.htmlEntities.decodeEntities,ue=(i=t.keycodes).UP,pe=i.DOWN,fe=i.ENTER,de=i.TAB,he=(a=t.components).Spinner,ge=(o=a.withSpokenMessages,a.Popover),ve=(i=t.compose.withInstanceId,t.apiFetch),be=t.url.addQueryArgs,ye=o(i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(e){var o=e.autocompleteRef;return l()(this,n),(e=t.apply(this,arguments)).onChange=e.onChange.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.autocompleteRef=o||le(),e.inputRef=le(),e.updateSuggestions=Object(g.throttle)(e.updateSuggestions.bind(u()(e)),200),e.suggestionNodes=[],e.state={posts:[],showSuggestions:!1,selectedSuggestion:null},e}return c()(n,[{key:"componentDidUpdate",value:function(){var e=this,t=(n=this.state).showSuggestions,n=n.selectedSuggestion;t&&null!==n&&!this.scrollingIntoView&&(this.scrollingIntoView=!0,function(e,t,n){n=n||{},9===t.nodeType&&(t=oe.getWindow(t));var o,r,i,s,a,l,c=n.allowHorizontalScroll,u=n.onlyScrollIfNeeded,p=n.alignWithTop,f=n.alignWithLeft,d=n.offsetTop||0,h=n.offsetLeft||0,g=n.offsetBottom||0,v=n.offsetRight||0,b=(c=void 0===c||c,oe.isWindow(t)),y=oe.offset(e);n=oe.outerHeight(e),e=oe.outerWidth(e);b?(i=t,l=oe.height(i),a=oe.width(i),s={left:oe.scrollLeft(i),top:oe.scrollTop(i)},o={left:y.left-s.left-h,top:y.top-s.top-d},r={left:y.left+e-(s.left+a)+v,top:y.top+n-(s.top+l)+g},i=s):(a=oe.offset(t),l=t.clientHeight,s=t.clientWidth,i={left:t.scrollLeft,top:t.scrollTop},o={left:y.left-(a.left+(parseFloat(oe.css(t,"borderLeftWidth"))||0))-h,top:y.top-(a.top+(parseFloat(oe.css(t,"borderTopWidth"))||0))-d},r={left:y.left+e-(a.left+s+(parseFloat(oe.css(t,"borderRightWidth"))||0))+v,top:y.top+n-(a.top+l+(parseFloat(oe.css(t,"borderBottomWidth"))||0))+g}),o.top<0||0<r.top?!0===p||!1!==p&&o.top<0?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top):u||((p=void 0===p||!!p)?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top)),c&&(o.left<0||0<r.left?!0===f||!1!==f&&o.left<0?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left):u||((f=void 0===f||!!f)?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left)))}(this.suggestionNodes[n],this.autocompleteRef.current,{onlyScrollIfNeeded:!0}),setTimeout((function(){e.scrollingIntoView=!1}),100))}},{key:"componentWillUnmount",value:function(){delete this.suggestionsRequest}},{key:"bindSuggestionNode",value:function(e){var t=this;return function(n){t.suggestionNodes[e]=n}}},{key:"updateSuggestions",value:function(e){var t,n=this;e.length<2||/^https?:/.test(e)?this.setState({showSuggestions:!1,selectedSuggestion:null,loading:!1}):(this.setState({showSuggestions:!0,selectedSuggestion:null,loading:!0}),(t=ve({path:be("/wp/v2/search",{search:e,per_page:20,type:"post"})})).then((function(e){n.suggestionsRequest===t&&(n.setState({posts:e,loading:!1}),e.length?n.props.debouncedSpeak(se(ae("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",e.length),e.length),"assertive"):n.props.debouncedSpeak(ie("No results.","all-in-one-seo-pack"),"assertive"))})).catch((function(){n.suggestionsRequest===t&&n.setState({loading:!1})})),this.suggestionsRequest=t)}},{key:"onChange",value:function(e){e=e.target.value,this.props.onChange(e),this.updateSuggestions(e)}},{key:"onKeyDown",value:function(e){var t=(r=this.state).showSuggestions,n=r.selectedSuggestion,o=r.posts,r=r.loading;if(t&&o.length&&!r){var i=this.state.posts[this.state.selectedSuggestion];switch(e.keyCode){case ue:e.stopPropagation(),e.preventDefault();var s=n?n-1:o.length-1;this.setState({selectedSuggestion:s});break;case pe:e.stopPropagation(),e.preventDefault(),s=null===n||n===o.length-1?0:n+1,this.setState({selectedSuggestion:s});break;case de:null!==this.state.selectedSuggestion&&(this.selectLink(i),this.props.speak(ie("Link selected.","all-in-one-seo-pack")));break;case fe:null!==this.state.selectedSuggestion&&(e.stopPropagation(),this.selectLink(i))}}else switch(e.keyCode){case ue:0!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(0,0));break;case pe:this.props.value.length!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(this.props.value.length,this.props.value.length))}}},{key:"selectLink",value:function(e){this.props.onChange(e.url,e),this.setState({selectedSuggestion:null,showSuggestions:!1})}},{key:"handleOnClick",value:function(e){this.selectLink(e),this.inputRef.current.focus()}},{key:"render",value:function(){var e=this,t=void 0===(l=(s=this.props).value)?"":l,n=void 0===(i=s.autoFocus)||i,o=s.instanceId,r=s.className,i=(l=this.state).showSuggestions,s=l.posts,a=l.selectedSuggestion,l=l.loading;return Object(h.createElement)("div",{className:T()("editor-url-input block-editor-url-input",r)},Object(h.createElement)("input",{autoFocus:n,type:"text","aria-label":ie("URL","all-in-one-seo-pack"),required:!0,value:t,onChange:this.onChange,onInput:re,placeholder:ie("Paste URL or type to search","all-in-one-seo-pack"),onKeyDown:this.onKeyDown,role:"combobox","aria-expanded":i,"aria-autocomplete":"list","aria-owns":"editor-url-input-suggestions-".concat(o),"aria-activedescendant":null!==a?"editor-url-input-suggestion-".concat(o,"-").concat(a):void 0,ref:this.inputRef}),l&&Object(h.createElement)(he,null),i&&!!s.length&&Object(h.createElement)(ge,{position:"bottom",noArrow:!0,focusOnMount:!1},Object(h.createElement)("div",{className:T()("editor-url-input__suggestions","block-editor-url-input__suggestions","".concat(r,"__suggestions")),id:"editor-url-input-suggestions-".concat(o),ref:this.autocompleteRef,role:"listbox"},s.map((function(t,n){return Object(h.createElement)("button",{key:t.id,role:"option",tabIndex:"-1",id:"editor-url-input-suggestion-".concat(o,"-").concat(n),ref:e.bindSuggestionNode(n),className:T()("editor-url-input__suggestion block-editor-url-input__suggestion",{"is-selected":n===a}),onClick:function(){return e.handleOnClick(t)},"aria-selected":n===a},ce(t.title)||ie("(no title)","all-in-one-seo-pack"))})))))}}]),n}(n))),me=["autocompleteRef","className","onChangeInputValue","value"],we=(a=window.wp).i18n.__,ke=a.components.IconButton;function Oe(e){var t=e.autocompleteRef,n=e.className,o=e.onChangeInputValue,i=e.value;e=r()(e,me);return Object(h.createElement)("form",v()({className:T()("block-editor-url-popover__link-editor",n)},e),Object(h.createElement)(ye,{value:i,onChange:o,autocompleteRef:t}),Object(h.createElement)(ke,{icon:"editor-break",label:we("Apply","all-in-one-seo-pack"),type:"submit"}))}var Se=["className","linkClassName","onEditLinkClick","url","urlLabel"],je=(t=window.wp).i18n.__,Le=(o=t.components).ExternalLink,Re=o.IconButton,Ee=(i=t.url).safeDecodeURI,Ce=i.filterURLForDisplay;function Pe(e){var t=e.url,n=e.urlLabel;e=e.className,e=T()(e,"block-editor-url-popover__link-viewer-url");return t?Object(h.createElement)(Le,{className:e,href:t},n||Ce(Ee(t))):Object(h.createElement)("span",{className:e})}function xe(e){var t=e.className,n=e.linkClassName,o=e.onEditLinkClick,i=e.url,s=e.urlLabel;e=r()(e,Se);return Object(h.createElement)("div",v()({className:T()("block-editor-url-popover__link-viewer",t)},e),Object(h.createElement)(Pe,{url:i,urlLabel:s,className:n}),o&&Object(h.createElement)(Re,{icon:"edit",label:je("Edit","all-in-one-seo-pack"),onClick:o}))}var Ne=["isActive","addingLink","value","resetOnMount"];function _e(e){return e.stopPropagation()}var Fe=(n=window.wp).i18n.__,Te=(o=(a=n.element).Component,a.createRef),We=a.useMemo,Ae=a.Fragment,Ie=(t=n.components).ToggleControl,De=(i=t.withSpokenMessages,(a=n.keycodes).LEFT),Ve=a.RIGHT,Be=a.UP,Me=a.DOWN,Ue=a.BACKSPACE,Ke=a.ENTER,He=a.ESCAPE,ze=n.dom.getRectangleFromRange,qe=n.url.prependHTTP,Qe=(t=n.richText).create,$e=t.insert,Ge=t.isCollapsed,Xe=t.applyFormat,Ye=t.getTextContent,Je=t.slice,Ze=n.blockEditor.URLPopover;function et(e,t){return e.addingLink||t.editLink}function tt(e){var t=e.isActive,n=e.addingLink,o=e.value,i=e.resetOnMount;e=r()(e,Ne);return(o=We((function(){var e;if(e=0<(e=window.getSelection()).rangeCount?e.getRangeAt(0):null){if(n)return ze(e);for(var t=(t=e.startContainer).nextElementSibling||t;t.nodeType!==window.Node.ELEMENT_NODE;)t=t.parentNode;return(e=t.closest("a"))?e.getBoundingClientRect():void 0}}),[t,n,o.start,o.end]))?(i(o),Object(h.createElement)(Ze,v()({anchorRect:o},e))):null}var nt=i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).editLink=e.editLink.bind(u()(e)),e.submitLink=e.submitLink.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.onChangeInputValue=e.onChangeInputValue.bind(u()(e)),e.setLinkTarget=e.setLinkTarget.bind(u()(e)),e.setNoFollow=e.setNoFollow.bind(u()(e)),e.setSponsored=e.setSponsored.bind(u()(e)),e.setUgc=e.setUgc.bind(u()(e)),e.onFocusOutside=e.onFocusOutside.bind(u()(e)),e.resetState=e.resetState.bind(u()(e)),e.autocompleteRef=Te(),e.resetOnMount=e.resetOnMount.bind(u()(e)),e.state={opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,inputValue:"",anchorRect:!1},e}return c()(n,[{key:"onKeyDown",value:function(e){-1<[De,Me,Ve,Be,Ue,Ke].indexOf(e.keyCode)&&e.stopPropagation(),-1<[He].indexOf(e.keyCode)&&this.resetState()}},{key:"onChangeInputValue",value:function(e){this.setState({inputValue:e})}},{key:"setLinkTarget",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({opensInNewWindow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:e,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setNoFollow",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({noFollow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:e,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setSponsored",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({sponsored:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:e,ugc:this.state.ugc,text:t}))))}},{key:"setUgc",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({ugc:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:e,text:t}))))}},{key:"editLink",value:function(e){this.setState({editLink:!0}),e.preventDefault()}},{key:"submitLink",value:function(e){var t=(l=this.props).isActive,n=l.value,o=l.onChange,r=l.speak,i=(c=this.state).inputValue,s=c.opensInNewWindow,a=c.noFollow,l=c.sponsored,c=c.ugc;c=x({url:i=qe(i),opensInNewWindow:s,noFollow:a,sponsored:l,ugc:c,text:Ye(Je(n))});e.preventDefault(),Ge(n)&&!t?(e=Xe(Qe({text:i}),c,0,i.length),o($e(n,e))):o(Xe(n,c)),this.resetState(),P(i)?r(Fe(t?"Link edited.":"Link inserted.","all-in-one-seo-pack"),"assertive"):r(Fe("Warning: the link has been inserted but could have errors. Please test it.","all-in-one-seo-pack"),"assertive")}},{key:"onFocusOutside",value:function(){var e=this.autocompleteRef.current;e&&e.contains(event.target)||this.resetState()}},{key:"resetState",value:function(){this.props.stopAddingLink(),this.setState({editLink:!1})}},{key:"resetOnMount",value:function(e){this.state.anchorRect!==e&&this.setState({opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,anchorRect:e})}},{key:"render",value:function(){var e=this,t=(u=this.props).isActive,n=u.activeAttributes.url,o=u.addingLink,r=u.value;if(!t&&!o)return null;var i=(u=this.state).inputValue,s=u.opensInNewWindow,a=u.noFollow,l=u.sponsored,c=u.ugc,u=et(this.props,this.state);return Object(h.createElement)(F,{key:"".concat(r.start).concat(r.end)},Object(h.createElement)(tt,{resetOnMount:this.resetOnMount,value:r,isActive:t,addingLink:o,onFocusOutside:this.onFocusOutside,onClose:function(){i||e.resetState()},focusOnMount:!!u&&"firstElement",renderSettings:function(){return Object(h.createElement)(Ae,null,Object(h.createElement)(Ie,{label:Fe("Open in New Tab","all-in-one-seo-pack"),checked:s,onChange:e.setLinkTarget}),Object(h.createElement)(Ie,{label:Fe('Add "nofollow" to link',"all-in-one-seo-pack"),checked:a,onChange:e.setNoFollow}),Object(h.createElement)(Ie,{label:Fe('Add "sponsored" to link',"all-in-one-seo-pack"),checked:l,onChange:e.setSponsored}),Object(h.createElement)(Ie,{label:Fe('Add "ugc" to link',"all-in-one-seo-pack"),checked:c,onChange:e.setUgc}))}},u?Object(h.createElement)(Oe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",value:i,onChangeInputValue:this.onChangeInputValue,onKeyDown:this.onKeyDown,onKeyPress:_e,onSubmit:this.submitLink,autocompleteRef:this.autocompleteRef}):Object(h.createElement)(xe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",onKeyPress:_e,url:n,onEditLinkClick:this.editLink,linkClassName:P(qe(n))?void 0:"has-invalid-link"})))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=(i=e.activeAttributes).url,o=i.target,r=i.rel,i="_blank"===o;o={};return et(e,t)||(n!==t.inputValue&&(o.inputValue=n),i!==t.opensInNewWindow&&(o.opensInNewWindow=i),"string"==typeof r&&(n=r.split(" ").includes("nofollow"),i=r.split(" ").includes("sponsored"),r=r.split(" ").includes("ugc"),n!==t.noFollow&&(o.noFollow=n),i!==t.sponsored&&(o.sponsored=i),r!==t.ugc&&(o.ugc=r))),o}}]),n}(o));function ot(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}var rt=(a=window.wp).i18n.__,it=(n=(t=a.element).Component,t.Fragment),st=(i=a.data).select,at=(o=i.withSelect,(t=a.blockEditor).BlockControls),lt=t.RichTextToolbarButton,ct=t.RichTextShortcut,ut=(i=a.richText).getTextContent,pt=i.applyFormat,ft=i.removeFormat,dt=i.slice,ht=a.url.isURL,gt=(t=a.components).Toolbar,vt=(i=t.withSpokenMessages,a=(t=a.compose).compose,t=t.ifCondition,"core/link"),bt=rt("Add Link","all-in-one-seo-pack"),yt=/^(mailto:)?[a-z0-9._%+-]+@[a-z0-9][a-z0-9.-]*\.[a-z]{2,63}$/i,mt=(n=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).isEmail=e.isEmail.bind(u()(e)),e.addLink=e.addLink.bind(u()(e)),e.stopAddingLink=e.stopAddingLink.bind(u()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(u()(e)),e.state={addingLink:!1},e}return c()(n,[{key:"isEmail",value:function(e){return yt.test(e)}},{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=ut(dt(t)))&&ht(e)?n(pt(t,{type:vt,attributes:{url:e}})):e&&this.isEmail(e)?n(pt(t,{type:vt,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1})}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak,o=e;Object(g.map)(["core/link"],(function(e){o=ft(o,e)})),t(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ot(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ot(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},o)),n(rt("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(n=this.props).activeAttributes,t=n.onChange,n=(o=this.props).isActive,o=o.value;return Object(h.createElement)(it,null,Object(h.createElement)(at,null,Object(h.createElement)(gt,{className:"editorskit-components-toolbar"},Object(h.createElement)(ct,{type:"primary",character:"k",onUse:this.addLink}),Object(h.createElement)(ct,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),n&&Object(h.createElement)(lt,{name:"link",icon:"editor-unlink",title:rt("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:n,shortcutType:"primaryShift",shortcutCharacter:"k"}),!n&&Object(h.createElement)(lt,{name:"link",icon:"admin-links",title:bt,onClick:this.addLink,isActive:n,shortcutType:"primary",shortcutCharacter:"k"}),Object(h.createElement)(nt,{addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:n,activeAttributes:e,value:o,onChange:t}))))}}]),n}(n),t=a(o((function(){return{isDisabled:st("core/edit-post").isFeatureActive("disableEditorsKitLinkFormats")}})),t((function(e){return!e.isDisabled})),i)(n),["name"]),wt=(i=wp.i18n.__,(n=wp.richText).registerFormatType),kt=n.unregisterFormatType,Ot=n.applyFormat,St=n.isCollapsed,jt=wp.htmlEntities.decodeEntities,Lt=wp.url.isURL,Rt="core/link",Et={name:Rt,title:i("Link","all-in-one-seo-pack"),tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return St(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Lt(t)?Ot(e,{type:Rt,attributes:{url:jt(t)}}):e)},edit:t};[Et].forEach((function(e){var t=e.name;e=r()(e,mt);t&&(kt("core/link"),wt(t,e))}))}});
1
+ /*! ! built on Tuesday, November 16th 2021, 3:05:17 pm */
2
  !function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},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 o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},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=82)}({0:function(e,t){e.exports=window.wp.element},12:function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,o=arguments[t];for(n in o)Object.prototype.hasOwnProperty.call(o,n)&&(e[n]=o[n])}return e},n.apply(this,arguments)}e.exports=n},14:function(e,t,n){var o=n(29);e.exports=function(e,t){if(null==e)return{};var n,r=o(e,t);if(Object.getOwnPropertySymbols)for(var i=Object.getOwnPropertySymbols(e),s=0;s<i.length;s++)n=i[s],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}},15:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},16:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}e.exports=function(e,t,o){return t&&n(e.prototype,t),o&&n(e,o),e}},17:function(e,t,n){var o=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&o(e,t)}},18:function(e,t,n){var o=n(31),r=n(3);e.exports=function(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?r(e):t}},19:function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},29:function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,o={},r=Object.keys(e),i=0;i<r.length;i++)n=r[i],0<=t.indexOf(n)||(o[n]=e[n]);return o}},3:function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},30:function(e,t){function n(t,o){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,o)}e.exports=n},31:function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},6:function(e,t){e.exports=window.lodash},7:function(e,t,n){var o;!function(){"use strict";var n={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var o=arguments[t];if(o){var i=typeof o;if("string"==i||"number"==i)e.push(o);else if(Array.isArray(o)&&o.length){var s=r.apply(null,o);s&&e.push(s)}else if("object"==i)for(var a in o)n.call(o,a)&&o[a]&&e.push(a)}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(o=function(){return r}.apply(t,[]))||(e.exports=o)}()},8:function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},82:function(e,t,n){"use strict";n.r(t),n.d(t,"link",(function(){return Et}));var o=n(14),r=n.n(o),i=n(19),s=n.n(i),a=n(15),l=n.n(a),c=(t=n(16),n.n(t)),u=(o=n(3),n.n(o)),p=(i=n(17),n.n(i)),f=(a=n(18),n.n(a)),d=(t=n(8),n.n(t)),h=n(0),g=n(6),v=(o=n(12),n.n(o)),b=(a=(i=window.wp).url).getProtocol,y=a.isValidProtocol,m=a.getAuthority,w=a.isValidAuthority,k=a.getPath,O=a.isValidPath,S=a.getQueryString,j=a.isValidQueryString,L=a.getFragment,R=a.isValidFragment,E=(t=i.i18n).__,C=t.sprintf;function P(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=b(t),!y(e))return;if(Object(g.startsWith)(e,"http")&&!/^https?:\/\/[^\/\s]/i.test(t))return;if(e=m(t),!w(e))return;if((e=k(t))&&!O(e))return;if((e=S(t))&&!j(e))return;if((e=L(t))&&!R(e))return}return!Object(g.startsWith)(t,"#")||R(t)?1:void 0}}}function x(e){var t=e.url,n=e.opensInNewWindow,o=e.noFollow,r=e.sponsored,i=e.ugc,s=e.text;e={type:"core/link",attributes:{url:t}},t=[];return n&&(s=C(E("%s (opens in a new tab)","all-in-one-seo-pack"),s),e.attributes.target="_blank",e.attributes["aria-label"]=s,t.push("noreferrer noopener")),o&&t.push("nofollow"),r&&t.push("sponsored"),i&&t.push("ugc"),0<t.length&&(e.attributes.rel=t.join(" ")),e}o=wp.element.Component;var N=(a=wp.dom).getOffsetParent,_=a.getRectangleFromRange,F=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).state={style:function(){var e=window.getSelection();if(0===e.rangeCount)return{};var t=(n=_(e.getRangeAt(0))).top+n.height,n=n.left+n.width/2;return(e=N(e.anchorNode))&&(t-=(e=e.getBoundingClientRect()).top,n-=e.left),{top:t,left:n}}()},e}return c()(n,[{key:"render",value:function(){var e=this.props.children,t=this.state.style;return Object(h.createElement)("div",{className:"editor-format-toolbar__selection-position",style:t},e)}}]),n}(o),T=(i=n(7),n.n(i));function W(e){return(W="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function A(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}function I(e,t){var n=e["page".concat(t?"Y":"X","Offset")];t="scroll".concat(t?"Top":"Left");return"number"==typeof n||"number"!=typeof(n=(e=e.document).documentElement[t])&&(n=e.body[t]),n}function D(e){return I(e)}function V(e){return I(e,!0)}function B(e){var t,n,o,r=(n=(r=(t=e).ownerDocument).body,o=r&&r.documentElement,t=(r=t.getBoundingClientRect()).left,r=r.top,{left:t-=o.clientLeft||n.clientLeft||0,top:r-=o.clientTop||n.clientTop||0});e=(e=e.ownerDocument).defaultView||e.parentWindow;return r.left+=D(e),r.top+=V(e),r}var M,U=new RegExp("^(".concat(/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,")(?!px)[a-z%]+$"),"i"),K=/^(top|right|bottom|left)$/,H="currentStyle",z="runtimeStyle",q="left";function Q(e,t){for(var n=0;n<e.length;n++)t(e[n])}function $(e){return"border-box"===M(e,"boxSizing")}"undefined"!=typeof window&&(M=window.getComputedStyle?function(e,t,n){var o="",r=e.ownerDocument;return(e=n||r.defaultView.getComputedStyle(e,null))?e.getPropertyValue(t)||e[t]:o}:function(e,t){var n,o,r,i=e[H]&&e[H][t];return U.test(i)&&!K.test(t)&&(o=(n=e.style)[q],r=e[z][q],e[z][q]=e[H][q],n[q]="fontSize"===t?"1em":i||0,i=n.pixelLeft+"px",n[q]=o,e[z][q]=r),""===i?"auto":i});var G=["margin","border","padding"];function X(e,t,n){for(var o,r,i=0,s=0;s<t.length;s++)if(o=t[s])for(r=0;r<n.length;r++){var a="border"===o?"".concat(o+n[r],"Width"):o+n[r];i+=parseFloat(M(e,a))||0}return i}function Y(e){return null!=e&&e==e.window}var J={};function Z(e,t,n){if(Y(e))return"width"===t?J.viewportWidth(e):J.viewportHeight(e);if(9===e.nodeType)return"width"===t?J.docWidth(e):J.docHeight(e);var o="width"===t?["Left","Right"]:["Top","Bottom"],r="width"===t?e.offsetWidth:e.offsetHeight,i=(M(e),$(e)),s=0;return(null==r||r<=0)&&(r=void 0,(null==(s=M(e,t))||Number(s)<0)&&(s=e.style[t]||0),s=parseFloat(s)||0),t=void 0!==r||i,r=r||s,-1===(n=void 0===n?i?1:-1:n)?t?r-X(e,["border","padding"],o):s:t?(t=2===n?-X(e,["border"],o):X(e,["margin"],o),r+(1===n?0:t)):s+X(e,G.slice(n),o)}Q(["Width","Height"],(function(e){J["doc".concat(e)]=function(t){return t=t.document,Math.max(t.documentElement["scroll".concat(e)],t.body["scroll".concat(e)],J["viewport".concat(e)](t))},J["viewport".concat(e)]=function(t){var n="client".concat(e),o=t.document,r=o.body;t=o.documentElement[n];return"CSS1Compat"===o.compatMode&&t||r&&r[n]||t}}));var ee={position:"absolute",visibility:"hidden",display:"block"};function te(e){var t,n=arguments;return 0!==e.offsetWidth?t=Z.apply(void 0,n):function(e,t,n){var o,r={},i=e.style;for(o in t)t.hasOwnProperty(o)&&(r[o]=i[o],i[o]=t[o]);for(o in n.call(e),t)t.hasOwnProperty(o)&&(i[o]=r[o])}(e,ee,(function(){t=Z.apply(void 0,n)})),t}function ne(e,t,n){var o;n=n;if("object"!==W(t))return void 0!==n?("number"==typeof n&&(n+="px"),void(e.style[t]=n)):M(e,t);for(o in t)t.hasOwnProperty(o)&&ne(e,o,t[o])}Q(["width","height"],(function(e){var t=e.charAt(0).toUpperCase()+e.slice(1);J["outer".concat(t)]=function(t,n){return t&&te(t,e,n?0:1)};var n="width"===e?["Left","Right"]:["Top","Bottom"];J[e]=function(t,o){return void 0===o?t&&te(t,e,-1):t?(M(t),$(t)&&(o+=X(t,["padding","border"],n)),ne(t,e,o)):void 0}}));var oe=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?A(n,!0).forEach((function(t){var o,r;o=e,t=n[r=t],r in o?Object.defineProperty(o,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):o[r]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):A(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({getWindow:function(e){return(e=e.ownerDocument||e).defaultView||e.parentWindow},offset:function(e,t){if(void 0===t)return B(e);!function(e,t){"static"===ne(e,"position")&&(e.style.position="relative");var n,o,r=B(e),i={};for(o in t)t.hasOwnProperty(o)&&(n=parseFloat(ne(e,o))||0,i[o]=n+t[o]-r[o]);ne(e,i)}(e,t)},isWindow:Y,each:Q,css:ne,clone:function(e){var t,n={};for(t in e)e.hasOwnProperty(t)&&(n[t]=e[t]);if(e.overflow)for(var o in e)e.hasOwnProperty(o)&&(n.overflow[o]=e.overflow[o]);return n},scrollLeft:function(e,t){if(Y(e)){if(void 0===t)return D(e);window.scrollTo(t,V(e))}else{if(void 0===t)return e.scrollLeft;e.scrollLeft=t}},scrollTop:function(e,t){if(Y(e)){if(void 0===t)return V(e);window.scrollTo(D(e),t)}else{if(void 0===t)return e.scrollTop;e.scrollTop=t}},viewportWidth:0,viewportHeight:0},J);function re(e){return e.stopPropagation()}var ie=(a=(t=window.wp).i18n).__,se=a.sprintf,ae=a._n,le=(n=(o=t.element).Component,o.createRef),ce=t.htmlEntities.decodeEntities,ue=(i=t.keycodes).UP,pe=i.DOWN,fe=i.ENTER,de=i.TAB,he=(a=t.components).Spinner,ge=(o=a.withSpokenMessages,a.Popover),ve=(i=t.compose.withInstanceId,t.apiFetch),be=t.url.addQueryArgs,ye=o(i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(e){var o=e.autocompleteRef;return l()(this,n),(e=t.apply(this,arguments)).onChange=e.onChange.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.autocompleteRef=o||le(),e.inputRef=le(),e.updateSuggestions=Object(g.throttle)(e.updateSuggestions.bind(u()(e)),200),e.suggestionNodes=[],e.state={posts:[],showSuggestions:!1,selectedSuggestion:null},e}return c()(n,[{key:"componentDidUpdate",value:function(){var e=this,t=(n=this.state).showSuggestions,n=n.selectedSuggestion;t&&null!==n&&!this.scrollingIntoView&&(this.scrollingIntoView=!0,function(e,t,n){n=n||{},9===t.nodeType&&(t=oe.getWindow(t));var o,r,i,s,a,l,c=n.allowHorizontalScroll,u=n.onlyScrollIfNeeded,p=n.alignWithTop,f=n.alignWithLeft,d=n.offsetTop||0,h=n.offsetLeft||0,g=n.offsetBottom||0,v=n.offsetRight||0,b=(c=void 0===c||c,oe.isWindow(t)),y=oe.offset(e);n=oe.outerHeight(e),e=oe.outerWidth(e);b?(i=t,l=oe.height(i),a=oe.width(i),s={left:oe.scrollLeft(i),top:oe.scrollTop(i)},o={left:y.left-s.left-h,top:y.top-s.top-d},r={left:y.left+e-(s.left+a)+v,top:y.top+n-(s.top+l)+g},i=s):(a=oe.offset(t),l=t.clientHeight,s=t.clientWidth,i={left:t.scrollLeft,top:t.scrollTop},o={left:y.left-(a.left+(parseFloat(oe.css(t,"borderLeftWidth"))||0))-h,top:y.top-(a.top+(parseFloat(oe.css(t,"borderTopWidth"))||0))-d},r={left:y.left+e-(a.left+s+(parseFloat(oe.css(t,"borderRightWidth"))||0))+v,top:y.top+n-(a.top+l+(parseFloat(oe.css(t,"borderBottomWidth"))||0))+g}),o.top<0||0<r.top?!0===p||!1!==p&&o.top<0?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top):u||((p=void 0===p||!!p)?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top)),c&&(o.left<0||0<r.left?!0===f||!1!==f&&o.left<0?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left):u||((f=void 0===f||!!f)?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left)))}(this.suggestionNodes[n],this.autocompleteRef.current,{onlyScrollIfNeeded:!0}),setTimeout((function(){e.scrollingIntoView=!1}),100))}},{key:"componentWillUnmount",value:function(){delete this.suggestionsRequest}},{key:"bindSuggestionNode",value:function(e){var t=this;return function(n){t.suggestionNodes[e]=n}}},{key:"updateSuggestions",value:function(e){var t,n=this;e.length<2||/^https?:/.test(e)?this.setState({showSuggestions:!1,selectedSuggestion:null,loading:!1}):(this.setState({showSuggestions:!0,selectedSuggestion:null,loading:!0}),(t=ve({path:be("/wp/v2/search",{search:e,per_page:20,type:"post"})})).then((function(e){n.suggestionsRequest===t&&(n.setState({posts:e,loading:!1}),e.length?n.props.debouncedSpeak(se(ae("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",e.length),e.length),"assertive"):n.props.debouncedSpeak(ie("No results.","all-in-one-seo-pack"),"assertive"))})).catch((function(){n.suggestionsRequest===t&&n.setState({loading:!1})})),this.suggestionsRequest=t)}},{key:"onChange",value:function(e){e=e.target.value,this.props.onChange(e),this.updateSuggestions(e)}},{key:"onKeyDown",value:function(e){var t=(r=this.state).showSuggestions,n=r.selectedSuggestion,o=r.posts,r=r.loading;if(t&&o.length&&!r){var i=this.state.posts[this.state.selectedSuggestion];switch(e.keyCode){case ue:e.stopPropagation(),e.preventDefault();var s=n?n-1:o.length-1;this.setState({selectedSuggestion:s});break;case pe:e.stopPropagation(),e.preventDefault(),s=null===n||n===o.length-1?0:n+1,this.setState({selectedSuggestion:s});break;case de:null!==this.state.selectedSuggestion&&(this.selectLink(i),this.props.speak(ie("Link selected.","all-in-one-seo-pack")));break;case fe:null!==this.state.selectedSuggestion&&(e.stopPropagation(),this.selectLink(i))}}else switch(e.keyCode){case ue:0!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(0,0));break;case pe:this.props.value.length!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(this.props.value.length,this.props.value.length))}}},{key:"selectLink",value:function(e){this.props.onChange(e.url,e),this.setState({selectedSuggestion:null,showSuggestions:!1})}},{key:"handleOnClick",value:function(e){this.selectLink(e),this.inputRef.current.focus()}},{key:"render",value:function(){var e=this,t=void 0===(l=(s=this.props).value)?"":l,n=void 0===(i=s.autoFocus)||i,o=s.instanceId,r=s.className,i=(l=this.state).showSuggestions,s=l.posts,a=l.selectedSuggestion,l=l.loading;return Object(h.createElement)("div",{className:T()("editor-url-input block-editor-url-input",r)},Object(h.createElement)("input",{autoFocus:n,type:"text","aria-label":ie("URL","all-in-one-seo-pack"),required:!0,value:t,onChange:this.onChange,onInput:re,placeholder:ie("Paste URL or type to search","all-in-one-seo-pack"),onKeyDown:this.onKeyDown,role:"combobox","aria-expanded":i,"aria-autocomplete":"list","aria-owns":"editor-url-input-suggestions-".concat(o),"aria-activedescendant":null!==a?"editor-url-input-suggestion-".concat(o,"-").concat(a):void 0,ref:this.inputRef}),l&&Object(h.createElement)(he,null),i&&!!s.length&&Object(h.createElement)(ge,{position:"bottom",noArrow:!0,focusOnMount:!1},Object(h.createElement)("div",{className:T()("editor-url-input__suggestions","block-editor-url-input__suggestions","".concat(r,"__suggestions")),id:"editor-url-input-suggestions-".concat(o),ref:this.autocompleteRef,role:"listbox"},s.map((function(t,n){return Object(h.createElement)("button",{key:t.id,role:"option",tabIndex:"-1",id:"editor-url-input-suggestion-".concat(o,"-").concat(n),ref:e.bindSuggestionNode(n),className:T()("editor-url-input__suggestion block-editor-url-input__suggestion",{"is-selected":n===a}),onClick:function(){return e.handleOnClick(t)},"aria-selected":n===a},ce(t.title)||ie("(no title)","all-in-one-seo-pack"))})))))}}]),n}(n))),me=["autocompleteRef","className","onChangeInputValue","value"],we=(a=window.wp).i18n.__,ke=a.components.IconButton;function Oe(e){var t=e.autocompleteRef,n=e.className,o=e.onChangeInputValue,i=e.value;e=r()(e,me);return Object(h.createElement)("form",v()({className:T()("block-editor-url-popover__link-editor",n)},e),Object(h.createElement)(ye,{value:i,onChange:o,autocompleteRef:t}),Object(h.createElement)(ke,{icon:"editor-break",label:we("Apply","all-in-one-seo-pack"),type:"submit"}))}var Se=["className","linkClassName","onEditLinkClick","url","urlLabel"],je=(t=window.wp).i18n.__,Le=(o=t.components).ExternalLink,Re=o.IconButton,Ee=(i=t.url).safeDecodeURI,Ce=i.filterURLForDisplay;function Pe(e){var t=e.url,n=e.urlLabel;e=e.className,e=T()(e,"block-editor-url-popover__link-viewer-url");return t?Object(h.createElement)(Le,{className:e,href:t},n||Ce(Ee(t))):Object(h.createElement)("span",{className:e})}function xe(e){var t=e.className,n=e.linkClassName,o=e.onEditLinkClick,i=e.url,s=e.urlLabel;e=r()(e,Se);return Object(h.createElement)("div",v()({className:T()("block-editor-url-popover__link-viewer",t)},e),Object(h.createElement)(Pe,{url:i,urlLabel:s,className:n}),o&&Object(h.createElement)(Re,{icon:"edit",label:je("Edit","all-in-one-seo-pack"),onClick:o}))}var Ne=["isActive","addingLink","value","resetOnMount"];function _e(e){return e.stopPropagation()}var Fe=(n=window.wp).i18n.__,Te=(o=(a=n.element).Component,a.createRef),We=a.useMemo,Ae=a.Fragment,Ie=(t=n.components).ToggleControl,De=(i=t.withSpokenMessages,(a=n.keycodes).LEFT),Ve=a.RIGHT,Be=a.UP,Me=a.DOWN,Ue=a.BACKSPACE,Ke=a.ENTER,He=a.ESCAPE,ze=n.dom.getRectangleFromRange,qe=n.url.prependHTTP,Qe=(t=n.richText).create,$e=t.insert,Ge=t.isCollapsed,Xe=t.applyFormat,Ye=t.getTextContent,Je=t.slice,Ze=n.blockEditor.URLPopover;function et(e,t){return e.addingLink||t.editLink}function tt(e){var t=e.isActive,n=e.addingLink,o=e.value,i=e.resetOnMount;e=r()(e,Ne);return(o=We((function(){var e;if(e=0<(e=window.getSelection()).rangeCount?e.getRangeAt(0):null){if(n)return ze(e);for(var t=(t=e.startContainer).nextElementSibling||t;t.nodeType!==window.Node.ELEMENT_NODE;)t=t.parentNode;return(e=t.closest("a"))?e.getBoundingClientRect():void 0}}),[t,n,o.start,o.end]))?(i(o),Object(h.createElement)(Ze,v()({anchorRect:o},e))):null}var nt=i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).editLink=e.editLink.bind(u()(e)),e.submitLink=e.submitLink.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.onChangeInputValue=e.onChangeInputValue.bind(u()(e)),e.setLinkTarget=e.setLinkTarget.bind(u()(e)),e.setNoFollow=e.setNoFollow.bind(u()(e)),e.setSponsored=e.setSponsored.bind(u()(e)),e.setUgc=e.setUgc.bind(u()(e)),e.onFocusOutside=e.onFocusOutside.bind(u()(e)),e.resetState=e.resetState.bind(u()(e)),e.autocompleteRef=Te(),e.resetOnMount=e.resetOnMount.bind(u()(e)),e.state={opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,inputValue:"",anchorRect:!1},e}return c()(n,[{key:"onKeyDown",value:function(e){-1<[De,Me,Ve,Be,Ue,Ke].indexOf(e.keyCode)&&e.stopPropagation(),-1<[He].indexOf(e.keyCode)&&this.resetState()}},{key:"onChangeInputValue",value:function(e){this.setState({inputValue:e})}},{key:"setLinkTarget",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({opensInNewWindow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:e,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setNoFollow",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({noFollow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:e,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setSponsored",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({sponsored:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:e,ugc:this.state.ugc,text:t}))))}},{key:"setUgc",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({ugc:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:e,text:t}))))}},{key:"editLink",value:function(e){this.setState({editLink:!0}),e.preventDefault()}},{key:"submitLink",value:function(e){var t=(l=this.props).isActive,n=l.value,o=l.onChange,r=l.speak,i=(c=this.state).inputValue,s=c.opensInNewWindow,a=c.noFollow,l=c.sponsored,c=c.ugc;c=x({url:i=qe(i),opensInNewWindow:s,noFollow:a,sponsored:l,ugc:c,text:Ye(Je(n))});e.preventDefault(),Ge(n)&&!t?(e=Xe(Qe({text:i}),c,0,i.length),o($e(n,e))):o(Xe(n,c)),this.resetState(),P(i)?r(Fe(t?"Link edited.":"Link inserted.","all-in-one-seo-pack"),"assertive"):r(Fe("Warning: the link has been inserted but could have errors. Please test it.","all-in-one-seo-pack"),"assertive")}},{key:"onFocusOutside",value:function(){var e=this.autocompleteRef.current;e&&e.contains(event.target)||this.resetState()}},{key:"resetState",value:function(){this.props.stopAddingLink(),this.setState({editLink:!1})}},{key:"resetOnMount",value:function(e){this.state.anchorRect!==e&&this.setState({opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,anchorRect:e})}},{key:"render",value:function(){var e=this,t=(u=this.props).isActive,n=u.activeAttributes.url,o=u.addingLink,r=u.value;if(!t&&!o)return null;var i=(u=this.state).inputValue,s=u.opensInNewWindow,a=u.noFollow,l=u.sponsored,c=u.ugc,u=et(this.props,this.state);return Object(h.createElement)(F,{key:"".concat(r.start).concat(r.end)},Object(h.createElement)(tt,{resetOnMount:this.resetOnMount,value:r,isActive:t,addingLink:o,onFocusOutside:this.onFocusOutside,onClose:function(){i||e.resetState()},focusOnMount:!!u&&"firstElement",renderSettings:function(){return Object(h.createElement)(Ae,null,Object(h.createElement)(Ie,{label:Fe("Open in New Tab","all-in-one-seo-pack"),checked:s,onChange:e.setLinkTarget}),Object(h.createElement)(Ie,{label:Fe('Add "nofollow" to link',"all-in-one-seo-pack"),checked:a,onChange:e.setNoFollow}),Object(h.createElement)(Ie,{label:Fe('Add "sponsored" to link',"all-in-one-seo-pack"),checked:l,onChange:e.setSponsored}),Object(h.createElement)(Ie,{label:Fe('Add "ugc" to link',"all-in-one-seo-pack"),checked:c,onChange:e.setUgc}))}},u?Object(h.createElement)(Oe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",value:i,onChangeInputValue:this.onChangeInputValue,onKeyDown:this.onKeyDown,onKeyPress:_e,onSubmit:this.submitLink,autocompleteRef:this.autocompleteRef}):Object(h.createElement)(xe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",onKeyPress:_e,url:n,onEditLinkClick:this.editLink,linkClassName:P(qe(n))?void 0:"has-invalid-link"})))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=(i=e.activeAttributes).url,o=i.target,r=i.rel,i="_blank"===o;o={};return et(e,t)||(n!==t.inputValue&&(o.inputValue=n),i!==t.opensInNewWindow&&(o.opensInNewWindow=i),"string"==typeof r&&(n=r.split(" ").includes("nofollow"),i=r.split(" ").includes("sponsored"),r=r.split(" ").includes("ugc"),n!==t.noFollow&&(o.noFollow=n),i!==t.sponsored&&(o.sponsored=i),r!==t.ugc&&(o.ugc=r))),o}}]),n}(o));function ot(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}var rt=(a=window.wp).i18n.__,it=(n=(t=a.element).Component,t.Fragment),st=(i=a.data).select,at=(o=i.withSelect,(t=a.blockEditor).BlockControls),lt=t.RichTextToolbarButton,ct=t.RichTextShortcut,ut=(i=a.richText).getTextContent,pt=i.applyFormat,ft=i.removeFormat,dt=i.slice,ht=a.url.isURL,gt=(t=a.components).Toolbar,vt=(i=t.withSpokenMessages,a=(t=a.compose).compose,t=t.ifCondition,"core/link"),bt=rt("Add Link","all-in-one-seo-pack"),yt=/^(mailto:)?[a-z0-9._%+-]+@[a-z0-9][a-z0-9.-]*\.[a-z]{2,63}$/i,mt=(n=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).isEmail=e.isEmail.bind(u()(e)),e.addLink=e.addLink.bind(u()(e)),e.stopAddingLink=e.stopAddingLink.bind(u()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(u()(e)),e.state={addingLink:!1},e}return c()(n,[{key:"isEmail",value:function(e){return yt.test(e)}},{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=ut(dt(t)))&&ht(e)?n(pt(t,{type:vt,attributes:{url:e}})):e&&this.isEmail(e)?n(pt(t,{type:vt,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1})}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak,o=e;Object(g.map)(["core/link"],(function(e){o=ft(o,e)})),t(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ot(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ot(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},o)),n(rt("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(n=this.props).activeAttributes,t=n.onChange,n=(o=this.props).isActive,o=o.value;return Object(h.createElement)(it,null,Object(h.createElement)(at,null,Object(h.createElement)(gt,{className:"editorskit-components-toolbar"},Object(h.createElement)(ct,{type:"primary",character:"k",onUse:this.addLink}),Object(h.createElement)(ct,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),n&&Object(h.createElement)(lt,{name:"link",icon:"editor-unlink",title:rt("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:n,shortcutType:"primaryShift",shortcutCharacter:"k"}),!n&&Object(h.createElement)(lt,{name:"link",icon:"admin-links",title:bt,onClick:this.addLink,isActive:n,shortcutType:"primary",shortcutCharacter:"k"}),Object(h.createElement)(nt,{addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:n,activeAttributes:e,value:o,onChange:t}))))}}]),n}(n),t=a(o((function(){return{isDisabled:st("core/edit-post").isFeatureActive("disableEditorsKitLinkFormats")}})),t((function(e){return!e.isDisabled})),i)(n),["name"]),wt=(i=wp.i18n.__,(n=wp.richText).registerFormatType),kt=n.unregisterFormatType,Ot=n.applyFormat,St=n.isCollapsed,jt=wp.htmlEntities.decodeEntities,Lt=wp.url.isURL,Rt="core/link",Et={name:Rt,title:i("Link","all-in-one-seo-pack"),tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return St(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Lt(t)?Ot(e,{type:Rt,attributes:{url:jt(t)}}):e)},edit:t};[Et].forEach((function(e){var t=e.name;e=r()(e,mt);t&&(kt("core/link"),wt(t,e))}))}});
dist/Lite/assets/js/link-format-block-old.js.gz CHANGED
Binary file
dist/Lite/assets/js/link-format-block.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Tuesday, November 9th 2021, 10:20:20 am */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.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 o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));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=81)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},,function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.lodash},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"==c||"number"==c)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"==c)for(var l in r)n.call(r,l)&&r[l]&&e.push(l)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},,,function(e,t){e.exports=window.wp.richText},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},n.apply(this,arguments)}e.exports=n},function(e,t){e.exports=window.wp.primitives},function(e,t,n){var r=n(29);e.exports=function(e,t){if(null==e)return{};var n,o=r(e,t);if(Object.getOwnPropertySymbols)for(var c=Object.getOwnPropertySymbols(e),i=0;i<c.length;i++)n=c[i],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n]);return o}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(31),o=n(3);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t,n){var r=n(60),o=n(61),c=n(62),i=n(64);e.exports=function(e,t){return r(e)||o(e,t)||c(e,t)||i()}},function(e,t){e.exports=window.regeneratorRuntime},,function(e,t){e.exports=window.wp.blockEditor},function(e,t){function n(e,t,n,r,o,c,i){try{var l=e[c](i),a=l.value}catch(e){return void n(e)}l.done?t(a):Promise.resolve(a).then(r,o)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(o,c){var i=e.apply(t,r);function l(e){n(i,o,c,l,a,"next",e)}function a(e){n(i,o,c,l,a,"throw",e)}l(void 0)}))}}},,,,,function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},,,,,,,function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.data},function(e,t){e.exports=window.wp.dom},function(e,t){e.exports=window.wp.editor},,,,,,,,,,,,,,,,,,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,o=!1,c=void 0;try{for(var i,l=e[Symbol.iterator]();!(r=(i=l.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==l.return||l.return()}finally{if(o)throw c}}return n}}},function(e,t,n){var r=n(63);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"Map"===(n="Object"===n&&e.constructor?e.constructor.name: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";n.r(t);var r=n(14),o=n.n(r),c=(t=n(15),n.n(t)),i=(r=n(16),n.n(r)),l=(t=n(3),n.n(t)),a=(r=n(17),n.n(r)),s=(t=n(18),n.n(t)),u=(r=n(8),n.n(r)),p=n(0),b=n(1),f=n(5),d=n(11),m=n(4),O=n(23),g=n(38),h=(t=n(13),Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.3h-.7l1.6-3.5-.9-.4-3.9 8.5H9v1.5h2l-1.3 2.8H8.4c-2 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7H10V7.3H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H9l-1.4 3.2.9.4 5.7-12.5h1.4c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.9 0 5.2-2.3 5.2-5.2 0-2.9-2.4-5.2-5.2-5.2z"}))),j=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"})),v=(r=n(19),n.n(r)),y=(r=n(20),n.n(r)),k=n(6),w=(r=n(12),n.n(r)),_=(r=n(24),n.n(r)),x=(r=n(21),n.n(r)),E=(r=n(7),n.n(r)),S=n(39),P=n(40),C=n(41);function T(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function N(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?T(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):T(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var L=[{id:"opensInNewTab",title:Object(b.__)("Open in new tab"),type:"ToggleControl"},{id:"nofollow",title:Object(b.__)('Add "nofollow" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"sponsored",title:Object(b.__)('Add "sponsored" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"ugc",title:Object(b.__)('Add "ugc" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"title",title:Object(b.__)("Add title attribute to link","all-in-one-seo-pack"),type:"TextControl"}],R=function(e){var t=e.value,n=e.onChange,r=void 0===n?k.noop:n;return(e=void 0===(e=e.settings)?L:e)&&e.length?(e=e.map((function(e){if("TextControl"!==e.type)return"ToggleControl"===e.type?Object(p.createElement)(f.ToggleControl,{className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:(n=e,function(e){r(N(N({},t),{},v()({},n.id,e)))}),checked:!!t&&!!t[e.id]}):null;var n,o=Object(p.useState)(),c=y()(o,2),i=(o=c[0],c[1]);return Object(p.createElement)(f.TextControl,{"data-aioseop":"true",className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:function(e){i(e)},onBlur:function(n){r(N(N({},t),{},v()({},e.id,n.target.value)))},value:o||t[e.id]})})),Object(p.createElement)("fieldset",{className:"block-editor-link-control__settings"},Object(p.createElement)(f.VisuallyHidden,{as:"legend"},Object(b.__)("Currently selected link settings")),e)):null};function H(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function A(e){var t=e.icon,n=void 0===(n=e.size)?24:n;e=function(e,t){if(null==e)return{};var n,r=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols)for(var o=Object.getOwnPropertySymbols(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}(e,["icon","size"]);return Object(p.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?H(Object(n),!0).forEach((function(t){var r,o;r=e,t=n[o=t],o in r?Object.defineProperty(r,o,{value:t,enumerable:!0,configurable:!0,writable:!0}):r[o]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):H(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:n,height:n},e))}var I=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M9 0C4.03 0 0 4.03 0 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zM1.11 9.68h2.51c.04.91.167 1.814.38 2.7H1.84c-.403-.85-.65-1.764-.73-2.7zm8.57-5.4V1.19c.964.366 1.756 1.08 2.22 2 .205.347.386.708.54 1.08l-2.76.01zm3.22 1.35c.232.883.37 1.788.41 2.7H9.68v-2.7h3.22zM8.32 1.19v3.09H5.56c.154-.372.335-.733.54-1.08.462-.924 1.255-1.64 2.22-2.01zm0 4.44v2.7H4.7c.04-.912.178-1.817.41-2.7h3.21zm-4.7 2.69H1.11c.08-.936.327-1.85.73-2.7H4c-.213.886-.34 1.79-.38 2.7zM4.7 9.68h3.62v2.7H5.11c-.232-.883-.37-1.788-.41-2.7zm3.63 4v3.09c-.964-.366-1.756-1.08-2.22-2-.205-.347-.386-.708-.54-1.08l2.76-.01zm1.35 3.09v-3.04h2.76c-.154.372-.335.733-.54 1.08-.464.92-1.256 1.634-2.22 2v-.04zm0-4.44v-2.7h3.62c-.04.912-.178 1.817-.41 2.7H9.68zm4.71-2.7h2.51c-.08.936-.327 1.85-.73 2.7H14c.21-.87.337-1.757.38-2.65l.01-.05zm0-1.35c-.046-.894-.176-1.78-.39-2.65h2.16c.403.85.65 1.764.73 2.7l-2.5-.05zm1-4H13.6c-.324-.91-.793-1.76-1.39-2.52 1.244.56 2.325 1.426 3.14 2.52h.04zm-9.6-2.52c-.597.76-1.066 1.61-1.39 2.52H2.65c.815-1.094 1.896-1.96 3.14-2.52zm-3.15 12H4.4c.324.91.793 1.76 1.39 2.52-1.248-.567-2.33-1.445-3.14-2.55l-.01.03zm9.56 2.52c.597-.76 1.066-1.61 1.39-2.52h1.76c-.82 1.08-1.9 1.933-3.14 2.48l-.01.04z"})),F=function(e){var t=e.itemProps,n=e.suggestion,r=void 0!==(c=e.isSelected)&&c,o=e.onClick,c=void 0!==(c=e.isURL)&&c;e=void 0===(e=e.searchTerm)?"":e;return Object(p.createElement)(f.Button,w()({},t,{onClick:o,className:E()("block-editor-link-control__search-item",{"is-selected":r,"is-url":c,"is-entity":!c})}),c&&Object(p.createElement)(A,{className:"block-editor-link-control__search-item-icon",icon:I}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createElement)(f.TextHighlight,{text:n.title,highlight:e})),Object(p.createElement)("span",{"aria-hidden":!c,className:"block-editor-link-control__search-item-info"},!c&&(Object(m.safeDecodeURI)(n.url)||""),c&&Object(b.__)("Press ENTER to add this link"))),n.type&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-type"},n.type))},z=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M16 4h2v9H7v3l-5-4 5-4v3h9V4z"})),D=n(42),M=function(e){var t=e.value,n=e.onChange,r=e.onSelect,o=e.renderSuggestions,c=e.fetchSuggestions,i=e.showInitialSuggestions,l=e.errorMessage,a=(e=Object(p.useState)(),(e=y()(e,2))[0]),s=e[1];return Object(p.createElement)("form",{onSubmit:function(e){e.preventDefault(),r(a||{url:t})}},Object(p.createElement)("div",{className:"block-editor-link-control__search-input-wrapper"},Object(p.createElement)(D.URLInput,{className:"block-editor-link-control__search-input",value:t,onChange:function(e,t){n(e),s(t)},placeholder:Object(b.__)("Search or type url"),__experimentalRenderSuggestions:o,__experimentalFetchLinkSuggestions:c,__experimentalHandleURLSuggestions:!0,__experimentalShowInitialSuggestions:i}),Object(p.createElement)("div",{className:"block-editor-link-control__search-actions"},Object(p.createElement)(f.Button,{type:"submit",label:Object(b.__)("Submit"),icon:z,className:"block-editor-link-control__search-submit"}))),l&&Object(p.createElement)(f.Notice,{className:"block-editor-link-control__search-error",status:"error",isDismissible:!1},l))},V=function(e){var t=e.searchTerm,n=e.onClick,r=e.itemProps;e=e.isSelected;return t?Object(p.createElement)(f.Button,w()({},r,{className:E()("block-editor-link-control__search-create block-editor-link-control__search-item",{"is-selected":e}),onClick:n}),Object(p.createElement)(f.Icon,{className:"block-editor-link-control__search-item-icon",icon:"insert"}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createInterpolateElement)(Object(b.sprintf)(Object(b.__)("New page: <mark>%s</mark>"),t),{mark:Object(p.createElement)("mark",null)})))):null};function U(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function B(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?U(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):U(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var W=(n=Object(f.createSlotFill)("BlockEditorLinkControlViewer")).Slot,G=(n=n.Fill,"__CREATE__"),Q=function(e){var t=!1;return{promise:new Promise((function(n,r){e.then((function(e){return t?r({isCanceled:!0}):n(e)}),(function(e){return r(t?{isCanceled:!0}:e)}))})),cancel:function(){t=!0}}};function q(e){var t=e.value,n=e.settings,r=void 0===(j=e.onChange)?k.noop:j,o=void 0===(K=e.showSuggestions)||K,c=e.showInitialSuggestions,i=e.forceIsEditingLink,l=e.createSuggestion,a=Object(p.useRef)(),s=Object(p.useRef)(),u=Object(p.useRef)(),d=Object(S.useInstanceId)(q),O=Object(p.useState)(t&&t.url||""),g=(N=y()(O,2))[0],h=N[1],j=Object(p.useState)(void 0!==i?i:!t||!t.url),v=(K=y()(j,2))[0],T=K[1],N=(e=Object(p.useState)(!1),(O=y()(e,2))[0]),L=O[1],H=(j=Object(p.useState)(null),e=(K=y()(j,2))[0],K[1]),A=Object(p.useRef)(!1),I=Object(P.useSelect)((function(e){return{fetchSearchSuggestions:(0,e("core/block-editor").getSettings)().__experimentalFetchLinkSuggestions}}),[]).fetchSearchSuggestions;O=t&&Object(m.filterURLForDisplay)(Object(m.safeDecodeURI)(t.url))||"";function z(e){var t="URL",n=Object(m.getProtocol)(e)||"";return n.includes("mailto")&&(t="mailto"),n.includes("tel")&&(t="tel"),Object(k.startsWith)(e,"#")&&(t="internal"),Promise.resolve([{id:e,title:e,url:"URL"===t?Object(m.prependHTTP)(e):e,type:t}])}Object(p.useEffect)((function(){void 0!==i&&i!==v&&T(i)}),[i]),Object(p.useEffect)((function(){A.current&&u.current&&!u.current.contains(document.activeElement)&&(C.focus.focusable.find(u.current)[0]||u.current).focus(),A.current=!1}),[v]),Object(p.useEffect)((function(){return function(){a.current&&a.current.cancel(),s.current&&s.current.cancel()}}),[]);var D=function(){var e=_()(x.a.mark((function e(t,n){var r,o;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([I(t,B({},n.isInitialSuggestions?{perPage:3}:{})),z(t)]);case 2:return r=e.sent,o=!t.includes(" "),r=o&&!n.isInitialSuggestions?r[0].concat(r[1]):r[0],e.abrupt("return",$(t)?r:r.concat({title:t,url:t,type:G}));case 6:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}();function U(){A.current=!!u.current&&u.current.contains(document.activeElement),T(!1)}function $(e){var t=Object(k.startsWith)(e,"#");return Object(m.isURL)(e)||e&&e.includes("www.")||t}j=Object(p.useCallback)((function(e,t){return o?$(e)?z(e):D(e,t):Promise.resolve([])}),[z,I]);var J=function(){var e=_()(x.a.mark((function e(t){var n;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return L(!0),H(null),e.prev=2,s.current=Q(Promise.resolve(l(t))),e.next=6,s.current.promise;case 6:n=e.sent,L(!1),n?(r(n),U()):T(!0),e.next=18;break;case 11:if(e.prev=11,e.t0=e.catch(2),e.t0&&e.t0.isCanceled)return e.abrupt("return");e.next=15;break;case 15:H(e.t0.message||Object(b.__)("An unknown error occurred during creation. Please try again.")),L(!1),T(!0);case 18:case"end":return e.stop()}}),e,null,[[2,11]])})));return function(t){return e.apply(this,arguments)}}(),K=Object(p.useMemo)((function(){return{url:t&&t.url}}),[t&&t.url]);return Object(p.createElement)("div",{tabIndex:-1,ref:u,className:"block-editor-link-control"},N&&Object(p.createElement)("div",{className:"block-editor-link-control__loading"},Object(p.createElement)(f.Spinner,null)," ",Object(b.__)("Creating"),"…"),(v||!t)&&!N&&Object(p.createElement)(M,{value:g,onChange:function(){h(0<arguments.length&&void 0!==arguments[0]?arguments[0]:"")},onSelect:function(){var e=_()(x.a.mark((function e(n){return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(G===n.type)return e.next=3,J(g);e.next=5;break;case 3:e.next=7;break;case 5:!function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};T(!1),r(B(B({},t),e))}(n,t),U();case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),renderSuggestions:o?function(e){var n=e.suggestionsListProps,o=e.buildSuggestionItemProps,c=e.suggestions,i=e.selectedSuggestion,a=e.isLoading,s=e.isInitialSuggestions,u=E()("block-editor-link-control__search-results",{"is-loading":a}),m=["url","mailto","tel","internal"],O=(e=1===c.length&&m.includes(c[0].type.toLowerCase()),l&&!e&&!s);a="block-editor-link-control-search-results-label-".concat(d),e=s?Object(b.__)("Recently updated"):Object(b.sprintf)(Object(b.__)('Search results for "%s"'),g),e=Object(p.createElement)(s?p.Fragment:f.VisuallyHidden,{},Object(p.createElement)("span",{className:"block-editor-link-control__search-results-label",id:a},e));return Object(p.createElement)("div",{className:"block-editor-link-control__search-results-wrapper"},e,Object(p.createElement)("div",w()({},n,{className:u,"aria-labelledby":a}),c.map((function(e,n){return O&&G===e.type?Object(p.createElement)(V,{searchTerm:g,onClick:_()(x.a.mark((function t(){return x.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,J(e.title);case 2:case"end":return t.stop()}}),t)}))),key:e.type,itemProps:o(e,n),isSelected:n===i}):G===e.type?null:Object(p.createElement)(F,{key:"".concat(e.id,"-").concat(e.type),itemProps:o(e,n),suggestion:e,index:n,onClick:function(){U(),r(B(B({},t),e))},isSelected:n===i,isURL:m.includes(e.type.toLowerCase()),searchTerm:g})}))))}:null,fetchSuggestions:j,showInitialSuggestions:c,errorMessage:e}),t&&!v&&!N&&Object(p.createElement)(p.Fragment,null,Object(p.createElement)("div",{"aria-label":Object(b.__)("Currently selected"),"aria-selected":"true",className:E()("block-editor-link-control__search-item",{"is-current":!0})},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)(f.ExternalLink,{className:"block-editor-link-control__search-item-title",href:t.url},t&&t.title||O),t&&t.title&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-info"},O)),Object(p.createElement)(f.Button,{isSecondary:!0,onClick:function(){return T(!0)},className:"block-editor-link-control__search-item-action"},Object(b.__)("Edit")),Object(p.createElement)(W,{fillProps:K}))),Object(p.createElement)(R,{key:"aioseop-settings-drawer",value:t,settings:n,onChange:r}))}q.ViewerFill=n;var $=q;function J(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function K(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?J(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):J(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var X=Object(f.withSpokenMessages)((function(e){var t=e.isActive,n=e.activeAttributes,r=e.addingLink,o=e.value,c=e.onChange,i=e.speak,l=e.stopAddingLink,a=Object(p.useMemo)(k.uniqueId,[r]),s=(e=Object(p.useState)(),(e=y()(e,2))[0]),u=e[1],O=(e=Object(p.useMemo)((function(){var e=window.getSelection();if(e.rangeCount){if(e=e.getRangeAt(0),r&&!t)return e;for(var n=(n=e.startContainer).nextElementSibling||n;n.nodeType!==window.Node.ELEMENT_NODE;)n=n.parentNode;return n.closest("a")}}),[r,o.start,o.end]),K({url:n.url,opensInNewTab:"_blank"===n.target,nofollow:!!n.rel&&n.rel.includes("nofollow"),sponsored:!!n.rel&&n.rel.includes("sponsored"),ugc:!!n.rel&&n.rel.includes("ugc"),title:n.title},s));return Object(p.createElement)(f.Popover,{key:a,anchorRef:e,focusOnMount:!!r&&"firstElement",onClose:l,position:"bottom center"},Object(p.createElement)($,{value:O,onChange:function(e){e=K(K({},s),e);var n,r,a,p,f,g,h,j=(O.opensInNewTab!==e.opensInNewTab||O.sponsored!==e.sponsored||O.nofollow!==e.nofollow||O.ugc!==e.ugc)&&O.url===e.url,v=j&&void 0===e.url;u(v?e:void 0),v||(a=(r={url:n=Object(m.prependHTTP)(e.url),opensInNewWindow:e.opensInNewTab,nofollow:e.nofollow,sponsored:e.sponsored,ugc:e.ugc,title:e.title}).url,p=r.opensInNewWindow,f=r.nofollow,g=r.sponsored,h=r.ugc,v=r.title,r={type:"core/link",attributes:{url:a}},a=[],p&&(r.attributes.target="_blank",a.push("noreferrer noopener")),f&&a.push("nofollow"),g&&a.push("sponsored"),h&&a.push("ugc"),0<a.length&&(r.attributes.rel=a.join(" ")),v&&(r.attributes.title=v),r=r,Object(d.isCollapsed)(o)&&!t?(e=e.title||n,e=Object(d.applyFormat)(Object(d.create)({text:e}),r,0,e.length),c(Object(d.insert)(o,e))):c(Object(d.applyFormat)(o,r)),j||l(),function(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=Object(m.getProtocol)(t),!Object(m.isValidProtocol)(e))return;if(Object(k.startsWith)(e,"http")&&!/^https?:\/\/[^/\s]/i.test(t))return;if(e=Object(m.getAuthority)(t),!Object(m.isValidAuthority)(e))return;if((e=Object(m.getPath)(t))&&!Object(m.isValidPath)(e))return;if((e=Object(m.getQueryString)(t))&&!Object(m.isValidQueryString)(e))return;if((e=Object(m.getFragment)(t))&&!Object(m.isValidFragment)(e))return}return!Object(k.startsWith)(t,"#")||Object(m.isValidFragment)(t)?1:void 0}}}(n)?i(t?Object(b.__)("Link edited.","all-in-one-seo-pack"):Object(b.__)("Link inserted.","all-in-one-seo-pack"),"assertive"):i(Object(b.__)("Warning: the link has been inserted but may have errors. Please test it.","all-in-one-seo-pack"),"assertive"))},forceIsEditingLink:r}))}));var Y="core/link",Z=Object(b.__)("Link","all-in-one-seo-pack"),ee={name:Y,title:Z,tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel",title:"title"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return Object(d.isCollapsed)(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Object(m.isURL)(t)?(window.console.log("Created link:\n\n",t),Object(d.applyFormat)(e,{type:Y,attributes:{url:Object(g.decodeEntities)(t)}})):e)},edit:Object(f.withSpokenMessages)(function(e){a()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=u()(e);return r=t?(n=u()(this).constructor,Reflect.construct(r,arguments,n)):r.apply(this,arguments),s()(this,r)}}(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).addLink=e.addLink.bind(l()(e)),e.stopAddingLink=e.stopAddingLink.bind(l()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(l()(e)),e.state={addingLink:!1},e}return i()(n,[{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=Object(d.getTextContent)(Object(d.slice)(t)))&&Object(m.isURL)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:e}})):e&&Object(m.isEmail)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1}),this.props.onFocus()}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak;t(Object(d.removeFormat)(e,Y)),n(Object(b.__)("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(r=this.props).isActive,t=r.activeAttributes,n=r.value,r=r.onChange;return Object(p.createElement)(p.Fragment,null,Object(p.createElement)(O.RichTextShortcut,{type:"primary",character:"k",onUse:this.addLink}),Object(p.createElement)(O.RichTextShortcut,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:h,title:Object(b.__)("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:e,shortcutType:"primaryShift",shortcutCharacter:"k"}),!e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:j,title:Z,onClick:this.addLink,isActive:e,shortcutType:"primary",shortcutCharacter:"k"}),(this.state.addingLink||e)&&Object(p.createElement)(X,{key:"aioseop-inline-link-ui",addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:e,activeAttributes:t,value:n,onChange:r}))}}]),n}(p.Component))},te=["name"],ne=(n=wp.richText).registerFormatType,re=n.unregisterFormatType;[ee].forEach((function(e){var t=e.name;e=o()(e,te);t&&(re("core/link"),ne(t,e))}))}]);
1
+ /*! ! built on Tuesday, November 16th 2021, 3:05:17 pm */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.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 o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));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=81)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},,function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.lodash},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"==c||"number"==c)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"==c)for(var l in r)n.call(r,l)&&r[l]&&e.push(l)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},,,function(e,t){e.exports=window.wp.richText},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},n.apply(this,arguments)}e.exports=n},function(e,t){e.exports=window.wp.primitives},function(e,t,n){var r=n(29);e.exports=function(e,t){if(null==e)return{};var n,o=r(e,t);if(Object.getOwnPropertySymbols)for(var c=Object.getOwnPropertySymbols(e),i=0;i<c.length;i++)n=c[i],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n]);return o}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(31),o=n(3);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t,n){var r=n(60),o=n(61),c=n(62),i=n(64);e.exports=function(e,t){return r(e)||o(e,t)||c(e,t)||i()}},function(e,t){e.exports=window.regeneratorRuntime},,function(e,t){e.exports=window.wp.blockEditor},function(e,t){function n(e,t,n,r,o,c,i){try{var l=e[c](i),a=l.value}catch(e){return void n(e)}l.done?t(a):Promise.resolve(a).then(r,o)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(o,c){var i=e.apply(t,r);function l(e){n(i,o,c,l,a,"next",e)}function a(e){n(i,o,c,l,a,"throw",e)}l(void 0)}))}}},,,,,function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},,,,,,,function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.data},function(e,t){e.exports=window.wp.dom},function(e,t){e.exports=window.wp.editor},,,,,,,,,,,,,,,,,,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,o=!1,c=void 0;try{for(var i,l=e[Symbol.iterator]();!(r=(i=l.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==l.return||l.return()}finally{if(o)throw c}}return n}}},function(e,t,n){var r=n(63);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"Map"===(n="Object"===n&&e.constructor?e.constructor.name: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";n.r(t);var r=n(14),o=n.n(r),c=(t=n(15),n.n(t)),i=(r=n(16),n.n(r)),l=(t=n(3),n.n(t)),a=(r=n(17),n.n(r)),s=(t=n(18),n.n(t)),u=(r=n(8),n.n(r)),p=n(0),b=n(1),f=n(5),d=n(11),m=n(4),O=n(23),g=n(38),h=(t=n(13),Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.3h-.7l1.6-3.5-.9-.4-3.9 8.5H9v1.5h2l-1.3 2.8H8.4c-2 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7H10V7.3H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H9l-1.4 3.2.9.4 5.7-12.5h1.4c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.9 0 5.2-2.3 5.2-5.2 0-2.9-2.4-5.2-5.2-5.2z"}))),j=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"})),v=(r=n(19),n.n(r)),y=(r=n(20),n.n(r)),k=n(6),w=(r=n(12),n.n(r)),_=(r=n(24),n.n(r)),x=(r=n(21),n.n(r)),E=(r=n(7),n.n(r)),S=n(39),P=n(40),C=n(41);function T(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function N(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?T(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):T(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var L=[{id:"opensInNewTab",title:Object(b.__)("Open in new tab"),type:"ToggleControl"},{id:"nofollow",title:Object(b.__)('Add "nofollow" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"sponsored",title:Object(b.__)('Add "sponsored" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"ugc",title:Object(b.__)('Add "ugc" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"title",title:Object(b.__)("Add title attribute to link","all-in-one-seo-pack"),type:"TextControl"}],R=function(e){var t=e.value,n=e.onChange,r=void 0===n?k.noop:n;return(e=void 0===(e=e.settings)?L:e)&&e.length?(e=e.map((function(e){if("TextControl"!==e.type)return"ToggleControl"===e.type?Object(p.createElement)(f.ToggleControl,{className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:(n=e,function(e){r(N(N({},t),{},v()({},n.id,e)))}),checked:!!t&&!!t[e.id]}):null;var n,o=Object(p.useState)(),c=y()(o,2),i=(o=c[0],c[1]);return Object(p.createElement)(f.TextControl,{"data-aioseop":"true",className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:function(e){i(e)},onBlur:function(n){r(N(N({},t),{},v()({},e.id,n.target.value)))},value:o||t[e.id]})})),Object(p.createElement)("fieldset",{className:"block-editor-link-control__settings"},Object(p.createElement)(f.VisuallyHidden,{as:"legend"},Object(b.__)("Currently selected link settings")),e)):null};function H(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function A(e){var t=e.icon,n=void 0===(n=e.size)?24:n;e=function(e,t){if(null==e)return{};var n,r=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols)for(var o=Object.getOwnPropertySymbols(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}(e,["icon","size"]);return Object(p.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?H(Object(n),!0).forEach((function(t){var r,o;r=e,t=n[o=t],o in r?Object.defineProperty(r,o,{value:t,enumerable:!0,configurable:!0,writable:!0}):r[o]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):H(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:n,height:n},e))}var I=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M9 0C4.03 0 0 4.03 0 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zM1.11 9.68h2.51c.04.91.167 1.814.38 2.7H1.84c-.403-.85-.65-1.764-.73-2.7zm8.57-5.4V1.19c.964.366 1.756 1.08 2.22 2 .205.347.386.708.54 1.08l-2.76.01zm3.22 1.35c.232.883.37 1.788.41 2.7H9.68v-2.7h3.22zM8.32 1.19v3.09H5.56c.154-.372.335-.733.54-1.08.462-.924 1.255-1.64 2.22-2.01zm0 4.44v2.7H4.7c.04-.912.178-1.817.41-2.7h3.21zm-4.7 2.69H1.11c.08-.936.327-1.85.73-2.7H4c-.213.886-.34 1.79-.38 2.7zM4.7 9.68h3.62v2.7H5.11c-.232-.883-.37-1.788-.41-2.7zm3.63 4v3.09c-.964-.366-1.756-1.08-2.22-2-.205-.347-.386-.708-.54-1.08l2.76-.01zm1.35 3.09v-3.04h2.76c-.154.372-.335.733-.54 1.08-.464.92-1.256 1.634-2.22 2v-.04zm0-4.44v-2.7h3.62c-.04.912-.178 1.817-.41 2.7H9.68zm4.71-2.7h2.51c-.08.936-.327 1.85-.73 2.7H14c.21-.87.337-1.757.38-2.65l.01-.05zm0-1.35c-.046-.894-.176-1.78-.39-2.65h2.16c.403.85.65 1.764.73 2.7l-2.5-.05zm1-4H13.6c-.324-.91-.793-1.76-1.39-2.52 1.244.56 2.325 1.426 3.14 2.52h.04zm-9.6-2.52c-.597.76-1.066 1.61-1.39 2.52H2.65c.815-1.094 1.896-1.96 3.14-2.52zm-3.15 12H4.4c.324.91.793 1.76 1.39 2.52-1.248-.567-2.33-1.445-3.14-2.55l-.01.03zm9.56 2.52c.597-.76 1.066-1.61 1.39-2.52h1.76c-.82 1.08-1.9 1.933-3.14 2.48l-.01.04z"})),F=function(e){var t=e.itemProps,n=e.suggestion,r=void 0!==(c=e.isSelected)&&c,o=e.onClick,c=void 0!==(c=e.isURL)&&c;e=void 0===(e=e.searchTerm)?"":e;return Object(p.createElement)(f.Button,w()({},t,{onClick:o,className:E()("block-editor-link-control__search-item",{"is-selected":r,"is-url":c,"is-entity":!c})}),c&&Object(p.createElement)(A,{className:"block-editor-link-control__search-item-icon",icon:I}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createElement)(f.TextHighlight,{text:n.title,highlight:e})),Object(p.createElement)("span",{"aria-hidden":!c,className:"block-editor-link-control__search-item-info"},!c&&(Object(m.safeDecodeURI)(n.url)||""),c&&Object(b.__)("Press ENTER to add this link"))),n.type&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-type"},n.type))},z=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M16 4h2v9H7v3l-5-4 5-4v3h9V4z"})),D=n(42),M=function(e){var t=e.value,n=e.onChange,r=e.onSelect,o=e.renderSuggestions,c=e.fetchSuggestions,i=e.showInitialSuggestions,l=e.errorMessage,a=(e=Object(p.useState)(),(e=y()(e,2))[0]),s=e[1];return Object(p.createElement)("form",{onSubmit:function(e){e.preventDefault(),r(a||{url:t})}},Object(p.createElement)("div",{className:"block-editor-link-control__search-input-wrapper"},Object(p.createElement)(D.URLInput,{className:"block-editor-link-control__search-input",value:t,onChange:function(e,t){n(e),s(t)},placeholder:Object(b.__)("Search or type url"),__experimentalRenderSuggestions:o,__experimentalFetchLinkSuggestions:c,__experimentalHandleURLSuggestions:!0,__experimentalShowInitialSuggestions:i}),Object(p.createElement)("div",{className:"block-editor-link-control__search-actions"},Object(p.createElement)(f.Button,{type:"submit",label:Object(b.__)("Submit"),icon:z,className:"block-editor-link-control__search-submit"}))),l&&Object(p.createElement)(f.Notice,{className:"block-editor-link-control__search-error",status:"error",isDismissible:!1},l))},V=function(e){var t=e.searchTerm,n=e.onClick,r=e.itemProps;e=e.isSelected;return t?Object(p.createElement)(f.Button,w()({},r,{className:E()("block-editor-link-control__search-create block-editor-link-control__search-item",{"is-selected":e}),onClick:n}),Object(p.createElement)(f.Icon,{className:"block-editor-link-control__search-item-icon",icon:"insert"}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createInterpolateElement)(Object(b.sprintf)(Object(b.__)("New page: <mark>%s</mark>"),t),{mark:Object(p.createElement)("mark",null)})))):null};function U(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function B(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?U(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):U(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var W=(n=Object(f.createSlotFill)("BlockEditorLinkControlViewer")).Slot,G=(n=n.Fill,"__CREATE__"),Q=function(e){var t=!1;return{promise:new Promise((function(n,r){e.then((function(e){return t?r({isCanceled:!0}):n(e)}),(function(e){return r(t?{isCanceled:!0}:e)}))})),cancel:function(){t=!0}}};function q(e){var t=e.value,n=e.settings,r=void 0===(j=e.onChange)?k.noop:j,o=void 0===(K=e.showSuggestions)||K,c=e.showInitialSuggestions,i=e.forceIsEditingLink,l=e.createSuggestion,a=Object(p.useRef)(),s=Object(p.useRef)(),u=Object(p.useRef)(),d=Object(S.useInstanceId)(q),O=Object(p.useState)(t&&t.url||""),g=(N=y()(O,2))[0],h=N[1],j=Object(p.useState)(void 0!==i?i:!t||!t.url),v=(K=y()(j,2))[0],T=K[1],N=(e=Object(p.useState)(!1),(O=y()(e,2))[0]),L=O[1],H=(j=Object(p.useState)(null),e=(K=y()(j,2))[0],K[1]),A=Object(p.useRef)(!1),I=Object(P.useSelect)((function(e){return{fetchSearchSuggestions:(0,e("core/block-editor").getSettings)().__experimentalFetchLinkSuggestions}}),[]).fetchSearchSuggestions;O=t&&Object(m.filterURLForDisplay)(Object(m.safeDecodeURI)(t.url))||"";function z(e){var t="URL",n=Object(m.getProtocol)(e)||"";return n.includes("mailto")&&(t="mailto"),n.includes("tel")&&(t="tel"),Object(k.startsWith)(e,"#")&&(t="internal"),Promise.resolve([{id:e,title:e,url:"URL"===t?Object(m.prependHTTP)(e):e,type:t}])}Object(p.useEffect)((function(){void 0!==i&&i!==v&&T(i)}),[i]),Object(p.useEffect)((function(){A.current&&u.current&&!u.current.contains(document.activeElement)&&(C.focus.focusable.find(u.current)[0]||u.current).focus(),A.current=!1}),[v]),Object(p.useEffect)((function(){return function(){a.current&&a.current.cancel(),s.current&&s.current.cancel()}}),[]);var D=function(){var e=_()(x.a.mark((function e(t,n){var r,o;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([I(t,B({},n.isInitialSuggestions?{perPage:3}:{})),z(t)]);case 2:return r=e.sent,o=!t.includes(" "),r=o&&!n.isInitialSuggestions?r[0].concat(r[1]):r[0],e.abrupt("return",$(t)?r:r.concat({title:t,url:t,type:G}));case 6:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}();function U(){A.current=!!u.current&&u.current.contains(document.activeElement),T(!1)}function $(e){var t=Object(k.startsWith)(e,"#");return Object(m.isURL)(e)||e&&e.includes("www.")||t}j=Object(p.useCallback)((function(e,t){return o?$(e)?z(e):D(e,t):Promise.resolve([])}),[z,I]);var J=function(){var e=_()(x.a.mark((function e(t){var n;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return L(!0),H(null),e.prev=2,s.current=Q(Promise.resolve(l(t))),e.next=6,s.current.promise;case 6:n=e.sent,L(!1),n?(r(n),U()):T(!0),e.next=18;break;case 11:if(e.prev=11,e.t0=e.catch(2),e.t0&&e.t0.isCanceled)return e.abrupt("return");e.next=15;break;case 15:H(e.t0.message||Object(b.__)("An unknown error occurred during creation. Please try again.")),L(!1),T(!0);case 18:case"end":return e.stop()}}),e,null,[[2,11]])})));return function(t){return e.apply(this,arguments)}}(),K=Object(p.useMemo)((function(){return{url:t&&t.url}}),[t&&t.url]);return Object(p.createElement)("div",{tabIndex:-1,ref:u,className:"block-editor-link-control"},N&&Object(p.createElement)("div",{className:"block-editor-link-control__loading"},Object(p.createElement)(f.Spinner,null)," ",Object(b.__)("Creating"),"…"),(v||!t)&&!N&&Object(p.createElement)(M,{value:g,onChange:function(){h(0<arguments.length&&void 0!==arguments[0]?arguments[0]:"")},onSelect:function(){var e=_()(x.a.mark((function e(n){return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(G===n.type)return e.next=3,J(g);e.next=5;break;case 3:e.next=7;break;case 5:!function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};T(!1),r(B(B({},t),e))}(n,t),U();case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),renderSuggestions:o?function(e){var n=e.suggestionsListProps,o=e.buildSuggestionItemProps,c=e.suggestions,i=e.selectedSuggestion,a=e.isLoading,s=e.isInitialSuggestions,u=E()("block-editor-link-control__search-results",{"is-loading":a}),m=["url","mailto","tel","internal"],O=(e=1===c.length&&m.includes(c[0].type.toLowerCase()),l&&!e&&!s);a="block-editor-link-control-search-results-label-".concat(d),e=s?Object(b.__)("Recently updated"):Object(b.sprintf)(Object(b.__)('Search results for "%s"'),g),e=Object(p.createElement)(s?p.Fragment:f.VisuallyHidden,{},Object(p.createElement)("span",{className:"block-editor-link-control__search-results-label",id:a},e));return Object(p.createElement)("div",{className:"block-editor-link-control__search-results-wrapper"},e,Object(p.createElement)("div",w()({},n,{className:u,"aria-labelledby":a}),c.map((function(e,n){return O&&G===e.type?Object(p.createElement)(V,{searchTerm:g,onClick:_()(x.a.mark((function t(){return x.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,J(e.title);case 2:case"end":return t.stop()}}),t)}))),key:e.type,itemProps:o(e,n),isSelected:n===i}):G===e.type?null:Object(p.createElement)(F,{key:"".concat(e.id,"-").concat(e.type),itemProps:o(e,n),suggestion:e,index:n,onClick:function(){U(),r(B(B({},t),e))},isSelected:n===i,isURL:m.includes(e.type.toLowerCase()),searchTerm:g})}))))}:null,fetchSuggestions:j,showInitialSuggestions:c,errorMessage:e}),t&&!v&&!N&&Object(p.createElement)(p.Fragment,null,Object(p.createElement)("div",{"aria-label":Object(b.__)("Currently selected"),"aria-selected":"true",className:E()("block-editor-link-control__search-item",{"is-current":!0})},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)(f.ExternalLink,{className:"block-editor-link-control__search-item-title",href:t.url},t&&t.title||O),t&&t.title&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-info"},O)),Object(p.createElement)(f.Button,{isSecondary:!0,onClick:function(){return T(!0)},className:"block-editor-link-control__search-item-action"},Object(b.__)("Edit")),Object(p.createElement)(W,{fillProps:K}))),Object(p.createElement)(R,{key:"aioseop-settings-drawer",value:t,settings:n,onChange:r}))}q.ViewerFill=n;var $=q;function J(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function K(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?J(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):J(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var X=Object(f.withSpokenMessages)((function(e){var t=e.isActive,n=e.activeAttributes,r=e.addingLink,o=e.value,c=e.onChange,i=e.speak,l=e.stopAddingLink,a=Object(p.useMemo)(k.uniqueId,[r]),s=(e=Object(p.useState)(),(e=y()(e,2))[0]),u=e[1],O=(e=Object(p.useMemo)((function(){var e=window.getSelection();if(e.rangeCount){if(e=e.getRangeAt(0),r&&!t)return e;for(var n=(n=e.startContainer).nextElementSibling||n;n.nodeType!==window.Node.ELEMENT_NODE;)n=n.parentNode;return n.closest("a")}}),[r,o.start,o.end]),K({url:n.url,opensInNewTab:"_blank"===n.target,nofollow:!!n.rel&&n.rel.includes("nofollow"),sponsored:!!n.rel&&n.rel.includes("sponsored"),ugc:!!n.rel&&n.rel.includes("ugc"),title:n.title},s));return Object(p.createElement)(f.Popover,{key:a,anchorRef:e,focusOnMount:!!r&&"firstElement",onClose:l,position:"bottom center"},Object(p.createElement)($,{value:O,onChange:function(e){e=K(K({},s),e);var n,r,a,p,f,g,h,j=(O.opensInNewTab!==e.opensInNewTab||O.sponsored!==e.sponsored||O.nofollow!==e.nofollow||O.ugc!==e.ugc)&&O.url===e.url,v=j&&void 0===e.url;u(v?e:void 0),v||(a=(r={url:n=Object(m.prependHTTP)(e.url),opensInNewWindow:e.opensInNewTab,nofollow:e.nofollow,sponsored:e.sponsored,ugc:e.ugc,title:e.title}).url,p=r.opensInNewWindow,f=r.nofollow,g=r.sponsored,h=r.ugc,v=r.title,r={type:"core/link",attributes:{url:a}},a=[],p&&(r.attributes.target="_blank",a.push("noreferrer noopener")),f&&a.push("nofollow"),g&&a.push("sponsored"),h&&a.push("ugc"),0<a.length&&(r.attributes.rel=a.join(" ")),v&&(r.attributes.title=v),r=r,Object(d.isCollapsed)(o)&&!t?(e=e.title||n,e=Object(d.applyFormat)(Object(d.create)({text:e}),r,0,e.length),c(Object(d.insert)(o,e))):c(Object(d.applyFormat)(o,r)),j||l(),function(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=Object(m.getProtocol)(t),!Object(m.isValidProtocol)(e))return;if(Object(k.startsWith)(e,"http")&&!/^https?:\/\/[^/\s]/i.test(t))return;if(e=Object(m.getAuthority)(t),!Object(m.isValidAuthority)(e))return;if((e=Object(m.getPath)(t))&&!Object(m.isValidPath)(e))return;if((e=Object(m.getQueryString)(t))&&!Object(m.isValidQueryString)(e))return;if((e=Object(m.getFragment)(t))&&!Object(m.isValidFragment)(e))return}return!Object(k.startsWith)(t,"#")||Object(m.isValidFragment)(t)?1:void 0}}}(n)?i(t?Object(b.__)("Link edited.","all-in-one-seo-pack"):Object(b.__)("Link inserted.","all-in-one-seo-pack"),"assertive"):i(Object(b.__)("Warning: the link has been inserted but may have errors. Please test it.","all-in-one-seo-pack"),"assertive"))},forceIsEditingLink:r}))}));var Y="core/link",Z=Object(b.__)("Link","all-in-one-seo-pack"),ee={name:Y,title:Z,tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel",title:"title"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return Object(d.isCollapsed)(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Object(m.isURL)(t)?(window.console.log("Created link:\n\n",t),Object(d.applyFormat)(e,{type:Y,attributes:{url:Object(g.decodeEntities)(t)}})):e)},edit:Object(f.withSpokenMessages)(function(e){a()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=u()(e);return r=t?(n=u()(this).constructor,Reflect.construct(r,arguments,n)):r.apply(this,arguments),s()(this,r)}}(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).addLink=e.addLink.bind(l()(e)),e.stopAddingLink=e.stopAddingLink.bind(l()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(l()(e)),e.state={addingLink:!1},e}return i()(n,[{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=Object(d.getTextContent)(Object(d.slice)(t)))&&Object(m.isURL)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:e}})):e&&Object(m.isEmail)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1}),this.props.onFocus()}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak;t(Object(d.removeFormat)(e,Y)),n(Object(b.__)("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(r=this.props).isActive,t=r.activeAttributes,n=r.value,r=r.onChange;return Object(p.createElement)(p.Fragment,null,Object(p.createElement)(O.RichTextShortcut,{type:"primary",character:"k",onUse:this.addLink}),Object(p.createElement)(O.RichTextShortcut,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:h,title:Object(b.__)("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:e,shortcutType:"primaryShift",shortcutCharacter:"k"}),!e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:j,title:Z,onClick:this.addLink,isActive:e,shortcutType:"primary",shortcutCharacter:"k"}),(this.state.addingLink||e)&&Object(p.createElement)(X,{key:"aioseop-inline-link-ui",addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:e,activeAttributes:t,value:n,onChange:r}))}}]),n}(p.Component))},te=["name"],ne=(n=wp.richText).registerFormatType,re=n.unregisterFormatType;[ee].forEach((function(e){var t=e.name;e=o()(e,te);t&&(re("core/link"),ne(t,e))}))}]);
dist/Lite/assets/js/link-format-block.js.gz CHANGED
Binary file
dist/Lite/assets/js/link-format-classic.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Tuesday, November 9th 2021, 10:20:20 am */
2
  !function(e){var t={};function n(i){if(t[i])return t[i].exports;var l=t[i]={i:i,l:!1,exports:{}};return e[i].call(l.exports,l,l.exports,n),l.l=!0,l.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},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 i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)n.d(i,l,function(t){return e[t]}.bind(null,l));return i},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=65)}({65:function(e,t){function n(){return r?r.$('a[data-wplink-edit="true"]'):null}var i,l,a,r,s,o,c,p,d,u,h,f,k;i=jQuery,l=window.aioseoL10n,a=window.wp,d=/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,63}$/i,u=/^(https?|ftp):\/\/[A-Z0-9.-]+\.[A-Z]{2,63}[^ "]*$/i,h={},f={},k="ontouchend"in document,window.wpLink={timeToTriggerRiver:150,minRiverAJAXDuration:200,riverBottomThreshold:5,keySensitivity:100,lastSearch:"",textarea:"",modalOpen:!1,init:function(){i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-nofollow">'+l.noFollow+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-sponsored">'+l.sponsored+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-ugc">'+l.ugc+"</label><br>"),i(".wp-link-text-field").before('<div class="link-title-field"><label><span style="padding-left: 4px;">'+l.labelTitle+'</span><input id="wp-link-title" type="text" name="linktitle" /></label></div>'),i('<style type="text/css"> .has-text-field #wp-link .query-results { top: 256px !important; } #wp-link-wrap.search-panel-visible {height: 549px !important;}</style>').appendTo("head"),h.wrap=i("#wp-link-wrap"),h.dialog=i("#wp-link"),h.backdrop=i("#wp-link-backdrop"),h.submit=i("#wp-link-submit"),h.close=i("#wp-link-close"),h.tanfl=i("#aioseop-add-nofollow"),h.tanfl_sponsored=i("#aioseop-add-sponsored"),h.tanfl_ugc=i("#aioseop-add-ugc"),h.title=i("#wp-link-title"),h.text=i("#wp-link-text"),h.url=i("#wp-link-url"),h.nonce=i("#_ajax_linking_nonce"),h.openInNewTab=i("#wp-link-target"),h.search=i("#wp-link-search"),f.search=new o(i("#search-results")),f.recent=new o(i("#most-recent-results")),f.elements=h.dialog.find(".query-results"),h.queryNotice=i("#query-notice-message"),h.queryNoticeTextDefault=h.queryNotice.find(".query-notice-default"),h.queryNoticeTextHint=h.queryNotice.find(".query-notice-hint"),h.dialog.keydown(wpLink.keydown),h.dialog.keyup(wpLink.keyup),h.submit.click((function(e){e.preventDefault(),wpLink.update()})),h.close.add(h.backdrop).add("#wp-link-cancel button").click((function(e){e.preventDefault(),wpLink.close()})),f.elements.on("river-select",wpLink.updateFields),h.search.on("focus.wplink",(function(){h.queryNoticeTextDefault.hide(),h.queryNoticeTextHint.removeClass("screen-reader-text").show()})).on("blur.wplink",(function(){h.queryNoticeTextDefault.show(),h.queryNoticeTextHint.addClass("screen-reader-text").hide()})),h.search.on("keyup input",(function(){window.clearTimeout(s),s=window.setTimeout((function(){wpLink.searchInternalLinks()}),500)})),h.url.on("paste",(function(){setTimeout(wpLink.correctURL,0)})),h.url.on("blur",wpLink.correctURL)},correctURL:function(){var e=i.trim(h.url.val());e&&p!==e&&!/^(?:[a-z]+:|#|\?|\.|\/)/.test(e)&&(h.url.val("http://"+e),p=e)},open:function(e,t,n){var l=i(document.body);l.addClass("modal-open"),wpLink.modalOpen=!0,wpLink.range=null,e&&(window.wpActiveEditor=e),window.wpActiveEditor&&(this.textarea=i("#"+window.wpActiveEditor).get(0),void 0!==window.tinymce&&(l.append(h.backdrop,h.wrap),l=window.tinymce.get(window.wpActiveEditor),r=l&&!l.isHidden()?l:null),!wpLink.isMCE()&&document.selection&&(this.textarea.focus(),this.range=document.selection.createRange()),h.wrap.show(),h.backdrop.show(),wpLink.refresh(t,n),i(document).trigger("wplink-open",h.wrap))},isMCE:function(){return r&&!r.isHidden()},refresh:function(e,t){f.search.refresh(),f.recent.refresh(),wpLink.isMCE()?wpLink.mceRefresh(e,t):(h.wrap.hasClass("has-text-field")||h.wrap.addClass("has-text-field"),document.selection?document.selection.createRange().text:void 0!==this.textarea.selectionStart&&this.textarea.selectionStart!==this.textarea.selectionEnd&&(t=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd)||t||""),h.text.val(t),wpLink.setDefaultValues()),k?h.url.focus().blur():window.setTimeout((function(){h.url[0].select(),h.url.focus()})),f.recent.ul.children().length||f.recent.ajax(),p=h.url.val().replace(/^http:\/\//,""),jQuery(".has-text-field #wp-link .query-results").css("margin-top",25)},hasSelectedText:function(e){var t,n,i,l=r.selection.getContent();if(/</.test(l)&&(!/^<a [^>]+>[^<]+<\/a>$/.test(l)||-1===l.indexOf("href=")))return!1;if(e.length){if(!(n=e[0].childNodes)||!n.length)return!1;for(i=n.length-1;0<=i;i--)if(3!=(t=n[i]).nodeType&&!window.tinymce.dom.BookmarkManager.isBookmarkNode(t))return!1}return!0},mceRefresh:function(e,t){var a,s,o=n(),c=this.hasSelectedText(o);o.length?(a=o.text(),s=o.attr("href"),i.trim(a)||(a=t||""),"_wp_link_placeholder"!==(s=e&&(u.test(e)||d.test(e))?e:s)?(h.url.val(s),h.openInNewTab.prop("checked","_blank"===o.attr("target")),h.submit.val(l.update)):this.setDefaultValues(a),e&&e!==s?(h.url.val(e),h.search.val(e)):h.search.val(""),0<=r.dom.getAttrib(o,"rel").indexOf("nofollow")?h.tanfl.prop("checked",!0):h.tanfl.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("sponsored")?h.tanfl_sponsored.prop("checked",!0):h.tanfl_sponsored.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("ugc")?h.tanfl_ugc.prop("checked",!0):h.tanfl_ugc.prop("checked",!1),h.title.val(r.dom.getAttrib(o,"title")),window.setTimeout((function(){wpLink.searchInternalLinks()}))):(a=r.selection.getContent({format:"text"})||t||"",this.setDefaultValues(a),h.url.val(e)),c?(h.text.val(a),h.wrap.addClass("has-text-field")):(h.text.val(""),h.wrap.removeClass("has-text-field"))},close:function(e){i(document.body).removeClass("modal-open"),wpLink.modalOpen=!1,"noReset"!==e&&(wpLink.isMCE()?(r.plugins.wplink&&r.plugins.wplink.close(),r.focus()):(wpLink.textarea.focus(),wpLink.range&&(wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select()))),h.backdrop.hide(),h.wrap.hide(),p=!1,i(document).trigger("wplink-close",h.wrap)},getAttrs:function(){wpLink.correctURL();var e="";return h.tanfl.prop("checked")&&(e+="nofollow "),h.tanfl_sponsored.prop("checked")&&(e+="sponsored "),h.tanfl_ugc.prop("checked")&&(e+="ugc"),{href:i.trim(h.url.val()),target:h.openInNewTab.prop("checked")?"_blank":null,rel:""!==e?e:null,title:""!==h.title.val()?i.trim(h.title.val()):null}},buildHtml:function(e){var t='<a href="'+e.href+'"';return e.title&&(title=e.title.replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;"),t+=' title="'+title+'"'),e.target?e.rel?t+=' rel="noopener '+e.rel+'" target="'+e.target+'"':t+=' rel="noopener" target="'+e.target+'"':e.rel&&(t+=' rel="'+e.rel+'"'),t+">"},update:function(){wpLink.isMCE()?wpLink.mceUpdate():wpLink.htmlUpdate()},htmlUpdate:function(){var e,t,n,r,s,o=wpLink.textarea;o&&(n=wpLink.getAttrs(),r=h.text.val(),(s=document.createElement("a")).href=n.href,"javascript:"!==s.protocol&&"data:"!==s.protocol||(n.href=""),n.href&&(e=wpLink.buildHtml(n),document.selection&&wpLink.range?(o.focus(),wpLink.range.text=e+(r||wpLink.range.text)+"</a>",wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select(),wpLink.range=null):void 0!==o.selectionStart&&(t=o.selectionStart,s=o.selectionEnd,r=t+(e=e+(n=r||o.value.substring(t,s))+"</a>").length,t!==s||n||(r-=4),o.value=o.value.substring(0,t)+e+o.value.substring(s,o.value.length),o.selectionStart=o.selectionEnd=r),wpLink.close(),o.focus(),i(o).trigger("change"),a.a11y.speak(l.linkInserted)))},mceUpdate:function(){var e,t,s,o=wpLink.getAttrs(),c=document.createElement("a");if(c.href=o.href,"javascript:"!==c.protocol&&"data:"!==c.protocol||(o.href=""),!o.href)return r.execCommand("unlink"),void wpLink.close();e=n(),r.undoManager.transact((function(){e.length||(r.execCommand("mceInsertLink",!1,{href:"_wp_link_placeholder","data-wp-temp-link":1}),e=r.$('a[data-wp-temp-link="1"]').removeAttr("data-wp-temp-link"),s=i.trim(e.text())),e.length?(h.wrap.hasClass("has-text-field")&&((t=h.text.val())?e.text(t):s||e.text(o.href)),o["data-wplink-edit"]=null,o["data-mce-href"]=o.href,e.attr(o)):r.execCommand("unlink")})),e=r.$('a[data-wplink-url-error="1"]').removeAttr("data-wplink-url-error"),wpLink.close("noReset"),r.focus(),e.length&&(r.selection.select(e[0]),r.plugins.wplink&&r.plugins.wplink.checkLink(e[0])),r.nodeChanged(),a.a11y.speak(l.linkInserted)},updateFields:function(e,t){h.url.val(t.children(".item-permalink").val()),h.title.val(t.hasClass("no-title")?"":t.children(".item-title").text()),h.wrap.hasClass("has-text-field")&&!h.text.val()&&h.text.val(t.children(".item-title").text())},getUrlFromSelection:function(e){return e||(this.isMCE()?e=r.selection.getContent({format:"text"}):document.selection&&wpLink.range?e=wpLink.range.text:void 0!==this.textarea.selectionStart&&(e=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd))),(e=i.trim(e))&&d.test(e)?"mailto:"+e:e&&u.test(e)?e.replace(/&amp;|&#0?38;/gi,"&"):""},setDefaultValues:function(e){h.url.val(this.getUrlFromSelection(e)),h.title.val(""),h.openInNewTab.prop("checked",!1),h.tanfl.prop("checked",!1),h.tanfl_sponsored.prop("checked",!1),h.tanfl_ugc.prop("checked",!1),h.search.val(""),wpLink.searchInternalLinks(),h.submit.val(l.save)},searchInternalLinks:function(){var e,t=h.search.val()||"",n=parseInt(l.minInputLength,10)||3;t.length>=n?(f.recent.hide(),f.search.show(),wpLink.lastSearch!=t&&(wpLink.lastSearch=t,e=h.search.parent().find(".spinner").addClass("is-active"),f.search.change(t),f.search.ajax((function(){e.removeClass("is-active")})))):(f.search.hide(),f.recent.show())},next:function(){f.search.next(),f.recent.next()},prev:function(){f.search.prev(),f.recent.prev()},keydown:function(e){var t;27===e.keyCode?(wpLink.close(),e.stopImmediatePropagation()):9===e.keyCode&&("wp-link-submit"!==(t=e.target.id)||e.shiftKey?"wp-link-close"===t&&e.shiftKey&&(h.submit.focus(),e.preventDefault()):(h.close.focus(),e.preventDefault())),e.shiftKey||38!==e.keyCode&&40!==e.keyCode||document.activeElement&&("link-title-field"===document.activeElement.id||"url-field"===document.activeElement.id)||(t=38===e.keyCode?"prev":"next",clearInterval(wpLink.keyInterval),wpLink[t](),wpLink.keyInterval=setInterval(wpLink[t],wpLink.keySensitivity),e.preventDefault())},keyup:function(e){38!==e.keyCode&&40!==e.keyCode||(clearInterval(wpLink.keyInterval),e.preventDefault())},delayedCallback:function(e,t){var n,i,l,a;return t?(setTimeout((function(){return i?e.apply(a,l):void(n=!0)}),t),function(){if(n)return e.apply(this,arguments);l=arguments,a=this,i=!0}):e}},o=function(e,t){var n=this;this.element=e,this.ul=e.children("ul"),this.contentHeight=e.children("#link-selector-height"),this.waiting=e.find(".river-waiting"),this.change(t),this.refresh(),i("#wp-link .query-results, #wp-link #link-selector").scroll((function(){n.maybeLoad()})),e.on("click","li",(function(e){n.select(i(this),e)}))},i.extend(o.prototype,{refresh:function(){this.deselect(),this.visible=this.element.is(":visible")},show:function(){this.visible||(this.deselect(),this.element.show(),this.visible=!0)},hide:function(){this.element.hide(),this.visible=!1},select:function(e,t){var n,i,l,a;e.hasClass("unselectable")||e==this.selected||(this.deselect(),this.selected=e.addClass("selected"),n=e.outerHeight(),i=this.element.height(),l=e.position().top,a=this.element.scrollTop(),l<0?this.element.scrollTop(a+l):i<l+n&&this.element.scrollTop(a+l-i+n),this.element.trigger("river-select",[e,t,this]))},deselect:function(){this.selected&&this.selected.removeClass("selected"),this.selected=!1},prev:function(){var e;this.visible&&this.selected&&(e=this.selected.prev("li")).length&&this.select(e)},next:function(){var e;!this.visible||(e=this.selected?this.selected.next("li"):i("li:not(.unselectable):first",this.element)).length&&this.select(e)},ajax:function(e){var t=this,n=1==this.query.page?0:wpLink.minRiverAJAXDuration;n=wpLink.delayedCallback((function(n,i){t.process(n,i),e&&e(n,i)}),n);this.query.ajax(n)},change:function(e){this.query&&this._search==e||(this._search=e,this.query=new c(e),this.element.scrollTop(0))},process:function(e,t){var n,a="",r=!0;t=1==t.page;e?i.each(e,(function(){n=r?"alternate":"",n+=this.title?"":" no-title",a+=n?'<li class="'+n+'">':"<li>",a+='<input type="hidden" class="item-permalink" value="'+this.permalink+'" />',a+='<span class="item-title">',a+=this.title||l.noTitle,a+='</span><span class="item-info">'+this.info+"</span></li>",r=!r})):t&&(a+='<li class="unselectable no-matches-found"><span class="item-title"><em>'+l.noMatchesFound+"</em></span></li>"),this.ul[t?"html":"append"](a)},maybeLoad:function(){var e=this,t=this.element,n=t.scrollTop()+t.height();!this.query.ready()||n<this.contentHeight.height()-wpLink.riverBottomThreshold||setTimeout((function(){var n=t.scrollTop(),i=n+t.height();!e.query.ready()||i<e.contentHeight.height()-wpLink.riverBottomThreshold||(e.waiting.addClass("is-active"),t.scrollTop(n+e.waiting.outerHeight()),e.ajax((function(){e.waiting.removeClass("is-active")})))}),wpLink.timeToTriggerRiver)}}),c=function(e){this.page=1,this.allLoaded=!1,this.querying=!1,this.search=e},i.extend(c.prototype,{ready:function(){return!(this.querying||this.allLoaded)},ajax:function(e){var t=this,n={action:"wp-link-ajax",page:this.page,_ajax_linking_nonce:h.nonce.val()};this.search&&(n.search=this.search),this.querying=!0,i.post(window.ajaxurl,n,(function(i){t.page++,t.querying=!1,t.allLoaded=!i,e(i,n)}),"json")}}),i(document).ready(wpLink.init)}});
1
+ /*! ! built on Tuesday, November 16th 2021, 3:05:17 pm */
2
  !function(e){var t={};function n(i){if(t[i])return t[i].exports;var l=t[i]={i:i,l:!1,exports:{}};return e[i].call(l.exports,l,l.exports,n),l.l=!0,l.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},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 i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)n.d(i,l,function(t){return e[t]}.bind(null,l));return i},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=65)}({65:function(e,t){function n(){return r?r.$('a[data-wplink-edit="true"]'):null}var i,l,a,r,s,o,c,p,d,u,h,f,k;i=jQuery,l=window.aioseoL10n,a=window.wp,d=/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,63}$/i,u=/^(https?|ftp):\/\/[A-Z0-9.-]+\.[A-Z]{2,63}[^ "]*$/i,h={},f={},k="ontouchend"in document,window.wpLink={timeToTriggerRiver:150,minRiverAJAXDuration:200,riverBottomThreshold:5,keySensitivity:100,lastSearch:"",textarea:"",modalOpen:!1,init:function(){i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-nofollow">'+l.noFollow+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-sponsored">'+l.sponsored+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-ugc">'+l.ugc+"</label><br>"),i(".wp-link-text-field").before('<div class="link-title-field"><label><span style="padding-left: 4px;">'+l.labelTitle+'</span><input id="wp-link-title" type="text" name="linktitle" /></label></div>'),i('<style type="text/css"> .has-text-field #wp-link .query-results { top: 256px !important; } #wp-link-wrap.search-panel-visible {height: 549px !important;}</style>').appendTo("head"),h.wrap=i("#wp-link-wrap"),h.dialog=i("#wp-link"),h.backdrop=i("#wp-link-backdrop"),h.submit=i("#wp-link-submit"),h.close=i("#wp-link-close"),h.tanfl=i("#aioseop-add-nofollow"),h.tanfl_sponsored=i("#aioseop-add-sponsored"),h.tanfl_ugc=i("#aioseop-add-ugc"),h.title=i("#wp-link-title"),h.text=i("#wp-link-text"),h.url=i("#wp-link-url"),h.nonce=i("#_ajax_linking_nonce"),h.openInNewTab=i("#wp-link-target"),h.search=i("#wp-link-search"),f.search=new o(i("#search-results")),f.recent=new o(i("#most-recent-results")),f.elements=h.dialog.find(".query-results"),h.queryNotice=i("#query-notice-message"),h.queryNoticeTextDefault=h.queryNotice.find(".query-notice-default"),h.queryNoticeTextHint=h.queryNotice.find(".query-notice-hint"),h.dialog.keydown(wpLink.keydown),h.dialog.keyup(wpLink.keyup),h.submit.click((function(e){e.preventDefault(),wpLink.update()})),h.close.add(h.backdrop).add("#wp-link-cancel button").click((function(e){e.preventDefault(),wpLink.close()})),f.elements.on("river-select",wpLink.updateFields),h.search.on("focus.wplink",(function(){h.queryNoticeTextDefault.hide(),h.queryNoticeTextHint.removeClass("screen-reader-text").show()})).on("blur.wplink",(function(){h.queryNoticeTextDefault.show(),h.queryNoticeTextHint.addClass("screen-reader-text").hide()})),h.search.on("keyup input",(function(){window.clearTimeout(s),s=window.setTimeout((function(){wpLink.searchInternalLinks()}),500)})),h.url.on("paste",(function(){setTimeout(wpLink.correctURL,0)})),h.url.on("blur",wpLink.correctURL)},correctURL:function(){var e=i.trim(h.url.val());e&&p!==e&&!/^(?:[a-z]+:|#|\?|\.|\/)/.test(e)&&(h.url.val("http://"+e),p=e)},open:function(e,t,n){var l=i(document.body);l.addClass("modal-open"),wpLink.modalOpen=!0,wpLink.range=null,e&&(window.wpActiveEditor=e),window.wpActiveEditor&&(this.textarea=i("#"+window.wpActiveEditor).get(0),void 0!==window.tinymce&&(l.append(h.backdrop,h.wrap),l=window.tinymce.get(window.wpActiveEditor),r=l&&!l.isHidden()?l:null),!wpLink.isMCE()&&document.selection&&(this.textarea.focus(),this.range=document.selection.createRange()),h.wrap.show(),h.backdrop.show(),wpLink.refresh(t,n),i(document).trigger("wplink-open",h.wrap))},isMCE:function(){return r&&!r.isHidden()},refresh:function(e,t){f.search.refresh(),f.recent.refresh(),wpLink.isMCE()?wpLink.mceRefresh(e,t):(h.wrap.hasClass("has-text-field")||h.wrap.addClass("has-text-field"),document.selection?document.selection.createRange().text:void 0!==this.textarea.selectionStart&&this.textarea.selectionStart!==this.textarea.selectionEnd&&(t=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd)||t||""),h.text.val(t),wpLink.setDefaultValues()),k?h.url.focus().blur():window.setTimeout((function(){h.url[0].select(),h.url.focus()})),f.recent.ul.children().length||f.recent.ajax(),p=h.url.val().replace(/^http:\/\//,""),jQuery(".has-text-field #wp-link .query-results").css("margin-top",25)},hasSelectedText:function(e){var t,n,i,l=r.selection.getContent();if(/</.test(l)&&(!/^<a [^>]+>[^<]+<\/a>$/.test(l)||-1===l.indexOf("href=")))return!1;if(e.length){if(!(n=e[0].childNodes)||!n.length)return!1;for(i=n.length-1;0<=i;i--)if(3!=(t=n[i]).nodeType&&!window.tinymce.dom.BookmarkManager.isBookmarkNode(t))return!1}return!0},mceRefresh:function(e,t){var a,s,o=n(),c=this.hasSelectedText(o);o.length?(a=o.text(),s=o.attr("href"),i.trim(a)||(a=t||""),"_wp_link_placeholder"!==(s=e&&(u.test(e)||d.test(e))?e:s)?(h.url.val(s),h.openInNewTab.prop("checked","_blank"===o.attr("target")),h.submit.val(l.update)):this.setDefaultValues(a),e&&e!==s?(h.url.val(e),h.search.val(e)):h.search.val(""),0<=r.dom.getAttrib(o,"rel").indexOf("nofollow")?h.tanfl.prop("checked",!0):h.tanfl.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("sponsored")?h.tanfl_sponsored.prop("checked",!0):h.tanfl_sponsored.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("ugc")?h.tanfl_ugc.prop("checked",!0):h.tanfl_ugc.prop("checked",!1),h.title.val(r.dom.getAttrib(o,"title")),window.setTimeout((function(){wpLink.searchInternalLinks()}))):(a=r.selection.getContent({format:"text"})||t||"",this.setDefaultValues(a),h.url.val(e)),c?(h.text.val(a),h.wrap.addClass("has-text-field")):(h.text.val(""),h.wrap.removeClass("has-text-field"))},close:function(e){i(document.body).removeClass("modal-open"),wpLink.modalOpen=!1,"noReset"!==e&&(wpLink.isMCE()?(r.plugins.wplink&&r.plugins.wplink.close(),r.focus()):(wpLink.textarea.focus(),wpLink.range&&(wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select()))),h.backdrop.hide(),h.wrap.hide(),p=!1,i(document).trigger("wplink-close",h.wrap)},getAttrs:function(){wpLink.correctURL();var e="";return h.tanfl.prop("checked")&&(e+="nofollow "),h.tanfl_sponsored.prop("checked")&&(e+="sponsored "),h.tanfl_ugc.prop("checked")&&(e+="ugc"),{href:i.trim(h.url.val()),target:h.openInNewTab.prop("checked")?"_blank":null,rel:""!==e?e:null,title:""!==h.title.val()?i.trim(h.title.val()):null}},buildHtml:function(e){var t='<a href="'+e.href+'"';return e.title&&(title=e.title.replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;"),t+=' title="'+title+'"'),e.target?e.rel?t+=' rel="noopener '+e.rel+'" target="'+e.target+'"':t+=' rel="noopener" target="'+e.target+'"':e.rel&&(t+=' rel="'+e.rel+'"'),t+">"},update:function(){wpLink.isMCE()?wpLink.mceUpdate():wpLink.htmlUpdate()},htmlUpdate:function(){var e,t,n,r,s,o=wpLink.textarea;o&&(n=wpLink.getAttrs(),r=h.text.val(),(s=document.createElement("a")).href=n.href,"javascript:"!==s.protocol&&"data:"!==s.protocol||(n.href=""),n.href&&(e=wpLink.buildHtml(n),document.selection&&wpLink.range?(o.focus(),wpLink.range.text=e+(r||wpLink.range.text)+"</a>",wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select(),wpLink.range=null):void 0!==o.selectionStart&&(t=o.selectionStart,s=o.selectionEnd,r=t+(e=e+(n=r||o.value.substring(t,s))+"</a>").length,t!==s||n||(r-=4),o.value=o.value.substring(0,t)+e+o.value.substring(s,o.value.length),o.selectionStart=o.selectionEnd=r),wpLink.close(),o.focus(),i(o).trigger("change"),a.a11y.speak(l.linkInserted)))},mceUpdate:function(){var e,t,s,o=wpLink.getAttrs(),c=document.createElement("a");if(c.href=o.href,"javascript:"!==c.protocol&&"data:"!==c.protocol||(o.href=""),!o.href)return r.execCommand("unlink"),void wpLink.close();e=n(),r.undoManager.transact((function(){e.length||(r.execCommand("mceInsertLink",!1,{href:"_wp_link_placeholder","data-wp-temp-link":1}),e=r.$('a[data-wp-temp-link="1"]').removeAttr("data-wp-temp-link"),s=i.trim(e.text())),e.length?(h.wrap.hasClass("has-text-field")&&((t=h.text.val())?e.text(t):s||e.text(o.href)),o["data-wplink-edit"]=null,o["data-mce-href"]=o.href,e.attr(o)):r.execCommand("unlink")})),e=r.$('a[data-wplink-url-error="1"]').removeAttr("data-wplink-url-error"),wpLink.close("noReset"),r.focus(),e.length&&(r.selection.select(e[0]),r.plugins.wplink&&r.plugins.wplink.checkLink(e[0])),r.nodeChanged(),a.a11y.speak(l.linkInserted)},updateFields:function(e,t){h.url.val(t.children(".item-permalink").val()),h.title.val(t.hasClass("no-title")?"":t.children(".item-title").text()),h.wrap.hasClass("has-text-field")&&!h.text.val()&&h.text.val(t.children(".item-title").text())},getUrlFromSelection:function(e){return e||(this.isMCE()?e=r.selection.getContent({format:"text"}):document.selection&&wpLink.range?e=wpLink.range.text:void 0!==this.textarea.selectionStart&&(e=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd))),(e=i.trim(e))&&d.test(e)?"mailto:"+e:e&&u.test(e)?e.replace(/&amp;|&#0?38;/gi,"&"):""},setDefaultValues:function(e){h.url.val(this.getUrlFromSelection(e)),h.title.val(""),h.openInNewTab.prop("checked",!1),h.tanfl.prop("checked",!1),h.tanfl_sponsored.prop("checked",!1),h.tanfl_ugc.prop("checked",!1),h.search.val(""),wpLink.searchInternalLinks(),h.submit.val(l.save)},searchInternalLinks:function(){var e,t=h.search.val()||"",n=parseInt(l.minInputLength,10)||3;t.length>=n?(f.recent.hide(),f.search.show(),wpLink.lastSearch!=t&&(wpLink.lastSearch=t,e=h.search.parent().find(".spinner").addClass("is-active"),f.search.change(t),f.search.ajax((function(){e.removeClass("is-active")})))):(f.search.hide(),f.recent.show())},next:function(){f.search.next(),f.recent.next()},prev:function(){f.search.prev(),f.recent.prev()},keydown:function(e){var t;27===e.keyCode?(wpLink.close(),e.stopImmediatePropagation()):9===e.keyCode&&("wp-link-submit"!==(t=e.target.id)||e.shiftKey?"wp-link-close"===t&&e.shiftKey&&(h.submit.focus(),e.preventDefault()):(h.close.focus(),e.preventDefault())),e.shiftKey||38!==e.keyCode&&40!==e.keyCode||document.activeElement&&("link-title-field"===document.activeElement.id||"url-field"===document.activeElement.id)||(t=38===e.keyCode?"prev":"next",clearInterval(wpLink.keyInterval),wpLink[t](),wpLink.keyInterval=setInterval(wpLink[t],wpLink.keySensitivity),e.preventDefault())},keyup:function(e){38!==e.keyCode&&40!==e.keyCode||(clearInterval(wpLink.keyInterval),e.preventDefault())},delayedCallback:function(e,t){var n,i,l,a;return t?(setTimeout((function(){return i?e.apply(a,l):void(n=!0)}),t),function(){if(n)return e.apply(this,arguments);l=arguments,a=this,i=!0}):e}},o=function(e,t){var n=this;this.element=e,this.ul=e.children("ul"),this.contentHeight=e.children("#link-selector-height"),this.waiting=e.find(".river-waiting"),this.change(t),this.refresh(),i("#wp-link .query-results, #wp-link #link-selector").scroll((function(){n.maybeLoad()})),e.on("click","li",(function(e){n.select(i(this),e)}))},i.extend(o.prototype,{refresh:function(){this.deselect(),this.visible=this.element.is(":visible")},show:function(){this.visible||(this.deselect(),this.element.show(),this.visible=!0)},hide:function(){this.element.hide(),this.visible=!1},select:function(e,t){var n,i,l,a;e.hasClass("unselectable")||e==this.selected||(this.deselect(),this.selected=e.addClass("selected"),n=e.outerHeight(),i=this.element.height(),l=e.position().top,a=this.element.scrollTop(),l<0?this.element.scrollTop(a+l):i<l+n&&this.element.scrollTop(a+l-i+n),this.element.trigger("river-select",[e,t,this]))},deselect:function(){this.selected&&this.selected.removeClass("selected"),this.selected=!1},prev:function(){var e;this.visible&&this.selected&&(e=this.selected.prev("li")).length&&this.select(e)},next:function(){var e;!this.visible||(e=this.selected?this.selected.next("li"):i("li:not(.unselectable):first",this.element)).length&&this.select(e)},ajax:function(e){var t=this,n=1==this.query.page?0:wpLink.minRiverAJAXDuration;n=wpLink.delayedCallback((function(n,i){t.process(n,i),e&&e(n,i)}),n);this.query.ajax(n)},change:function(e){this.query&&this._search==e||(this._search=e,this.query=new c(e),this.element.scrollTop(0))},process:function(e,t){var n,a="",r=!0;t=1==t.page;e?i.each(e,(function(){n=r?"alternate":"",n+=this.title?"":" no-title",a+=n?'<li class="'+n+'">':"<li>",a+='<input type="hidden" class="item-permalink" value="'+this.permalink+'" />',a+='<span class="item-title">',a+=this.title||l.noTitle,a+='</span><span class="item-info">'+this.info+"</span></li>",r=!r})):t&&(a+='<li class="unselectable no-matches-found"><span class="item-title"><em>'+l.noMatchesFound+"</em></span></li>"),this.ul[t?"html":"append"](a)},maybeLoad:function(){var e=this,t=this.element,n=t.scrollTop()+t.height();!this.query.ready()||n<this.contentHeight.height()-wpLink.riverBottomThreshold||setTimeout((function(){var n=t.scrollTop(),i=n+t.height();!e.query.ready()||i<e.contentHeight.height()-wpLink.riverBottomThreshold||(e.waiting.addClass("is-active"),t.scrollTop(n+e.waiting.outerHeight()),e.ajax((function(){e.waiting.removeClass("is-active")})))}),wpLink.timeToTriggerRiver)}}),c=function(e){this.page=1,this.allLoaded=!1,this.querying=!1,this.search=e},i.extend(c.prototype,{ready:function(){return!(this.querying||this.allLoaded)},ajax:function(e){var t=this,n={action:"wp-link-ajax",page:this.page,_ajax_linking_nonce:h.nonce.val()};this.search&&(n.search=this.search),this.querying=!0,i.post(window.ajaxurl,n,(function(i){t.page++,t.querying=!1,t.allLoaded=!i,e(i,n)}),"json")}}),i(document).ready(wpLink.init)}});
dist/Lite/assets/js/link-format-classic.js.gz CHANGED
Binary file
dist/Lite/assets/js/local-seo.js CHANGED
@@ -1 +1 @@
1
- (function(e){function o(o){for(var l,t,n=o[0],i=o[1],u=o[2],r=0,v=[];r<n.length;r++)t=n[r],Object.prototype.hasOwnProperty.call(s,t)&&s[t]&&v.push(s[t][0]),s[t]=0;for(l in i)Object.prototype.hasOwnProperty.call(i,l)&&(e[l]=i[l]);p&&p(o);while(v.length)v.shift()();return c.push.apply(c,u||[]),a()}function a(){for(var e,o=0;o<c.length;o++){for(var a=c[o],l=!0,t=1;t<a.length;t++){var n=a[t];0!==s[n]&&(l=!1)}l&&(c.splice(o--,1),e=i(i.s=a[0]))}return e}var l={},t={"local-seo":0},s=(t={"local-seo":0},{"local-seo":0}),c=[];function n(e){return i.p+"js/"+({"local-seo-Locations-vue":"local-seo-Locations-vue","local-seo-Maps-vue":"local-seo-Maps-vue","local-seo-Main-vue":"local-seo-Main-vue","local-seo-OpeningHours-vue":"local-seo-OpeningHours-vue","local-seo-lite-Locations-vue":"local-seo-lite-Locations-vue","local-seo-lite-LocationsActivate-vue":"local-seo-lite-LocationsActivate-vue","local-seo-lite-Maps-vue":"local-seo-lite-Maps-vue","local-seo-lite-OpeningHours-vue":"local-seo-lite-OpeningHours-vue","local-seo-lite-OpeningHoursActivate-vue":"local-seo-lite-OpeningHoursActivate-vue","local-seo-pro-LocalSeoCta-vue":"local-seo-pro-LocalSeoCta-vue","local-seo-pro-Locations-vue":"local-seo-pro-Locations-vue","local-seo-pro-LocationsActivate-vue":"local-seo-pro-LocationsActivate-vue","local-seo-pro-LocationsBusinessInfo-vue":"local-seo-pro-LocationsBusinessInfo-vue","local-seo-pro-Maps-vue":"local-seo-pro-Maps-vue","local-seo-pro-MapsActivate-vue":"local-seo-pro-MapsActivate-vue","local-seo-pro-MultipleLocationsSettings-vue":"local-seo-pro-MultipleLocationsSettings-vue","local-seo-pro-OpeningHours-vue":"local-seo-pro-OpeningHours-vue","local-seo-pro-OpeningHoursActivate-vue":"local-seo-pro-OpeningHoursActivate-vue"}[e]||e)+".js?ver="+{"local-seo-Locations-vue":"086bdd6b","local-seo-Maps-vue":"c40b22f8","local-seo-Main-vue":"ccc8a91a","local-seo-OpeningHours-vue":"c5603ff6","local-seo-lite-Locations-vue":"06127529","local-seo-lite-LocationsActivate-vue":"7f8d5742","local-seo-lite-Maps-vue":"bdb957af","local-seo-lite-OpeningHours-vue":"66fcf639","local-seo-lite-OpeningHoursActivate-vue":"8a3264ca","local-seo-pro-LocalSeoCta-vue":"4756d766","local-seo-pro-Locations-vue":"52f1e2be","local-seo-pro-LocationsActivate-vue":"ca828922","local-seo-pro-LocationsBusinessInfo-vue":"7ee0660b","local-seo-pro-Maps-vue":"3323f6ce","local-seo-pro-MapsActivate-vue":"fe81f23b","local-seo-pro-MultipleLocationsSettings-vue":"7cbaed4f","local-seo-pro-OpeningHours-vue":"da25b83a","local-seo-pro-OpeningHoursActivate-vue":"068f2e72"}[e]}function i(o){if(l[o])return l[o].exports;var a=l[o]={i:o,l:!1,exports:{}};return e[o].call(a.exports,a,a.exports,i),a.l=!0,a.exports}i.e=function(e){var o=[],a={"local-seo-Locations-vue":1,"local-seo-Maps-vue":1,"local-seo-Main-vue":1,"local-seo-OpeningHours-vue":1,"local-seo-lite-Locations-vue":1,"local-seo-lite-Maps-vue":1,"local-seo-lite-OpeningHours-vue":1,"local-seo-pro-Locations-vue":1,"local-seo-pro-Maps-vue":1,"local-seo-pro-OpeningHours-vue":1};t[e]?o.push(t[e]):0!==t[e]&&a[e]&&o.push(t[e]=new Promise((function(o,a){for(var l="css/"+({"local-seo-Locations-vue":"local-seo-Locations-vue","local-seo-Maps-vue":"local-seo-Maps-vue","local-seo-Main-vue":"local-seo-Main-vue","local-seo-OpeningHours-vue":"local-seo-OpeningHours-vue","local-seo-lite-Locations-vue":"local-seo-lite-Locations-vue","local-seo-lite-LocationsActivate-vue":"local-seo-lite-LocationsActivate-vue","local-seo-lite-Maps-vue":"local-seo-lite-Maps-vue","local-seo-lite-OpeningHours-vue":"local-seo-lite-OpeningHours-vue","local-seo-lite-OpeningHoursActivate-vue":"local-seo-lite-OpeningHoursActivate-vue","local-seo-pro-LocalSeoCta-vue":"local-seo-pro-LocalSeoCta-vue","local-seo-pro-Locations-vue":"local-seo-pro-Locations-vue","local-seo-pro-LocationsActivate-vue":"local-seo-pro-LocationsActivate-vue","local-seo-pro-LocationsBusinessInfo-vue":"local-seo-pro-LocationsBusinessInfo-vue","local-seo-pro-Maps-vue":"local-seo-pro-Maps-vue","local-seo-pro-MapsActivate-vue":"local-seo-pro-MapsActivate-vue","local-seo-pro-MultipleLocationsSettings-vue":"local-seo-pro-MultipleLocationsSettings-vue","local-seo-pro-OpeningHours-vue":"local-seo-pro-OpeningHours-vue","local-seo-pro-OpeningHoursActivate-vue":"local-seo-pro-OpeningHoursActivate-vue"}[e]||e)+".css?ver="+{"local-seo-Locations-vue":"086bdd6b","local-seo-Maps-vue":"c40b22f8","local-seo-Main-vue":"ccc8a91a","local-seo-OpeningHours-vue":"c5603ff6","local-seo-lite-Locations-vue":"06127529","local-seo-lite-LocationsActivate-vue":"7f8d5742","local-seo-lite-Maps-vue":"bdb957af","local-seo-lite-OpeningHours-vue":"66fcf639","local-seo-lite-OpeningHoursActivate-vue":"8a3264ca","local-seo-pro-LocalSeoCta-vue":"4756d766","local-seo-pro-Locations-vue":"52f1e2be","local-seo-pro-LocationsActivate-vue":"ca828922","local-seo-pro-LocationsBusinessInfo-vue":"7ee0660b","local-seo-pro-Maps-vue":"3323f6ce","local-seo-pro-MapsActivate-vue":"fe81f23b","local-seo-pro-MultipleLocationsSettings-vue":"7cbaed4f","local-seo-pro-OpeningHours-vue":"da25b83a","local-seo-pro-OpeningHoursActivate-vue":"068f2e72"}[e],s=i.p+l,c=document.getElementsByTagName("link"),n=0;n<c.length;n++){var u=c[n],r=u.getAttribute("data-href")||u.getAttribute("href");if("stylesheet"===u.rel&&(r===l||r===s))return o()}var v=document.getElementsByTagName("style");for(n=0;n<v.length;n++){u=v[n],r=u.getAttribute("data-href");if(r===l||r===s)return o()}var p=document.createElement("link");p.rel="stylesheet",p.type="text/css",p.onload=o,p.onerror=function(o){var l=o&&o.target&&o.target.src||s,c=new Error("Loading CSS chunk "+e+" failed.\n("+l+")");c.code="CSS_CHUNK_LOAD_FAILED",c.request=l,delete t[e],p.parentNode.removeChild(p),a(c)},p.href=s;var f=document.getElementsByTagName("head")[0];f.appendChild(p)})).then((function(){t[e]=0})));a={"local-seo-Locations-vue":1,"local-seo-Maps-vue":1,"local-seo-Main-vue":1,"local-seo-OpeningHours-vue":1,"local-seo-lite-Locations-vue":1,"local-seo-lite-Maps-vue":1,"local-seo-lite-OpeningHours-vue":1,"local-seo-pro-Locations-vue":1,"local-seo-pro-Maps-vue":1,"local-seo-pro-OpeningHours-vue":1};t[e]?o.push(t[e]):0!==t[e]&&a[e]&&o.push(t[e]=new Promise((function(o,a){for(var l=({"local-seo-Locations-vue":"local-seo-Locations-vue","local-seo-Maps-vue":"local-seo-Maps-vue","local-seo-Main-vue":"local-seo-Main-vue","local-seo-OpeningHours-vue":"local-seo-OpeningHours-vue","local-seo-lite-Locations-vue":"local-seo-lite-Locations-vue","local-seo-lite-LocationsActivate-vue":"local-seo-lite-LocationsActivate-vue","local-seo-lite-Maps-vue":"local-seo-lite-Maps-vue","local-seo-lite-OpeningHours-vue":"local-seo-lite-OpeningHours-vue","local-seo-lite-OpeningHoursActivate-vue":"local-seo-lite-OpeningHoursActivate-vue","local-seo-pro-LocalSeoCta-vue":"local-seo-pro-LocalSeoCta-vue","local-seo-pro-Locations-vue":"local-seo-pro-Locations-vue","local-seo-pro-LocationsActivate-vue":"local-seo-pro-LocationsActivate-vue","local-seo-pro-LocationsBusinessInfo-vue":"local-seo-pro-LocationsBusinessInfo-vue","local-seo-pro-Maps-vue":"local-seo-pro-Maps-vue","local-seo-pro-MapsActivate-vue":"local-seo-pro-MapsActivate-vue","local-seo-pro-MultipleLocationsSettings-vue":"local-seo-pro-MultipleLocationsSettings-vue","local-seo-pro-OpeningHours-vue":"local-seo-pro-OpeningHours-vue","local-seo-pro-OpeningHoursActivate-vue":"local-seo-pro-OpeningHoursActivate-vue"}[e]||e)+".css",s=i.p+l,c=document.getElementsByTagName("link"),n=0;n<c.length;n++){var u=c[n],r=u.getAttribute("data-href")||u.getAttribute("href");if("stylesheet"===u.rel&&(r===l||r===s))return o()}var v=document.getElementsByTagName("style");for(n=0;n<v.length;n++){u=v[n],r=u.getAttribute("data-href");if(r===l||r===s)return o()}var p=document.createElement("link");p.rel="stylesheet",p.type="text/css";var f=function(l){if(p.onerror=p.onload=null,"load"===l.type)o();else{var c=l&&("load"===l.type?"missing":l.type),n=l&&l.target&&l.target.href||s,i=new Error("Loading CSS chunk "+e+" failed.\n("+n+")");i.code="CSS_CHUNK_LOAD_FAILED",i.type=c,i.request=n,delete t[e],p.parentNode.removeChild(p),a(i)}};p.onerror=p.onload=f,p.href=s,document.head.appendChild(p)})).then((function(){t[e]=0})));var l=s[e];if(0!==l)if(l)o.push(l[2]);else{var c=new Promise((function(o,a){l=s[e]=[o,a]}));o.push(l[2]=c);var u,r=document.createElement("script");r.charset="utf-8",r.timeout=120,i.nc&&r.setAttribute("nonce",i.nc),r.src=n(e);var v=new Error;u=function(o){r.onerror=r.onload=null,clearTimeout(p);var a=s[e];if(0!==a){if(a){var l=o&&("load"===o.type?"missing":o.type),t=o&&o.target&&o.target.src;v.message="Loading chunk "+e+" failed.\n("+l+": "+t+")",v.name="ChunkLoadError",v.type=l,v.request=t,a[1](v)}s[e]=void 0}};var p=setTimeout((function(){u({type:"timeout",target:r})}),12e4);r.onerror=r.onload=u,document.head.appendChild(r)}return Promise.all(o)},i.m=e,i.c=l,i.d=function(e,o,a){i.o(e,o)||Object.defineProperty(e,o,{enumerable:!0,get:a})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,o){if(1&o&&(e=i(e)),8&o)return e;if(4&o&&"object"===typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(i.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&o&&"string"!=typeof e)for(var l in e)i.d(a,l,function(o){return e[o]}.bind(null,l));return a},i.n=function(e){var o=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(o,"a",o),o},i.o=function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},i.p="/",i.oe=function(e){throw console.error(e),e};var u=window["aioseopjsonp"]=window["aioseopjsonp"]||[],r=u.push.bind(u);u.push=o,u=u.slice();for(var v=0;v<u.length;v++)o(u[v]);var p=r;c.push([6,"chunk-vendors","chunk-common"]),a()})({3374:function(e,o,a){var l={"./Locations.vue":["f0a3","local-seo-Locations-vue"],"./Main.vue":["05a5","local-seo-Maps-vue","local-seo-Main-vue"],"./Maps.vue":["52d1","local-seo-Maps-vue"],"./OpeningHours.vue":["474a","local-seo-OpeningHours-vue"],"./lite/Locations.vue":["ba9f","local-seo-lite-Locations-vue"],"./lite/LocationsActivate.vue":["7c9a","local-seo-lite-LocationsActivate-vue"],"./lite/Maps.vue":["4369","local-seo-lite-Maps-vue"],"./lite/OpeningHours.vue":["88a0","local-seo-lite-OpeningHours-vue"],"./lite/OpeningHoursActivate.vue":["74ca","local-seo-lite-OpeningHoursActivate-vue"],"./pro/LocalSeoCta.vue":["734c","local-seo-pro-LocalSeoCta-vue"],"./pro/Locations.vue":["bcdb","local-seo-pro-Locations-vue"],"./pro/LocationsActivate.vue":["2d4e","local-seo-pro-LocationsActivate-vue"],"./pro/LocationsBusinessInfo.vue":["c57d","local-seo-pro-LocationsBusinessInfo-vue"],"./pro/Maps.vue":["9268","local-seo-pro-Maps-vue"],"./pro/MapsActivate.vue":["0d64","local-seo-pro-MapsActivate-vue"],"./pro/MultipleLocationsSettings.vue":["d8a3","local-seo-pro-MultipleLocationsSettings-vue"],"./pro/OpeningHours.vue":["2e8c","local-seo-pro-OpeningHours-vue"],"./pro/OpeningHoursActivate.vue":["400d","local-seo-pro-OpeningHoursActivate-vue"]};function t(e){if(!a.o(l,e))return Promise.resolve().then((function(){var o=new Error("Cannot find module '"+e+"'");throw o.code="MODULE_NOT_FOUND",o}));var o=l[e],t=o[0];return Promise.all(o.slice(1).map(a.e)).then((function(){return a(t)}))}t.keys=function(){return Object.keys(l)},t.id="3374",e.exports=t},6:function(e,o,a){e.exports=a("acc1")},acc1:function(e,o,a){"use strict";a.r(o);a("e260"),a("e6cf"),a("cca6"),a("a79d");var l=a("a026"),t=(a("1725"),a("75b9"),function(){var e=this,o=e.$createElement,a=e._self._c||o;return a("div",{staticClass:"aioseo-app"},[a("router-view")],1)}),s=[],c=a("2877"),n={},i=Object(c["a"])(n,t,s,!1,null,null,null),u=i.exports,r=a("cf27"),v=a("71ae"),p=(a("d3b7"),a("3ca3"),a("ddb0"),a("561c")),f="all-in-one-seo-pack",g=function(e){return function(){return a("3374")("./"+e+".vue")}},d=[{path:"*",redirect:"/locations"},{path:"/locations",name:"locations",component:g("Main"),meta:{access:"aioseo_local_seo_settings",name:Object(p["__"])("Locations",f)}},{path:"/opening-hours",name:"opening-hours",component:g("Main"),meta:{access:"aioseo_local_seo_settings",name:Object(p["__"])("Opening Hours",f)}},{path:"/maps",name:"maps",component:g("Main"),meta:{access:"aioseo_local_seo_settings",name:Object(p["__"])("Maps",f)}}],L=a("31bd"),O=(a("2d26"),a("96cf"),Object(v["a"])(d));Object(L["sync"])(r["a"],O),l["default"].config.productionTip=!1,new l["default"]({router:O,store:r["a"],render:function(e){return e(u)}}).$mount("#aioseo-app")}});
1
+ (function(e){function o(o){for(var l,t,s=o[0],i=o[1],u=o[2],r=0,v=[];r<s.length;r++)t=s[r],Object.prototype.hasOwnProperty.call(c,t)&&c[t]&&v.push(c[t][0]),c[t]=0;for(l in i)Object.prototype.hasOwnProperty.call(i,l)&&(e[l]=i[l]);g&&g(o);while(v.length)v.shift()();return n.push.apply(n,u||[]),a()}function a(){for(var e,o=0;o<n.length;o++){for(var a=n[o],l=!0,t=1;t<a.length;t++){var s=a[t];0!==c[s]&&(l=!1)}l&&(n.splice(o--,1),e=u(u.s=a[0]))}return e}var l={},t={"local-seo":0},s=(t={"local-seo":0},function(){return"rtl"===document.dir}),c={"local-seo":0},n=[];function i(e){return u.p+"js/"+({"local-seo-Locations-vue":"local-seo-Locations-vue","local-seo-Maps-vue":"local-seo-Maps-vue","local-seo-Main-vue":"local-seo-Main-vue","local-seo-OpeningHours-vue":"local-seo-OpeningHours-vue","local-seo-lite-Locations-vue":"local-seo-lite-Locations-vue","local-seo-lite-LocationsActivate-vue":"local-seo-lite-LocationsActivate-vue","local-seo-lite-Maps-vue":"local-seo-lite-Maps-vue","local-seo-lite-OpeningHours-vue":"local-seo-lite-OpeningHours-vue","local-seo-lite-OpeningHoursActivate-vue":"local-seo-lite-OpeningHoursActivate-vue","local-seo-pro-LocalSeoCta-vue":"local-seo-pro-LocalSeoCta-vue","local-seo-pro-Locations-vue":"local-seo-pro-Locations-vue","local-seo-pro-LocationsActivate-vue":"local-seo-pro-LocationsActivate-vue","local-seo-pro-LocationsBusinessInfo-vue":"local-seo-pro-LocationsBusinessInfo-vue","local-seo-pro-Maps-vue":"local-seo-pro-Maps-vue","local-seo-pro-MapsActivate-vue":"local-seo-pro-MapsActivate-vue","local-seo-pro-MultipleLocationsSettings-vue":"local-seo-pro-MultipleLocationsSettings-vue","local-seo-pro-OpeningHours-vue":"local-seo-pro-OpeningHours-vue","local-seo-pro-OpeningHoursActivate-vue":"local-seo-pro-OpeningHoursActivate-vue"}[e]||e)+".js?ver="+{"local-seo-Locations-vue":"f040770e","local-seo-Maps-vue":"52487485","local-seo-Main-vue":"f5d7690b","local-seo-OpeningHours-vue":"fa2ae92b","local-seo-lite-Locations-vue":"a6aa2262","local-seo-lite-LocationsActivate-vue":"bda94c71","local-seo-lite-Maps-vue":"626ee968","local-seo-lite-OpeningHours-vue":"7342c4bc","local-seo-lite-OpeningHoursActivate-vue":"9b909ad1","local-seo-pro-LocalSeoCta-vue":"d32328b1","local-seo-pro-Locations-vue":"bd9b6220","local-seo-pro-LocationsActivate-vue":"575c369c","local-seo-pro-LocationsBusinessInfo-vue":"55d68840","local-seo-pro-Maps-vue":"b33f3f62","local-seo-pro-MapsActivate-vue":"3099887a","local-seo-pro-MultipleLocationsSettings-vue":"7077ed12","local-seo-pro-OpeningHours-vue":"399fcdc3","local-seo-pro-OpeningHoursActivate-vue":"dfdbc5c2"}[e]}function u(o){if(l[o])return l[o].exports;var a=l[o]={i:o,l:!1,exports:{}};return e[o].call(a.exports,a,a.exports,u),a.l=!0,a.exports}u.e=function(e){var o=[],a={"local-seo-Locations-vue":1,"local-seo-Maps-vue":1,"local-seo-Main-vue":1,"local-seo-OpeningHours-vue":1,"local-seo-lite-Locations-vue":1,"local-seo-lite-Maps-vue":1,"local-seo-lite-OpeningHours-vue":1,"local-seo-pro-Locations-vue":1,"local-seo-pro-Maps-vue":1,"local-seo-pro-OpeningHours-vue":1};t[e]?o.push(t[e]):0!==t[e]&&a[e]&&o.push(t[e]=new Promise((function(o,a){for(var l="css/"+({"local-seo-Locations-vue":"local-seo-Locations-vue","local-seo-Maps-vue":"local-seo-Maps-vue","local-seo-Main-vue":"local-seo-Main-vue","local-seo-OpeningHours-vue":"local-seo-OpeningHours-vue","local-seo-lite-Locations-vue":"local-seo-lite-Locations-vue","local-seo-lite-LocationsActivate-vue":"local-seo-lite-LocationsActivate-vue","local-seo-lite-Maps-vue":"local-seo-lite-Maps-vue","local-seo-lite-OpeningHours-vue":"local-seo-lite-OpeningHours-vue","local-seo-lite-OpeningHoursActivate-vue":"local-seo-lite-OpeningHoursActivate-vue","local-seo-pro-LocalSeoCta-vue":"local-seo-pro-LocalSeoCta-vue","local-seo-pro-Locations-vue":"local-seo-pro-Locations-vue","local-seo-pro-LocationsActivate-vue":"local-seo-pro-LocationsActivate-vue","local-seo-pro-LocationsBusinessInfo-vue":"local-seo-pro-LocationsBusinessInfo-vue","local-seo-pro-Maps-vue":"local-seo-pro-Maps-vue","local-seo-pro-MapsActivate-vue":"local-seo-pro-MapsActivate-vue","local-seo-pro-MultipleLocationsSettings-vue":"local-seo-pro-MultipleLocationsSettings-vue","local-seo-pro-OpeningHours-vue":"local-seo-pro-OpeningHours-vue","local-seo-pro-OpeningHoursActivate-vue":"local-seo-pro-OpeningHoursActivate-vue"}[e]||e)+".css",s=u.p+l,c=document.getElementsByTagName("link"),n=0;n<c.length;n++){var i=c[n],r=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(r===l||r===s))return o()}var v=document.getElementsByTagName("style");for(n=0;n<v.length;n++){i=v[n],r=i.getAttribute("data-href");if(r===l||r===s)return o()}var p=document.createElement("link");p.rel="stylesheet",p.type="text/css",p.onload=o,p.onerror=function(o){var l=o&&o.target&&o.target.src||s,c=new Error("Loading CSS chunk "+e+" failed.\n("+l+")");c.code="CSS_CHUNK_LOAD_FAILED",c.request=l,delete t[e],p.parentNode.removeChild(p),a(c)},p.href=s;var g=document.getElementsByTagName("head")[0];g.appendChild(p)})).then((function(){t[e]=0})));a={"local-seo-Locations-vue":1,"local-seo-Maps-vue":1,"local-seo-Main-vue":1,"local-seo-OpeningHours-vue":1,"local-seo-lite-Locations-vue":1,"local-seo-lite-Maps-vue":1,"local-seo-lite-OpeningHours-vue":1,"local-seo-pro-Locations-vue":1,"local-seo-pro-Maps-vue":1,"local-seo-pro-OpeningHours-vue":1};t[e]?o.push(t[e]):0!==t[e]&&a[e]&&o.push(t[e]=new Promise((function(o,a){for(var l=(s(),"css/"+({"local-seo-Locations-vue":"local-seo-Locations-vue","local-seo-Maps-vue":"local-seo-Maps-vue","local-seo-Main-vue":"local-seo-Main-vue","local-seo-OpeningHours-vue":"local-seo-OpeningHours-vue","local-seo-lite-Locations-vue":"local-seo-lite-Locations-vue","local-seo-lite-LocationsActivate-vue":"local-seo-lite-LocationsActivate-vue","local-seo-lite-Maps-vue":"local-seo-lite-Maps-vue","local-seo-lite-OpeningHours-vue":"local-seo-lite-OpeningHours-vue","local-seo-lite-OpeningHoursActivate-vue":"local-seo-lite-OpeningHoursActivate-vue","local-seo-pro-LocalSeoCta-vue":"local-seo-pro-LocalSeoCta-vue","local-seo-pro-Locations-vue":"local-seo-pro-Locations-vue","local-seo-pro-LocationsActivate-vue":"local-seo-pro-LocationsActivate-vue","local-seo-pro-LocationsBusinessInfo-vue":"local-seo-pro-LocationsBusinessInfo-vue","local-seo-pro-Maps-vue":"local-seo-pro-Maps-vue","local-seo-pro-MapsActivate-vue":"local-seo-pro-MapsActivate-vue","local-seo-pro-MultipleLocationsSettings-vue":"local-seo-pro-MultipleLocationsSettings-vue","local-seo-pro-OpeningHours-vue":"local-seo-pro-OpeningHours-vue","local-seo-pro-OpeningHoursActivate-vue":"local-seo-pro-OpeningHoursActivate-vue"}[e]||e)+".css?ver="+{"local-seo-Locations-vue":"f040770e","local-seo-Maps-vue":"52487485","local-seo-Main-vue":"f5d7690b","local-seo-OpeningHours-vue":"fa2ae92b","local-seo-lite-Locations-vue":"a6aa2262","local-seo-lite-LocationsActivate-vue":"bda94c71","local-seo-lite-Maps-vue":"626ee968","local-seo-lite-OpeningHours-vue":"7342c4bc","local-seo-lite-OpeningHoursActivate-vue":"9b909ad1","local-seo-pro-LocalSeoCta-vue":"d32328b1","local-seo-pro-Locations-vue":"bd9b6220","local-seo-pro-LocationsActivate-vue":"575c369c","local-seo-pro-LocationsBusinessInfo-vue":"55d68840","local-seo-pro-Maps-vue":"b33f3f62","local-seo-pro-MapsActivate-vue":"3099887a","local-seo-pro-MultipleLocationsSettings-vue":"7077ed12","local-seo-pro-OpeningHours-vue":"399fcdc3","local-seo-pro-OpeningHoursActivate-vue":"dfdbc5c2"}[e]),t=u.p+l,c=document.getElementsByTagName("link"),n=0;n<c.length;n++){var i=c[n],r=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(r===l||r===t))return o()}var v=document.getElementsByTagName("style");for(n=0;n<v.length;n++){i=v[n],r=i.getAttribute("data-href");if(r===l||r===t)return o()}var p=document.createElement("link");p.rel="stylesheet",p.type="text/css",p.onload=o,p.onerror=function(o){var l=o&&o.target&&o.target.src||t,s=new Error("Loading CSS chunk "+e+" failed.\n("+l+")");s.request=l,a(s)},p.href=t;var g=document.getElementsByTagName("head")[0];g.appendChild(p)})).then((function(){t[e]=0})));var l=c[e];if(0!==l)if(l)o.push(l[2]);else{var n=new Promise((function(o,a){l=c[e]=[o,a]}));o.push(l[2]=n);var r,v=document.createElement("script");v.charset="utf-8",v.timeout=120,u.nc&&v.setAttribute("nonce",u.nc),v.src=i(e);var p=new Error;r=function(o){v.onerror=v.onload=null,clearTimeout(g);var a=c[e];if(0!==a){if(a){var l=o&&("load"===o.type?"missing":o.type),t=o&&o.target&&o.target.src;p.message="Loading chunk "+e+" failed.\n("+l+": "+t+")",p.name="ChunkLoadError",p.type=l,p.request=t,a[1](p)}c[e]=void 0}};var g=setTimeout((function(){r({type:"timeout",target:v})}),12e4);v.onerror=v.onload=r,document.head.appendChild(v)}return Promise.all(o)},u.m=e,u.c=l,u.d=function(e,o,a){u.o(e,o)||Object.defineProperty(e,o,{enumerable:!0,get:a})},u.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},u.t=function(e,o){if(1&o&&(e=u(e)),8&o)return e;if(4&o&&"object"===typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(u.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&o&&"string"!=typeof e)for(var l in e)u.d(a,l,function(o){return e[o]}.bind(null,l));return a},u.n=function(e){var o=e&&e.__esModule?function(){return e["default"]}:function(){return e};return u.d(o,"a",o),o},u.o=function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},u.p="/",u.oe=function(e){throw console.error(e),e};var r=window["aioseopjsonp"]=window["aioseopjsonp"]||[],v=r.push.bind(r);r.push=o,r=r.slice();for(var p=0;p<r.length;p++)o(r[p]);var g=v;n.push([6,"chunk-vendors","chunk-common"]),a()})({3374:function(e,o,a){var l={"./Locations.vue":["f0a3","local-seo-Locations-vue"],"./Main.vue":["05a5","local-seo-Maps-vue","local-seo-Main-vue"],"./Maps.vue":["52d1","local-seo-Maps-vue"],"./OpeningHours.vue":["474a","local-seo-OpeningHours-vue"],"./lite/Locations.vue":["ba9f","local-seo-lite-Locations-vue"],"./lite/LocationsActivate.vue":["7c9a","local-seo-lite-LocationsActivate-vue"],"./lite/Maps.vue":["4369","local-seo-lite-Maps-vue"],"./lite/OpeningHours.vue":["88a0","local-seo-lite-OpeningHours-vue"],"./lite/OpeningHoursActivate.vue":["74ca","local-seo-lite-OpeningHoursActivate-vue"],"./pro/LocalSeoCta.vue":["734c","local-seo-pro-LocalSeoCta-vue"],"./pro/Locations.vue":["bcdb","local-seo-pro-Locations-vue"],"./pro/LocationsActivate.vue":["2d4e","local-seo-pro-LocationsActivate-vue"],"./pro/LocationsBusinessInfo.vue":["c57d","local-seo-pro-LocationsBusinessInfo-vue"],"./pro/Maps.vue":["9268","local-seo-pro-Maps-vue"],"./pro/MapsActivate.vue":["0d64","local-seo-pro-MapsActivate-vue"],"./pro/MultipleLocationsSettings.vue":["d8a3","local-seo-pro-MultipleLocationsSettings-vue"],"./pro/OpeningHours.vue":["2e8c","local-seo-pro-OpeningHours-vue"],"./pro/OpeningHoursActivate.vue":["400d","local-seo-pro-OpeningHoursActivate-vue"]};function t(e){if(!a.o(l,e))return Promise.resolve().then((function(){var o=new Error("Cannot find module '"+e+"'");throw o.code="MODULE_NOT_FOUND",o}));var o=l[e],t=o[0];return Promise.all(o.slice(1).map(a.e)).then((function(){return a(t)}))}t.keys=function(){return Object.keys(l)},t.id="3374",e.exports=t},6:function(e,o,a){e.exports=a("acc1")},acc1:function(e,o,a){"use strict";a.r(o);a("e260"),a("e6cf"),a("cca6"),a("a79d");var l=a("a026"),t=(a("1725"),a("75b9"),function(){var e=this,o=e.$createElement,a=e._self._c||o;return a("div",{staticClass:"aioseo-app"},[a("router-view")],1)}),s=[],c=a("2877"),n={},i=Object(c["a"])(n,t,s,!1,null,null,null),u=i.exports,r=a("cf27"),v=a("71ae"),p=(a("d3b7"),a("3ca3"),a("ddb0"),a("561c")),g="all-in-one-seo-pack",f=function(e){return function(){return a("3374")("./"+e+".vue")}},d=[{path:"*",redirect:"/locations"},{path:"/locations",name:"locations",component:f("Main"),meta:{access:"aioseo_local_seo_settings",name:Object(p["__"])("Locations",g)}},{path:"/opening-hours",name:"opening-hours",component:f("Main"),meta:{access:"aioseo_local_seo_settings",name:Object(p["__"])("Opening Hours",g)}},{path:"/maps",name:"maps",component:f("Main"),meta:{access:"aioseo_local_seo_settings",name:Object(p["__"])("Maps",g)}}],L=a("31bd"),O=(a("2d26"),a("96cf"),Object(v["a"])(d));Object(L["sync"])(r["a"],O),l["default"].config.productionTip=!1,new l["default"]({router:O,store:r["a"],render:function(e){return e(u)}}).$mount("#aioseo-app")}});
dist/Lite/assets/js/monsterinsights.js CHANGED
@@ -1 +1 @@
1
- (function(e){function t(t){for(var r,s,a=t[0],u=t[1],c=t[2],l=0,h=[];l<a.length;l++)s=a[l],Object.prototype.hasOwnProperty.call(o,s)&&o[s]&&h.push(o[s][0]),o[s]=0;for(r in u)Object.prototype.hasOwnProperty.call(u,r)&&(e[r]=u[r]);f&&f(t);while(h.length)h.shift()();return i.push.apply(i,c||[]),n()}function n(){for(var e,t=0;t<i.length;t++){for(var n=i[t],r=!0,s=1;s<n.length;s++){var a=n[s];0!==o[a]&&(r=!1)}r&&(i.splice(t--,1),e=u(u.s=n[0]))}return e}var r={},s={monsterinsights:0},o=(s={monsterinsights:0},{monsterinsights:0}),i=[];function a(e){return u.p+"js/"+({"monsterinsights-Main-vue":"monsterinsights-Main-vue","monsterinsights-Monsterinsights-vue":"monsterinsights-Monsterinsights-vue"}[e]||e)+".js?ver="+{"monsterinsights-Main-vue":"f28de026","monsterinsights-Monsterinsights-vue":"34150cc0"}[e]}function u(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,u),n.l=!0,n.exports}u.e=function(e){var t=[],n={"monsterinsights-Main-vue":1,"monsterinsights-Monsterinsights-vue":1};s[e]?t.push(s[e]):0!==s[e]&&n[e]&&t.push(s[e]=new Promise((function(t,n){for(var r="css/"+({"monsterinsights-Main-vue":"monsterinsights-Main-vue","monsterinsights-Monsterinsights-vue":"monsterinsights-Monsterinsights-vue"}[e]||e)+".css?ver="+{"monsterinsights-Main-vue":"f28de026","monsterinsights-Monsterinsights-vue":"34150cc0"}[e],o=u.p+r,i=document.getElementsByTagName("link"),a=0;a<i.length;a++){var c=i[a],l=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(l===r||l===o))return t()}var h=document.getElementsByTagName("style");for(a=0;a<h.length;a++){c=h[a],l=c.getAttribute("data-href");if(l===r||l===o)return t()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css",f.onload=t,f.onerror=function(t){var r=t&&t.target&&t.target.src||o,i=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");i.code="CSS_CHUNK_LOAD_FAILED",i.request=r,delete s[e],f.parentNode.removeChild(f),n(i)},f.href=o;var d=document.getElementsByTagName("head")[0];d.appendChild(f)})).then((function(){s[e]=0})));n={"monsterinsights-Main-vue":1,"monsterinsights-Monsterinsights-vue":1};s[e]?t.push(s[e]):0!==s[e]&&n[e]&&t.push(s[e]=new Promise((function(t,n){for(var r=({"monsterinsights-Main-vue":"monsterinsights-Main-vue","monsterinsights-Monsterinsights-vue":"monsterinsights-Monsterinsights-vue"}[e]||e)+".css",o=u.p+r,i=document.getElementsByTagName("link"),a=0;a<i.length;a++){var c=i[a],l=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(l===r||l===o))return t()}var h=document.getElementsByTagName("style");for(a=0;a<h.length;a++){c=h[a],l=c.getAttribute("data-href");if(l===r||l===o)return t()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css";var d=function(r){if(f.onerror=f.onload=null,"load"===r.type)t();else{var i=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.href||o,u=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");u.code="CSS_CHUNK_LOAD_FAILED",u.type=i,u.request=a,delete s[e],f.parentNode.removeChild(f),n(u)}};f.onerror=f.onload=d,f.href=o,document.head.appendChild(f)})).then((function(){s[e]=0})));var r=o[e];if(0!==r)if(r)t.push(r[2]);else{var i=new Promise((function(t,n){r=o[e]=[t,n]}));t.push(r[2]=i);var c,l=document.createElement("script");l.charset="utf-8",l.timeout=120,u.nc&&l.setAttribute("nonce",u.nc),l.src=a(e);var h=new Error;c=function(t){l.onerror=l.onload=null,clearTimeout(f);var n=o[e];if(0!==n){if(n){var r=t&&("load"===t.type?"missing":t.type),s=t&&t.target&&t.target.src;h.message="Loading chunk "+e+" failed.\n("+r+": "+s+")",h.name="ChunkLoadError",h.type=r,h.request=s,n[1](h)}o[e]=void 0}};var f=setTimeout((function(){c({type:"timeout",target:l})}),12e4);l.onerror=l.onload=c,document.head.appendChild(l)}return Promise.all(t)},u.m=e,u.c=r,u.d=function(e,t,n){u.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},u.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},u.t=function(e,t){if(1&t&&(e=u(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(u.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)u.d(n,r,function(t){return e[t]}.bind(null,r));return n},u.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return u.d(t,"a",t),t},u.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},u.p="/",u.oe=function(e){throw console.error(e),e};var c=window["aioseopjsonp"]=window["aioseopjsonp"]||[],l=c.push.bind(c);c.push=t,c=c.slice();for(var h=0;h<c.length;h++)t(c[h]);var f=l;i.push([7,"chunk-vendors","chunk-common"]),n()})({"3e94":function(e,t,n){var r={"./Main.vue":["8679","monsterinsights-Main-vue"],"./Monsterinsights.vue":["4d8e","monsterinsights-Monsterinsights-vue"]};function s(e){if(!n.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],s=t[0];return n.e(t[1]).then((function(){return n(s)}))}s.keys=function(){return Object.keys(r)},s.id="3e94",e.exports=s},7:function(e,t,n){e.exports=n("d9d9")},d9d9:function(e,t,n){"use strict";n.r(t);n("e260"),n("e6cf"),n("cca6"),n("a79d");var r=n("a026"),s=(n("1725"),n("75b9"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"aioseo-app"},[n("router-view")],1)}),o=[],i=n("2877"),a={},u=Object(i["a"])(a,s,o,!1,null,null,null),c=u.exports,l=n("cf27"),h=n("71ae"),f=(n("d3b7"),n("3ca3"),n("ddb0"),n("561c")),d="all-in-one-seo-pack",g=function(e){return function(){return n("3e94")("./"+e+".vue")}},m=[{path:"*",redirect:"/"},{path:"/",name:"monsterinsights",component:g("Main"),meta:{access:"aioseo_manage_seo",name:Object(f["__"])("Analytics",d)}}],p=n("31bd"),v=(n("2d26"),n("96cf"),Object(h["a"])(m));Object(p["sync"])(l["a"],v),r["default"].config.productionTip=!1,new r["default"]({router:v,store:l["a"],render:function(e){return e(c)}}).$mount("#aioseo-app")}});
1
+ (function(e){function t(t){for(var r,s,o=t[0],u=t[1],c=t[2],l=0,h=[];l<o.length;l++)s=o[l],Object.prototype.hasOwnProperty.call(i,s)&&i[s]&&h.push(i[s][0]),i[s]=0;for(r in u)Object.prototype.hasOwnProperty.call(u,r)&&(e[r]=u[r]);f&&f(t);while(h.length)h.shift()();return a.push.apply(a,c||[]),n()}function n(){for(var e,t=0;t<a.length;t++){for(var n=a[t],r=!0,s=1;s<n.length;s++){var o=n[s];0!==i[o]&&(r=!1)}r&&(a.splice(t--,1),e=c(c.s=n[0]))}return e}var r={},s={monsterinsights:0},o=(s={monsterinsights:0},function(){return"rtl"===document.dir}),i={monsterinsights:0},a=[];function u(e){return c.p+"js/"+({"monsterinsights-Main-vue":"monsterinsights-Main-vue","monsterinsights-Monsterinsights-vue":"monsterinsights-Monsterinsights-vue"}[e]||e)+".js?ver="+{"monsterinsights-Main-vue":"ed7e48ba","monsterinsights-Monsterinsights-vue":"3953dd1d"}[e]}function c(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,c),n.l=!0,n.exports}c.e=function(e){var t=[],n={"monsterinsights-Main-vue":1,"monsterinsights-Monsterinsights-vue":1};s[e]?t.push(s[e]):0!==s[e]&&n[e]&&t.push(s[e]=new Promise((function(t,n){for(var r="css/"+({"monsterinsights-Main-vue":"monsterinsights-Main-vue","monsterinsights-Monsterinsights-vue":"monsterinsights-Monsterinsights-vue"}[e]||e)+".css",o=c.p+r,i=document.getElementsByTagName("link"),a=0;a<i.length;a++){var u=i[a],l=u.getAttribute("data-href")||u.getAttribute("href");if("stylesheet"===u.rel&&(l===r||l===o))return t()}var h=document.getElementsByTagName("style");for(a=0;a<h.length;a++){u=h[a],l=u.getAttribute("data-href");if(l===r||l===o)return t()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css",d.onload=t,d.onerror=function(t){var r=t&&t.target&&t.target.src||o,i=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");i.code="CSS_CHUNK_LOAD_FAILED",i.request=r,delete s[e],d.parentNode.removeChild(d),n(i)},d.href=o;var f=document.getElementsByTagName("head")[0];f.appendChild(d)})).then((function(){s[e]=0})));n={"monsterinsights-Main-vue":1,"monsterinsights-Monsterinsights-vue":1};s[e]?t.push(s[e]):0!==s[e]&&n[e]&&t.push(s[e]=new Promise((function(t,n){for(var r=(o(),"css/"+({"monsterinsights-Main-vue":"monsterinsights-Main-vue","monsterinsights-Monsterinsights-vue":"monsterinsights-Monsterinsights-vue"}[e]||e)+".css?ver="+{"monsterinsights-Main-vue":"ed7e48ba","monsterinsights-Monsterinsights-vue":"3953dd1d"}[e]),s=c.p+r,i=document.getElementsByTagName("link"),a=0;a<i.length;a++){var u=i[a],l=u.getAttribute("data-href")||u.getAttribute("href");if("stylesheet"===u.rel&&(l===r||l===s))return t()}var h=document.getElementsByTagName("style");for(a=0;a<h.length;a++){u=h[a],l=u.getAttribute("data-href");if(l===r||l===s)return t()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css",d.onload=t,d.onerror=function(t){var r=t&&t.target&&t.target.src||s,o=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");o.request=r,n(o)},d.href=s;var f=document.getElementsByTagName("head")[0];f.appendChild(d)})).then((function(){s[e]=0})));var r=i[e];if(0!==r)if(r)t.push(r[2]);else{var a=new Promise((function(t,n){r=i[e]=[t,n]}));t.push(r[2]=a);var l,h=document.createElement("script");h.charset="utf-8",h.timeout=120,c.nc&&h.setAttribute("nonce",c.nc),h.src=u(e);var d=new Error;l=function(t){h.onerror=h.onload=null,clearTimeout(f);var n=i[e];if(0!==n){if(n){var r=t&&("load"===t.type?"missing":t.type),s=t&&t.target&&t.target.src;d.message="Loading chunk "+e+" failed.\n("+r+": "+s+")",d.name="ChunkLoadError",d.type=r,d.request=s,n[1](d)}i[e]=void 0}};var f=setTimeout((function(){l({type:"timeout",target:h})}),12e4);h.onerror=h.onload=l,document.head.appendChild(h)}return Promise.all(t)},c.m=e,c.c=r,c.d=function(e,t,n){c.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},c.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,t){if(1&t&&(e=c(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(c.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)c.d(n,r,function(t){return e[t]}.bind(null,r));return n},c.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return c.d(t,"a",t),t},c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},c.p="/",c.oe=function(e){throw console.error(e),e};var l=window["aioseopjsonp"]=window["aioseopjsonp"]||[],h=l.push.bind(l);l.push=t,l=l.slice();for(var d=0;d<l.length;d++)t(l[d]);var f=h;a.push([7,"chunk-vendors","chunk-common"]),n()})({"3e94":function(e,t,n){var r={"./Main.vue":["8679","monsterinsights-Main-vue"],"./Monsterinsights.vue":["4d8e","monsterinsights-Monsterinsights-vue"]};function s(e){if(!n.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],s=t[0];return n.e(t[1]).then((function(){return n(s)}))}s.keys=function(){return Object.keys(r)},s.id="3e94",e.exports=s},7:function(e,t,n){e.exports=n("d9d9")},d9d9:function(e,t,n){"use strict";n.r(t);n("e260"),n("e6cf"),n("cca6"),n("a79d");var r=n("a026"),s=(n("1725"),n("75b9"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"aioseo-app"},[n("router-view")],1)}),o=[],i=n("2877"),a={},u=Object(i["a"])(a,s,o,!1,null,null,null),c=u.exports,l=n("cf27"),h=n("71ae"),d=(n("d3b7"),n("3ca3"),n("ddb0"),n("561c")),f="all-in-one-seo-pack",g=function(e){return function(){return n("3e94")("./"+e+".vue")}},m=[{path:"*",redirect:"/"},{path:"/",name:"monsterinsights",component:g("Main"),meta:{access:"aioseo_manage_seo",name:Object(d["__"])("Analytics",f)}}],v=n("31bd"),p=(n("2d26"),n("96cf"),Object(h["a"])(m));Object(v["sync"])(l["a"],p),r["default"].config.productionTip=!1,new r["default"]({router:p,store:l["a"],render:function(e){return e(c)}}).$mount("#aioseo-app")}});
dist/Lite/assets/js/plugins.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Tuesday, November 9th 2021, 10:20:20 am */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.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 o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));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=58)}({36:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.default=e.exports,e.exports.__esModule=!0},37:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e},e.exports.default=e.exports,e.exports.__esModule=!0},58:function(e,t,n){"use strict";n.r(t);t=n(36);var r=n.n(t),o=(t=n(37),n.n(t));new(function(){function e(){r()(this,e),this.selector=document.querySelector('tr[data-plugin="'+window.aioseoPlugins.basename+'"]'),this.init()}return o()(e,[{key:"init",value:function(){var e;this.selector&&(this.selector.classList.add("aioseo-plugin-row"),(e=this.selector.querySelectorAll("span.proupgrade a, span.docs a, span.support a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})),(e=this.selector.querySelectorAll(".column-description .active a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})))}}]),e}())}});
1
+ /*! ! built on Tuesday, November 16th 2021, 3:05:17 pm */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.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 o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));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=58)}({36:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.default=e.exports,e.exports.__esModule=!0},37:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e},e.exports.default=e.exports,e.exports.__esModule=!0},58:function(e,t,n){"use strict";n.r(t);t=n(36);var r=n.n(t),o=(t=n(37),n.n(t));new(function(){function e(){r()(this,e),this.selector=document.querySelector('tr[data-plugin="'+window.aioseoPlugins.basename+'"]'),this.init()}return o()(e,[{key:"init",value:function(){var e;this.selector&&(this.selector.classList.add("aioseo-plugin-row"),(e=this.selector.querySelectorAll("span.proupgrade a, span.docs a, span.support a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})),(e=this.selector.querySelectorAll(".column-description .active a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})))}}]),e}())}});
dist/Lite/assets/js/plugins.js.gz CHANGED
Binary file
dist/Lite/assets/js/redirects.js CHANGED
@@ -1 +1 @@
1
- (function(e){function r(r){for(var i,s,a=r[0],d=r[1],p=r[2],u=0,n=[];u<a.length;u++)s=a[u],Object.prototype.hasOwnProperty.call(o,s)&&o[s]&&n.push(o[s][0]),o[s]=0;for(i in d)Object.prototype.hasOwnProperty.call(d,i)&&(e[i]=d[i]);l&&l(r);while(n.length)n.shift()();return c.push.apply(c,p||[]),t()}function t(){for(var e,r=0;r<c.length;r++){for(var t=c[r],i=!0,s=1;s<t.length;s++){var a=t[s];0!==o[a]&&(i=!1)}i&&(c.splice(r--,1),e=d(d.s=t[0]))}return e}var i={},s={redirects:0},o=(s={redirects:0},{redirects:0}),c=[];function a(e){return d.p+"js/"+({"redirects-pro-Redirects-vue":"redirects-pro-Redirects-vue","redirects-Main-vue":"redirects-Main-vue","redirects-Redirects-vue":"redirects-Redirects-vue","redirects-lite-FullSiteRedirect-vue":"redirects-lite-FullSiteRedirect-vue","redirects-lite-ImportExport-vue":"redirects-lite-ImportExport-vue","redirects-lite-Logs-vue":"redirects-lite-Logs-vue","redirects-lite-Logs404-vue":"redirects-lite-Logs404-vue","redirects-lite-Redirects-vue":"redirects-lite-Redirects-vue","redirects-lite-RedirectsActivate-vue":"redirects-lite-RedirectsActivate-vue","redirects-lite-Settings-vue":"redirects-lite-Settings-vue","redirects-pro-FullSiteRedirect-vue":"redirects-pro-FullSiteRedirect-vue","redirects-pro-ImportExport-vue":"redirects-pro-ImportExport-vue","redirects-pro-Logs-vue":"redirects-pro-Logs-vue","redirects-pro-Logs404-vue":"redirects-pro-Logs404-vue","redirects-pro-RedirectsActivate-vue":"redirects-pro-RedirectsActivate-vue","redirects-pro-Settings-vue":"redirects-pro-Settings-vue","redirects-pro-partials-CanonicalSettings-vue":"redirects-pro-partials-CanonicalSettings-vue","redirects-pro-partials-ExportRedirects-vue":"redirects-pro-partials-ExportRedirects-vue","redirects-pro-partials-HTTPHeaders-vue":"redirects-pro-partials-HTTPHeaders-vue","redirects-pro-partials-ImportAioseo-vue":"redirects-pro-partials-ImportAioseo-vue","redirects-pro-partials-ImportOthers-vue":"redirects-pro-partials-ImportOthers-vue","redirects-pro-partials-RelocateSite-vue":"redirects-pro-partials-RelocateSite-vue","redirects-pro-partials-ServerConfigReloadWarning-vue":"redirects-pro-partials-ServerConfigReloadWarning-vue","redirects-pro-partials-SiteAliases-vue":"redirects-pro-partials-SiteAliases-vue"}[e]||e)+".js?ver="+{"redirects-pro-Redirects-vue":"7a32883d","redirects-Main-vue":"06606bd0","redirects-Redirects-vue":"4b41714f","redirects-lite-FullSiteRedirect-vue":"ac7d41fb","redirects-lite-ImportExport-vue":"9fdfd833","redirects-lite-Logs-vue":"931706d2","redirects-lite-Logs404-vue":"1f987a5b","redirects-lite-Redirects-vue":"b70d7180","redirects-lite-RedirectsActivate-vue":"f0ac383b","redirects-lite-Settings-vue":"fa22a461","redirects-pro-FullSiteRedirect-vue":"960ac928","redirects-pro-ImportExport-vue":"102e3798","redirects-pro-Logs-vue":"2a51485a","redirects-pro-Logs404-vue":"bc163c93","redirects-pro-RedirectsActivate-vue":"8f5a76c5","redirects-pro-Settings-vue":"37ec7ae1","redirects-pro-partials-CanonicalSettings-vue":"e25c2546","redirects-pro-partials-ExportRedirects-vue":"ff4725d3","redirects-pro-partials-HTTPHeaders-vue":"6eb28c6d","redirects-pro-partials-ImportAioseo-vue":"a4667f53","redirects-pro-partials-ImportOthers-vue":"eaaeef17","redirects-pro-partials-RelocateSite-vue":"35e6a990","redirects-pro-partials-ServerConfigReloadWarning-vue":"68b7f7fc","redirects-pro-partials-SiteAliases-vue":"9ee55199"}[e]}function d(r){if(i[r])return i[r].exports;var t=i[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,d),t.l=!0,t.exports}d.e=function(e){var r=[],t={"redirects-pro-Redirects-vue":1,"redirects-Main-vue":1,"redirects-Redirects-vue":1,"redirects-lite-Redirects-vue":1,"redirects-pro-FullSiteRedirect-vue":1,"redirects-pro-ImportExport-vue":1,"redirects-pro-Logs-vue":1,"redirects-pro-Logs404-vue":1,"redirects-pro-RedirectsActivate-vue":1,"redirects-pro-Settings-vue":1,"redirects-pro-partials-CanonicalSettings-vue":1,"redirects-pro-partials-ExportRedirects-vue":1,"redirects-pro-partials-HTTPHeaders-vue":1,"redirects-pro-partials-ImportAioseo-vue":1,"redirects-pro-partials-ImportOthers-vue":1,"redirects-pro-partials-RelocateSite-vue":1,"redirects-pro-partials-ServerConfigReloadWarning-vue":1};s[e]?r.push(s[e]):0!==s[e]&&t[e]&&r.push(s[e]=new Promise((function(r,t){for(var i="css/"+({"redirects-pro-Redirects-vue":"redirects-pro-Redirects-vue","redirects-Main-vue":"redirects-Main-vue","redirects-Redirects-vue":"redirects-Redirects-vue","redirects-lite-FullSiteRedirect-vue":"redirects-lite-FullSiteRedirect-vue","redirects-lite-ImportExport-vue":"redirects-lite-ImportExport-vue","redirects-lite-Logs-vue":"redirects-lite-Logs-vue","redirects-lite-Logs404-vue":"redirects-lite-Logs404-vue","redirects-lite-Redirects-vue":"redirects-lite-Redirects-vue","redirects-lite-RedirectsActivate-vue":"redirects-lite-RedirectsActivate-vue","redirects-lite-Settings-vue":"redirects-lite-Settings-vue","redirects-pro-FullSiteRedirect-vue":"redirects-pro-FullSiteRedirect-vue","redirects-pro-ImportExport-vue":"redirects-pro-ImportExport-vue","redirects-pro-Logs-vue":"redirects-pro-Logs-vue","redirects-pro-Logs404-vue":"redirects-pro-Logs404-vue","redirects-pro-RedirectsActivate-vue":"redirects-pro-RedirectsActivate-vue","redirects-pro-Settings-vue":"redirects-pro-Settings-vue","redirects-pro-partials-CanonicalSettings-vue":"redirects-pro-partials-CanonicalSettings-vue","redirects-pro-partials-ExportRedirects-vue":"redirects-pro-partials-ExportRedirects-vue","redirects-pro-partials-HTTPHeaders-vue":"redirects-pro-partials-HTTPHeaders-vue","redirects-pro-partials-ImportAioseo-vue":"redirects-pro-partials-ImportAioseo-vue","redirects-pro-partials-ImportOthers-vue":"redirects-pro-partials-ImportOthers-vue","redirects-pro-partials-RelocateSite-vue":"redirects-pro-partials-RelocateSite-vue","redirects-pro-partials-ServerConfigReloadWarning-vue":"redirects-pro-partials-ServerConfigReloadWarning-vue","redirects-pro-partials-SiteAliases-vue":"redirects-pro-partials-SiteAliases-vue"}[e]||e)+".css?ver="+{"redirects-pro-Redirects-vue":"7a32883d","redirects-Main-vue":"06606bd0","redirects-Redirects-vue":"4b41714f","redirects-lite-FullSiteRedirect-vue":"ac7d41fb","redirects-lite-ImportExport-vue":"9fdfd833","redirects-lite-Logs-vue":"931706d2","redirects-lite-Logs404-vue":"1f987a5b","redirects-lite-Redirects-vue":"b70d7180","redirects-lite-RedirectsActivate-vue":"f0ac383b","redirects-lite-Settings-vue":"fa22a461","redirects-pro-FullSiteRedirect-vue":"960ac928","redirects-pro-ImportExport-vue":"102e3798","redirects-pro-Logs-vue":"2a51485a","redirects-pro-Logs404-vue":"bc163c93","redirects-pro-RedirectsActivate-vue":"8f5a76c5","redirects-pro-Settings-vue":"37ec7ae1","redirects-pro-partials-CanonicalSettings-vue":"e25c2546","redirects-pro-partials-ExportRedirects-vue":"ff4725d3","redirects-pro-partials-HTTPHeaders-vue":"6eb28c6d","redirects-pro-partials-ImportAioseo-vue":"a4667f53","redirects-pro-partials-ImportOthers-vue":"eaaeef17","redirects-pro-partials-RelocateSite-vue":"35e6a990","redirects-pro-partials-ServerConfigReloadWarning-vue":"68b7f7fc","redirects-pro-partials-SiteAliases-vue":"9ee55199"}[e],o=d.p+i,c=document.getElementsByTagName("link"),a=0;a<c.length;a++){var p=c[a],u=p.getAttribute("data-href")||p.getAttribute("href");if("stylesheet"===p.rel&&(u===i||u===o))return r()}var n=document.getElementsByTagName("style");for(a=0;a<n.length;a++){p=n[a],u=p.getAttribute("data-href");if(u===i||u===o)return r()}var l=document.createElement("link");l.rel="stylesheet",l.type="text/css",l.onload=r,l.onerror=function(r){var i=r&&r.target&&r.target.src||o,c=new Error("Loading CSS chunk "+e+" failed.\n("+i+")");c.code="CSS_CHUNK_LOAD_FAILED",c.request=i,delete s[e],l.parentNode.removeChild(l),t(c)},l.href=o;var v=document.getElementsByTagName("head")[0];v.appendChild(l)})).then((function(){s[e]=0})));t={"redirects-pro-Redirects-vue":1,"redirects-Main-vue":1,"redirects-Redirects-vue":1,"redirects-lite-Redirects-vue":1,"redirects-pro-FullSiteRedirect-vue":1,"redirects-pro-ImportExport-vue":1,"redirects-pro-Logs-vue":1,"redirects-pro-Logs404-vue":1,"redirects-pro-RedirectsActivate-vue":1,"redirects-pro-Settings-vue":1,"redirects-pro-partials-CanonicalSettings-vue":1,"redirects-pro-partials-ExportRedirects-vue":1,"redirects-pro-partials-HTTPHeaders-vue":1,"redirects-pro-partials-ImportAioseo-vue":1,"redirects-pro-partials-ImportOthers-vue":1,"redirects-pro-partials-RelocateSite-vue":1,"redirects-pro-partials-ServerConfigReloadWarning-vue":1};s[e]?r.push(s[e]):0!==s[e]&&t[e]&&r.push(s[e]=new Promise((function(r,t){for(var i=({"redirects-pro-Redirects-vue":"redirects-pro-Redirects-vue","redirects-Main-vue":"redirects-Main-vue","redirects-Redirects-vue":"redirects-Redirects-vue","redirects-lite-FullSiteRedirect-vue":"redirects-lite-FullSiteRedirect-vue","redirects-lite-ImportExport-vue":"redirects-lite-ImportExport-vue","redirects-lite-Logs-vue":"redirects-lite-Logs-vue","redirects-lite-Logs404-vue":"redirects-lite-Logs404-vue","redirects-lite-Redirects-vue":"redirects-lite-Redirects-vue","redirects-lite-RedirectsActivate-vue":"redirects-lite-RedirectsActivate-vue","redirects-lite-Settings-vue":"redirects-lite-Settings-vue","redirects-pro-FullSiteRedirect-vue":"redirects-pro-FullSiteRedirect-vue","redirects-pro-ImportExport-vue":"redirects-pro-ImportExport-vue","redirects-pro-Logs-vue":"redirects-pro-Logs-vue","redirects-pro-Logs404-vue":"redirects-pro-Logs404-vue","redirects-pro-RedirectsActivate-vue":"redirects-pro-RedirectsActivate-vue","redirects-pro-Settings-vue":"redirects-pro-Settings-vue","redirects-pro-partials-CanonicalSettings-vue":"redirects-pro-partials-CanonicalSettings-vue","redirects-pro-partials-ExportRedirects-vue":"redirects-pro-partials-ExportRedirects-vue","redirects-pro-partials-HTTPHeaders-vue":"redirects-pro-partials-HTTPHeaders-vue","redirects-pro-partials-ImportAioseo-vue":"redirects-pro-partials-ImportAioseo-vue","redirects-pro-partials-ImportOthers-vue":"redirects-pro-partials-ImportOthers-vue","redirects-pro-partials-RelocateSite-vue":"redirects-pro-partials-RelocateSite-vue","redirects-pro-partials-ServerConfigReloadWarning-vue":"redirects-pro-partials-ServerConfigReloadWarning-vue","redirects-pro-partials-SiteAliases-vue":"redirects-pro-partials-SiteAliases-vue"}[e]||e)+".css",o=d.p+i,c=document.getElementsByTagName("link"),a=0;a<c.length;a++){var p=c[a],u=p.getAttribute("data-href")||p.getAttribute("href");if("stylesheet"===p.rel&&(u===i||u===o))return r()}var n=document.getElementsByTagName("style");for(a=0;a<n.length;a++){p=n[a],u=p.getAttribute("data-href");if(u===i||u===o)return r()}var l=document.createElement("link");l.rel="stylesheet",l.type="text/css";var v=function(i){if(l.onerror=l.onload=null,"load"===i.type)r();else{var c=i&&("load"===i.type?"missing":i.type),a=i&&i.target&&i.target.href||o,d=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");d.code="CSS_CHUNK_LOAD_FAILED",d.type=c,d.request=a,delete s[e],l.parentNode.removeChild(l),t(d)}};l.onerror=l.onload=v,l.href=o,document.head.appendChild(l)})).then((function(){s[e]=0})));var i=o[e];if(0!==i)if(i)r.push(i[2]);else{var c=new Promise((function(r,t){i=o[e]=[r,t]}));r.push(i[2]=c);var p,u=document.createElement("script");u.charset="utf-8",u.timeout=120,d.nc&&u.setAttribute("nonce",d.nc),u.src=a(e);var n=new Error;p=function(r){u.onerror=u.onload=null,clearTimeout(l);var t=o[e];if(0!==t){if(t){var i=r&&("load"===r.type?"missing":r.type),s=r&&r.target&&r.target.src;n.message="Loading chunk "+e+" failed.\n("+i+": "+s+")",n.name="ChunkLoadError",n.type=i,n.request=s,t[1](n)}o[e]=void 0}};var l=setTimeout((function(){p({type:"timeout",target:u})}),12e4);u.onerror=u.onload=p,document.head.appendChild(u)}return Promise.all(r)},d.m=e,d.c=i,d.d=function(e,r,t){d.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},d.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},d.t=function(e,r){if(1&r&&(e=d(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(d.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var i in e)d.d(t,i,function(r){return e[r]}.bind(null,i));return t},d.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return d.d(r,"a",r),r},d.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},d.p="/",d.oe=function(e){throw console.error(e),e};var p=window["aioseopjsonp"]=window["aioseopjsonp"]||[],u=p.push.bind(p);p.push=r,p=p.slice();for(var n=0;n<p.length;n++)r(p[n]);var l=u;c.push([10,"chunk-vendors","chunk-common"]),t()})({10:function(e,r,t){e.exports=t("8821")},8821:function(e,r,t){"use strict";t.r(r);t("e260"),t("e6cf"),t("cca6"),t("a79d"),t("7db0"),t("4de4"),t("b0c0");var i=t("a026"),s=(t("1725"),t("75b9"),function(){var e=this,r=e.$createElement,t=e._self._c||r;return t("div",{staticClass:"aioseo-app"},[t("router-view")],1)}),o=[],c=t("2877"),a={},d=Object(c["a"])(a,s,o,!1,null,null,null),p=d.exports,u=t("cf27"),n=t("71ae"),l=(t("d3b7"),t("3ca3"),t("ddb0"),t("561c")),v="all-in-one-seo-pack",g=function(e){return function(){return t("91af")("./"+e+".vue")}},f=[{path:"*",redirect:"/redirects"},{path:"/redirects",name:"redirects",component:g("Main"),meta:{access:"aioseo_redirects_manage",name:Object(l["__"])("Redirects",v)}},{path:"/full-site-redirect",name:"full-site-redirect",component:g("Main"),meta:{access:"aioseo_redirects_manage",name:Object(l["__"])("Full Site Redirect",v)}},{path:"/logs",name:"logs",component:g("Main"),meta:{access:"aioseo_redirects_manage",name:Object(l["__"])("Logs",v)}},{path:"/404-logs",name:"logs-404",component:g("Main"),meta:{access:"aioseo_redirects_manage",name:Object(l["__"])("404 Logs",v)}},{path:"/import-export",name:"import-export",component:g("Main"),meta:{access:"aioseo_redirects_settings",name:Object(l["__"])("Import / Export",v)}},{path:"/settings",name:"settings",component:g("Main"),meta:{access:"aioseo_redirects_settings",name:Object(l["__"])("Settings",v)}}],m=t("31bd"),R=(t("2d26"),t("96cf"),"pro"!=="Lite".toLowerCase()||!window.aioseo.license.isActive),S=!!window.aioseo.addons.find((function(e){return"aioseo-redirects"===e.sku&&e.isActive})),h=f.filter((function(e){return!e.name||"redirects"===e.name||S&&!R})).filter((function(e){return"logs-404"!==e.name||window.aioseo.redirects&&window.aioseo.redirects.options.logs.log404.enabled})).filter((function(e){return"logs"!==e.name||window.aioseo.redirects&&window.aioseo.redirects.options.logs.redirects.enabled&&"server"!==window.aioseo.redirects.options.main.method})).filter((function(e){return!e.name||"undefined"!==typeof e.meta&&window.aioseo.user.capabilities[e.meta.access]}));h[0].redirect=h[1].path;var b=Object(n["a"])(h);Object(m["sync"])(u["a"],b),i["default"].config.productionTip=!1,new i["default"]({router:b,store:u["a"],render:function(e){return e(p)}}).$mount("#aioseo-app")},"91af":function(e,r,t){var i={"./Main.vue":["6527","redirects-Main-vue"],"./Redirects.vue":["75f1","redirects-Redirects-vue"],"./lite/FullSiteRedirect.vue":["cb8d","redirects-lite-FullSiteRedirect-vue"],"./lite/ImportExport.vue":["7c0e","redirects-lite-ImportExport-vue"],"./lite/Logs.vue":["83c6b","redirects-lite-Logs-vue"],"./lite/Logs404.vue":["1bc5","redirects-lite-Logs404-vue"],"./lite/Redirects.vue":["5e56","redirects-lite-Redirects-vue"],"./lite/RedirectsActivate.vue":["011e","redirects-lite-RedirectsActivate-vue"],"./lite/Settings.vue":["8b23","redirects-lite-Settings-vue"],"./pro/FullSiteRedirect.vue":["8aa59","redirects-pro-FullSiteRedirect-vue"],"./pro/ImportExport.vue":["ff5d","redirects-pro-ImportExport-vue"],"./pro/Logs.vue":["2de6","redirects-pro-Logs-vue"],"./pro/Logs404.vue":["ddde","redirects-pro-Logs404-vue"],"./pro/Redirects.vue":["f9ef","chunk-vendors","redirects-pro-Redirects-vue"],"./pro/RedirectsActivate.vue":["50f0","redirects-pro-RedirectsActivate-vue"],"./pro/Settings.vue":["1095","redirects-pro-Settings-vue"],"./pro/partials/CanonicalSettings.vue":["3af2","redirects-pro-partials-CanonicalSettings-vue"],"./pro/partials/ExportRedirects.vue":["3869","redirects-pro-partials-ExportRedirects-vue"],"./pro/partials/HTTPHeaders.vue":["e963","redirects-pro-partials-HTTPHeaders-vue"],"./pro/partials/ImportAioseo.vue":["384a","redirects-pro-partials-ImportAioseo-vue"],"./pro/partials/ImportOthers.vue":["06e3","redirects-pro-partials-ImportOthers-vue"],"./pro/partials/RelocateSite.vue":["26dd","redirects-pro-partials-RelocateSite-vue"],"./pro/partials/ServerConfigReloadWarning.vue":["ab04","redirects-pro-partials-ServerConfigReloadWarning-vue"],"./pro/partials/SiteAliases.vue":["cb4b","redirects-pro-partials-SiteAliases-vue"]};function s(e){if(!t.o(i,e))return Promise.resolve().then((function(){var r=new Error("Cannot find module '"+e+"'");throw r.code="MODULE_NOT_FOUND",r}));var r=i[e],s=r[0];return Promise.all(r.slice(1).map(t.e)).then((function(){return t(s)}))}s.keys=function(){return Object.keys(i)},s.id="91af",e.exports=s}});
1
+ (function(e){function r(r){for(var i,s,o=r[0],d=r[1],p=r[2],u=0,n=[];u<o.length;u++)s=o[u],Object.prototype.hasOwnProperty.call(c,s)&&c[s]&&n.push(c[s][0]),c[s]=0;for(i in d)Object.prototype.hasOwnProperty.call(d,i)&&(e[i]=d[i]);v&&v(r);while(n.length)n.shift()();return a.push.apply(a,p||[]),t()}function t(){for(var e,r=0;r<a.length;r++){for(var t=a[r],i=!0,s=1;s<t.length;s++){var o=t[s];0!==c[o]&&(i=!1)}i&&(a.splice(r--,1),e=p(p.s=t[0]))}return e}var i={},s={redirects:0},o=(s={redirects:0},function(){return"rtl"===document.dir}),c={redirects:0},a=[];function d(e){return p.p+"js/"+({"redirects-pro-Redirects-vue":"redirects-pro-Redirects-vue","redirects-Main-vue":"redirects-Main-vue","redirects-Redirects-vue":"redirects-Redirects-vue","redirects-lite-FullSiteRedirect-vue":"redirects-lite-FullSiteRedirect-vue","redirects-lite-ImportExport-vue":"redirects-lite-ImportExport-vue","redirects-lite-Logs-vue":"redirects-lite-Logs-vue","redirects-lite-Logs404-vue":"redirects-lite-Logs404-vue","redirects-lite-Redirects-vue":"redirects-lite-Redirects-vue","redirects-lite-RedirectsActivate-vue":"redirects-lite-RedirectsActivate-vue","redirects-lite-Settings-vue":"redirects-lite-Settings-vue","redirects-pro-FullSiteRedirect-vue":"redirects-pro-FullSiteRedirect-vue","redirects-pro-ImportExport-vue":"redirects-pro-ImportExport-vue","redirects-pro-Logs-vue":"redirects-pro-Logs-vue","redirects-pro-Logs404-vue":"redirects-pro-Logs404-vue","redirects-pro-RedirectsActivate-vue":"redirects-pro-RedirectsActivate-vue","redirects-pro-Settings-vue":"redirects-pro-Settings-vue","redirects-pro-partials-CanonicalSettings-vue":"redirects-pro-partials-CanonicalSettings-vue","redirects-pro-partials-ExportRedirects-vue":"redirects-pro-partials-ExportRedirects-vue","redirects-pro-partials-HTTPHeaders-vue":"redirects-pro-partials-HTTPHeaders-vue","redirects-pro-partials-ImportAioseo-vue":"redirects-pro-partials-ImportAioseo-vue","redirects-pro-partials-ImportOthers-vue":"redirects-pro-partials-ImportOthers-vue","redirects-pro-partials-RelocateSite-vue":"redirects-pro-partials-RelocateSite-vue","redirects-pro-partials-ServerConfigReloadWarning-vue":"redirects-pro-partials-ServerConfigReloadWarning-vue","redirects-pro-partials-SiteAliases-vue":"redirects-pro-partials-SiteAliases-vue"}[e]||e)+".js?ver="+{"redirects-pro-Redirects-vue":"0b91e943","redirects-Main-vue":"b55340b6","redirects-Redirects-vue":"abbca139","redirects-lite-FullSiteRedirect-vue":"1179a476","redirects-lite-ImportExport-vue":"e66274b4","redirects-lite-Logs-vue":"8a7456df","redirects-lite-Logs404-vue":"9eac1ee1","redirects-lite-Redirects-vue":"7237f5a3","redirects-lite-RedirectsActivate-vue":"3f21d927","redirects-lite-Settings-vue":"c08493af","redirects-pro-FullSiteRedirect-vue":"54976cbd","redirects-pro-ImportExport-vue":"bcd7307f","redirects-pro-Logs-vue":"78d02768","redirects-pro-Logs404-vue":"d0df09be","redirects-pro-RedirectsActivate-vue":"963945a0","redirects-pro-Settings-vue":"9fcb9a95","redirects-pro-partials-CanonicalSettings-vue":"0ddfdb7c","redirects-pro-partials-ExportRedirects-vue":"37201e99","redirects-pro-partials-HTTPHeaders-vue":"5e3dc5d3","redirects-pro-partials-ImportAioseo-vue":"fd93a238","redirects-pro-partials-ImportOthers-vue":"867abab4","redirects-pro-partials-RelocateSite-vue":"7f9186d6","redirects-pro-partials-ServerConfigReloadWarning-vue":"75c05aa3","redirects-pro-partials-SiteAliases-vue":"808ef208"}[e]}function p(r){if(i[r])return i[r].exports;var t=i[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,p),t.l=!0,t.exports}p.e=function(e){var r=[],t={"redirects-pro-Redirects-vue":1,"redirects-Main-vue":1,"redirects-Redirects-vue":1,"redirects-lite-Redirects-vue":1,"redirects-pro-FullSiteRedirect-vue":1,"redirects-pro-ImportExport-vue":1,"redirects-pro-Logs-vue":1,"redirects-pro-Logs404-vue":1,"redirects-pro-RedirectsActivate-vue":1,"redirects-pro-Settings-vue":1,"redirects-pro-partials-CanonicalSettings-vue":1,"redirects-pro-partials-ExportRedirects-vue":1,"redirects-pro-partials-HTTPHeaders-vue":1,"redirects-pro-partials-ImportAioseo-vue":1,"redirects-pro-partials-ImportOthers-vue":1,"redirects-pro-partials-RelocateSite-vue":1,"redirects-pro-partials-ServerConfigReloadWarning-vue":1};s[e]?r.push(s[e]):0!==s[e]&&t[e]&&r.push(s[e]=new Promise((function(r,t){for(var i="css/"+({"redirects-pro-Redirects-vue":"redirects-pro-Redirects-vue","redirects-Main-vue":"redirects-Main-vue","redirects-Redirects-vue":"redirects-Redirects-vue","redirects-lite-FullSiteRedirect-vue":"redirects-lite-FullSiteRedirect-vue","redirects-lite-ImportExport-vue":"redirects-lite-ImportExport-vue","redirects-lite-Logs-vue":"redirects-lite-Logs-vue","redirects-lite-Logs404-vue":"redirects-lite-Logs404-vue","redirects-lite-Redirects-vue":"redirects-lite-Redirects-vue","redirects-lite-RedirectsActivate-vue":"redirects-lite-RedirectsActivate-vue","redirects-lite-Settings-vue":"redirects-lite-Settings-vue","redirects-pro-FullSiteRedirect-vue":"redirects-pro-FullSiteRedirect-vue","redirects-pro-ImportExport-vue":"redirects-pro-ImportExport-vue","redirects-pro-Logs-vue":"redirects-pro-Logs-vue","redirects-pro-Logs404-vue":"redirects-pro-Logs404-vue","redirects-pro-RedirectsActivate-vue":"redirects-pro-RedirectsActivate-vue","redirects-pro-Settings-vue":"redirects-pro-Settings-vue","redirects-pro-partials-CanonicalSettings-vue":"redirects-pro-partials-CanonicalSettings-vue","redirects-pro-partials-ExportRedirects-vue":"redirects-pro-partials-ExportRedirects-vue","redirects-pro-partials-HTTPHeaders-vue":"redirects-pro-partials-HTTPHeaders-vue","redirects-pro-partials-ImportAioseo-vue":"redirects-pro-partials-ImportAioseo-vue","redirects-pro-partials-ImportOthers-vue":"redirects-pro-partials-ImportOthers-vue","redirects-pro-partials-RelocateSite-vue":"redirects-pro-partials-RelocateSite-vue","redirects-pro-partials-ServerConfigReloadWarning-vue":"redirects-pro-partials-ServerConfigReloadWarning-vue","redirects-pro-partials-SiteAliases-vue":"redirects-pro-partials-SiteAliases-vue"}[e]||e)+".css",o=p.p+i,c=document.getElementsByTagName("link"),a=0;a<c.length;a++){var d=c[a],u=d.getAttribute("data-href")||d.getAttribute("href");if("stylesheet"===d.rel&&(u===i||u===o))return r()}var n=document.getElementsByTagName("style");for(a=0;a<n.length;a++){d=n[a],u=d.getAttribute("data-href");if(u===i||u===o)return r()}var l=document.createElement("link");l.rel="stylesheet",l.type="text/css",l.onload=r,l.onerror=function(r){var i=r&&r.target&&r.target.src||o,c=new Error("Loading CSS chunk "+e+" failed.\n("+i+")");c.code="CSS_CHUNK_LOAD_FAILED",c.request=i,delete s[e],l.parentNode.removeChild(l),t(c)},l.href=o;var v=document.getElementsByTagName("head")[0];v.appendChild(l)})).then((function(){s[e]=0})));t={"redirects-pro-Redirects-vue":1,"redirects-Main-vue":1,"redirects-Redirects-vue":1,"redirects-lite-Redirects-vue":1,"redirects-pro-FullSiteRedirect-vue":1,"redirects-pro-ImportExport-vue":1,"redirects-pro-Logs-vue":1,"redirects-pro-Logs404-vue":1,"redirects-pro-RedirectsActivate-vue":1,"redirects-pro-Settings-vue":1,"redirects-pro-partials-CanonicalSettings-vue":1,"redirects-pro-partials-ExportRedirects-vue":1,"redirects-pro-partials-HTTPHeaders-vue":1,"redirects-pro-partials-ImportAioseo-vue":1,"redirects-pro-partials-ImportOthers-vue":1,"redirects-pro-partials-RelocateSite-vue":1,"redirects-pro-partials-ServerConfigReloadWarning-vue":1};s[e]?r.push(s[e]):0!==s[e]&&t[e]&&r.push(s[e]=new Promise((function(r,t){for(var i=(o(),"css/"+({"redirects-pro-Redirects-vue":"redirects-pro-Redirects-vue","redirects-Main-vue":"redirects-Main-vue","redirects-Redirects-vue":"redirects-Redirects-vue","redirects-lite-FullSiteRedirect-vue":"redirects-lite-FullSiteRedirect-vue","redirects-lite-ImportExport-vue":"redirects-lite-ImportExport-vue","redirects-lite-Logs-vue":"redirects-lite-Logs-vue","redirects-lite-Logs404-vue":"redirects-lite-Logs404-vue","redirects-lite-Redirects-vue":"redirects-lite-Redirects-vue","redirects-lite-RedirectsActivate-vue":"redirects-lite-RedirectsActivate-vue","redirects-lite-Settings-vue":"redirects-lite-Settings-vue","redirects-pro-FullSiteRedirect-vue":"redirects-pro-FullSiteRedirect-vue","redirects-pro-ImportExport-vue":"redirects-pro-ImportExport-vue","redirects-pro-Logs-vue":"redirects-pro-Logs-vue","redirects-pro-Logs404-vue":"redirects-pro-Logs404-vue","redirects-pro-RedirectsActivate-vue":"redirects-pro-RedirectsActivate-vue","redirects-pro-Settings-vue":"redirects-pro-Settings-vue","redirects-pro-partials-CanonicalSettings-vue":"redirects-pro-partials-CanonicalSettings-vue","redirects-pro-partials-ExportRedirects-vue":"redirects-pro-partials-ExportRedirects-vue","redirects-pro-partials-HTTPHeaders-vue":"redirects-pro-partials-HTTPHeaders-vue","redirects-pro-partials-ImportAioseo-vue":"redirects-pro-partials-ImportAioseo-vue","redirects-pro-partials-ImportOthers-vue":"redirects-pro-partials-ImportOthers-vue","redirects-pro-partials-RelocateSite-vue":"redirects-pro-partials-RelocateSite-vue","redirects-pro-partials-ServerConfigReloadWarning-vue":"redirects-pro-partials-ServerConfigReloadWarning-vue","redirects-pro-partials-SiteAliases-vue":"redirects-pro-partials-SiteAliases-vue"}[e]||e)+".css?ver="+{"redirects-pro-Redirects-vue":"0b91e943","redirects-Main-vue":"b55340b6","redirects-Redirects-vue":"abbca139","redirects-lite-FullSiteRedirect-vue":"1179a476","redirects-lite-ImportExport-vue":"e66274b4","redirects-lite-Logs-vue":"8a7456df","redirects-lite-Logs404-vue":"9eac1ee1","redirects-lite-Redirects-vue":"7237f5a3","redirects-lite-RedirectsActivate-vue":"3f21d927","redirects-lite-Settings-vue":"c08493af","redirects-pro-FullSiteRedirect-vue":"54976cbd","redirects-pro-ImportExport-vue":"bcd7307f","redirects-pro-Logs-vue":"78d02768","redirects-pro-Logs404-vue":"d0df09be","redirects-pro-RedirectsActivate-vue":"963945a0","redirects-pro-Settings-vue":"9fcb9a95","redirects-pro-partials-CanonicalSettings-vue":"0ddfdb7c","redirects-pro-partials-ExportRedirects-vue":"37201e99","redirects-pro-partials-HTTPHeaders-vue":"5e3dc5d3","redirects-pro-partials-ImportAioseo-vue":"fd93a238","redirects-pro-partials-ImportOthers-vue":"867abab4","redirects-pro-partials-RelocateSite-vue":"7f9186d6","redirects-pro-partials-ServerConfigReloadWarning-vue":"75c05aa3","redirects-pro-partials-SiteAliases-vue":"808ef208"}[e]),s=p.p+i,c=document.getElementsByTagName("link"),a=0;a<c.length;a++){var d=c[a],u=d.getAttribute("data-href")||d.getAttribute("href");if("stylesheet"===d.rel&&(u===i||u===s))return r()}var n=document.getElementsByTagName("style");for(a=0;a<n.length;a++){d=n[a],u=d.getAttribute("data-href");if(u===i||u===s)return r()}var l=document.createElement("link");l.rel="stylesheet",l.type="text/css",l.onload=r,l.onerror=function(r){var i=r&&r.target&&r.target.src||s,o=new Error("Loading CSS chunk "+e+" failed.\n("+i+")");o.request=i,t(o)},l.href=s;var v=document.getElementsByTagName("head")[0];v.appendChild(l)})).then((function(){s[e]=0})));var i=c[e];if(0!==i)if(i)r.push(i[2]);else{var a=new Promise((function(r,t){i=c[e]=[r,t]}));r.push(i[2]=a);var u,n=document.createElement("script");n.charset="utf-8",n.timeout=120,p.nc&&n.setAttribute("nonce",p.nc),n.src=d(e);var l=new Error;u=function(r){n.onerror=n.onload=null,clearTimeout(v);var t=c[e];if(0!==t){if(t){var i=r&&("load"===r.type?"missing":r.type),s=r&&r.target&&r.target.src;l.message="Loading chunk "+e+" failed.\n("+i+": "+s+")",l.name="ChunkLoadError",l.type=i,l.request=s,t[1](l)}c[e]=void 0}};var v=setTimeout((function(){u({type:"timeout",target:n})}),12e4);n.onerror=n.onload=u,document.head.appendChild(n)}return Promise.all(r)},p.m=e,p.c=i,p.d=function(e,r,t){p.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},p.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},p.t=function(e,r){if(1&r&&(e=p(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(p.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var i in e)p.d(t,i,function(r){return e[r]}.bind(null,i));return t},p.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return p.d(r,"a",r),r},p.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},p.p="/",p.oe=function(e){throw console.error(e),e};var u=window["aioseopjsonp"]=window["aioseopjsonp"]||[],n=u.push.bind(u);u.push=r,u=u.slice();for(var l=0;l<u.length;l++)r(u[l]);var v=n;a.push([10,"chunk-vendors","chunk-common"]),t()})({10:function(e,r,t){e.exports=t("8821")},8821:function(e,r,t){"use strict";t.r(r);t("e260"),t("e6cf"),t("cca6"),t("a79d"),t("7db0"),t("4de4"),t("b0c0");var i=t("a026"),s=(t("1725"),t("75b9"),function(){var e=this,r=e.$createElement,t=e._self._c||r;return t("div",{staticClass:"aioseo-app"},[t("router-view")],1)}),o=[],c=t("2877"),a={},d=Object(c["a"])(a,s,o,!1,null,null,null),p=d.exports,u=t("cf27"),n=t("71ae"),l=(t("d3b7"),t("3ca3"),t("ddb0"),t("561c")),v="all-in-one-seo-pack",g=function(e){return function(){return t("91af")("./"+e+".vue")}},f=[{path:"*",redirect:"/redirects"},{path:"/redirects",name:"redirects",component:g("Main"),meta:{access:"aioseo_redirects_manage",name:Object(l["__"])("Redirects",v)}},{path:"/full-site-redirect",name:"full-site-redirect",component:g("Main"),meta:{access:"aioseo_redirects_manage",name:Object(l["__"])("Full Site Redirect",v)}},{path:"/logs",name:"logs",component:g("Main"),meta:{access:"aioseo_redirects_manage",name:Object(l["__"])("Logs",v)}},{path:"/404-logs",name:"logs-404",component:g("Main"),meta:{access:"aioseo_redirects_manage",name:Object(l["__"])("404 Logs",v)}},{path:"/import-export",name:"import-export",component:g("Main"),meta:{access:"aioseo_redirects_settings",name:Object(l["__"])("Import / Export",v)}},{path:"/settings",name:"settings",component:g("Main"),meta:{access:"aioseo_redirects_settings",name:Object(l["__"])("Settings",v)}}],m=t("31bd"),R=(t("2d26"),t("96cf"),"pro"!=="Lite".toLowerCase()||!window.aioseo.license.isActive),S=!!window.aioseo.addons.find((function(e){return"aioseo-redirects"===e.sku&&e.isActive})),h=f.filter((function(e){return!e.name||"redirects"===e.name||S&&!R})).filter((function(e){return"logs-404"!==e.name||window.aioseo.redirects&&window.aioseo.redirects.options.logs.log404.enabled})).filter((function(e){return"logs"!==e.name||window.aioseo.redirects&&window.aioseo.redirects.options.logs.redirects.enabled&&"server"!==window.aioseo.redirects.options.main.method})).filter((function(e){return!e.name||"undefined"!==typeof e.meta&&window.aioseo.user.capabilities[e.meta.access]}));h[0].redirect=h[1].path;var b=Object(n["a"])(h);Object(m["sync"])(u["a"],b),i["default"].config.productionTip=!1,new i["default"]({router:b,store:u["a"],render:function(e){return e(p)}}).$mount("#aioseo-app")},"91af":function(e,r,t){var i={"./Main.vue":["6527","redirects-Main-vue"],"./Redirects.vue":["75f1","redirects-Redirects-vue"],"./lite/FullSiteRedirect.vue":["cb8d","redirects-lite-FullSiteRedirect-vue"],"./lite/ImportExport.vue":["7c0e","redirects-lite-ImportExport-vue"],"./lite/Logs.vue":["83c6b","redirects-lite-Logs-vue"],"./lite/Logs404.vue":["1bc5","redirects-lite-Logs404-vue"],"./lite/Redirects.vue":["5e56","redirects-lite-Redirects-vue"],"./lite/RedirectsActivate.vue":["011e","redirects-lite-RedirectsActivate-vue"],"./lite/Settings.vue":["8b23","redirects-lite-Settings-vue"],"./pro/FullSiteRedirect.vue":["8aa59","redirects-pro-FullSiteRedirect-vue"],"./pro/ImportExport.vue":["ff5d","redirects-pro-ImportExport-vue"],"./pro/Logs.vue":["2de6","redirects-pro-Logs-vue"],"./pro/Logs404.vue":["ddde","redirects-pro-Logs404-vue"],"./pro/Redirects.vue":["f9ef","chunk-vendors","redirects-pro-Redirects-vue"],"./pro/RedirectsActivate.vue":["50f0","redirects-pro-RedirectsActivate-vue"],"./pro/Settings.vue":["1095","redirects-pro-Settings-vue"],"./pro/partials/CanonicalSettings.vue":["3af2","redirects-pro-partials-CanonicalSettings-vue"],"./pro/partials/ExportRedirects.vue":["3869","redirects-pro-partials-ExportRedirects-vue"],"./pro/partials/HTTPHeaders.vue":["e963","redirects-pro-partials-HTTPHeaders-vue"],"./pro/partials/ImportAioseo.vue":["384a","redirects-pro-partials-ImportAioseo-vue"],"./pro/partials/ImportOthers.vue":["06e3","redirects-pro-partials-ImportOthers-vue"],"./pro/partials/RelocateSite.vue":["26dd","redirects-pro-partials-RelocateSite-vue"],"./pro/partials/ServerConfigReloadWarning.vue":["ab04","redirects-pro-partials-ServerConfigReloadWarning-vue"],"./pro/partials/SiteAliases.vue":["cb4b","redirects-pro-partials-SiteAliases-vue"]};function s(e){if(!t.o(i,e))return Promise.resolve().then((function(){var r=new Error("Cannot find module '"+e+"'");throw r.code="MODULE_NOT_FOUND",r}));var r=i[e],s=r[0];return Promise.all(r.slice(1).map(t.e)).then((function(){return t(s)}))}s.keys=function(){return Object.keys(i)},s.id="91af",e.exports=s}});
dist/Lite/assets/js/search-appearance.js CHANGED
@@ -1 +1 @@
1
- (function(e){function a(a){for(var c,p,n=a[0],i=a[1],o=a[2],u=0,v=[];u<n.length;u++)p=n[u],Object.prototype.hasOwnProperty.call(t,p)&&t[p]&&v.push(t[p][0]),t[p]=0;for(c in i)Object.prototype.hasOwnProperty.call(i,c)&&(e[c]=i[c]);h&&h(a);while(v.length)v.shift()();return s.push.apply(s,o||[]),r()}function r(){for(var e,a=0;a<s.length;a++){for(var r=s[a],c=!0,p=1;p<r.length;p++){var n=r[p];0!==t[n]&&(c=!1)}c&&(s.splice(a--,1),e=i(i.s=r[0]))}return e}var c={},p={"search-appearance":0},t=(p={"search-appearance":0},{"search-appearance":0}),s=[];function n(e){return i.p+"js/"+({"search-appearance-Advanced-vue":"search-appearance-Advanced-vue","search-appearance-Archives-vue":"search-appearance-Archives-vue","search-appearance-ContentTypes-vue":"search-appearance-ContentTypes-vue","search-appearance-GlobalSettings-vue":"search-appearance-GlobalSettings-vue","search-appearance-Media-vue":"search-appearance-Media-vue","search-appearance-Main-vue":"search-appearance-Main-vue","search-appearance-Taxonomies-vue":"search-appearance-Taxonomies-vue","search-appearance-lite-ImageSeo-vue":"search-appearance-lite-ImageSeo-vue","search-appearance-lite-ImageSeoActivate-vue":"search-appearance-lite-ImageSeoActivate-vue","search-appearance-partials-Advanced-vue":"search-appearance-partials-Advanced-vue","search-appearance-partials-CustomFields-vue":"search-appearance-partials-CustomFields-vue","search-appearance-partials-Schema-vue":"search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue":"search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue":"search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue":"search-appearance-partials-lite-Schema-vue","search-appearance-partials-pro-CustomFields-vue":"search-appearance-partials-pro-CustomFields-vue","search-appearance-partials-pro-Schema-vue":"search-appearance-partials-pro-Schema-vue","search-appearance-pro-ImageSeo-vue":"search-appearance-pro-ImageSeo-vue","search-appearance-pro-ImageSeoActivate-vue":"search-appearance-pro-ImageSeoActivate-vue"}[e]||e)+".js?ver="+{"search-appearance-Advanced-vue":"65d7e2ef","search-appearance-Archives-vue":"80707228","search-appearance-ContentTypes-vue":"9064bdaf","search-appearance-GlobalSettings-vue":"aed07134","search-appearance-Media-vue":"756ff8d6","search-appearance-Main-vue":"1dac2d48","search-appearance-Taxonomies-vue":"f7c6ae17","search-appearance-lite-ImageSeo-vue":"0c2c1c1c","search-appearance-lite-ImageSeoActivate-vue":"735058bc","search-appearance-partials-Advanced-vue":"9775086f","search-appearance-partials-CustomFields-vue":"3c7828d7","search-appearance-partials-Schema-vue":"a4fcda86","search-appearance-partials-TitleDescription-vue":"4954b939","search-appearance-partials-lite-CustomFields-vue":"a71ef0af","search-appearance-partials-lite-Schema-vue":"4319d8fa","search-appearance-partials-pro-CustomFields-vue":"973db396","search-appearance-partials-pro-Schema-vue":"68e2cccb","search-appearance-pro-ImageSeo-vue":"8ab711ab","search-appearance-pro-ImageSeoActivate-vue":"a3deb43b"}[e]}function i(a){if(c[a])return c[a].exports;var r=c[a]={i:a,l:!1,exports:{}};return e[a].call(r.exports,r,r.exports,i),r.l=!0,r.exports}i.e=function(e){var a=[],r={"search-appearance-Advanced-vue":1,"search-appearance-Archives-vue":1,"search-appearance-ContentTypes-vue":1,"search-appearance-GlobalSettings-vue":1,"search-appearance-Media-vue":1,"search-appearance-Main-vue":1,"search-appearance-Taxonomies-vue":1,"search-appearance-partials-Advanced-vue":1,"search-appearance-partials-CustomFields-vue":1,"search-appearance-partials-Schema-vue":1,"search-appearance-partials-lite-CustomFields-vue":1,"search-appearance-partials-lite-Schema-vue":1,"search-appearance-partials-pro-Schema-vue":1};p[e]?a.push(p[e]):0!==p[e]&&r[e]&&a.push(p[e]=new Promise((function(a,r){for(var c="css/"+({"search-appearance-Advanced-vue":"search-appearance-Advanced-vue","search-appearance-Archives-vue":"search-appearance-Archives-vue","search-appearance-ContentTypes-vue":"search-appearance-ContentTypes-vue","search-appearance-GlobalSettings-vue":"search-appearance-GlobalSettings-vue","search-appearance-Media-vue":"search-appearance-Media-vue","search-appearance-Main-vue":"search-appearance-Main-vue","search-appearance-Taxonomies-vue":"search-appearance-Taxonomies-vue","search-appearance-lite-ImageSeo-vue":"search-appearance-lite-ImageSeo-vue","search-appearance-lite-ImageSeoActivate-vue":"search-appearance-lite-ImageSeoActivate-vue","search-appearance-partials-Advanced-vue":"search-appearance-partials-Advanced-vue","search-appearance-partials-CustomFields-vue":"search-appearance-partials-CustomFields-vue","search-appearance-partials-Schema-vue":"search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue":"search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue":"search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue":"search-appearance-partials-lite-Schema-vue","search-appearance-partials-pro-CustomFields-vue":"search-appearance-partials-pro-CustomFields-vue","search-appearance-partials-pro-Schema-vue":"search-appearance-partials-pro-Schema-vue","search-appearance-pro-ImageSeo-vue":"search-appearance-pro-ImageSeo-vue","search-appearance-pro-ImageSeoActivate-vue":"search-appearance-pro-ImageSeoActivate-vue"}[e]||e)+".css?ver="+{"search-appearance-Advanced-vue":"65d7e2ef","search-appearance-Archives-vue":"80707228","search-appearance-ContentTypes-vue":"9064bdaf","search-appearance-GlobalSettings-vue":"aed07134","search-appearance-Media-vue":"756ff8d6","search-appearance-Main-vue":"1dac2d48","search-appearance-Taxonomies-vue":"f7c6ae17","search-appearance-lite-ImageSeo-vue":"0c2c1c1c","search-appearance-lite-ImageSeoActivate-vue":"735058bc","search-appearance-partials-Advanced-vue":"9775086f","search-appearance-partials-CustomFields-vue":"3c7828d7","search-appearance-partials-Schema-vue":"a4fcda86","search-appearance-partials-TitleDescription-vue":"4954b939","search-appearance-partials-lite-CustomFields-vue":"a71ef0af","search-appearance-partials-lite-Schema-vue":"4319d8fa","search-appearance-partials-pro-CustomFields-vue":"973db396","search-appearance-partials-pro-Schema-vue":"68e2cccb","search-appearance-pro-ImageSeo-vue":"8ab711ab","search-appearance-pro-ImageSeoActivate-vue":"a3deb43b"}[e],t=i.p+c,s=document.getElementsByTagName("link"),n=0;n<s.length;n++){var o=s[n],u=o.getAttribute("data-href")||o.getAttribute("href");if("stylesheet"===o.rel&&(u===c||u===t))return a()}var v=document.getElementsByTagName("style");for(n=0;n<v.length;n++){o=v[n],u=o.getAttribute("data-href");if(u===c||u===t)return a()}var h=document.createElement("link");h.rel="stylesheet",h.type="text/css",h.onload=a,h.onerror=function(a){var c=a&&a.target&&a.target.src||t,s=new Error("Loading CSS chunk "+e+" failed.\n("+c+")");s.code="CSS_CHUNK_LOAD_FAILED",s.request=c,delete p[e],h.parentNode.removeChild(h),r(s)},h.href=t;var l=document.getElementsByTagName("head")[0];l.appendChild(h)})).then((function(){p[e]=0})));r={"search-appearance-Advanced-vue":1,"search-appearance-Archives-vue":1,"search-appearance-ContentTypes-vue":1,"search-appearance-GlobalSettings-vue":1,"search-appearance-Media-vue":1,"search-appearance-Main-vue":1,"search-appearance-Taxonomies-vue":1,"search-appearance-partials-Advanced-vue":1,"search-appearance-partials-CustomFields-vue":1,"search-appearance-partials-Schema-vue":1,"search-appearance-partials-lite-CustomFields-vue":1,"search-appearance-partials-lite-Schema-vue":1,"search-appearance-partials-pro-Schema-vue":1};p[e]?a.push(p[e]):0!==p[e]&&r[e]&&a.push(p[e]=new Promise((function(a,r){for(var c=({"search-appearance-Advanced-vue":"search-appearance-Advanced-vue","search-appearance-Archives-vue":"search-appearance-Archives-vue","search-appearance-ContentTypes-vue":"search-appearance-ContentTypes-vue","search-appearance-GlobalSettings-vue":"search-appearance-GlobalSettings-vue","search-appearance-Media-vue":"search-appearance-Media-vue","search-appearance-Main-vue":"search-appearance-Main-vue","search-appearance-Taxonomies-vue":"search-appearance-Taxonomies-vue","search-appearance-lite-ImageSeo-vue":"search-appearance-lite-ImageSeo-vue","search-appearance-lite-ImageSeoActivate-vue":"search-appearance-lite-ImageSeoActivate-vue","search-appearance-partials-Advanced-vue":"search-appearance-partials-Advanced-vue","search-appearance-partials-CustomFields-vue":"search-appearance-partials-CustomFields-vue","search-appearance-partials-Schema-vue":"search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue":"search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue":"search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue":"search-appearance-partials-lite-Schema-vue","search-appearance-partials-pro-CustomFields-vue":"search-appearance-partials-pro-CustomFields-vue","search-appearance-partials-pro-Schema-vue":"search-appearance-partials-pro-Schema-vue","search-appearance-pro-ImageSeo-vue":"search-appearance-pro-ImageSeo-vue","search-appearance-pro-ImageSeoActivate-vue":"search-appearance-pro-ImageSeoActivate-vue"}[e]||e)+".css",t=i.p+c,s=document.getElementsByTagName("link"),n=0;n<s.length;n++){var o=s[n],u=o.getAttribute("data-href")||o.getAttribute("href");if("stylesheet"===o.rel&&(u===c||u===t))return a()}var v=document.getElementsByTagName("style");for(n=0;n<v.length;n++){o=v[n],u=o.getAttribute("data-href");if(u===c||u===t)return a()}var h=document.createElement("link");h.rel="stylesheet",h.type="text/css";var l=function(c){if(h.onerror=h.onload=null,"load"===c.type)a();else{var s=c&&("load"===c.type?"missing":c.type),n=c&&c.target&&c.target.href||t,i=new Error("Loading CSS chunk "+e+" failed.\n("+n+")");i.code="CSS_CHUNK_LOAD_FAILED",i.type=s,i.request=n,delete p[e],h.parentNode.removeChild(h),r(i)}};h.onerror=h.onload=l,h.href=t,document.head.appendChild(h)})).then((function(){p[e]=0})));var c=t[e];if(0!==c)if(c)a.push(c[2]);else{var s=new Promise((function(a,r){c=t[e]=[a,r]}));a.push(c[2]=s);var o,u=document.createElement("script");u.charset="utf-8",u.timeout=120,i.nc&&u.setAttribute("nonce",i.nc),u.src=n(e);var v=new Error;o=function(a){u.onerror=u.onload=null,clearTimeout(h);var r=t[e];if(0!==r){if(r){var c=a&&("load"===a.type?"missing":a.type),p=a&&a.target&&a.target.src;v.message="Loading chunk "+e+" failed.\n("+c+": "+p+")",v.name="ChunkLoadError",v.type=c,v.request=p,r[1](v)}t[e]=void 0}};var h=setTimeout((function(){o({type:"timeout",target:u})}),12e4);u.onerror=u.onload=o,document.head.appendChild(u)}return Promise.all(a)},i.m=e,i.c=c,i.d=function(e,a,r){i.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:r})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,a){if(1&a&&(e=i(e)),8&a)return e;if(4&a&&"object"===typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(i.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var c in e)i.d(r,c,function(a){return e[a]}.bind(null,c));return r},i.n=function(e){var a=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(a,"a",a),a},i.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},i.p="/",i.oe=function(e){throw console.error(e),e};var o=window["aioseopjsonp"]=window["aioseopjsonp"]||[],u=o.push.bind(o);o.push=a,o=o.slice();for(var v=0;v<o.length;v++)a(o[v]);var h=u;s.push([11,"chunk-vendors","chunk-common"]),r()})({11:function(e,a,r){e.exports=r("9b73")},"9b73":function(e,a,r){"use strict";r.r(a);r("e260"),r("e6cf"),r("cca6"),r("a79d");var c=r("a026"),p=(r("1725"),r("75b9"),function(){var e=this,a=e.$createElement,r=e._self._c||a;return r("div",{staticClass:"aioseo-app"},[r("router-view")],1)}),t=[],s=r("2877"),n={},i=Object(s["a"])(n,p,t,!1,null,null,null),o=i.exports,u=r("cf27"),v=r("71ae"),h=(r("d3b7"),r("3ca3"),r("ddb0"),r("561c")),l="all-in-one-seo-pack",d=function(e){return function(){return r("f06d")("./"+e+".vue")}},m=[{path:"*",redirect:"/global-settings"},{path:"/global-settings",name:"global-settings",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Global Settings",l)}},{path:"/content-types",name:"content-types",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Content Types",l)}},{path:"/taxonomies",name:"taxonomies",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Taxonomies",l)}},{path:"/media",name:"media",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Image SEO",l)}},{path:"/archives",name:"archives",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Archives",l)}},{path:"/advanced",name:"advanced",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Advanced",l)}}],f=r("31bd"),g=(r("2d26"),r("96cf"),Object(v["a"])(m));Object(f["sync"])(u["a"],g),c["default"].config.productionTip=!1,new c["default"]({router:g,store:u["a"],render:function(e){return e(o)}}).$mount("#aioseo-app")},f06d:function(e,a,r){var c={"./Advanced.vue":["89b4","search-appearance-Advanced-vue"],"./Archives.vue":["5b69","search-appearance-Archives-vue"],"./ContentTypes.vue":["372a","search-appearance-ContentTypes-vue"],"./GlobalSettings.vue":["e6cd","search-appearance-GlobalSettings-vue"],"./Main.vue":["2b19b","search-appearance-Media-vue","search-appearance-Main-vue"],"./Media.vue":["2b0d","search-appearance-Media-vue"],"./Taxonomies.vue":["219a","search-appearance-Taxonomies-vue"],"./lite/ImageSeo.vue":["ab06","search-appearance-lite-ImageSeo-vue"],"./lite/ImageSeoActivate.vue":["fa5f","search-appearance-lite-ImageSeoActivate-vue"],"./partials/Advanced.vue":["0844","search-appearance-partials-Advanced-vue"],"./partials/CustomFields.vue":["3a4e","search-appearance-partials-CustomFields-vue"],"./partials/Schema.vue":["5be7","search-appearance-partials-Schema-vue"],"./partials/TitleDescription.vue":["587e","search-appearance-partials-TitleDescription-vue"],"./partials/lite/CustomFields.vue":["9e7b","search-appearance-partials-lite-CustomFields-vue"],"./partials/lite/Schema.vue":["9d33","search-appearance-partials-lite-Schema-vue"],"./partials/pro/CustomFields.vue":["e11a","search-appearance-partials-pro-CustomFields-vue"],"./partials/pro/Schema.vue":["781e","search-appearance-partials-pro-Schema-vue"],"./pro/ImageSeo.vue":["e619","search-appearance-pro-ImageSeo-vue"],"./pro/ImageSeoActivate.vue":["398d","search-appearance-pro-ImageSeoActivate-vue"]};function p(e){if(!r.o(c,e))return Promise.resolve().then((function(){var a=new Error("Cannot find module '"+e+"'");throw a.code="MODULE_NOT_FOUND",a}));var a=c[e],p=a[0];return Promise.all(a.slice(1).map(r.e)).then((function(){return r(p)}))}p.keys=function(){return Object.keys(c)},p.id="f06d",e.exports=p}});
1
+ (function(e){function a(a){for(var c,p,t=a[0],i=a[1],u=a[2],o=0,v=[];o<t.length;o++)p=t[o],Object.prototype.hasOwnProperty.call(s,p)&&s[p]&&v.push(s[p][0]),s[p]=0;for(c in i)Object.prototype.hasOwnProperty.call(i,c)&&(e[c]=i[c]);l&&l(a);while(v.length)v.shift()();return n.push.apply(n,u||[]),r()}function r(){for(var e,a=0;a<n.length;a++){for(var r=n[a],c=!0,p=1;p<r.length;p++){var t=r[p];0!==s[t]&&(c=!1)}c&&(n.splice(a--,1),e=u(u.s=r[0]))}return e}var c={},p={"search-appearance":0},t=(p={"search-appearance":0},function(){return"rtl"===document.dir}),s={"search-appearance":0},n=[];function i(e){return u.p+"js/"+({"search-appearance-Advanced-vue":"search-appearance-Advanced-vue","search-appearance-Archives-vue":"search-appearance-Archives-vue","search-appearance-ContentTypes-vue":"search-appearance-ContentTypes-vue","search-appearance-GlobalSettings-vue":"search-appearance-GlobalSettings-vue","search-appearance-Media-vue":"search-appearance-Media-vue","search-appearance-Main-vue":"search-appearance-Main-vue","search-appearance-Taxonomies-vue":"search-appearance-Taxonomies-vue","search-appearance-lite-ImageSeo-vue":"search-appearance-lite-ImageSeo-vue","search-appearance-lite-ImageSeoActivate-vue":"search-appearance-lite-ImageSeoActivate-vue","search-appearance-partials-Advanced-vue":"search-appearance-partials-Advanced-vue","search-appearance-partials-CustomFields-vue":"search-appearance-partials-CustomFields-vue","search-appearance-partials-Schema-vue":"search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue":"search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue":"search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue":"search-appearance-partials-lite-Schema-vue","search-appearance-partials-pro-CustomFields-vue":"search-appearance-partials-pro-CustomFields-vue","search-appearance-partials-pro-Schema-vue":"search-appearance-partials-pro-Schema-vue","search-appearance-pro-ImageSeo-vue":"search-appearance-pro-ImageSeo-vue","search-appearance-pro-ImageSeoActivate-vue":"search-appearance-pro-ImageSeoActivate-vue"}[e]||e)+".js?ver="+{"search-appearance-Advanced-vue":"3871e193","search-appearance-Archives-vue":"8b4b1427","search-appearance-ContentTypes-vue":"a58dbcf5","search-appearance-GlobalSettings-vue":"0f681601","search-appearance-Media-vue":"5688dca9","search-appearance-Main-vue":"cd72d042","search-appearance-Taxonomies-vue":"79d4cc2e","search-appearance-lite-ImageSeo-vue":"6e760d61","search-appearance-lite-ImageSeoActivate-vue":"59c22ee8","search-appearance-partials-Advanced-vue":"1fcbe252","search-appearance-partials-CustomFields-vue":"9e8316c2","search-appearance-partials-Schema-vue":"28761116","search-appearance-partials-TitleDescription-vue":"bbd4b79d","search-appearance-partials-lite-CustomFields-vue":"da7f310e","search-appearance-partials-lite-Schema-vue":"115e77d5","search-appearance-partials-pro-CustomFields-vue":"d509235c","search-appearance-partials-pro-Schema-vue":"04ab5874","search-appearance-pro-ImageSeo-vue":"737f27eb","search-appearance-pro-ImageSeoActivate-vue":"7e8926d1"}[e]}function u(a){if(c[a])return c[a].exports;var r=c[a]={i:a,l:!1,exports:{}};return e[a].call(r.exports,r,r.exports,u),r.l=!0,r.exports}u.e=function(e){var a=[],r={"search-appearance-Advanced-vue":1,"search-appearance-Archives-vue":1,"search-appearance-ContentTypes-vue":1,"search-appearance-GlobalSettings-vue":1,"search-appearance-Media-vue":1,"search-appearance-Main-vue":1,"search-appearance-Taxonomies-vue":1,"search-appearance-partials-Advanced-vue":1,"search-appearance-partials-CustomFields-vue":1,"search-appearance-partials-Schema-vue":1,"search-appearance-partials-lite-CustomFields-vue":1,"search-appearance-partials-lite-Schema-vue":1,"search-appearance-partials-pro-Schema-vue":1};p[e]?a.push(p[e]):0!==p[e]&&r[e]&&a.push(p[e]=new Promise((function(a,r){for(var c="css/"+({"search-appearance-Advanced-vue":"search-appearance-Advanced-vue","search-appearance-Archives-vue":"search-appearance-Archives-vue","search-appearance-ContentTypes-vue":"search-appearance-ContentTypes-vue","search-appearance-GlobalSettings-vue":"search-appearance-GlobalSettings-vue","search-appearance-Media-vue":"search-appearance-Media-vue","search-appearance-Main-vue":"search-appearance-Main-vue","search-appearance-Taxonomies-vue":"search-appearance-Taxonomies-vue","search-appearance-lite-ImageSeo-vue":"search-appearance-lite-ImageSeo-vue","search-appearance-lite-ImageSeoActivate-vue":"search-appearance-lite-ImageSeoActivate-vue","search-appearance-partials-Advanced-vue":"search-appearance-partials-Advanced-vue","search-appearance-partials-CustomFields-vue":"search-appearance-partials-CustomFields-vue","search-appearance-partials-Schema-vue":"search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue":"search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue":"search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue":"search-appearance-partials-lite-Schema-vue","search-appearance-partials-pro-CustomFields-vue":"search-appearance-partials-pro-CustomFields-vue","search-appearance-partials-pro-Schema-vue":"search-appearance-partials-pro-Schema-vue","search-appearance-pro-ImageSeo-vue":"search-appearance-pro-ImageSeo-vue","search-appearance-pro-ImageSeoActivate-vue":"search-appearance-pro-ImageSeoActivate-vue"}[e]||e)+".css",t=u.p+c,s=document.getElementsByTagName("link"),n=0;n<s.length;n++){var i=s[n],o=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(o===c||o===t))return a()}var v=document.getElementsByTagName("style");for(n=0;n<v.length;n++){i=v[n],o=i.getAttribute("data-href");if(o===c||o===t)return a()}var h=document.createElement("link");h.rel="stylesheet",h.type="text/css",h.onload=a,h.onerror=function(a){var c=a&&a.target&&a.target.src||t,s=new Error("Loading CSS chunk "+e+" failed.\n("+c+")");s.code="CSS_CHUNK_LOAD_FAILED",s.request=c,delete p[e],h.parentNode.removeChild(h),r(s)},h.href=t;var l=document.getElementsByTagName("head")[0];l.appendChild(h)})).then((function(){p[e]=0})));r={"search-appearance-Advanced-vue":1,"search-appearance-Archives-vue":1,"search-appearance-ContentTypes-vue":1,"search-appearance-GlobalSettings-vue":1,"search-appearance-Media-vue":1,"search-appearance-Main-vue":1,"search-appearance-Taxonomies-vue":1,"search-appearance-partials-Advanced-vue":1,"search-appearance-partials-CustomFields-vue":1,"search-appearance-partials-Schema-vue":1,"search-appearance-partials-lite-CustomFields-vue":1,"search-appearance-partials-lite-Schema-vue":1,"search-appearance-partials-pro-Schema-vue":1};p[e]?a.push(p[e]):0!==p[e]&&r[e]&&a.push(p[e]=new Promise((function(a,r){for(var c=(t(),"css/"+({"search-appearance-Advanced-vue":"search-appearance-Advanced-vue","search-appearance-Archives-vue":"search-appearance-Archives-vue","search-appearance-ContentTypes-vue":"search-appearance-ContentTypes-vue","search-appearance-GlobalSettings-vue":"search-appearance-GlobalSettings-vue","search-appearance-Media-vue":"search-appearance-Media-vue","search-appearance-Main-vue":"search-appearance-Main-vue","search-appearance-Taxonomies-vue":"search-appearance-Taxonomies-vue","search-appearance-lite-ImageSeo-vue":"search-appearance-lite-ImageSeo-vue","search-appearance-lite-ImageSeoActivate-vue":"search-appearance-lite-ImageSeoActivate-vue","search-appearance-partials-Advanced-vue":"search-appearance-partials-Advanced-vue","search-appearance-partials-CustomFields-vue":"search-appearance-partials-CustomFields-vue","search-appearance-partials-Schema-vue":"search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue":"search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue":"search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue":"search-appearance-partials-lite-Schema-vue","search-appearance-partials-pro-CustomFields-vue":"search-appearance-partials-pro-CustomFields-vue","search-appearance-partials-pro-Schema-vue":"search-appearance-partials-pro-Schema-vue","search-appearance-pro-ImageSeo-vue":"search-appearance-pro-ImageSeo-vue","search-appearance-pro-ImageSeoActivate-vue":"search-appearance-pro-ImageSeoActivate-vue"}[e]||e)+".css?ver="+{"search-appearance-Advanced-vue":"3871e193","search-appearance-Archives-vue":"8b4b1427","search-appearance-ContentTypes-vue":"a58dbcf5","search-appearance-GlobalSettings-vue":"0f681601","search-appearance-Media-vue":"5688dca9","search-appearance-Main-vue":"cd72d042","search-appearance-Taxonomies-vue":"79d4cc2e","search-appearance-lite-ImageSeo-vue":"6e760d61","search-appearance-lite-ImageSeoActivate-vue":"59c22ee8","search-appearance-partials-Advanced-vue":"1fcbe252","search-appearance-partials-CustomFields-vue":"9e8316c2","search-appearance-partials-Schema-vue":"28761116","search-appearance-partials-TitleDescription-vue":"bbd4b79d","search-appearance-partials-lite-CustomFields-vue":"da7f310e","search-appearance-partials-lite-Schema-vue":"115e77d5","search-appearance-partials-pro-CustomFields-vue":"d509235c","search-appearance-partials-pro-Schema-vue":"04ab5874","search-appearance-pro-ImageSeo-vue":"737f27eb","search-appearance-pro-ImageSeoActivate-vue":"7e8926d1"}[e]),p=u.p+c,s=document.getElementsByTagName("link"),n=0;n<s.length;n++){var i=s[n],o=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(o===c||o===p))return a()}var v=document.getElementsByTagName("style");for(n=0;n<v.length;n++){i=v[n],o=i.getAttribute("data-href");if(o===c||o===p)return a()}var h=document.createElement("link");h.rel="stylesheet",h.type="text/css",h.onload=a,h.onerror=function(a){var c=a&&a.target&&a.target.src||p,t=new Error("Loading CSS chunk "+e+" failed.\n("+c+")");t.request=c,r(t)},h.href=p;var l=document.getElementsByTagName("head")[0];l.appendChild(h)})).then((function(){p[e]=0})));var c=s[e];if(0!==c)if(c)a.push(c[2]);else{var n=new Promise((function(a,r){c=s[e]=[a,r]}));a.push(c[2]=n);var o,v=document.createElement("script");v.charset="utf-8",v.timeout=120,u.nc&&v.setAttribute("nonce",u.nc),v.src=i(e);var h=new Error;o=function(a){v.onerror=v.onload=null,clearTimeout(l);var r=s[e];if(0!==r){if(r){var c=a&&("load"===a.type?"missing":a.type),p=a&&a.target&&a.target.src;h.message="Loading chunk "+e+" failed.\n("+c+": "+p+")",h.name="ChunkLoadError",h.type=c,h.request=p,r[1](h)}s[e]=void 0}};var l=setTimeout((function(){o({type:"timeout",target:v})}),12e4);v.onerror=v.onload=o,document.head.appendChild(v)}return Promise.all(a)},u.m=e,u.c=c,u.d=function(e,a,r){u.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:r})},u.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},u.t=function(e,a){if(1&a&&(e=u(e)),8&a)return e;if(4&a&&"object"===typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(u.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var c in e)u.d(r,c,function(a){return e[a]}.bind(null,c));return r},u.n=function(e){var a=e&&e.__esModule?function(){return e["default"]}:function(){return e};return u.d(a,"a",a),a},u.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},u.p="/",u.oe=function(e){throw console.error(e),e};var o=window["aioseopjsonp"]=window["aioseopjsonp"]||[],v=o.push.bind(o);o.push=a,o=o.slice();for(var h=0;h<o.length;h++)a(o[h]);var l=v;n.push([11,"chunk-vendors","chunk-common"]),r()})({11:function(e,a,r){e.exports=r("9b73")},"9b73":function(e,a,r){"use strict";r.r(a);r("e260"),r("e6cf"),r("cca6"),r("a79d");var c=r("a026"),p=(r("1725"),r("75b9"),function(){var e=this,a=e.$createElement,r=e._self._c||a;return r("div",{staticClass:"aioseo-app"},[r("router-view")],1)}),t=[],s=r("2877"),n={},i=Object(s["a"])(n,p,t,!1,null,null,null),u=i.exports,o=r("cf27"),v=r("71ae"),h=(r("d3b7"),r("3ca3"),r("ddb0"),r("561c")),l="all-in-one-seo-pack",d=function(e){return function(){return r("f06d")("./"+e+".vue")}},m=[{path:"*",redirect:"/global-settings"},{path:"/global-settings",name:"global-settings",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Global Settings",l)}},{path:"/content-types",name:"content-types",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Content Types",l)}},{path:"/taxonomies",name:"taxonomies",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Taxonomies",l)}},{path:"/media",name:"media",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Image SEO",l)}},{path:"/archives",name:"archives",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Archives",l)}},{path:"/advanced",name:"advanced",component:d("Main"),meta:{access:"aioseo_search_appearance_settings",name:Object(h["__"])("Advanced",l)}}],g=r("31bd"),f=(r("2d26"),r("96cf"),Object(v["a"])(m));Object(g["sync"])(o["a"],f),c["default"].config.productionTip=!1,new c["default"]({router:f,store:o["a"],render:function(e){return e(u)}}).$mount("#aioseo-app")},f06d:function(e,a,r){var c={"./Advanced.vue":["89b4","search-appearance-Advanced-vue"],"./Archives.vue":["5b69","search-appearance-Archives-vue"],"./ContentTypes.vue":["372a","search-appearance-ContentTypes-vue"],"./GlobalSettings.vue":["e6cd","search-appearance-GlobalSettings-vue"],"./Main.vue":["2b19b","search-appearance-Media-vue","search-appearance-Main-vue"],"./Media.vue":["2b0d","search-appearance-Media-vue"],"./Taxonomies.vue":["219a","search-appearance-Taxonomies-vue"],"./lite/ImageSeo.vue":["ab06","search-appearance-lite-ImageSeo-vue"],"./lite/ImageSeoActivate.vue":["fa5f","search-appearance-lite-ImageSeoActivate-vue"],"./partials/Advanced.vue":["0844","search-appearance-partials-Advanced-vue"],"./partials/CustomFields.vue":["3a4e","search-appearance-partials-CustomFields-vue"],"./partials/Schema.vue":["5be7","search-appearance-partials-Schema-vue"],"./partials/TitleDescription.vue":["587e","search-appearance-partials-TitleDescription-vue"],"./partials/lite/CustomFields.vue":["9e7b","search-appearance-partials-lite-CustomFields-vue"],"./partials/lite/Schema.vue":["9d33","search-appearance-partials-lite-Schema-vue"],"./partials/pro/CustomFields.vue":["e11a","search-appearance-partials-pro-CustomFields-vue"],"./partials/pro/Schema.vue":["781e","search-appearance-partials-pro-Schema-vue"],"./pro/ImageSeo.vue":["e619","search-appearance-pro-ImageSeo-vue"],"./pro/ImageSeoActivate.vue":["398d","search-appearance-pro-ImageSeoActivate-vue"]};function p(e){if(!r.o(c,e))return Promise.resolve().then((function(){var a=new Error("Cannot find module '"+e+"'");throw a.code="MODULE_NOT_FOUND",a}));var a=c[e],p=a[0];return Promise.all(a.slice(1).map(r.e)).then((function(){return r(p)}))}p.keys=function(){return Object.keys(c)},p.id="f06d",e.exports=p}});
dist/Lite/assets/js/seo-analysis.js CHANGED
@@ -1 +1 @@
1
- (function(e){function t(t){for(var o,a,i=t[0],u=t[1],l=t[2],c=0,d=[];c<i.length;c++)a=i[c],Object.prototype.hasOwnProperty.call(r,a)&&r[a]&&d.push(r[a][0]),r[a]=0;for(o in u)Object.prototype.hasOwnProperty.call(u,o)&&(e[o]=u[o]);y&&y(t);while(d.length)d.shift()();return s.push.apply(s,l||[]),n()}function n(){for(var e,t=0;t<s.length;t++){for(var n=s[t],o=!0,a=1;a<n.length;a++){var i=n[a];0!==r[i]&&(o=!1)}o&&(s.splice(t--,1),e=u(u.s=n[0]))}return e}var o={},a={"seo-analysis":0},r=(a={"seo-analysis":0},{"seo-analysis":0}),s=[];function i(e){return u.p+"js/"+({"seo-analysis-AnalyzeCompetitorSite-vue":"seo-analysis-AnalyzeCompetitorSite-vue","seo-analysis-Main-vue":"seo-analysis-Main-vue","seo-analysis-SeoAuditChecklist-vue":"seo-analysis-SeoAuditChecklist-vue"}[e]||e)+".js?ver="+{"seo-analysis-AnalyzeCompetitorSite-vue":"1dd0c31c","seo-analysis-Main-vue":"020e59c8","seo-analysis-SeoAuditChecklist-vue":"975f988d"}[e]}function u(t){if(o[t])return o[t].exports;var n=o[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,u),n.l=!0,n.exports}u.e=function(e){var t=[],n={"seo-analysis-AnalyzeCompetitorSite-vue":1,"seo-analysis-Main-vue":1,"seo-analysis-SeoAuditChecklist-vue":1};a[e]?t.push(a[e]):0!==a[e]&&n[e]&&t.push(a[e]=new Promise((function(t,n){for(var o="css/"+({"seo-analysis-AnalyzeCompetitorSite-vue":"seo-analysis-AnalyzeCompetitorSite-vue","seo-analysis-Main-vue":"seo-analysis-Main-vue","seo-analysis-SeoAuditChecklist-vue":"seo-analysis-SeoAuditChecklist-vue"}[e]||e)+".css?ver="+{"seo-analysis-AnalyzeCompetitorSite-vue":"1dd0c31c","seo-analysis-Main-vue":"020e59c8","seo-analysis-SeoAuditChecklist-vue":"975f988d"}[e],r=u.p+o,s=document.getElementsByTagName("link"),i=0;i<s.length;i++){var l=s[i],c=l.getAttribute("data-href")||l.getAttribute("href");if("stylesheet"===l.rel&&(c===o||c===r))return t()}var d=document.getElementsByTagName("style");for(i=0;i<d.length;i++){l=d[i],c=l.getAttribute("data-href");if(c===o||c===r)return t()}var y=document.createElement("link");y.rel="stylesheet",y.type="text/css",y.onload=t,y.onerror=function(t){var o=t&&t.target&&t.target.src||r,s=new Error("Loading CSS chunk "+e+" failed.\n("+o+")");s.code="CSS_CHUNK_LOAD_FAILED",s.request=o,delete a[e],y.parentNode.removeChild(y),n(s)},y.href=r;var f=document.getElementsByTagName("head")[0];f.appendChild(y)})).then((function(){a[e]=0})));n={"seo-analysis-AnalyzeCompetitorSite-vue":1,"seo-analysis-Main-vue":1,"seo-analysis-SeoAuditChecklist-vue":1};a[e]?t.push(a[e]):0!==a[e]&&n[e]&&t.push(a[e]=new Promise((function(t,n){for(var o=({"seo-analysis-AnalyzeCompetitorSite-vue":"seo-analysis-AnalyzeCompetitorSite-vue","seo-analysis-Main-vue":"seo-analysis-Main-vue","seo-analysis-SeoAuditChecklist-vue":"seo-analysis-SeoAuditChecklist-vue"}[e]||e)+".css",r=u.p+o,s=document.getElementsByTagName("link"),i=0;i<s.length;i++){var l=s[i],c=l.getAttribute("data-href")||l.getAttribute("href");if("stylesheet"===l.rel&&(c===o||c===r))return t()}var d=document.getElementsByTagName("style");for(i=0;i<d.length;i++){l=d[i],c=l.getAttribute("data-href");if(c===o||c===r)return t()}var y=document.createElement("link");y.rel="stylesheet",y.type="text/css";var f=function(o){if(y.onerror=y.onload=null,"load"===o.type)t();else{var s=o&&("load"===o.type?"missing":o.type),i=o&&o.target&&o.target.href||r,u=new Error("Loading CSS chunk "+e+" failed.\n("+i+")");u.code="CSS_CHUNK_LOAD_FAILED",u.type=s,u.request=i,delete a[e],y.parentNode.removeChild(y),n(u)}};y.onerror=y.onload=f,y.href=r,document.head.appendChild(y)})).then((function(){a[e]=0})));var o=r[e];if(0!==o)if(o)t.push(o[2]);else{var s=new Promise((function(t,n){o=r[e]=[t,n]}));t.push(o[2]=s);var l,c=document.createElement("script");c.charset="utf-8",c.timeout=120,u.nc&&c.setAttribute("nonce",u.nc),c.src=i(e);var d=new Error;l=function(t){c.onerror=c.onload=null,clearTimeout(y);var n=r[e];if(0!==n){if(n){var o=t&&("load"===t.type?"missing":t.type),a=t&&t.target&&t.target.src;d.message="Loading chunk "+e+" failed.\n("+o+": "+a+")",d.name="ChunkLoadError",d.type=o,d.request=a,n[1](d)}r[e]=void 0}};var y=setTimeout((function(){l({type:"timeout",target:c})}),12e4);c.onerror=c.onload=l,document.head.appendChild(c)}return Promise.all(t)},u.m=e,u.c=o,u.d=function(e,t,n){u.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},u.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},u.t=function(e,t){if(1&t&&(e=u(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(u.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)u.d(n,o,function(t){return e[t]}.bind(null,o));return n},u.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return u.d(t,"a",t),t},u.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},u.p="/",u.oe=function(e){throw console.error(e),e};var l=window["aioseopjsonp"]=window["aioseopjsonp"]||[],c=l.push.bind(l);l.push=t,l=l.slice();for(var d=0;d<l.length;d++)t(l[d]);var y=c;s.push([12,"chunk-vendors","chunk-common"]),n()})({12:function(e,t,n){e.exports=n("8ba2")},"55de":function(e,t,n){var o={"./AnalyzeCompetitorSite.vue":["e638","seo-analysis-AnalyzeCompetitorSite-vue"],"./Main.vue":["8c52","seo-analysis-Main-vue"],"./SeoAuditChecklist.vue":["5192","seo-analysis-SeoAuditChecklist-vue"]};function a(e){if(!n.o(o,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=o[e],a=t[0];return n.e(t[1]).then((function(){return n(a)}))}a.keys=function(){return Object.keys(o)},a.id="55de",e.exports=a},"8ba2":function(e,t,n){"use strict";n.r(t);n("e260"),n("e6cf"),n("cca6"),n("a79d");var o=n("a026"),a=(n("1725"),n("75b9"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"aioseo-app"},[n("router-view")],1)}),r=[],s=n("2877"),i={},u=Object(s["a"])(i,a,r,!1,null,null,null),l=u.exports,c=n("cf27"),d=n("71ae"),y=(n("d3b7"),n("3ca3"),n("ddb0"),n("561c")),f="all-in-one-seo-pack",p=function(e){return function(){return n("55de")("./"+e+".vue")}},v=[{path:"*",redirect:"/seo-audit-checklist"},{path:"/seo-audit-checklist",name:"seo-audit-checklist",component:p("Main"),meta:{access:"aioseo_seo_analysis_settings",name:Object(y["__"])("SEO Audit Checklist",f)}},{path:"/analyze-competitor-site",name:"analyze-competitor-site",component:p("Main"),meta:{access:"aioseo_seo_analysis_settings",name:Object(y["__"])("Analyze Competitor Site",f)}}],h=n("31bd"),m=(n("2d26"),n("96cf"),Object(d["a"])(v));Object(h["sync"])(c["a"],m),o["default"].config.productionTip=!1,new o["default"]({router:m,store:c["a"],render:function(e){return e(l)}}).$mount("#aioseo-app")}});
1
+ (function(e){function t(t){for(var a,o,s=t[0],u=t[1],l=t[2],c=0,d=[];c<s.length;c++)o=s[c],Object.prototype.hasOwnProperty.call(r,o)&&r[o]&&d.push(r[o][0]),r[o]=0;for(a in u)Object.prototype.hasOwnProperty.call(u,a)&&(e[a]=u[a]);y&&y(t);while(d.length)d.shift()();return i.push.apply(i,l||[]),n()}function n(){for(var e,t=0;t<i.length;t++){for(var n=i[t],a=!0,o=1;o<n.length;o++){var s=n[o];0!==r[s]&&(a=!1)}a&&(i.splice(t--,1),e=l(l.s=n[0]))}return e}var a={},o={"seo-analysis":0},s=(o={"seo-analysis":0},function(){return"rtl"===document.dir}),r={"seo-analysis":0},i=[];function u(e){return l.p+"js/"+({"seo-analysis-AnalyzeCompetitorSite-vue":"seo-analysis-AnalyzeCompetitorSite-vue","seo-analysis-Main-vue":"seo-analysis-Main-vue","seo-analysis-SeoAuditChecklist-vue":"seo-analysis-SeoAuditChecklist-vue"}[e]||e)+".js?ver="+{"seo-analysis-AnalyzeCompetitorSite-vue":"9153f399","seo-analysis-Main-vue":"3c9d1807","seo-analysis-SeoAuditChecklist-vue":"a33f65e1"}[e]}function l(t){if(a[t])return a[t].exports;var n=a[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,l),n.l=!0,n.exports}l.e=function(e){var t=[],n={"seo-analysis-AnalyzeCompetitorSite-vue":1,"seo-analysis-Main-vue":1,"seo-analysis-SeoAuditChecklist-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var a="css/"+({"seo-analysis-AnalyzeCompetitorSite-vue":"seo-analysis-AnalyzeCompetitorSite-vue","seo-analysis-Main-vue":"seo-analysis-Main-vue","seo-analysis-SeoAuditChecklist-vue":"seo-analysis-SeoAuditChecklist-vue"}[e]||e)+".css",s=l.p+a,r=document.getElementsByTagName("link"),i=0;i<r.length;i++){var u=r[i],c=u.getAttribute("data-href")||u.getAttribute("href");if("stylesheet"===u.rel&&(c===a||c===s))return t()}var d=document.getElementsByTagName("style");for(i=0;i<d.length;i++){u=d[i],c=u.getAttribute("data-href");if(c===a||c===s)return t()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css",f.onload=t,f.onerror=function(t){var a=t&&t.target&&t.target.src||s,r=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");r.code="CSS_CHUNK_LOAD_FAILED",r.request=a,delete o[e],f.parentNode.removeChild(f),n(r)},f.href=s;var y=document.getElementsByTagName("head")[0];y.appendChild(f)})).then((function(){o[e]=0})));n={"seo-analysis-AnalyzeCompetitorSite-vue":1,"seo-analysis-Main-vue":1,"seo-analysis-SeoAuditChecklist-vue":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise((function(t,n){for(var a=(s(),"css/"+({"seo-analysis-AnalyzeCompetitorSite-vue":"seo-analysis-AnalyzeCompetitorSite-vue","seo-analysis-Main-vue":"seo-analysis-Main-vue","seo-analysis-SeoAuditChecklist-vue":"seo-analysis-SeoAuditChecklist-vue"}[e]||e)+".css?ver="+{"seo-analysis-AnalyzeCompetitorSite-vue":"9153f399","seo-analysis-Main-vue":"3c9d1807","seo-analysis-SeoAuditChecklist-vue":"a33f65e1"}[e]),o=l.p+a,r=document.getElementsByTagName("link"),i=0;i<r.length;i++){var u=r[i],c=u.getAttribute("data-href")||u.getAttribute("href");if("stylesheet"===u.rel&&(c===a||c===o))return t()}var d=document.getElementsByTagName("style");for(i=0;i<d.length;i++){u=d[i],c=u.getAttribute("data-href");if(c===a||c===o)return t()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css",f.onload=t,f.onerror=function(t){var a=t&&t.target&&t.target.src||o,s=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");s.request=a,n(s)},f.href=o;var y=document.getElementsByTagName("head")[0];y.appendChild(f)})).then((function(){o[e]=0})));var a=r[e];if(0!==a)if(a)t.push(a[2]);else{var i=new Promise((function(t,n){a=r[e]=[t,n]}));t.push(a[2]=i);var c,d=document.createElement("script");d.charset="utf-8",d.timeout=120,l.nc&&d.setAttribute("nonce",l.nc),d.src=u(e);var f=new Error;c=function(t){d.onerror=d.onload=null,clearTimeout(y);var n=r[e];if(0!==n){if(n){var a=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;f.message="Loading chunk "+e+" failed.\n("+a+": "+o+")",f.name="ChunkLoadError",f.type=a,f.request=o,n[1](f)}r[e]=void 0}};var y=setTimeout((function(){c({type:"timeout",target:d})}),12e4);d.onerror=d.onload=c,document.head.appendChild(d)}return Promise.all(t)},l.m=e,l.c=a,l.d=function(e,t,n){l.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,t){if(1&t&&(e=l(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(l.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)l.d(n,a,function(t){return e[t]}.bind(null,a));return n},l.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(t,"a",t),t},l.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},l.p="/",l.oe=function(e){throw console.error(e),e};var c=window["aioseopjsonp"]=window["aioseopjsonp"]||[],d=c.push.bind(c);c.push=t,c=c.slice();for(var f=0;f<c.length;f++)t(c[f]);var y=d;i.push([12,"chunk-vendors","chunk-common"]),n()})({12:function(e,t,n){e.exports=n("8ba2")},"55de":function(e,t,n){var a={"./AnalyzeCompetitorSite.vue":["e638","seo-analysis-AnalyzeCompetitorSite-vue"],"./Main.vue":["8c52","seo-analysis-Main-vue"],"./SeoAuditChecklist.vue":["5192","seo-analysis-SeoAuditChecklist-vue"]};function o(e){if(!n.o(a,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=a[e],o=t[0];return n.e(t[1]).then((function(){return n(o)}))}o.keys=function(){return Object.keys(a)},o.id="55de",e.exports=o},"8ba2":function(e,t,n){"use strict";n.r(t);n("e260"),n("e6cf"),n("cca6"),n("a79d");var a=n("a026"),o=(n("1725"),n("75b9"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"aioseo-app"},[n("router-view")],1)}),s=[],r=n("2877"),i={},u=Object(r["a"])(i,o,s,!1,null,null,null),l=u.exports,c=n("cf27"),d=n("71ae"),f=(n("d3b7"),n("3ca3"),n("ddb0"),n("561c")),y="all-in-one-seo-pack",p=function(e){return function(){return n("55de")("./"+e+".vue")}},v=[{path:"*",redirect:"/seo-audit-checklist"},{path:"/seo-audit-checklist",name:"seo-audit-checklist",component:p("Main"),meta:{access:"aioseo_seo_analysis_settings",name:Object(f["__"])("SEO Audit Checklist",y)}},{path:"/analyze-competitor-site",name:"analyze-competitor-site",component:p("Main"),meta:{access:"aioseo_seo_analysis_settings",name:Object(f["__"])("Analyze Competitor Site",y)}}],h=n("31bd"),m=(n("2d26"),n("96cf"),Object(d["a"])(v));Object(h["sync"])(c["a"],m),a["default"].config.productionTip=!1,new a["default"]({router:m,store:c["a"],render:function(e){return e(l)}}).$mount("#aioseo-app")}});
dist/Lite/assets/js/settings.js CHANGED
@@ -1 +1 @@
1
- (function(e){function s(s){for(var r,a,u=s[0],c=s[1],o=s[2],v=0,l=[];v<u.length;v++)a=u[v],Object.prototype.hasOwnProperty.call(n,a)&&n[a]&&l.push(n[a][0]),n[a]=0;for(r in c)Object.prototype.hasOwnProperty.call(c,r)&&(e[r]=c[r]);d&&d(s);while(l.length)l.shift()();return i.push.apply(i,o||[]),t()}function t(){for(var e,s=0;s<i.length;s++){for(var t=i[s],r=!0,a=1;a<t.length;a++){var u=t[a];0!==n[u]&&(r=!1)}r&&(i.splice(s--,1),e=c(c.s=t[0]))}return e}var r={},a={settings:0},n=(a={settings:0},{settings:0}),i=[];function u(e){return c.p+"js/"+({"settings-AccessControl-vue":"settings-AccessControl-vue","settings-Advanced-vue":"settings-Advanced-vue","settings-Breadcrumbs-vue":"settings-Breadcrumbs-vue","settings-GeneralSettings-vue":"settings-GeneralSettings-vue","settings-RssContent-vue":"settings-RssContent-vue","settings-WebmasterTools-vue":"settings-WebmasterTools-vue","settings-Main-vue":"settings-Main-vue","settings-lite-AccessControl-vue":"settings-lite-AccessControl-vue","settings-lite-Breadcrumbs-vue":"settings-lite-Breadcrumbs-vue","settings-partials-Breadcrumbs-Advanced-vue":"settings-partials-Breadcrumbs-Advanced-vue","settings-partials-Breadcrumbs-Archives-vue":"settings-partials-Breadcrumbs-Archives-vue","settings-pro-Breadcrumbs-vue":"settings-pro-Breadcrumbs-vue","settings-partials-Breadcrumbs-AuthorArchives-vue":"settings-partials-Breadcrumbs-AuthorArchives-vue","settings-partials-Breadcrumbs-BlogArchives-vue":"settings-partials-Breadcrumbs-BlogArchives-vue","settings-partials-Breadcrumbs-ContentTypes-vue":"settings-partials-Breadcrumbs-ContentTypes-vue","settings-partials-Breadcrumbs-ContentTypesLite-vue":"settings-partials-Breadcrumbs-ContentTypesLite-vue","settings-partials-Breadcrumbs-DateArchives-vue":"settings-partials-Breadcrumbs-DateArchives-vue","settings-partials-Breadcrumbs-NotFound-vue":"settings-partials-Breadcrumbs-NotFound-vue","settings-partials-Breadcrumbs-PostTypeArchives-vue":"settings-partials-Breadcrumbs-PostTypeArchives-vue","settings-partials-Breadcrumbs-Preview-vue":"settings-partials-Breadcrumbs-Preview-vue","settings-partials-Breadcrumbs-SearchArchives-vue":"settings-partials-Breadcrumbs-SearchArchives-vue","settings-partials-Breadcrumbs-Taxonomies-vue":"settings-partials-Breadcrumbs-Taxonomies-vue","settings-pro-AccessControl-vue":"settings-pro-AccessControl-vue"}[e]||e)+".js?ver="+{"settings-AccessControl-vue":"33140f15","settings-Advanced-vue":"ef036b58","settings-Breadcrumbs-vue":"1f25dba0","settings-GeneralSettings-vue":"6252a423","settings-RssContent-vue":"6748398a","settings-WebmasterTools-vue":"d7f3794d","settings-Main-vue":"2ce6fe5d","settings-lite-AccessControl-vue":"9bb53157","settings-lite-Breadcrumbs-vue":"9bdfcce7","settings-partials-Breadcrumbs-Advanced-vue":"9c1c9bce","settings-partials-Breadcrumbs-Archives-vue":"0e5f8615","settings-pro-Breadcrumbs-vue":"59d1f375","settings-partials-Breadcrumbs-AuthorArchives-vue":"94f222c6","settings-partials-Breadcrumbs-BlogArchives-vue":"7c7ae6bd","settings-partials-Breadcrumbs-ContentTypes-vue":"b618b7c4","settings-partials-Breadcrumbs-ContentTypesLite-vue":"f4cb2448","settings-partials-Breadcrumbs-DateArchives-vue":"0fd69438","settings-partials-Breadcrumbs-NotFound-vue":"e27375d3","settings-partials-Breadcrumbs-PostTypeArchives-vue":"0294fa88","settings-partials-Breadcrumbs-Preview-vue":"1aaa113d","settings-partials-Breadcrumbs-SearchArchives-vue":"b88533a6","settings-partials-Breadcrumbs-Taxonomies-vue":"11199fdd","settings-pro-AccessControl-vue":"8613f1cd"}[e]}function c(s){if(r[s])return r[s].exports;var t=r[s]={i:s,l:!1,exports:{}};return e[s].call(t.exports,t,t.exports,c),t.l=!0,t.exports}c.e=function(e){var s=[],t={"settings-AccessControl-vue":1,"settings-Advanced-vue":1,"settings-Breadcrumbs-vue":1,"settings-GeneralSettings-vue":1,"settings-RssContent-vue":1,"settings-WebmasterTools-vue":1,"settings-Main-vue":1,"settings-lite-AccessControl-vue":1,"settings-lite-Breadcrumbs-vue":1,"settings-partials-Breadcrumbs-Archives-vue":1,"settings-pro-Breadcrumbs-vue":1,"settings-partials-Breadcrumbs-ContentTypes-vue":1,"settings-partials-Breadcrumbs-DateArchives-vue":1,"settings-pro-AccessControl-vue":1};a[e]?s.push(a[e]):0!==a[e]&&t[e]&&s.push(a[e]=new Promise((function(s,t){for(var r="css/"+({"settings-AccessControl-vue":"settings-AccessControl-vue","settings-Advanced-vue":"settings-Advanced-vue","settings-Breadcrumbs-vue":"settings-Breadcrumbs-vue","settings-GeneralSettings-vue":"settings-GeneralSettings-vue","settings-RssContent-vue":"settings-RssContent-vue","settings-WebmasterTools-vue":"settings-WebmasterTools-vue","settings-Main-vue":"settings-Main-vue","settings-lite-AccessControl-vue":"settings-lite-AccessControl-vue","settings-lite-Breadcrumbs-vue":"settings-lite-Breadcrumbs-vue","settings-partials-Breadcrumbs-Advanced-vue":"settings-partials-Breadcrumbs-Advanced-vue","settings-partials-Breadcrumbs-Archives-vue":"settings-partials-Breadcrumbs-Archives-vue","settings-pro-Breadcrumbs-vue":"settings-pro-Breadcrumbs-vue","settings-partials-Breadcrumbs-AuthorArchives-vue":"settings-partials-Breadcrumbs-AuthorArchives-vue","settings-partials-Breadcrumbs-BlogArchives-vue":"settings-partials-Breadcrumbs-BlogArchives-vue","settings-partials-Breadcrumbs-ContentTypes-vue":"settings-partials-Breadcrumbs-ContentTypes-vue","settings-partials-Breadcrumbs-ContentTypesLite-vue":"settings-partials-Breadcrumbs-ContentTypesLite-vue","settings-partials-Breadcrumbs-DateArchives-vue":"settings-partials-Breadcrumbs-DateArchives-vue","settings-partials-Breadcrumbs-NotFound-vue":"settings-partials-Breadcrumbs-NotFound-vue","settings-partials-Breadcrumbs-PostTypeArchives-vue":"settings-partials-Breadcrumbs-PostTypeArchives-vue","settings-partials-Breadcrumbs-Preview-vue":"settings-partials-Breadcrumbs-Preview-vue","settings-partials-Breadcrumbs-SearchArchives-vue":"settings-partials-Breadcrumbs-SearchArchives-vue","settings-partials-Breadcrumbs-Taxonomies-vue":"settings-partials-Breadcrumbs-Taxonomies-vue","settings-pro-AccessControl-vue":"settings-pro-AccessControl-vue"}[e]||e)+".css?ver="+{"settings-AccessControl-vue":"33140f15","settings-Advanced-vue":"ef036b58","settings-Breadcrumbs-vue":"1f25dba0","settings-GeneralSettings-vue":"6252a423","settings-RssContent-vue":"6748398a","settings-WebmasterTools-vue":"d7f3794d","settings-Main-vue":"2ce6fe5d","settings-lite-AccessControl-vue":"9bb53157","settings-lite-Breadcrumbs-vue":"9bdfcce7","settings-partials-Breadcrumbs-Advanced-vue":"9c1c9bce","settings-partials-Breadcrumbs-Archives-vue":"0e5f8615","settings-pro-Breadcrumbs-vue":"59d1f375","settings-partials-Breadcrumbs-AuthorArchives-vue":"94f222c6","settings-partials-Breadcrumbs-BlogArchives-vue":"7c7ae6bd","settings-partials-Breadcrumbs-ContentTypes-vue":"b618b7c4","settings-partials-Breadcrumbs-ContentTypesLite-vue":"f4cb2448","settings-partials-Breadcrumbs-DateArchives-vue":"0fd69438","settings-partials-Breadcrumbs-NotFound-vue":"e27375d3","settings-partials-Breadcrumbs-PostTypeArchives-vue":"0294fa88","settings-partials-Breadcrumbs-Preview-vue":"1aaa113d","settings-partials-Breadcrumbs-SearchArchives-vue":"b88533a6","settings-partials-Breadcrumbs-Taxonomies-vue":"11199fdd","settings-pro-AccessControl-vue":"8613f1cd"}[e],n=c.p+r,i=document.getElementsByTagName("link"),u=0;u<i.length;u++){var o=i[u],v=o.getAttribute("data-href")||o.getAttribute("href");if("stylesheet"===o.rel&&(v===r||v===n))return s()}var l=document.getElementsByTagName("style");for(u=0;u<l.length;u++){o=l[u],v=o.getAttribute("data-href");if(v===r||v===n)return s()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css",d.onload=s,d.onerror=function(s){var r=s&&s.target&&s.target.src||n,i=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");i.code="CSS_CHUNK_LOAD_FAILED",i.request=r,delete a[e],d.parentNode.removeChild(d),t(i)},d.href=n;var g=document.getElementsByTagName("head")[0];g.appendChild(d)})).then((function(){a[e]=0})));t={"settings-AccessControl-vue":1,"settings-Advanced-vue":1,"settings-Breadcrumbs-vue":1,"settings-GeneralSettings-vue":1,"settings-RssContent-vue":1,"settings-WebmasterTools-vue":1,"settings-Main-vue":1,"settings-lite-AccessControl-vue":1,"settings-lite-Breadcrumbs-vue":1,"settings-partials-Breadcrumbs-Archives-vue":1,"settings-pro-Breadcrumbs-vue":1,"settings-partials-Breadcrumbs-ContentTypes-vue":1,"settings-partials-Breadcrumbs-DateArchives-vue":1,"settings-pro-AccessControl-vue":1};a[e]?s.push(a[e]):0!==a[e]&&t[e]&&s.push(a[e]=new Promise((function(s,t){for(var r=({"settings-AccessControl-vue":"settings-AccessControl-vue","settings-Advanced-vue":"settings-Advanced-vue","settings-Breadcrumbs-vue":"settings-Breadcrumbs-vue","settings-GeneralSettings-vue":"settings-GeneralSettings-vue","settings-RssContent-vue":"settings-RssContent-vue","settings-WebmasterTools-vue":"settings-WebmasterTools-vue","settings-Main-vue":"settings-Main-vue","settings-lite-AccessControl-vue":"settings-lite-AccessControl-vue","settings-lite-Breadcrumbs-vue":"settings-lite-Breadcrumbs-vue","settings-partials-Breadcrumbs-Advanced-vue":"settings-partials-Breadcrumbs-Advanced-vue","settings-partials-Breadcrumbs-Archives-vue":"settings-partials-Breadcrumbs-Archives-vue","settings-pro-Breadcrumbs-vue":"settings-pro-Breadcrumbs-vue","settings-partials-Breadcrumbs-AuthorArchives-vue":"settings-partials-Breadcrumbs-AuthorArchives-vue","settings-partials-Breadcrumbs-BlogArchives-vue":"settings-partials-Breadcrumbs-BlogArchives-vue","settings-partials-Breadcrumbs-ContentTypes-vue":"settings-partials-Breadcrumbs-ContentTypes-vue","settings-partials-Breadcrumbs-ContentTypesLite-vue":"settings-partials-Breadcrumbs-ContentTypesLite-vue","settings-partials-Breadcrumbs-DateArchives-vue":"settings-partials-Breadcrumbs-DateArchives-vue","settings-partials-Breadcrumbs-NotFound-vue":"settings-partials-Breadcrumbs-NotFound-vue","settings-partials-Breadcrumbs-PostTypeArchives-vue":"settings-partials-Breadcrumbs-PostTypeArchives-vue","settings-partials-Breadcrumbs-Preview-vue":"settings-partials-Breadcrumbs-Preview-vue","settings-partials-Breadcrumbs-SearchArchives-vue":"settings-partials-Breadcrumbs-SearchArchives-vue","settings-partials-Breadcrumbs-Taxonomies-vue":"settings-partials-Breadcrumbs-Taxonomies-vue","settings-pro-AccessControl-vue":"settings-pro-AccessControl-vue"}[e]||e)+".css",n=c.p+r,i=document.getElementsByTagName("link"),u=0;u<i.length;u++){var o=i[u],v=o.getAttribute("data-href")||o.getAttribute("href");if("stylesheet"===o.rel&&(v===r||v===n))return s()}var l=document.getElementsByTagName("style");for(u=0;u<l.length;u++){o=l[u],v=o.getAttribute("data-href");if(v===r||v===n)return s()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css";var g=function(r){if(d.onerror=d.onload=null,"load"===r.type)s();else{var i=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.href||n,c=new Error("Loading CSS chunk "+e+" failed.\n("+u+")");c.code="CSS_CHUNK_LOAD_FAILED",c.type=i,c.request=u,delete a[e],d.parentNode.removeChild(d),t(c)}};d.onerror=d.onload=g,d.href=n,document.head.appendChild(d)})).then((function(){a[e]=0})));var r=n[e];if(0!==r)if(r)s.push(r[2]);else{var i=new Promise((function(s,t){r=n[e]=[s,t]}));s.push(r[2]=i);var o,v=document.createElement("script");v.charset="utf-8",v.timeout=120,c.nc&&v.setAttribute("nonce",c.nc),v.src=u(e);var l=new Error;o=function(s){v.onerror=v.onload=null,clearTimeout(d);var t=n[e];if(0!==t){if(t){var r=s&&("load"===s.type?"missing":s.type),a=s&&s.target&&s.target.src;l.message="Loading chunk "+e+" failed.\n("+r+": "+a+")",l.name="ChunkLoadError",l.type=r,l.request=a,t[1](l)}n[e]=void 0}};var d=setTimeout((function(){o({type:"timeout",target:v})}),12e4);v.onerror=v.onload=o,document.head.appendChild(v)}return Promise.all(s)},c.m=e,c.c=r,c.d=function(e,s,t){c.o(e,s)||Object.defineProperty(e,s,{enumerable:!0,get:t})},c.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,s){if(1&s&&(e=c(e)),8&s)return e;if(4&s&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(c.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&s&&"string"!=typeof e)for(var r in e)c.d(t,r,function(s){return e[s]}.bind(null,r));return t},c.n=function(e){var s=e&&e.__esModule?function(){return e["default"]}:function(){return e};return c.d(s,"a",s),s},c.o=function(e,s){return Object.prototype.hasOwnProperty.call(e,s)},c.p="/",c.oe=function(e){throw console.error(e),e};var o=window["aioseopjsonp"]=window["aioseopjsonp"]||[],v=o.push.bind(o);o.push=s,o=o.slice();for(var l=0;l<o.length;l++)s(o[l]);var d=v;i.push([13,"chunk-vendors","chunk-common"]),t()})({13:function(e,s,t){e.exports=t("34b1")},2197:function(e,s,t){var r={"./AccessControl.vue":["edbf","settings-AccessControl-vue"],"./Advanced.vue":["5ee0","settings-Advanced-vue"],"./Breadcrumbs.vue":["3a05","settings-Breadcrumbs-vue"],"./GeneralSettings.vue":["8498","settings-GeneralSettings-vue"],"./Main.vue":["f856","settings-WebmasterTools-vue","settings-Breadcrumbs-vue","settings-Main-vue"],"./RssContent.vue":["a97e","settings-RssContent-vue"],"./WebmasterTools.vue":["ead6","settings-WebmasterTools-vue"],"./lite/AccessControl.vue":["61c3","settings-lite-AccessControl-vue"],"./lite/Breadcrumbs.vue":["698a","settings-lite-Breadcrumbs-vue"],"./partials/Breadcrumbs/Advanced.vue":["9433","settings-partials-Breadcrumbs-Advanced-vue"],"./partials/Breadcrumbs/Archives.vue":["6578","settings-partials-Breadcrumbs-Archives-vue"],"./partials/Breadcrumbs/AuthorArchives.vue":["0d4c","settings-partials-Breadcrumbs-AuthorArchives-vue"],"./partials/Breadcrumbs/BlogArchives.vue":["5d58","settings-partials-Breadcrumbs-BlogArchives-vue"],"./partials/Breadcrumbs/ContentTypes.vue":["02c9","settings-partials-Breadcrumbs-ContentTypes-vue"],"./partials/Breadcrumbs/ContentTypesLite.vue":["1df9","settings-partials-Breadcrumbs-ContentTypesLite-vue"],"./partials/Breadcrumbs/DateArchives.vue":["49ec","settings-partials-Breadcrumbs-DateArchives-vue"],"./partials/Breadcrumbs/NotFound.vue":["ef30","settings-partials-Breadcrumbs-NotFound-vue"],"./partials/Breadcrumbs/PostTypeArchives.vue":["1e68","settings-partials-Breadcrumbs-PostTypeArchives-vue"],"./partials/Breadcrumbs/Preview.vue":["c468","settings-partials-Breadcrumbs-Preview-vue"],"./partials/Breadcrumbs/SearchArchives.vue":["2dbb","settings-partials-Breadcrumbs-SearchArchives-vue"],"./partials/Breadcrumbs/Taxonomies.vue":["e081","settings-partials-Breadcrumbs-Taxonomies-vue"],"./pro/AccessControl.vue":["4d07","settings-pro-AccessControl-vue"],"./pro/Breadcrumbs.vue":["df12","settings-partials-Breadcrumbs-Archives-vue","settings-pro-Breadcrumbs-vue"]};function a(e){if(!t.o(r,e))return Promise.resolve().then((function(){var s=new Error("Cannot find module '"+e+"'");throw s.code="MODULE_NOT_FOUND",s}));var s=r[e],a=s[0];return Promise.all(s.slice(1).map(t.e)).then((function(){return t(a)}))}a.keys=function(){return Object.keys(r)},a.id="2197",e.exports=a},"34b1":function(e,s,t){"use strict";t.r(s);t("e260"),t("e6cf"),t("cca6"),t("a79d");var r=t("a026"),a=(t("1725"),t("75b9"),function(){var e=this,s=e.$createElement,t=e._self._c||s;return t("div",{staticClass:"aioseo-app"},[t("router-view")],1)}),n=[],i=t("2877"),u={},c=Object(i["a"])(u,a,n,!1,null,null,null),o=c.exports,v=t("cf27"),l=t("71ae"),d=(t("d3b7"),t("3ca3"),t("ddb0"),t("561c")),g="all-in-one-seo-pack",m=function(e){return function(){return t("2197")("./"+e+".vue")}},p=[{path:"*",redirect:"/general-settings"},{path:"/general-settings",name:"general-settings",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("General Settings",g)}},{path:"/webmaster-tools",name:"webmaster-tools",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("Webmaster Tools",g)}},{path:"/breadcrumbs",name:"breadcrumbs",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("Breadcrumbs",g)}},{path:"/rss-content",name:"rss-content",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("RSS Content",g)}},{path:"/access-control",name:"access-control",component:m("Main"),meta:{home:"general-settings",access:"aioseo_admin",name:Object(d["__"])("Access Control",g)}},{path:"/advanced",name:"advanced",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("Advanced",g)}}],b=t("31bd"),B=(t("2d26"),t("96cf"),Object(l["a"])(p));Object(b["sync"])(v["a"],B),r["default"].config.productionTip=!1,new r["default"]({router:B,store:v["a"],render:function(e){return e(o)}}).$mount("#aioseo-app")}});
1
+ (function(e){function s(s){for(var r,a,n=s[0],c=s[1],o=s[2],v=0,l=[];v<n.length;v++)a=n[v],Object.prototype.hasOwnProperty.call(i,a)&&i[a]&&l.push(i[a][0]),i[a]=0;for(r in c)Object.prototype.hasOwnProperty.call(c,r)&&(e[r]=c[r]);g&&g(s);while(l.length)l.shift()();return u.push.apply(u,o||[]),t()}function t(){for(var e,s=0;s<u.length;s++){for(var t=u[s],r=!0,a=1;a<t.length;a++){var n=t[a];0!==i[n]&&(r=!1)}r&&(u.splice(s--,1),e=o(o.s=t[0]))}return e}var r={},a={settings:0},n=(a={settings:0},function(){return"rtl"===document.dir}),i={settings:0},u=[];function c(e){return o.p+"js/"+({"settings-AccessControl-vue":"settings-AccessControl-vue","settings-Advanced-vue":"settings-Advanced-vue","settings-Breadcrumbs-vue":"settings-Breadcrumbs-vue","settings-GeneralSettings-vue":"settings-GeneralSettings-vue","settings-RssContent-vue":"settings-RssContent-vue","settings-WebmasterTools-vue":"settings-WebmasterTools-vue","settings-Main-vue":"settings-Main-vue","settings-lite-AccessControl-vue":"settings-lite-AccessControl-vue","settings-lite-Breadcrumbs-vue":"settings-lite-Breadcrumbs-vue","settings-partials-Breadcrumbs-Advanced-vue":"settings-partials-Breadcrumbs-Advanced-vue","settings-partials-Breadcrumbs-Archives-vue":"settings-partials-Breadcrumbs-Archives-vue","settings-pro-Breadcrumbs-vue":"settings-pro-Breadcrumbs-vue","settings-partials-Breadcrumbs-AuthorArchives-vue":"settings-partials-Breadcrumbs-AuthorArchives-vue","settings-partials-Breadcrumbs-BlogArchives-vue":"settings-partials-Breadcrumbs-BlogArchives-vue","settings-partials-Breadcrumbs-ContentTypes-vue":"settings-partials-Breadcrumbs-ContentTypes-vue","settings-partials-Breadcrumbs-ContentTypesLite-vue":"settings-partials-Breadcrumbs-ContentTypesLite-vue","settings-partials-Breadcrumbs-DateArchives-vue":"settings-partials-Breadcrumbs-DateArchives-vue","settings-partials-Breadcrumbs-NotFound-vue":"settings-partials-Breadcrumbs-NotFound-vue","settings-partials-Breadcrumbs-PostTypeArchives-vue":"settings-partials-Breadcrumbs-PostTypeArchives-vue","settings-partials-Breadcrumbs-Preview-vue":"settings-partials-Breadcrumbs-Preview-vue","settings-partials-Breadcrumbs-SearchArchives-vue":"settings-partials-Breadcrumbs-SearchArchives-vue","settings-partials-Breadcrumbs-Taxonomies-vue":"settings-partials-Breadcrumbs-Taxonomies-vue","settings-pro-AccessControl-vue":"settings-pro-AccessControl-vue"}[e]||e)+".js?ver="+{"settings-AccessControl-vue":"3ff04768","settings-Advanced-vue":"323960ff","settings-Breadcrumbs-vue":"55d68e21","settings-GeneralSettings-vue":"466bd1c4","settings-RssContent-vue":"8b98dc1f","settings-WebmasterTools-vue":"5615a63e","settings-Main-vue":"70ac1021","settings-lite-AccessControl-vue":"350e31b6","settings-lite-Breadcrumbs-vue":"4137f7c6","settings-partials-Breadcrumbs-Advanced-vue":"fb8843a2","settings-partials-Breadcrumbs-Archives-vue":"6c9e0f87","settings-pro-Breadcrumbs-vue":"9860f06b","settings-partials-Breadcrumbs-AuthorArchives-vue":"4a382f51","settings-partials-Breadcrumbs-BlogArchives-vue":"f6f8874d","settings-partials-Breadcrumbs-ContentTypes-vue":"e68207e2","settings-partials-Breadcrumbs-ContentTypesLite-vue":"37e348bb","settings-partials-Breadcrumbs-DateArchives-vue":"24cc412a","settings-partials-Breadcrumbs-NotFound-vue":"c34ad522","settings-partials-Breadcrumbs-PostTypeArchives-vue":"8bd1a8fe","settings-partials-Breadcrumbs-Preview-vue":"12f0cabc","settings-partials-Breadcrumbs-SearchArchives-vue":"05db56c1","settings-partials-Breadcrumbs-Taxonomies-vue":"733e5cf6","settings-pro-AccessControl-vue":"5972ac9a"}[e]}function o(s){if(r[s])return r[s].exports;var t=r[s]={i:s,l:!1,exports:{}};return e[s].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.e=function(e){var s=[],t={"settings-AccessControl-vue":1,"settings-Advanced-vue":1,"settings-Breadcrumbs-vue":1,"settings-GeneralSettings-vue":1,"settings-RssContent-vue":1,"settings-WebmasterTools-vue":1,"settings-Main-vue":1,"settings-lite-AccessControl-vue":1,"settings-lite-Breadcrumbs-vue":1,"settings-partials-Breadcrumbs-Archives-vue":1,"settings-pro-Breadcrumbs-vue":1,"settings-partials-Breadcrumbs-ContentTypes-vue":1,"settings-partials-Breadcrumbs-DateArchives-vue":1,"settings-pro-AccessControl-vue":1};a[e]?s.push(a[e]):0!==a[e]&&t[e]&&s.push(a[e]=new Promise((function(s,t){for(var r="css/"+({"settings-AccessControl-vue":"settings-AccessControl-vue","settings-Advanced-vue":"settings-Advanced-vue","settings-Breadcrumbs-vue":"settings-Breadcrumbs-vue","settings-GeneralSettings-vue":"settings-GeneralSettings-vue","settings-RssContent-vue":"settings-RssContent-vue","settings-WebmasterTools-vue":"settings-WebmasterTools-vue","settings-Main-vue":"settings-Main-vue","settings-lite-AccessControl-vue":"settings-lite-AccessControl-vue","settings-lite-Breadcrumbs-vue":"settings-lite-Breadcrumbs-vue","settings-partials-Breadcrumbs-Advanced-vue":"settings-partials-Breadcrumbs-Advanced-vue","settings-partials-Breadcrumbs-Archives-vue":"settings-partials-Breadcrumbs-Archives-vue","settings-pro-Breadcrumbs-vue":"settings-pro-Breadcrumbs-vue","settings-partials-Breadcrumbs-AuthorArchives-vue":"settings-partials-Breadcrumbs-AuthorArchives-vue","settings-partials-Breadcrumbs-BlogArchives-vue":"settings-partials-Breadcrumbs-BlogArchives-vue","settings-partials-Breadcrumbs-ContentTypes-vue":"settings-partials-Breadcrumbs-ContentTypes-vue","settings-partials-Breadcrumbs-ContentTypesLite-vue":"settings-partials-Breadcrumbs-ContentTypesLite-vue","settings-partials-Breadcrumbs-DateArchives-vue":"settings-partials-Breadcrumbs-DateArchives-vue","settings-partials-Breadcrumbs-NotFound-vue":"settings-partials-Breadcrumbs-NotFound-vue","settings-partials-Breadcrumbs-PostTypeArchives-vue":"settings-partials-Breadcrumbs-PostTypeArchives-vue","settings-partials-Breadcrumbs-Preview-vue":"settings-partials-Breadcrumbs-Preview-vue","settings-partials-Breadcrumbs-SearchArchives-vue":"settings-partials-Breadcrumbs-SearchArchives-vue","settings-partials-Breadcrumbs-Taxonomies-vue":"settings-partials-Breadcrumbs-Taxonomies-vue","settings-pro-AccessControl-vue":"settings-pro-AccessControl-vue"}[e]||e)+".css",n=o.p+r,i=document.getElementsByTagName("link"),u=0;u<i.length;u++){var c=i[u],v=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(v===r||v===n))return s()}var l=document.getElementsByTagName("style");for(u=0;u<l.length;u++){c=l[u],v=c.getAttribute("data-href");if(v===r||v===n)return s()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css",d.onload=s,d.onerror=function(s){var r=s&&s.target&&s.target.src||n,i=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");i.code="CSS_CHUNK_LOAD_FAILED",i.request=r,delete a[e],d.parentNode.removeChild(d),t(i)},d.href=n;var g=document.getElementsByTagName("head")[0];g.appendChild(d)})).then((function(){a[e]=0})));t={"settings-AccessControl-vue":1,"settings-Advanced-vue":1,"settings-Breadcrumbs-vue":1,"settings-GeneralSettings-vue":1,"settings-RssContent-vue":1,"settings-WebmasterTools-vue":1,"settings-Main-vue":1,"settings-lite-AccessControl-vue":1,"settings-lite-Breadcrumbs-vue":1,"settings-partials-Breadcrumbs-Archives-vue":1,"settings-pro-Breadcrumbs-vue":1,"settings-partials-Breadcrumbs-ContentTypes-vue":1,"settings-partials-Breadcrumbs-DateArchives-vue":1,"settings-pro-AccessControl-vue":1};a[e]?s.push(a[e]):0!==a[e]&&t[e]&&s.push(a[e]=new Promise((function(s,t){for(var r=(n(),"css/"+({"settings-AccessControl-vue":"settings-AccessControl-vue","settings-Advanced-vue":"settings-Advanced-vue","settings-Breadcrumbs-vue":"settings-Breadcrumbs-vue","settings-GeneralSettings-vue":"settings-GeneralSettings-vue","settings-RssContent-vue":"settings-RssContent-vue","settings-WebmasterTools-vue":"settings-WebmasterTools-vue","settings-Main-vue":"settings-Main-vue","settings-lite-AccessControl-vue":"settings-lite-AccessControl-vue","settings-lite-Breadcrumbs-vue":"settings-lite-Breadcrumbs-vue","settings-partials-Breadcrumbs-Advanced-vue":"settings-partials-Breadcrumbs-Advanced-vue","settings-partials-Breadcrumbs-Archives-vue":"settings-partials-Breadcrumbs-Archives-vue","settings-pro-Breadcrumbs-vue":"settings-pro-Breadcrumbs-vue","settings-partials-Breadcrumbs-AuthorArchives-vue":"settings-partials-Breadcrumbs-AuthorArchives-vue","settings-partials-Breadcrumbs-BlogArchives-vue":"settings-partials-Breadcrumbs-BlogArchives-vue","settings-partials-Breadcrumbs-ContentTypes-vue":"settings-partials-Breadcrumbs-ContentTypes-vue","settings-partials-Breadcrumbs-ContentTypesLite-vue":"settings-partials-Breadcrumbs-ContentTypesLite-vue","settings-partials-Breadcrumbs-DateArchives-vue":"settings-partials-Breadcrumbs-DateArchives-vue","settings-partials-Breadcrumbs-NotFound-vue":"settings-partials-Breadcrumbs-NotFound-vue","settings-partials-Breadcrumbs-PostTypeArchives-vue":"settings-partials-Breadcrumbs-PostTypeArchives-vue","settings-partials-Breadcrumbs-Preview-vue":"settings-partials-Breadcrumbs-Preview-vue","settings-partials-Breadcrumbs-SearchArchives-vue":"settings-partials-Breadcrumbs-SearchArchives-vue","settings-partials-Breadcrumbs-Taxonomies-vue":"settings-partials-Breadcrumbs-Taxonomies-vue","settings-pro-AccessControl-vue":"settings-pro-AccessControl-vue"}[e]||e)+".css?ver="+{"settings-AccessControl-vue":"3ff04768","settings-Advanced-vue":"323960ff","settings-Breadcrumbs-vue":"55d68e21","settings-GeneralSettings-vue":"466bd1c4","settings-RssContent-vue":"8b98dc1f","settings-WebmasterTools-vue":"5615a63e","settings-Main-vue":"70ac1021","settings-lite-AccessControl-vue":"350e31b6","settings-lite-Breadcrumbs-vue":"4137f7c6","settings-partials-Breadcrumbs-Advanced-vue":"fb8843a2","settings-partials-Breadcrumbs-Archives-vue":"6c9e0f87","settings-pro-Breadcrumbs-vue":"9860f06b","settings-partials-Breadcrumbs-AuthorArchives-vue":"4a382f51","settings-partials-Breadcrumbs-BlogArchives-vue":"f6f8874d","settings-partials-Breadcrumbs-ContentTypes-vue":"e68207e2","settings-partials-Breadcrumbs-ContentTypesLite-vue":"37e348bb","settings-partials-Breadcrumbs-DateArchives-vue":"24cc412a","settings-partials-Breadcrumbs-NotFound-vue":"c34ad522","settings-partials-Breadcrumbs-PostTypeArchives-vue":"8bd1a8fe","settings-partials-Breadcrumbs-Preview-vue":"12f0cabc","settings-partials-Breadcrumbs-SearchArchives-vue":"05db56c1","settings-partials-Breadcrumbs-Taxonomies-vue":"733e5cf6","settings-pro-AccessControl-vue":"5972ac9a"}[e]),a=o.p+r,i=document.getElementsByTagName("link"),u=0;u<i.length;u++){var c=i[u],v=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(v===r||v===a))return s()}var l=document.getElementsByTagName("style");for(u=0;u<l.length;u++){c=l[u],v=c.getAttribute("data-href");if(v===r||v===a)return s()}var d=document.createElement("link");d.rel="stylesheet",d.type="text/css",d.onload=s,d.onerror=function(s){var r=s&&s.target&&s.target.src||a,n=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");n.request=r,t(n)},d.href=a;var g=document.getElementsByTagName("head")[0];g.appendChild(d)})).then((function(){a[e]=0})));var r=i[e];if(0!==r)if(r)s.push(r[2]);else{var u=new Promise((function(s,t){r=i[e]=[s,t]}));s.push(r[2]=u);var v,l=document.createElement("script");l.charset="utf-8",l.timeout=120,o.nc&&l.setAttribute("nonce",o.nc),l.src=c(e);var d=new Error;v=function(s){l.onerror=l.onload=null,clearTimeout(g);var t=i[e];if(0!==t){if(t){var r=s&&("load"===s.type?"missing":s.type),a=s&&s.target&&s.target.src;d.message="Loading chunk "+e+" failed.\n("+r+": "+a+")",d.name="ChunkLoadError",d.type=r,d.request=a,t[1](d)}i[e]=void 0}};var g=setTimeout((function(){v({type:"timeout",target:l})}),12e4);l.onerror=l.onload=v,document.head.appendChild(l)}return Promise.all(s)},o.m=e,o.c=r,o.d=function(e,s,t){o.o(e,s)||Object.defineProperty(e,s,{enumerable:!0,get:t})},o.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,s){if(1&s&&(e=o(e)),8&s)return e;if(4&s&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(o.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&s&&"string"!=typeof e)for(var r in e)o.d(t,r,function(s){return e[s]}.bind(null,r));return t},o.n=function(e){var s=e&&e.__esModule?function(){return e["default"]}:function(){return e};return o.d(s,"a",s),s},o.o=function(e,s){return Object.prototype.hasOwnProperty.call(e,s)},o.p="/",o.oe=function(e){throw console.error(e),e};var v=window["aioseopjsonp"]=window["aioseopjsonp"]||[],l=v.push.bind(v);v.push=s,v=v.slice();for(var d=0;d<v.length;d++)s(v[d]);var g=l;u.push([13,"chunk-vendors","chunk-common"]),t()})({13:function(e,s,t){e.exports=t("34b1")},2197:function(e,s,t){var r={"./AccessControl.vue":["edbf","settings-AccessControl-vue"],"./Advanced.vue":["5ee0","settings-Advanced-vue"],"./Breadcrumbs.vue":["3a05","settings-Breadcrumbs-vue"],"./GeneralSettings.vue":["8498","settings-GeneralSettings-vue"],"./Main.vue":["f856","settings-WebmasterTools-vue","settings-Breadcrumbs-vue","settings-Main-vue"],"./RssContent.vue":["a97e","settings-RssContent-vue"],"./WebmasterTools.vue":["ead6","settings-WebmasterTools-vue"],"./lite/AccessControl.vue":["61c3","settings-lite-AccessControl-vue"],"./lite/Breadcrumbs.vue":["698a","settings-lite-Breadcrumbs-vue"],"./partials/Breadcrumbs/Advanced.vue":["9433","settings-partials-Breadcrumbs-Advanced-vue"],"./partials/Breadcrumbs/Archives.vue":["6578","settings-partials-Breadcrumbs-Archives-vue"],"./partials/Breadcrumbs/AuthorArchives.vue":["0d4c","settings-partials-Breadcrumbs-AuthorArchives-vue"],"./partials/Breadcrumbs/BlogArchives.vue":["5d58","settings-partials-Breadcrumbs-BlogArchives-vue"],"./partials/Breadcrumbs/ContentTypes.vue":["02c9","settings-partials-Breadcrumbs-ContentTypes-vue"],"./partials/Breadcrumbs/ContentTypesLite.vue":["1df9","settings-partials-Breadcrumbs-ContentTypesLite-vue"],"./partials/Breadcrumbs/DateArchives.vue":["49ec","settings-partials-Breadcrumbs-DateArchives-vue"],"./partials/Breadcrumbs/NotFound.vue":["ef30","settings-partials-Breadcrumbs-NotFound-vue"],"./partials/Breadcrumbs/PostTypeArchives.vue":["1e68","settings-partials-Breadcrumbs-PostTypeArchives-vue"],"./partials/Breadcrumbs/Preview.vue":["c468","settings-partials-Breadcrumbs-Preview-vue"],"./partials/Breadcrumbs/SearchArchives.vue":["2dbb","settings-partials-Breadcrumbs-SearchArchives-vue"],"./partials/Breadcrumbs/Taxonomies.vue":["e081","settings-partials-Breadcrumbs-Taxonomies-vue"],"./pro/AccessControl.vue":["4d07","settings-pro-AccessControl-vue"],"./pro/Breadcrumbs.vue":["df12","settings-partials-Breadcrumbs-Archives-vue","settings-pro-Breadcrumbs-vue"]};function a(e){if(!t.o(r,e))return Promise.resolve().then((function(){var s=new Error("Cannot find module '"+e+"'");throw s.code="MODULE_NOT_FOUND",s}));var s=r[e],a=s[0];return Promise.all(s.slice(1).map(t.e)).then((function(){return t(a)}))}a.keys=function(){return Object.keys(r)},a.id="2197",e.exports=a},"34b1":function(e,s,t){"use strict";t.r(s);t("e260"),t("e6cf"),t("cca6"),t("a79d");var r=t("a026"),a=(t("1725"),t("75b9"),function(){var e=this,s=e.$createElement,t=e._self._c||s;return t("div",{staticClass:"aioseo-app"},[t("router-view")],1)}),n=[],i=t("2877"),u={},c=Object(i["a"])(u,a,n,!1,null,null,null),o=c.exports,v=t("cf27"),l=t("71ae"),d=(t("d3b7"),t("3ca3"),t("ddb0"),t("561c")),g="all-in-one-seo-pack",m=function(e){return function(){return t("2197")("./"+e+".vue")}},p=[{path:"*",redirect:"/general-settings"},{path:"/general-settings",name:"general-settings",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("General Settings",g)}},{path:"/webmaster-tools",name:"webmaster-tools",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("Webmaster Tools",g)}},{path:"/breadcrumbs",name:"breadcrumbs",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("Breadcrumbs",g)}},{path:"/rss-content",name:"rss-content",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("RSS Content",g)}},{path:"/access-control",name:"access-control",component:m("Main"),meta:{home:"general-settings",access:"aioseo_admin",name:Object(d["__"])("Access Control",g)}},{path:"/advanced",name:"advanced",component:m("Main"),meta:{access:"aioseo_general_settings",name:Object(d["__"])("Advanced",g)}}],b=t("31bd"),B=(t("2d26"),t("96cf"),Object(l["a"])(p));Object(b["sync"])(v["a"],B),r["default"].config.productionTip=!1,new r["default"]({router:B,store:v["a"],render:function(e){return e(o)}}).$mount("#aioseo-app")}});
dist/Lite/assets/js/setup-wizard.js CHANGED
@@ -1 +1 @@
1
- (function(e){function t(t){for(var r,u,o=t[0],s=t[1],c=t[2],d=0,p=[];d<o.length;d++)u=o[d],Object.prototype.hasOwnProperty.call(n,u)&&n[u]&&p.push(n[u][0]),n[u]=0;for(r in s)Object.prototype.hasOwnProperty.call(s,r)&&(e[r]=s[r]);m&&m(t);while(p.length)p.shift()();return i.push.apply(i,c||[]),a()}function a(){for(var e,t=0;t<i.length;t++){for(var a=i[t],r=!0,u=1;u<a.length;u++){var o=a[u];0!==n[o]&&(r=!1)}r&&(i.splice(t--,1),e=s(s.s=a[0]))}return e}var r={},u={"setup-wizard":0},n=(u={"setup-wizard":0},{"setup-wizard":0}),i=[];function o(e){return s.p+"js/"+({"setup-wizard-AdditionalInformation-vue":"setup-wizard-AdditionalInformation-vue","setup-wizard-Category-vue":"setup-wizard-Category-vue","setup-wizard-Features-vue":"setup-wizard-Features-vue","setup-wizard-Import-vue":"setup-wizard-Import-vue","setup-wizard-LicenseKey-vue":"setup-wizard-LicenseKey-vue","setup-wizard-Main-vue":"setup-wizard-Main-vue","setup-wizard-SearchAppearance-vue":"setup-wizard-SearchAppearance-vue","setup-wizard-SmartRecommendations-vue":"setup-wizard-SmartRecommendations-vue","setup-wizard-Success-vue":"setup-wizard-Success-vue","setup-wizard-Welcome-vue":"setup-wizard-Welcome-vue"}[e]||e)+".js?ver="+{"setup-wizard-AdditionalInformation-vue":"68012137","setup-wizard-Category-vue":"efa7ef23","setup-wizard-Features-vue":"60472c35","setup-wizard-Import-vue":"38c2d6ff","setup-wizard-LicenseKey-vue":"d247f905","setup-wizard-Main-vue":"aaefcc81","setup-wizard-SearchAppearance-vue":"5b8d7e19","setup-wizard-SmartRecommendations-vue":"39b427ca","setup-wizard-Success-vue":"dbc5cb18","setup-wizard-Welcome-vue":"71e66b59"}[e]}function s(t){if(r[t])return r[t].exports;var a=r[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,s),a.l=!0,a.exports}s.e=function(e){var t=[],a={"setup-wizard-AdditionalInformation-vue":1,"setup-wizard-Category-vue":1,"setup-wizard-Features-vue":1,"setup-wizard-Import-vue":1,"setup-wizard-LicenseKey-vue":1,"setup-wizard-Main-vue":1,"setup-wizard-SearchAppearance-vue":1,"setup-wizard-SmartRecommendations-vue":1,"setup-wizard-Success-vue":1,"setup-wizard-Welcome-vue":1};u[e]?t.push(u[e]):0!==u[e]&&a[e]&&t.push(u[e]=new Promise((function(t,a){for(var r="css/"+({"setup-wizard-AdditionalInformation-vue":"setup-wizard-AdditionalInformation-vue","setup-wizard-Category-vue":"setup-wizard-Category-vue","setup-wizard-Features-vue":"setup-wizard-Features-vue","setup-wizard-Import-vue":"setup-wizard-Import-vue","setup-wizard-LicenseKey-vue":"setup-wizard-LicenseKey-vue","setup-wizard-Main-vue":"setup-wizard-Main-vue","setup-wizard-SearchAppearance-vue":"setup-wizard-SearchAppearance-vue","setup-wizard-SmartRecommendations-vue":"setup-wizard-SmartRecommendations-vue","setup-wizard-Success-vue":"setup-wizard-Success-vue","setup-wizard-Welcome-vue":"setup-wizard-Welcome-vue"}[e]||e)+".css?ver="+{"setup-wizard-AdditionalInformation-vue":"68012137","setup-wizard-Category-vue":"efa7ef23","setup-wizard-Features-vue":"60472c35","setup-wizard-Import-vue":"38c2d6ff","setup-wizard-LicenseKey-vue":"d247f905","setup-wizard-Main-vue":"aaefcc81","setup-wizard-SearchAppearance-vue":"5b8d7e19","setup-wizard-SmartRecommendations-vue":"39b427ca","setup-wizard-Success-vue":"dbc5cb18","setup-wizard-Welcome-vue":"71e66b59"}[e],n=s.p+r,i=document.getElementsByTagName("link"),o=0;o<i.length;o++){var c=i[o],d=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(d===r||d===n))return t()}var p=document.getElementsByTagName("style");for(o=0;o<p.length;o++){c=p[o],d=c.getAttribute("data-href");if(d===r||d===n)return t()}var m=document.createElement("link");m.rel="stylesheet",m.type="text/css",m.onload=t,m.onerror=function(t){var r=t&&t.target&&t.target.src||n,i=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");i.code="CSS_CHUNK_LOAD_FAILED",i.request=r,delete u[e],m.parentNode.removeChild(m),a(i)},m.href=n;var v=document.getElementsByTagName("head")[0];v.appendChild(m)})).then((function(){u[e]=0})));a={"setup-wizard-AdditionalInformation-vue":1,"setup-wizard-Category-vue":1,"setup-wizard-Features-vue":1,"setup-wizard-Import-vue":1,"setup-wizard-LicenseKey-vue":1,"setup-wizard-Main-vue":1,"setup-wizard-SearchAppearance-vue":1,"setup-wizard-SmartRecommendations-vue":1,"setup-wizard-Success-vue":1,"setup-wizard-Welcome-vue":1};u[e]?t.push(u[e]):0!==u[e]&&a[e]&&t.push(u[e]=new Promise((function(t,a){for(var r=({"setup-wizard-AdditionalInformation-vue":"setup-wizard-AdditionalInformation-vue","setup-wizard-Category-vue":"setup-wizard-Category-vue","setup-wizard-Features-vue":"setup-wizard-Features-vue","setup-wizard-Import-vue":"setup-wizard-Import-vue","setup-wizard-LicenseKey-vue":"setup-wizard-LicenseKey-vue","setup-wizard-Main-vue":"setup-wizard-Main-vue","setup-wizard-SearchAppearance-vue":"setup-wizard-SearchAppearance-vue","setup-wizard-SmartRecommendations-vue":"setup-wizard-SmartRecommendations-vue","setup-wizard-Success-vue":"setup-wizard-Success-vue","setup-wizard-Welcome-vue":"setup-wizard-Welcome-vue"}[e]||e)+".css",n=s.p+r,i=document.getElementsByTagName("link"),o=0;o<i.length;o++){var c=i[o],d=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(d===r||d===n))return t()}var p=document.getElementsByTagName("style");for(o=0;o<p.length;o++){c=p[o],d=c.getAttribute("data-href");if(d===r||d===n)return t()}var m=document.createElement("link");m.rel="stylesheet",m.type="text/css";var v=function(r){if(m.onerror=m.onload=null,"load"===r.type)t();else{var i=r&&("load"===r.type?"missing":r.type),o=r&&r.target&&r.target.href||n,s=new Error("Loading CSS chunk "+e+" failed.\n("+o+")");s.code="CSS_CHUNK_LOAD_FAILED",s.type=i,s.request=o,delete u[e],m.parentNode.removeChild(m),a(s)}};m.onerror=m.onload=v,m.href=n,document.head.appendChild(m)})).then((function(){u[e]=0})));var r=n[e];if(0!==r)if(r)t.push(r[2]);else{var i=new Promise((function(t,a){r=n[e]=[t,a]}));t.push(r[2]=i);var c,d=document.createElement("script");d.charset="utf-8",d.timeout=120,s.nc&&d.setAttribute("nonce",s.nc),d.src=o(e);var p=new Error;c=function(t){d.onerror=d.onload=null,clearTimeout(m);var a=n[e];if(0!==a){if(a){var r=t&&("load"===t.type?"missing":t.type),u=t&&t.target&&t.target.src;p.message="Loading chunk "+e+" failed.\n("+r+": "+u+")",p.name="ChunkLoadError",p.type=r,p.request=u,a[1](p)}n[e]=void 0}};var m=setTimeout((function(){c({type:"timeout",target:d})}),12e4);d.onerror=d.onload=c,document.head.appendChild(d)}return Promise.all(t)},s.m=e,s.c=r,s.d=function(e,t,a){s.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},s.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.t=function(e,t){if(1&t&&(e=s(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(s.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)s.d(a,r,function(t){return e[t]}.bind(null,r));return a},s.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return s.d(t,"a",t),t},s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},s.p="/",s.oe=function(e){throw console.error(e),e};var c=window["aioseopjsonp"]=window["aioseopjsonp"]||[],d=c.push.bind(c);c.push=t,c=c.slice();for(var p=0;p<c.length;p++)t(c[p]);var m=d;i.push([14,"chunk-vendors","chunk-common"]),a()})({14:function(e,t,a){e.exports=a("d914")},"6a5a":function(e,t,a){var r={"./AdditionalInformation.vue":["0b04","setup-wizard-AdditionalInformation-vue"],"./Category.vue":["10a4","setup-wizard-Category-vue"],"./Features.vue":["49e5","setup-wizard-Features-vue"],"./Import.vue":["2ba9","setup-wizard-Import-vue"],"./LicenseKey.vue":["2f1c","setup-wizard-LicenseKey-vue"],"./Main.vue":["dcc7","setup-wizard-Main-vue"],"./SearchAppearance.vue":["7bf0","setup-wizard-SearchAppearance-vue"],"./SmartRecommendations.vue":["ebcf","setup-wizard-SmartRecommendations-vue"],"./Success.vue":["653f","setup-wizard-Success-vue"],"./Welcome.vue":["2a92","setup-wizard-Welcome-vue"]};function u(e){if(!a.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],u=t[0];return a.e(t[1]).then((function(){return a(u)}))}u.keys=function(){return Object.keys(r)},u.id="6a5a",e.exports=u},d914:function(e,t,a){"use strict";a.r(t);a("e260"),a("e6cf"),a("cca6"),a("a79d");var r=a("a026"),u=(a("1725"),a("75b9"),function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"aioseo-app"},[a("router-view")],1)}),n=[],i=a("2877"),o={},s=Object(i["a"])(o,u,n,!1,null,null,null),c=s.exports,d=a("cf27"),p=a("71ae"),m=(a("d3b7"),a("3ca3"),a("ddb0"),a("561c")),v="all-in-one-seo-pack",w=function(e){return function(){return a("6a5a")("./"+e+".vue")}},l=[{path:"*",redirect:"/welcome"},{path:"/welcome",name:"welcome",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Welcome",v)}},{path:"/import",name:"import",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Import",v)}},{path:"/category",name:"category",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Category",v)}},{path:"/additional-information",name:"additional-information",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Additional Site Information",v)}},{path:"/features",name:"features",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Choose Features",v)}},{path:"/search-appearance",name:"search-appearance",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Search Appearance",v)}},{path:"/smart-recommendations",name:"smart-recommendations",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Smart Recommendations",v)}},{path:"/license-key",name:"license-key",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("License Key",v)}},{path:"/success",name:"success",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Success",v)}}],f=a("31bd"),z=(a("2d26"),a("96cf"),Object(p["a"])(l));Object(f["sync"])(d["a"],z),r["default"].config.productionTip=!1,new r["default"]({router:z,store:d["a"],render:function(e){return e(c)}}).$mount("#aioseo-app")}});
1
+ (function(e){function t(t){for(var r,u,n=t[0],o=t[1],c=t[2],d=0,p=[];d<n.length;d++)u=n[d],Object.prototype.hasOwnProperty.call(i,u)&&i[u]&&p.push(i[u][0]),i[u]=0;for(r in o)Object.prototype.hasOwnProperty.call(o,r)&&(e[r]=o[r]);v&&v(t);while(p.length)p.shift()();return s.push.apply(s,c||[]),a()}function a(){for(var e,t=0;t<s.length;t++){for(var a=s[t],r=!0,u=1;u<a.length;u++){var n=a[u];0!==i[n]&&(r=!1)}r&&(s.splice(t--,1),e=c(c.s=a[0]))}return e}var r={},u={"setup-wizard":0},n=(u={"setup-wizard":0},function(){return"rtl"===document.dir}),i={"setup-wizard":0},s=[];function o(e){return c.p+"js/"+({"setup-wizard-AdditionalInformation-vue":"setup-wizard-AdditionalInformation-vue","setup-wizard-Category-vue":"setup-wizard-Category-vue","setup-wizard-Features-vue":"setup-wizard-Features-vue","setup-wizard-Import-vue":"setup-wizard-Import-vue","setup-wizard-LicenseKey-vue":"setup-wizard-LicenseKey-vue","setup-wizard-Main-vue":"setup-wizard-Main-vue","setup-wizard-SearchAppearance-vue":"setup-wizard-SearchAppearance-vue","setup-wizard-SmartRecommendations-vue":"setup-wizard-SmartRecommendations-vue","setup-wizard-Success-vue":"setup-wizard-Success-vue","setup-wizard-Welcome-vue":"setup-wizard-Welcome-vue"}[e]||e)+".js?ver="+{"setup-wizard-AdditionalInformation-vue":"217aca53","setup-wizard-Category-vue":"48d49d1b","setup-wizard-Features-vue":"34de1eee","setup-wizard-Import-vue":"a4ae8083","setup-wizard-LicenseKey-vue":"b7ab48c0","setup-wizard-Main-vue":"8d579bdc","setup-wizard-SearchAppearance-vue":"b6ac1489","setup-wizard-SmartRecommendations-vue":"7d2f8b92","setup-wizard-Success-vue":"88a88f0d","setup-wizard-Welcome-vue":"16a11930"}[e]}function c(t){if(r[t])return r[t].exports;var a=r[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,c),a.l=!0,a.exports}c.e=function(e){var t=[],a={"setup-wizard-AdditionalInformation-vue":1,"setup-wizard-Category-vue":1,"setup-wizard-Features-vue":1,"setup-wizard-Import-vue":1,"setup-wizard-LicenseKey-vue":1,"setup-wizard-Main-vue":1,"setup-wizard-SearchAppearance-vue":1,"setup-wizard-SmartRecommendations-vue":1,"setup-wizard-Success-vue":1,"setup-wizard-Welcome-vue":1};u[e]?t.push(u[e]):0!==u[e]&&a[e]&&t.push(u[e]=new Promise((function(t,a){for(var r="css/"+({"setup-wizard-AdditionalInformation-vue":"setup-wizard-AdditionalInformation-vue","setup-wizard-Category-vue":"setup-wizard-Category-vue","setup-wizard-Features-vue":"setup-wizard-Features-vue","setup-wizard-Import-vue":"setup-wizard-Import-vue","setup-wizard-LicenseKey-vue":"setup-wizard-LicenseKey-vue","setup-wizard-Main-vue":"setup-wizard-Main-vue","setup-wizard-SearchAppearance-vue":"setup-wizard-SearchAppearance-vue","setup-wizard-SmartRecommendations-vue":"setup-wizard-SmartRecommendations-vue","setup-wizard-Success-vue":"setup-wizard-Success-vue","setup-wizard-Welcome-vue":"setup-wizard-Welcome-vue"}[e]||e)+".css",n=c.p+r,i=document.getElementsByTagName("link"),s=0;s<i.length;s++){var o=i[s],d=o.getAttribute("data-href")||o.getAttribute("href");if("stylesheet"===o.rel&&(d===r||d===n))return t()}var p=document.getElementsByTagName("style");for(s=0;s<p.length;s++){o=p[s],d=o.getAttribute("data-href");if(d===r||d===n)return t()}var m=document.createElement("link");m.rel="stylesheet",m.type="text/css",m.onload=t,m.onerror=function(t){var r=t&&t.target&&t.target.src||n,i=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");i.code="CSS_CHUNK_LOAD_FAILED",i.request=r,delete u[e],m.parentNode.removeChild(m),a(i)},m.href=n;var v=document.getElementsByTagName("head")[0];v.appendChild(m)})).then((function(){u[e]=0})));a={"setup-wizard-AdditionalInformation-vue":1,"setup-wizard-Category-vue":1,"setup-wizard-Features-vue":1,"setup-wizard-Import-vue":1,"setup-wizard-LicenseKey-vue":1,"setup-wizard-Main-vue":1,"setup-wizard-SearchAppearance-vue":1,"setup-wizard-SmartRecommendations-vue":1,"setup-wizard-Success-vue":1,"setup-wizard-Welcome-vue":1};u[e]?t.push(u[e]):0!==u[e]&&a[e]&&t.push(u[e]=new Promise((function(t,a){for(var r=(n(),"css/"+({"setup-wizard-AdditionalInformation-vue":"setup-wizard-AdditionalInformation-vue","setup-wizard-Category-vue":"setup-wizard-Category-vue","setup-wizard-Features-vue":"setup-wizard-Features-vue","setup-wizard-Import-vue":"setup-wizard-Import-vue","setup-wizard-LicenseKey-vue":"setup-wizard-LicenseKey-vue","setup-wizard-Main-vue":"setup-wizard-Main-vue","setup-wizard-SearchAppearance-vue":"setup-wizard-SearchAppearance-vue","setup-wizard-SmartRecommendations-vue":"setup-wizard-SmartRecommendations-vue","setup-wizard-Success-vue":"setup-wizard-Success-vue","setup-wizard-Welcome-vue":"setup-wizard-Welcome-vue"}[e]||e)+".css?ver="+{"setup-wizard-AdditionalInformation-vue":"217aca53","setup-wizard-Category-vue":"48d49d1b","setup-wizard-Features-vue":"34de1eee","setup-wizard-Import-vue":"a4ae8083","setup-wizard-LicenseKey-vue":"b7ab48c0","setup-wizard-Main-vue":"8d579bdc","setup-wizard-SearchAppearance-vue":"b6ac1489","setup-wizard-SmartRecommendations-vue":"7d2f8b92","setup-wizard-Success-vue":"88a88f0d","setup-wizard-Welcome-vue":"16a11930"}[e]),u=c.p+r,i=document.getElementsByTagName("link"),s=0;s<i.length;s++){var o=i[s],d=o.getAttribute("data-href")||o.getAttribute("href");if("stylesheet"===o.rel&&(d===r||d===u))return t()}var p=document.getElementsByTagName("style");for(s=0;s<p.length;s++){o=p[s],d=o.getAttribute("data-href");if(d===r||d===u)return t()}var m=document.createElement("link");m.rel="stylesheet",m.type="text/css",m.onload=t,m.onerror=function(t){var r=t&&t.target&&t.target.src||u,n=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");n.request=r,a(n)},m.href=u;var v=document.getElementsByTagName("head")[0];v.appendChild(m)})).then((function(){u[e]=0})));var r=i[e];if(0!==r)if(r)t.push(r[2]);else{var s=new Promise((function(t,a){r=i[e]=[t,a]}));t.push(r[2]=s);var d,p=document.createElement("script");p.charset="utf-8",p.timeout=120,c.nc&&p.setAttribute("nonce",c.nc),p.src=o(e);var m=new Error;d=function(t){p.onerror=p.onload=null,clearTimeout(v);var a=i[e];if(0!==a){if(a){var r=t&&("load"===t.type?"missing":t.type),u=t&&t.target&&t.target.src;m.message="Loading chunk "+e+" failed.\n("+r+": "+u+")",m.name="ChunkLoadError",m.type=r,m.request=u,a[1](m)}i[e]=void 0}};var v=setTimeout((function(){d({type:"timeout",target:p})}),12e4);p.onerror=p.onload=d,document.head.appendChild(p)}return Promise.all(t)},c.m=e,c.c=r,c.d=function(e,t,a){c.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},c.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,t){if(1&t&&(e=c(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(c.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)c.d(a,r,function(t){return e[t]}.bind(null,r));return a},c.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return c.d(t,"a",t),t},c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},c.p="/",c.oe=function(e){throw console.error(e),e};var d=window["aioseopjsonp"]=window["aioseopjsonp"]||[],p=d.push.bind(d);d.push=t,d=d.slice();for(var m=0;m<d.length;m++)t(d[m]);var v=p;s.push([14,"chunk-vendors","chunk-common"]),a()})({14:function(e,t,a){e.exports=a("d914")},"6a5a":function(e,t,a){var r={"./AdditionalInformation.vue":["0b04","setup-wizard-AdditionalInformation-vue"],"./Category.vue":["10a4","setup-wizard-Category-vue"],"./Features.vue":["49e5","setup-wizard-Features-vue"],"./Import.vue":["2ba9","setup-wizard-Import-vue"],"./LicenseKey.vue":["2f1c","setup-wizard-LicenseKey-vue"],"./Main.vue":["dcc7","setup-wizard-Main-vue"],"./SearchAppearance.vue":["7bf0","setup-wizard-SearchAppearance-vue"],"./SmartRecommendations.vue":["ebcf","setup-wizard-SmartRecommendations-vue"],"./Success.vue":["653f","setup-wizard-Success-vue"],"./Welcome.vue":["2a92","setup-wizard-Welcome-vue"]};function u(e){if(!a.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],u=t[0];return a.e(t[1]).then((function(){return a(u)}))}u.keys=function(){return Object.keys(r)},u.id="6a5a",e.exports=u},d914:function(e,t,a){"use strict";a.r(t);a("e260"),a("e6cf"),a("cca6"),a("a79d");var r=a("a026"),u=(a("1725"),a("75b9"),function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"aioseo-app"},[a("router-view")],1)}),n=[],i=a("2877"),s={},o=Object(i["a"])(s,u,n,!1,null,null,null),c=o.exports,d=a("cf27"),p=a("71ae"),m=(a("d3b7"),a("3ca3"),a("ddb0"),a("561c")),v="all-in-one-seo-pack",w=function(e){return function(){return a("6a5a")("./"+e+".vue")}},l=[{path:"*",redirect:"/welcome"},{path:"/welcome",name:"welcome",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Welcome",v)}},{path:"/import",name:"import",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Import",v)}},{path:"/category",name:"category",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Category",v)}},{path:"/additional-information",name:"additional-information",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Additional Site Information",v)}},{path:"/features",name:"features",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Choose Features",v)}},{path:"/search-appearance",name:"search-appearance",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Search Appearance",v)}},{path:"/smart-recommendations",name:"smart-recommendations",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Smart Recommendations",v)}},{path:"/license-key",name:"license-key",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("License Key",v)}},{path:"/success",name:"success",component:w("Main"),meta:{access:"aioseo_setup_wizard",name:Object(m["__"])("Success",v)}}],z=a("31bd"),f=(a("2d26"),a("96cf"),Object(p["a"])(l));Object(z["sync"])(d["a"],f),r["default"].config.productionTip=!1,new r["default"]({router:f,store:d["a"],render:function(e){return e(c)}}).$mount("#aioseo-app")}});
dist/Lite/assets/js/sitemaps.js CHANGED
@@ -1 +1 @@
1
- (function(e){function t(t){for(var a,s,o=t[0],r=t[1],u=t[2],n=0,v=[];n<o.length;n++)s=o[n],Object.prototype.hasOwnProperty.call(p,s)&&p[s]&&v.push(p[s][0]),p[s]=0;for(a in r)Object.prototype.hasOwnProperty.call(r,a)&&(e[a]=r[a]);c&&c(t);while(v.length)v.shift()();return m.push.apply(m,u||[]),i()}function i(){for(var e,t=0;t<m.length;t++){for(var i=m[t],a=!0,s=1;s<i.length;s++){var o=i[s];0!==p[o]&&(a=!1)}a&&(m.splice(t--,1),e=r(r.s=i[0]))}return e}var a={},s={sitemaps:0},p=(s={sitemaps:0},{sitemaps:0}),m=[];function o(e){return r.p+"js/"+({"sitemaps-GeneralSitemap-vue":"sitemaps-GeneralSitemap-vue","sitemaps-HtmlSitemap-vue":"sitemaps-HtmlSitemap-vue","sitemaps-Main-vue":"sitemaps-Main-vue","sitemaps-NewsSitemap-vue":"sitemaps-NewsSitemap-vue","sitemaps-RssSitemap-vue":"sitemaps-RssSitemap-vue","sitemaps-VideoSitemap-vue":"sitemaps-VideoSitemap-vue","sitemaps-lite-NewsSitemap-vue":"sitemaps-lite-NewsSitemap-vue","sitemaps-lite-NewsSitemapActivate-vue":"sitemaps-lite-NewsSitemapActivate-vue","sitemaps-lite-VideoSitemap-vue":"sitemaps-lite-VideoSitemap-vue","sitemaps-lite-VideoSitemapActivate-vue":"sitemaps-lite-VideoSitemapActivate-vue","sitemaps-pro-NewsSitemap-vue":"sitemaps-pro-NewsSitemap-vue","sitemaps-pro-NewsSitemapActivate-vue":"sitemaps-pro-NewsSitemapActivate-vue","sitemaps-pro-VideoSitemap-vue":"sitemaps-pro-VideoSitemap-vue","sitemaps-pro-VideoSitemapActivate-vue":"sitemaps-pro-VideoSitemapActivate-vue"}[e]||e)+".js?ver="+{"sitemaps-GeneralSitemap-vue":"2a8bdb0b","sitemaps-HtmlSitemap-vue":"387eeee2","sitemaps-Main-vue":"a5a77802","sitemaps-NewsSitemap-vue":"bc49ba8a","sitemaps-RssSitemap-vue":"b42250bb","sitemaps-VideoSitemap-vue":"516cb357","sitemaps-lite-NewsSitemap-vue":"4bec83b5","sitemaps-lite-NewsSitemapActivate-vue":"0d88f60d","sitemaps-lite-VideoSitemap-vue":"755e5516","sitemaps-lite-VideoSitemapActivate-vue":"08613cac","sitemaps-pro-NewsSitemap-vue":"e846d5f2","sitemaps-pro-NewsSitemapActivate-vue":"594985f8","sitemaps-pro-VideoSitemap-vue":"a85f70d8","sitemaps-pro-VideoSitemapActivate-vue":"8471978e"}[e]}function r(t){if(a[t])return a[t].exports;var i=a[t]={i:t,l:!1,exports:{}};return e[t].call(i.exports,i,i.exports,r),i.l=!0,i.exports}r.e=function(e){var t=[],i={"sitemaps-GeneralSitemap-vue":1,"sitemaps-HtmlSitemap-vue":1,"sitemaps-Main-vue":1,"sitemaps-NewsSitemap-vue":1,"sitemaps-RssSitemap-vue":1,"sitemaps-VideoSitemap-vue":1,"sitemaps-lite-NewsSitemap-vue":1,"sitemaps-lite-VideoSitemap-vue":1,"sitemaps-pro-VideoSitemap-vue":1};s[e]?t.push(s[e]):0!==s[e]&&i[e]&&t.push(s[e]=new Promise((function(t,i){for(var a="css/"+({"sitemaps-GeneralSitemap-vue":"sitemaps-GeneralSitemap-vue","sitemaps-HtmlSitemap-vue":"sitemaps-HtmlSitemap-vue","sitemaps-Main-vue":"sitemaps-Main-vue","sitemaps-NewsSitemap-vue":"sitemaps-NewsSitemap-vue","sitemaps-RssSitemap-vue":"sitemaps-RssSitemap-vue","sitemaps-VideoSitemap-vue":"sitemaps-VideoSitemap-vue","sitemaps-lite-NewsSitemap-vue":"sitemaps-lite-NewsSitemap-vue","sitemaps-lite-NewsSitemapActivate-vue":"sitemaps-lite-NewsSitemapActivate-vue","sitemaps-lite-VideoSitemap-vue":"sitemaps-lite-VideoSitemap-vue","sitemaps-lite-VideoSitemapActivate-vue":"sitemaps-lite-VideoSitemapActivate-vue","sitemaps-pro-NewsSitemap-vue":"sitemaps-pro-NewsSitemap-vue","sitemaps-pro-NewsSitemapActivate-vue":"sitemaps-pro-NewsSitemapActivate-vue","sitemaps-pro-VideoSitemap-vue":"sitemaps-pro-VideoSitemap-vue","sitemaps-pro-VideoSitemapActivate-vue":"sitemaps-pro-VideoSitemapActivate-vue"}[e]||e)+".css?ver="+{"sitemaps-GeneralSitemap-vue":"2a8bdb0b","sitemaps-HtmlSitemap-vue":"387eeee2","sitemaps-Main-vue":"a5a77802","sitemaps-NewsSitemap-vue":"bc49ba8a","sitemaps-RssSitemap-vue":"b42250bb","sitemaps-VideoSitemap-vue":"516cb357","sitemaps-lite-NewsSitemap-vue":"4bec83b5","sitemaps-lite-NewsSitemapActivate-vue":"0d88f60d","sitemaps-lite-VideoSitemap-vue":"755e5516","sitemaps-lite-VideoSitemapActivate-vue":"08613cac","sitemaps-pro-NewsSitemap-vue":"e846d5f2","sitemaps-pro-NewsSitemapActivate-vue":"594985f8","sitemaps-pro-VideoSitemap-vue":"a85f70d8","sitemaps-pro-VideoSitemapActivate-vue":"8471978e"}[e],p=r.p+a,m=document.getElementsByTagName("link"),o=0;o<m.length;o++){var u=m[o],n=u.getAttribute("data-href")||u.getAttribute("href");if("stylesheet"===u.rel&&(n===a||n===p))return t()}var v=document.getElementsByTagName("style");for(o=0;o<v.length;o++){u=v[o],n=u.getAttribute("data-href");if(n===a||n===p)return t()}var c=document.createElement("link");c.rel="stylesheet",c.type="text/css",c.onload=t,c.onerror=function(t){var a=t&&t.target&&t.target.src||p,m=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");m.code="CSS_CHUNK_LOAD_FAILED",m.request=a,delete s[e],c.parentNode.removeChild(c),i(m)},c.href=p;var l=document.getElementsByTagName("head")[0];l.appendChild(c)})).then((function(){s[e]=0})));i={"sitemaps-GeneralSitemap-vue":1,"sitemaps-HtmlSitemap-vue":1,"sitemaps-Main-vue":1,"sitemaps-NewsSitemap-vue":1,"sitemaps-RssSitemap-vue":1,"sitemaps-VideoSitemap-vue":1,"sitemaps-lite-NewsSitemap-vue":1,"sitemaps-lite-VideoSitemap-vue":1,"sitemaps-pro-VideoSitemap-vue":1};s[e]?t.push(s[e]):0!==s[e]&&i[e]&&t.push(s[e]=new Promise((function(t,i){for(var a=({"sitemaps-GeneralSitemap-vue":"sitemaps-GeneralSitemap-vue","sitemaps-HtmlSitemap-vue":"sitemaps-HtmlSitemap-vue","sitemaps-Main-vue":"sitemaps-Main-vue","sitemaps-NewsSitemap-vue":"sitemaps-NewsSitemap-vue","sitemaps-RssSitemap-vue":"sitemaps-RssSitemap-vue","sitemaps-VideoSitemap-vue":"sitemaps-VideoSitemap-vue","sitemaps-lite-NewsSitemap-vue":"sitemaps-lite-NewsSitemap-vue","sitemaps-lite-NewsSitemapActivate-vue":"sitemaps-lite-NewsSitemapActivate-vue","sitemaps-lite-VideoSitemap-vue":"sitemaps-lite-VideoSitemap-vue","sitemaps-lite-VideoSitemapActivate-vue":"sitemaps-lite-VideoSitemapActivate-vue","sitemaps-pro-NewsSitemap-vue":"sitemaps-pro-NewsSitemap-vue","sitemaps-pro-NewsSitemapActivate-vue":"sitemaps-pro-NewsSitemapActivate-vue","sitemaps-pro-VideoSitemap-vue":"sitemaps-pro-VideoSitemap-vue","sitemaps-pro-VideoSitemapActivate-vue":"sitemaps-pro-VideoSitemapActivate-vue"}[e]||e)+".css",p=r.p+a,m=document.getElementsByTagName("link"),o=0;o<m.length;o++){var u=m[o],n=u.getAttribute("data-href")||u.getAttribute("href");if("stylesheet"===u.rel&&(n===a||n===p))return t()}var v=document.getElementsByTagName("style");for(o=0;o<v.length;o++){u=v[o],n=u.getAttribute("data-href");if(n===a||n===p)return t()}var c=document.createElement("link");c.rel="stylesheet",c.type="text/css";var l=function(a){if(c.onerror=c.onload=null,"load"===a.type)t();else{var m=a&&("load"===a.type?"missing":a.type),o=a&&a.target&&a.target.href||p,r=new Error("Loading CSS chunk "+e+" failed.\n("+o+")");r.code="CSS_CHUNK_LOAD_FAILED",r.type=m,r.request=o,delete s[e],c.parentNode.removeChild(c),i(r)}};c.onerror=c.onload=l,c.href=p,document.head.appendChild(c)})).then((function(){s[e]=0})));var a=p[e];if(0!==a)if(a)t.push(a[2]);else{var m=new Promise((function(t,i){a=p[e]=[t,i]}));t.push(a[2]=m);var u,n=document.createElement("script");n.charset="utf-8",n.timeout=120,r.nc&&n.setAttribute("nonce",r.nc),n.src=o(e);var v=new Error;u=function(t){n.onerror=n.onload=null,clearTimeout(c);var i=p[e];if(0!==i){if(i){var a=t&&("load"===t.type?"missing":t.type),s=t&&t.target&&t.target.src;v.message="Loading chunk "+e+" failed.\n("+a+": "+s+")",v.name="ChunkLoadError",v.type=a,v.request=s,i[1](v)}p[e]=void 0}};var c=setTimeout((function(){u({type:"timeout",target:n})}),12e4);n.onerror=n.onload=u,document.head.appendChild(n)}return Promise.all(t)},r.m=e,r.c=a,r.d=function(e,t,i){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},r.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(r.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)r.d(i,a,function(t){return e[t]}.bind(null,a));return i},r.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/",r.oe=function(e){throw console.error(e),e};var u=window["aioseopjsonp"]=window["aioseopjsonp"]||[],n=u.push.bind(u);u.push=t,u=u.slice();for(var v=0;v<u.length;v++)t(u[v]);var c=n;m.push([15,"chunk-vendors","chunk-common"]),i()})({15:function(e,t,i){e.exports=i("50eb")},"50eb":function(e,t,i){"use strict";i.r(t);i("e260"),i("e6cf"),i("cca6"),i("a79d");var a=i("a026"),s=(i("1725"),i("75b9"),function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"aioseo-app"},[i("router-view")],1)}),p=[],m=i("2877"),o={},r=Object(m["a"])(o,s,p,!1,null,null,null),u=r.exports,n=i("cf27"),v=i("71ae"),c=(i("d3b7"),i("3ca3"),i("ddb0"),i("561c")),l="all-in-one-seo-pack",S=function(e){return function(){return i("c21a")("./"+e+".vue")}},d=[{path:"*",redirect:"/general-sitemap"},{path:"/general-sitemap",name:"general-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("General Sitemap",l)}},{path:"/video-sitemap",name:"video-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("Video Sitemap",l),pro:!0}},{path:"/news-sitemap",name:"news-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("News Sitemap",l),pro:!0}},{path:"/html-sitemap",name:"html-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("HTML Sitemap",l)}},{path:"/rss-sitemap",name:"rss-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("RSS Sitemap",l)}}],f=i("31bd"),w=(i("2d26"),i("96cf"),Object(v["a"])(d));Object(f["sync"])(n["a"],w),a["default"].config.productionTip=!1,new a["default"]({router:w,store:n["a"],render:function(e){return e(u)}}).$mount("#aioseo-app")},c21a:function(e,t,i){var a={"./GeneralSitemap.vue":["1dff","sitemaps-GeneralSitemap-vue"],"./HtmlSitemap.vue":["2bc0","sitemaps-HtmlSitemap-vue"],"./Main.vue":["5843","sitemaps-Main-vue"],"./NewsSitemap.vue":["68ec","sitemaps-NewsSitemap-vue"],"./RssSitemap.vue":["70e1","sitemaps-RssSitemap-vue"],"./VideoSitemap.vue":["6780","sitemaps-VideoSitemap-vue"],"./lite/NewsSitemap.vue":["97bc","sitemaps-lite-NewsSitemap-vue"],"./lite/NewsSitemapActivate.vue":["44f2","sitemaps-lite-NewsSitemapActivate-vue"],"./lite/VideoSitemap.vue":["bac2","sitemaps-lite-VideoSitemap-vue"],"./lite/VideoSitemapActivate.vue":["e0a9","sitemaps-lite-VideoSitemapActivate-vue"],"./pro/NewsSitemap.vue":["7f5c","sitemaps-pro-NewsSitemap-vue"],"./pro/NewsSitemapActivate.vue":["ba36","sitemaps-pro-NewsSitemapActivate-vue"],"./pro/VideoSitemap.vue":["046c","sitemaps-pro-VideoSitemap-vue"],"./pro/VideoSitemapActivate.vue":["6170","sitemaps-pro-VideoSitemapActivate-vue"]};function s(e){if(!i.o(a,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=a[e],s=t[0];return i.e(t[1]).then((function(){return i(s)}))}s.keys=function(){return Object.keys(a)},s.id="c21a",e.exports=s}});
1
+ (function(e){function t(t){for(var a,s,p=t[0],o=t[1],u=t[2],n=0,v=[];n<p.length;n++)s=p[n],Object.prototype.hasOwnProperty.call(m,s)&&m[s]&&v.push(m[s][0]),m[s]=0;for(a in o)Object.prototype.hasOwnProperty.call(o,a)&&(e[a]=o[a]);l&&l(t);while(v.length)v.shift()();return r.push.apply(r,u||[]),i()}function i(){for(var e,t=0;t<r.length;t++){for(var i=r[t],a=!0,s=1;s<i.length;s++){var p=i[s];0!==m[p]&&(a=!1)}a&&(r.splice(t--,1),e=u(u.s=i[0]))}return e}var a={},s={sitemaps:0},p=(s={sitemaps:0},function(){return"rtl"===document.dir}),m={sitemaps:0},r=[];function o(e){return u.p+"js/"+({"sitemaps-GeneralSitemap-vue":"sitemaps-GeneralSitemap-vue","sitemaps-HtmlSitemap-vue":"sitemaps-HtmlSitemap-vue","sitemaps-Main-vue":"sitemaps-Main-vue","sitemaps-NewsSitemap-vue":"sitemaps-NewsSitemap-vue","sitemaps-RssSitemap-vue":"sitemaps-RssSitemap-vue","sitemaps-VideoSitemap-vue":"sitemaps-VideoSitemap-vue","sitemaps-lite-NewsSitemap-vue":"sitemaps-lite-NewsSitemap-vue","sitemaps-lite-NewsSitemapActivate-vue":"sitemaps-lite-NewsSitemapActivate-vue","sitemaps-lite-VideoSitemap-vue":"sitemaps-lite-VideoSitemap-vue","sitemaps-lite-VideoSitemapActivate-vue":"sitemaps-lite-VideoSitemapActivate-vue","sitemaps-pro-NewsSitemap-vue":"sitemaps-pro-NewsSitemap-vue","sitemaps-pro-NewsSitemapActivate-vue":"sitemaps-pro-NewsSitemapActivate-vue","sitemaps-pro-VideoSitemap-vue":"sitemaps-pro-VideoSitemap-vue","sitemaps-pro-VideoSitemapActivate-vue":"sitemaps-pro-VideoSitemapActivate-vue"}[e]||e)+".js?ver="+{"sitemaps-GeneralSitemap-vue":"facd8f46","sitemaps-HtmlSitemap-vue":"efb45373","sitemaps-Main-vue":"c1b3c48c","sitemaps-NewsSitemap-vue":"0ebdc292","sitemaps-RssSitemap-vue":"c7e6f4b7","sitemaps-VideoSitemap-vue":"3939442e","sitemaps-lite-NewsSitemap-vue":"a06fee80","sitemaps-lite-NewsSitemapActivate-vue":"932c321f","sitemaps-lite-VideoSitemap-vue":"132d31aa","sitemaps-lite-VideoSitemapActivate-vue":"de187970","sitemaps-pro-NewsSitemap-vue":"c635dd3d","sitemaps-pro-NewsSitemapActivate-vue":"474a0ed4","sitemaps-pro-VideoSitemap-vue":"d0c9e120","sitemaps-pro-VideoSitemapActivate-vue":"a0bc359d"}[e]}function u(t){if(a[t])return a[t].exports;var i=a[t]={i:t,l:!1,exports:{}};return e[t].call(i.exports,i,i.exports,u),i.l=!0,i.exports}u.e=function(e){var t=[],i={"sitemaps-GeneralSitemap-vue":1,"sitemaps-HtmlSitemap-vue":1,"sitemaps-Main-vue":1,"sitemaps-NewsSitemap-vue":1,"sitemaps-RssSitemap-vue":1,"sitemaps-VideoSitemap-vue":1,"sitemaps-lite-NewsSitemap-vue":1,"sitemaps-lite-VideoSitemap-vue":1,"sitemaps-pro-VideoSitemap-vue":1};s[e]?t.push(s[e]):0!==s[e]&&i[e]&&t.push(s[e]=new Promise((function(t,i){for(var a="css/"+({"sitemaps-GeneralSitemap-vue":"sitemaps-GeneralSitemap-vue","sitemaps-HtmlSitemap-vue":"sitemaps-HtmlSitemap-vue","sitemaps-Main-vue":"sitemaps-Main-vue","sitemaps-NewsSitemap-vue":"sitemaps-NewsSitemap-vue","sitemaps-RssSitemap-vue":"sitemaps-RssSitemap-vue","sitemaps-VideoSitemap-vue":"sitemaps-VideoSitemap-vue","sitemaps-lite-NewsSitemap-vue":"sitemaps-lite-NewsSitemap-vue","sitemaps-lite-NewsSitemapActivate-vue":"sitemaps-lite-NewsSitemapActivate-vue","sitemaps-lite-VideoSitemap-vue":"sitemaps-lite-VideoSitemap-vue","sitemaps-lite-VideoSitemapActivate-vue":"sitemaps-lite-VideoSitemapActivate-vue","sitemaps-pro-NewsSitemap-vue":"sitemaps-pro-NewsSitemap-vue","sitemaps-pro-NewsSitemapActivate-vue":"sitemaps-pro-NewsSitemapActivate-vue","sitemaps-pro-VideoSitemap-vue":"sitemaps-pro-VideoSitemap-vue","sitemaps-pro-VideoSitemapActivate-vue":"sitemaps-pro-VideoSitemapActivate-vue"}[e]||e)+".css",p=u.p+a,m=document.getElementsByTagName("link"),r=0;r<m.length;r++){var o=m[r],n=o.getAttribute("data-href")||o.getAttribute("href");if("stylesheet"===o.rel&&(n===a||n===p))return t()}var v=document.getElementsByTagName("style");for(r=0;r<v.length;r++){o=v[r],n=o.getAttribute("data-href");if(n===a||n===p)return t()}var c=document.createElement("link");c.rel="stylesheet",c.type="text/css",c.onload=t,c.onerror=function(t){var a=t&&t.target&&t.target.src||p,m=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");m.code="CSS_CHUNK_LOAD_FAILED",m.request=a,delete s[e],c.parentNode.removeChild(c),i(m)},c.href=p;var l=document.getElementsByTagName("head")[0];l.appendChild(c)})).then((function(){s[e]=0})));i={"sitemaps-GeneralSitemap-vue":1,"sitemaps-HtmlSitemap-vue":1,"sitemaps-Main-vue":1,"sitemaps-NewsSitemap-vue":1,"sitemaps-RssSitemap-vue":1,"sitemaps-VideoSitemap-vue":1,"sitemaps-lite-NewsSitemap-vue":1,"sitemaps-lite-VideoSitemap-vue":1,"sitemaps-pro-VideoSitemap-vue":1};s[e]?t.push(s[e]):0!==s[e]&&i[e]&&t.push(s[e]=new Promise((function(t,i){for(var a=(p(),"css/"+({"sitemaps-GeneralSitemap-vue":"sitemaps-GeneralSitemap-vue","sitemaps-HtmlSitemap-vue":"sitemaps-HtmlSitemap-vue","sitemaps-Main-vue":"sitemaps-Main-vue","sitemaps-NewsSitemap-vue":"sitemaps-NewsSitemap-vue","sitemaps-RssSitemap-vue":"sitemaps-RssSitemap-vue","sitemaps-VideoSitemap-vue":"sitemaps-VideoSitemap-vue","sitemaps-lite-NewsSitemap-vue":"sitemaps-lite-NewsSitemap-vue","sitemaps-lite-NewsSitemapActivate-vue":"sitemaps-lite-NewsSitemapActivate-vue","sitemaps-lite-VideoSitemap-vue":"sitemaps-lite-VideoSitemap-vue","sitemaps-lite-VideoSitemapActivate-vue":"sitemaps-lite-VideoSitemapActivate-vue","sitemaps-pro-NewsSitemap-vue":"sitemaps-pro-NewsSitemap-vue","sitemaps-pro-NewsSitemapActivate-vue":"sitemaps-pro-NewsSitemapActivate-vue","sitemaps-pro-VideoSitemap-vue":"sitemaps-pro-VideoSitemap-vue","sitemaps-pro-VideoSitemapActivate-vue":"sitemaps-pro-VideoSitemapActivate-vue"}[e]||e)+".css?ver="+{"sitemaps-GeneralSitemap-vue":"facd8f46","sitemaps-HtmlSitemap-vue":"efb45373","sitemaps-Main-vue":"c1b3c48c","sitemaps-NewsSitemap-vue":"0ebdc292","sitemaps-RssSitemap-vue":"c7e6f4b7","sitemaps-VideoSitemap-vue":"3939442e","sitemaps-lite-NewsSitemap-vue":"a06fee80","sitemaps-lite-NewsSitemapActivate-vue":"932c321f","sitemaps-lite-VideoSitemap-vue":"132d31aa","sitemaps-lite-VideoSitemapActivate-vue":"de187970","sitemaps-pro-NewsSitemap-vue":"c635dd3d","sitemaps-pro-NewsSitemapActivate-vue":"474a0ed4","sitemaps-pro-VideoSitemap-vue":"d0c9e120","sitemaps-pro-VideoSitemapActivate-vue":"a0bc359d"}[e]),s=u.p+a,m=document.getElementsByTagName("link"),r=0;r<m.length;r++){var o=m[r],n=o.getAttribute("data-href")||o.getAttribute("href");if("stylesheet"===o.rel&&(n===a||n===s))return t()}var v=document.getElementsByTagName("style");for(r=0;r<v.length;r++){o=v[r],n=o.getAttribute("data-href");if(n===a||n===s)return t()}var c=document.createElement("link");c.rel="stylesheet",c.type="text/css",c.onload=t,c.onerror=function(t){var a=t&&t.target&&t.target.src||s,p=new Error("Loading CSS chunk "+e+" failed.\n("+a+")");p.request=a,i(p)},c.href=s;var l=document.getElementsByTagName("head")[0];l.appendChild(c)})).then((function(){s[e]=0})));var a=m[e];if(0!==a)if(a)t.push(a[2]);else{var r=new Promise((function(t,i){a=m[e]=[t,i]}));t.push(a[2]=r);var n,v=document.createElement("script");v.charset="utf-8",v.timeout=120,u.nc&&v.setAttribute("nonce",u.nc),v.src=o(e);var c=new Error;n=function(t){v.onerror=v.onload=null,clearTimeout(l);var i=m[e];if(0!==i){if(i){var a=t&&("load"===t.type?"missing":t.type),s=t&&t.target&&t.target.src;c.message="Loading chunk "+e+" failed.\n("+a+": "+s+")",c.name="ChunkLoadError",c.type=a,c.request=s,i[1](c)}m[e]=void 0}};var l=setTimeout((function(){n({type:"timeout",target:v})}),12e4);v.onerror=v.onload=n,document.head.appendChild(v)}return Promise.all(t)},u.m=e,u.c=a,u.d=function(e,t,i){u.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},u.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},u.t=function(e,t){if(1&t&&(e=u(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(u.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)u.d(i,a,function(t){return e[t]}.bind(null,a));return i},u.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return u.d(t,"a",t),t},u.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},u.p="/",u.oe=function(e){throw console.error(e),e};var n=window["aioseopjsonp"]=window["aioseopjsonp"]||[],v=n.push.bind(n);n.push=t,n=n.slice();for(var c=0;c<n.length;c++)t(n[c]);var l=v;r.push([15,"chunk-vendors","chunk-common"]),i()})({15:function(e,t,i){e.exports=i("50eb")},"50eb":function(e,t,i){"use strict";i.r(t);i("e260"),i("e6cf"),i("cca6"),i("a79d");var a=i("a026"),s=(i("1725"),i("75b9"),function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"aioseo-app"},[i("router-view")],1)}),p=[],m=i("2877"),r={},o=Object(m["a"])(r,s,p,!1,null,null,null),u=o.exports,n=i("cf27"),v=i("71ae"),c=(i("d3b7"),i("3ca3"),i("ddb0"),i("561c")),l="all-in-one-seo-pack",S=function(e){return function(){return i("c21a")("./"+e+".vue")}},d=[{path:"*",redirect:"/general-sitemap"},{path:"/general-sitemap",name:"general-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("General Sitemap",l)}},{path:"/video-sitemap",name:"video-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("Video Sitemap",l),pro:!0}},{path:"/news-sitemap",name:"news-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("News Sitemap",l),pro:!0}},{path:"/html-sitemap",name:"html-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("HTML Sitemap",l)}},{path:"/rss-sitemap",name:"rss-sitemap",component:S("Main"),meta:{access:"aioseo_sitemap_settings",name:Object(c["__"])("RSS Sitemap",l)}}],f=i("31bd"),w=(i("2d26"),i("96cf"),Object(v["a"])(d));Object(f["sync"])(n["a"],w),a["default"].config.productionTip=!1,new a["default"]({router:w,store:n["a"],render:function(e){return e(u)}}).$mount("#aioseo-app")},c21a:function(e,t,i){var a={"./GeneralSitemap.vue":["1dff","sitemaps-GeneralSitemap-vue"],"./HtmlSitemap.vue":["2bc0","sitemaps-HtmlSitemap-vue"],"./Main.vue":["5843","sitemaps-Main-vue"],"./NewsSitemap.vue":["68ec","sitemaps-NewsSitemap-vue"],"./RssSitemap.vue":["70e1","sitemaps-RssSitemap-vue"],"./VideoSitemap.vue":["6780","sitemaps-VideoSitemap-vue"],"./lite/NewsSitemap.vue":["97bc","sitemaps-lite-NewsSitemap-vue"],"./lite/NewsSitemapActivate.vue":["44f2","sitemaps-lite-NewsSitemapActivate-vue"],"./lite/VideoSitemap.vue":["bac2","sitemaps-lite-VideoSitemap-vue"],"./lite/VideoSitemapActivate.vue":["e0a9","sitemaps-lite-VideoSitemapActivate-vue"],"./pro/NewsSitemap.vue":["7f5c","sitemaps-pro-NewsSitemap-vue"],"./pro/NewsSitemapActivate.vue":["ba36","sitemaps-pro-NewsSitemapActivate-vue"],"./pro/VideoSitemap.vue":["046c","sitemaps-pro-VideoSitemap-vue"],"./pro/VideoSitemapActivate.vue":["6170","sitemaps-pro-VideoSitemapActivate-vue"]};function s(e){if(!i.o(a,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=a[e],s=t[0];return i.e(t[1]).then((function(){return i(s)}))}s.keys=function(){return Object.keys(a)},s.id="c21a",e.exports=s}});
dist/Lite/assets/js/social-networks.js CHANGED
@@ -1 +1 @@
1
- (function(e){function t(t){for(var r,n,i=t[0],c=t[1],l=t[2],u=0,f=[];u<i.length;u++)n=i[u],Object.prototype.hasOwnProperty.call(a,n)&&a[n]&&f.push(a[n][0]),a[n]=0;for(r in c)Object.prototype.hasOwnProperty.call(c,r)&&(e[r]=c[r]);v&&v(t);while(f.length)f.shift()();return s.push.apply(s,l||[]),o()}function o(){for(var e,t=0;t<s.length;t++){for(var o=s[t],r=!0,n=1;n<o.length;n++){var i=o[n];0!==a[i]&&(r=!1)}r&&(s.splice(t--,1),e=c(c.s=o[0]))}return e}var r={},n={"social-networks":0},a=(n={"social-networks":0},{"social-networks":0}),s=[];function i(e){return c.p+"js/"+({"social-networks-Facebook-vue":"social-networks-Facebook-vue","social-networks-Main-vue":"social-networks-Main-vue","social-networks-Pinterest-vue":"social-networks-Pinterest-vue","social-networks-SocialProfiles-vue":"social-networks-SocialProfiles-vue","social-networks-Twitter-vue":"social-networks-Twitter-vue"}[e]||e)+".js?ver="+{"social-networks-Facebook-vue":"0baa5fd6","social-networks-Main-vue":"5dbadc8f","social-networks-Pinterest-vue":"2fc55b0f","social-networks-SocialProfiles-vue":"fb5a6476","social-networks-Twitter-vue":"785255d9"}[e]}function c(t){if(r[t])return r[t].exports;var o=r[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,c),o.l=!0,o.exports}c.e=function(e){var t=[],o={"social-networks-Facebook-vue":1,"social-networks-Main-vue":1,"social-networks-Twitter-vue":1};n[e]?t.push(n[e]):0!==n[e]&&o[e]&&t.push(n[e]=new Promise((function(t,o){for(var r="css/"+({"social-networks-Facebook-vue":"social-networks-Facebook-vue","social-networks-Main-vue":"social-networks-Main-vue","social-networks-Pinterest-vue":"social-networks-Pinterest-vue","social-networks-SocialProfiles-vue":"social-networks-SocialProfiles-vue","social-networks-Twitter-vue":"social-networks-Twitter-vue"}[e]||e)+".css?ver="+{"social-networks-Facebook-vue":"0baa5fd6","social-networks-Main-vue":"5dbadc8f","social-networks-Pinterest-vue":"2fc55b0f","social-networks-SocialProfiles-vue":"fb5a6476","social-networks-Twitter-vue":"785255d9"}[e],a=c.p+r,s=document.getElementsByTagName("link"),i=0;i<s.length;i++){var l=s[i],u=l.getAttribute("data-href")||l.getAttribute("href");if("stylesheet"===l.rel&&(u===r||u===a))return t()}var f=document.getElementsByTagName("style");for(i=0;i<f.length;i++){l=f[i],u=l.getAttribute("data-href");if(u===r||u===a)return t()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css",v.onload=t,v.onerror=function(t){var r=t&&t.target&&t.target.src||a,s=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");s.code="CSS_CHUNK_LOAD_FAILED",s.request=r,delete n[e],v.parentNode.removeChild(v),o(s)},v.href=a;var w=document.getElementsByTagName("head")[0];w.appendChild(v)})).then((function(){n[e]=0})));o={"social-networks-Facebook-vue":1,"social-networks-Main-vue":1,"social-networks-Twitter-vue":1};n[e]?t.push(n[e]):0!==n[e]&&o[e]&&t.push(n[e]=new Promise((function(t,o){for(var r=({"social-networks-Facebook-vue":"social-networks-Facebook-vue","social-networks-Main-vue":"social-networks-Main-vue","social-networks-Pinterest-vue":"social-networks-Pinterest-vue","social-networks-SocialProfiles-vue":"social-networks-SocialProfiles-vue","social-networks-Twitter-vue":"social-networks-Twitter-vue"}[e]||e)+".css",a=c.p+r,s=document.getElementsByTagName("link"),i=0;i<s.length;i++){var l=s[i],u=l.getAttribute("data-href")||l.getAttribute("href");if("stylesheet"===l.rel&&(u===r||u===a))return t()}var f=document.getElementsByTagName("style");for(i=0;i<f.length;i++){l=f[i],u=l.getAttribute("data-href");if(u===r||u===a)return t()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css";var w=function(r){if(v.onerror=v.onload=null,"load"===r.type)t();else{var s=r&&("load"===r.type?"missing":r.type),i=r&&r.target&&r.target.href||a,c=new Error("Loading CSS chunk "+e+" failed.\n("+i+")");c.code="CSS_CHUNK_LOAD_FAILED",c.type=s,c.request=i,delete n[e],v.parentNode.removeChild(v),o(c)}};v.onerror=v.onload=w,v.href=a,document.head.appendChild(v)})).then((function(){n[e]=0})));var r=a[e];if(0!==r)if(r)t.push(r[2]);else{var s=new Promise((function(t,o){r=a[e]=[t,o]}));t.push(r[2]=s);var l,u=document.createElement("script");u.charset="utf-8",u.timeout=120,c.nc&&u.setAttribute("nonce",c.nc),u.src=i(e);var f=new Error;l=function(t){u.onerror=u.onload=null,clearTimeout(v);var o=a[e];if(0!==o){if(o){var r=t&&("load"===t.type?"missing":t.type),n=t&&t.target&&t.target.src;f.message="Loading chunk "+e+" failed.\n("+r+": "+n+")",f.name="ChunkLoadError",f.type=r,f.request=n,o[1](f)}a[e]=void 0}};var v=setTimeout((function(){l({type:"timeout",target:u})}),12e4);u.onerror=u.onload=l,document.head.appendChild(u)}return Promise.all(t)},c.m=e,c.c=r,c.d=function(e,t,o){c.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},c.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,t){if(1&t&&(e=c(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(c.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)c.d(o,r,function(t){return e[t]}.bind(null,r));return o},c.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return c.d(t,"a",t),t},c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},c.p="/",c.oe=function(e){throw console.error(e),e};var l=window["aioseopjsonp"]=window["aioseopjsonp"]||[],u=l.push.bind(l);l.push=t,l=l.slice();for(var f=0;f<l.length;f++)t(l[f]);var v=u;s.push([16,"chunk-vendors","chunk-common"]),o()})({16:function(e,t,o){e.exports=o("76be")},"76be":function(e,t,o){"use strict";o.r(t);o("e260"),o("e6cf"),o("cca6"),o("a79d");var r=o("a026"),n=(o("1725"),o("75b9"),function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"aioseo-app"},[o("router-view")],1)}),a=[],s=o("2877"),i={},c=Object(s["a"])(i,n,a,!1,null,null,null),l=c.exports,u=o("cf27"),f=o("71ae"),v=(o("d3b7"),o("3ca3"),o("ddb0"),o("561c")),w="all-in-one-seo-pack",d=function(e){return function(){return o("83c6")("./"+e+".vue")}},k=[{path:"*",redirect:"/social-profiles"},{path:"/social-profiles",name:"social-profiles",component:d("Main"),meta:{access:"aioseo_social_networks_settings",name:Object(v["__"])("Social Profiles",w)}},{path:"/facebook",name:"facebook",component:d("Main"),meta:{access:"aioseo_social_networks_settings",name:Object(v["__"])("Facebook",w)}},{path:"/twitter",name:"twitter",component:d("Main"),meta:{access:"aioseo_social_networks_settings",name:Object(v["__"])("Twitter",w)}},{path:"/pinterest",name:"pinterest",component:d("Main"),meta:{access:"aioseo_social_networks_settings",name:Object(v["__"])("Pinterest",w)}}],p=o("31bd"),m=(o("2d26"),o("96cf"),Object(f["a"])(k));Object(p["sync"])(u["a"],m),r["default"].config.productionTip=!1,new r["default"]({router:m,store:u["a"],render:function(e){return e(l)}}).$mount("#aioseo-app")},"83c6":function(e,t,o){var r={"./Facebook.vue":["683d","social-networks-Facebook-vue"],"./Main.vue":["507a","social-networks-Facebook-vue","social-networks-Main-vue"],"./Pinterest.vue":["7e6e","social-networks-Pinterest-vue"],"./SocialProfiles.vue":["8f64","social-networks-SocialProfiles-vue"],"./Twitter.vue":["032a","social-networks-Twitter-vue"]};function n(e){if(!o.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],n=t[0];return Promise.all(t.slice(1).map(o.e)).then((function(){return o(n)}))}n.keys=function(){return Object.keys(r)},n.id="83c6",e.exports=n}});
1
+ (function(e){function t(t){for(var r,n,s=t[0],c=t[1],l=t[2],u=0,f=[];u<s.length;u++)n=s[u],Object.prototype.hasOwnProperty.call(a,n)&&a[n]&&f.push(a[n][0]),a[n]=0;for(r in c)Object.prototype.hasOwnProperty.call(c,r)&&(e[r]=c[r]);w&&w(t);while(f.length)f.shift()();return i.push.apply(i,l||[]),o()}function o(){for(var e,t=0;t<i.length;t++){for(var o=i[t],r=!0,n=1;n<o.length;n++){var s=o[n];0!==a[s]&&(r=!1)}r&&(i.splice(t--,1),e=l(l.s=o[0]))}return e}var r={},n={"social-networks":0},s=(n={"social-networks":0},function(){return"rtl"===document.dir}),a={"social-networks":0},i=[];function c(e){return l.p+"js/"+({"social-networks-Facebook-vue":"social-networks-Facebook-vue","social-networks-Main-vue":"social-networks-Main-vue","social-networks-Pinterest-vue":"social-networks-Pinterest-vue","social-networks-SocialProfiles-vue":"social-networks-SocialProfiles-vue","social-networks-Twitter-vue":"social-networks-Twitter-vue"}[e]||e)+".js?ver="+{"social-networks-Facebook-vue":"1d07579b","social-networks-Main-vue":"231f8d3c","social-networks-Pinterest-vue":"ca024853","social-networks-SocialProfiles-vue":"f9b6564e","social-networks-Twitter-vue":"c0165276"}[e]}function l(t){if(r[t])return r[t].exports;var o=r[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,l),o.l=!0,o.exports}l.e=function(e){var t=[],o={"social-networks-Facebook-vue":1,"social-networks-Main-vue":1,"social-networks-Twitter-vue":1};n[e]?t.push(n[e]):0!==n[e]&&o[e]&&t.push(n[e]=new Promise((function(t,o){for(var r="css/"+({"social-networks-Facebook-vue":"social-networks-Facebook-vue","social-networks-Main-vue":"social-networks-Main-vue","social-networks-Pinterest-vue":"social-networks-Pinterest-vue","social-networks-SocialProfiles-vue":"social-networks-SocialProfiles-vue","social-networks-Twitter-vue":"social-networks-Twitter-vue"}[e]||e)+".css",s=l.p+r,a=document.getElementsByTagName("link"),i=0;i<a.length;i++){var c=a[i],u=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(u===r||u===s))return t()}var f=document.getElementsByTagName("style");for(i=0;i<f.length;i++){c=f[i],u=c.getAttribute("data-href");if(u===r||u===s)return t()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css",v.onload=t,v.onerror=function(t){var r=t&&t.target&&t.target.src||s,a=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");a.code="CSS_CHUNK_LOAD_FAILED",a.request=r,delete n[e],v.parentNode.removeChild(v),o(a)},v.href=s;var w=document.getElementsByTagName("head")[0];w.appendChild(v)})).then((function(){n[e]=0})));o={"social-networks-Facebook-vue":1,"social-networks-Main-vue":1,"social-networks-Twitter-vue":1};n[e]?t.push(n[e]):0!==n[e]&&o[e]&&t.push(n[e]=new Promise((function(t,o){for(var r=(s(),"css/"+({"social-networks-Facebook-vue":"social-networks-Facebook-vue","social-networks-Main-vue":"social-networks-Main-vue","social-networks-Pinterest-vue":"social-networks-Pinterest-vue","social-networks-SocialProfiles-vue":"social-networks-SocialProfiles-vue","social-networks-Twitter-vue":"social-networks-Twitter-vue"}[e]||e)+".css?ver="+{"social-networks-Facebook-vue":"1d07579b","social-networks-Main-vue":"231f8d3c","social-networks-Pinterest-vue":"ca024853","social-networks-SocialProfiles-vue":"f9b6564e","social-networks-Twitter-vue":"c0165276"}[e]),n=l.p+r,a=document.getElementsByTagName("link"),i=0;i<a.length;i++){var c=a[i],u=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(u===r||u===n))return t()}var f=document.getElementsByTagName("style");for(i=0;i<f.length;i++){c=f[i],u=c.getAttribute("data-href");if(u===r||u===n)return t()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css",v.onload=t,v.onerror=function(t){var r=t&&t.target&&t.target.src||n,s=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");s.request=r,o(s)},v.href=n;var w=document.getElementsByTagName("head")[0];w.appendChild(v)})).then((function(){n[e]=0})));var r=a[e];if(0!==r)if(r)t.push(r[2]);else{var i=new Promise((function(t,o){r=a[e]=[t,o]}));t.push(r[2]=i);var u,f=document.createElement("script");f.charset="utf-8",f.timeout=120,l.nc&&f.setAttribute("nonce",l.nc),f.src=c(e);var v=new Error;u=function(t){f.onerror=f.onload=null,clearTimeout(w);var o=a[e];if(0!==o){if(o){var r=t&&("load"===t.type?"missing":t.type),n=t&&t.target&&t.target.src;v.message="Loading chunk "+e+" failed.\n("+r+": "+n+")",v.name="ChunkLoadError",v.type=r,v.request=n,o[1](v)}a[e]=void 0}};var w=setTimeout((function(){u({type:"timeout",target:f})}),12e4);f.onerror=f.onload=u,document.head.appendChild(f)}return Promise.all(t)},l.m=e,l.c=r,l.d=function(e,t,o){l.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,t){if(1&t&&(e=l(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(l.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)l.d(o,r,function(t){return e[t]}.bind(null,r));return o},l.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(t,"a",t),t},l.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},l.p="/",l.oe=function(e){throw console.error(e),e};var u=window["aioseopjsonp"]=window["aioseopjsonp"]||[],f=u.push.bind(u);u.push=t,u=u.slice();for(var v=0;v<u.length;v++)t(u[v]);var w=f;i.push([16,"chunk-vendors","chunk-common"]),o()})({16:function(e,t,o){e.exports=o("76be")},"76be":function(e,t,o){"use strict";o.r(t);o("e260"),o("e6cf"),o("cca6"),o("a79d");var r=o("a026"),n=(o("1725"),o("75b9"),function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"aioseo-app"},[o("router-view")],1)}),s=[],a=o("2877"),i={},c=Object(a["a"])(i,n,s,!1,null,null,null),l=c.exports,u=o("cf27"),f=o("71ae"),v=(o("d3b7"),o("3ca3"),o("ddb0"),o("561c")),w="all-in-one-seo-pack",k=function(e){return function(){return o("83c6")("./"+e+".vue")}},d=[{path:"*",redirect:"/social-profiles"},{path:"/social-profiles",name:"social-profiles",component:k("Main"),meta:{access:"aioseo_social_networks_settings",name:Object(v["__"])("Social Profiles",w)}},{path:"/facebook",name:"facebook",component:k("Main"),meta:{access:"aioseo_social_networks_settings",name:Object(v["__"])("Facebook",w)}},{path:"/twitter",name:"twitter",component:k("Main"),meta:{access:"aioseo_social_networks_settings",name:Object(v["__"])("Twitter",w)}},{path:"/pinterest",name:"pinterest",component:k("Main"),meta:{access:"aioseo_social_networks_settings",name:Object(v["__"])("Pinterest",w)}}],p=o("31bd"),m=(o("2d26"),o("96cf"),Object(f["a"])(d));Object(p["sync"])(u["a"],m),r["default"].config.productionTip=!1,new r["default"]({router:m,store:u["a"],render:function(e){return e(l)}}).$mount("#aioseo-app")},"83c6":function(e,t,o){var r={"./Facebook.vue":["683d","social-networks-Facebook-vue"],"./Main.vue":["507a","social-networks-Facebook-vue","social-networks-Main-vue"],"./Pinterest.vue":["7e6e","social-networks-Pinterest-vue"],"./SocialProfiles.vue":["8f64","social-networks-SocialProfiles-vue"],"./Twitter.vue":["032a","social-networks-Twitter-vue"]};function n(e){if(!o.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],n=t[0];return Promise.all(t.slice(1).map(o.e)).then((function(){return o(n)}))}n.keys=function(){return Object.keys(r)},n.id="83c6",e.exports=n}});
dist/Lite/assets/js/tools.js CHANGED
@@ -1 +1 @@
1
- (function(t){function o(o){for(var s,a,u=o[0],n=o[1],i=o[2],c=0,p=[];c<u.length;c++)a=u[c],Object.prototype.hasOwnProperty.call(r,a)&&r[a]&&p.push(r[a][0]),r[a]=0;for(s in n)Object.prototype.hasOwnProperty.call(n,s)&&(t[s]=n[s]);v&&v(o);while(p.length)p.shift()();return l.push.apply(l,i||[]),e()}function e(){for(var t,o=0;o<l.length;o++){for(var e=l[o],s=!0,a=1;a<e.length;a++){var u=e[a];0!==r[u]&&(s=!1)}s&&(l.splice(o--,1),t=n(n.s=e[0]))}return t}var s={},a={tools:0},r=(a={tools:0},{tools:0}),l=[];function u(t){return n.p+"js/"+({"tools-BadBotBlocker-vue":"tools-BadBotBlocker-vue","tools-DatabaseTools-vue":"tools-DatabaseTools-vue","tools-Debug-vue":"tools-Debug-vue","tools-HtaccessEditor-vue":"tools-HtaccessEditor-vue","tools-ImportExport-vue":"tools-ImportExport-vue","tools-Main-vue":"tools-Main-vue","tools-RobotsEditor-vue":"tools-RobotsEditor-vue","tools-SystemStatus-vue":"tools-SystemStatus-vue","tools-partials-BackupSettings-vue":"tools-partials-BackupSettings-vue","tools-partials-ExportSettings-vue":"tools-partials-ExportSettings-vue","tools-partials-ImportAioseo-vue":"tools-partials-ImportAioseo-vue","tools-partials-ImportOthers-vue":"tools-partials-ImportOthers-vue"}[t]||t)+".js?ver="+{"tools-BadBotBlocker-vue":"f47559a5","tools-DatabaseTools-vue":"6edec28d","tools-Debug-vue":"e339025d","tools-HtaccessEditor-vue":"8d6f3c1e","tools-ImportExport-vue":"c6fb7f02","tools-Main-vue":"15c43b01","tools-RobotsEditor-vue":"cf039ea2","tools-SystemStatus-vue":"f0c8ce7e","tools-partials-BackupSettings-vue":"a09b74a7","tools-partials-ExportSettings-vue":"b3b271b8","tools-partials-ImportAioseo-vue":"e4848919","tools-partials-ImportOthers-vue":"86b72429"}[t]}function n(o){if(s[o])return s[o].exports;var e=s[o]={i:o,l:!1,exports:{}};return t[o].call(e.exports,e,e.exports,n),e.l=!0,e.exports}n.e=function(t){var o=[],e={"tools-BadBotBlocker-vue":1,"tools-DatabaseTools-vue":1,"tools-Debug-vue":1,"tools-HtaccessEditor-vue":1,"tools-ImportExport-vue":1,"tools-Main-vue":1,"tools-RobotsEditor-vue":1,"tools-SystemStatus-vue":1,"tools-partials-BackupSettings-vue":1,"tools-partials-ExportSettings-vue":1,"tools-partials-ImportAioseo-vue":1,"tools-partials-ImportOthers-vue":1};a[t]?o.push(a[t]):0!==a[t]&&e[t]&&o.push(a[t]=new Promise((function(o,e){for(var s="css/"+({"tools-BadBotBlocker-vue":"tools-BadBotBlocker-vue","tools-DatabaseTools-vue":"tools-DatabaseTools-vue","tools-Debug-vue":"tools-Debug-vue","tools-HtaccessEditor-vue":"tools-HtaccessEditor-vue","tools-ImportExport-vue":"tools-ImportExport-vue","tools-Main-vue":"tools-Main-vue","tools-RobotsEditor-vue":"tools-RobotsEditor-vue","tools-SystemStatus-vue":"tools-SystemStatus-vue","tools-partials-BackupSettings-vue":"tools-partials-BackupSettings-vue","tools-partials-ExportSettings-vue":"tools-partials-ExportSettings-vue","tools-partials-ImportAioseo-vue":"tools-partials-ImportAioseo-vue","tools-partials-ImportOthers-vue":"tools-partials-ImportOthers-vue"}[t]||t)+".css?ver="+{"tools-BadBotBlocker-vue":"f47559a5","tools-DatabaseTools-vue":"6edec28d","tools-Debug-vue":"e339025d","tools-HtaccessEditor-vue":"8d6f3c1e","tools-ImportExport-vue":"c6fb7f02","tools-Main-vue":"15c43b01","tools-RobotsEditor-vue":"cf039ea2","tools-SystemStatus-vue":"f0c8ce7e","tools-partials-BackupSettings-vue":"a09b74a7","tools-partials-ExportSettings-vue":"b3b271b8","tools-partials-ImportAioseo-vue":"e4848919","tools-partials-ImportOthers-vue":"86b72429"}[t],r=n.p+s,l=document.getElementsByTagName("link"),u=0;u<l.length;u++){var i=l[u],c=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(c===s||c===r))return o()}var p=document.getElementsByTagName("style");for(u=0;u<p.length;u++){i=p[u],c=i.getAttribute("data-href");if(c===s||c===r)return o()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css",v.onload=o,v.onerror=function(o){var s=o&&o.target&&o.target.src||r,l=new Error("Loading CSS chunk "+t+" failed.\n("+s+")");l.code="CSS_CHUNK_LOAD_FAILED",l.request=s,delete a[t],v.parentNode.removeChild(v),e(l)},v.href=r;var d=document.getElementsByTagName("head")[0];d.appendChild(v)})).then((function(){a[t]=0})));e={"tools-BadBotBlocker-vue":1,"tools-DatabaseTools-vue":1,"tools-Debug-vue":1,"tools-HtaccessEditor-vue":1,"tools-ImportExport-vue":1,"tools-Main-vue":1,"tools-RobotsEditor-vue":1,"tools-SystemStatus-vue":1,"tools-partials-BackupSettings-vue":1,"tools-partials-ExportSettings-vue":1,"tools-partials-ImportAioseo-vue":1,"tools-partials-ImportOthers-vue":1};a[t]?o.push(a[t]):0!==a[t]&&e[t]&&o.push(a[t]=new Promise((function(o,e){for(var s=({"tools-BadBotBlocker-vue":"tools-BadBotBlocker-vue","tools-DatabaseTools-vue":"tools-DatabaseTools-vue","tools-Debug-vue":"tools-Debug-vue","tools-HtaccessEditor-vue":"tools-HtaccessEditor-vue","tools-ImportExport-vue":"tools-ImportExport-vue","tools-Main-vue":"tools-Main-vue","tools-RobotsEditor-vue":"tools-RobotsEditor-vue","tools-SystemStatus-vue":"tools-SystemStatus-vue","tools-partials-BackupSettings-vue":"tools-partials-BackupSettings-vue","tools-partials-ExportSettings-vue":"tools-partials-ExportSettings-vue","tools-partials-ImportAioseo-vue":"tools-partials-ImportAioseo-vue","tools-partials-ImportOthers-vue":"tools-partials-ImportOthers-vue"}[t]||t)+".css",r=n.p+s,l=document.getElementsByTagName("link"),u=0;u<l.length;u++){var i=l[u],c=i.getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(c===s||c===r))return o()}var p=document.getElementsByTagName("style");for(u=0;u<p.length;u++){i=p[u],c=i.getAttribute("data-href");if(c===s||c===r)return o()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css";var d=function(s){if(v.onerror=v.onload=null,"load"===s.type)o();else{var l=s&&("load"===s.type?"missing":s.type),u=s&&s.target&&s.target.href||r,n=new Error("Loading CSS chunk "+t+" failed.\n("+u+")");n.code="CSS_CHUNK_LOAD_FAILED",n.type=l,n.request=u,delete a[t],v.parentNode.removeChild(v),e(n)}};v.onerror=v.onload=d,v.href=r,document.head.appendChild(v)})).then((function(){a[t]=0})));var s=r[t];if(0!==s)if(s)o.push(s[2]);else{var l=new Promise((function(o,e){s=r[t]=[o,e]}));o.push(s[2]=l);var i,c=document.createElement("script");c.charset="utf-8",c.timeout=120,n.nc&&c.setAttribute("nonce",n.nc),c.src=u(t);var p=new Error;i=function(o){c.onerror=c.onload=null,clearTimeout(v);var e=r[t];if(0!==e){if(e){var s=o&&("load"===o.type?"missing":o.type),a=o&&o.target&&o.target.src;p.message="Loading chunk "+t+" failed.\n("+s+": "+a+")",p.name="ChunkLoadError",p.type=s,p.request=a,e[1](p)}r[t]=void 0}};var v=setTimeout((function(){i({type:"timeout",target:c})}),12e4);c.onerror=c.onload=i,document.head.appendChild(c)}return Promise.all(o)},n.m=t,n.c=s,n.d=function(t,o,e){n.o(t,o)||Object.defineProperty(t,o,{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,o){if(1&o&&(t=n(t)),8&o)return t;if(4&o&&"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&o&&"string"!=typeof t)for(var s in t)n.d(e,s,function(o){return t[o]}.bind(null,s));return e},n.n=function(t){var o=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(o,"a",o),o},n.o=function(t,o){return Object.prototype.hasOwnProperty.call(t,o)},n.p="/",n.oe=function(t){throw console.error(t),t};var i=window["aioseopjsonp"]=window["aioseopjsonp"]||[],c=i.push.bind(i);i.push=o,i=i.slice();for(var p=0;p<i.length;p++)o(i[p]);var v=c;l.push([17,"chunk-vendors","chunk-common"]),e()})({17:function(t,o,e){t.exports=e("7c1b")},"7c1b":function(t,o,e){"use strict";e.r(o);e("e260"),e("e6cf"),e("cca6"),e("a79d"),e("4de4"),e("b0c0"),e("caad"),e("2532");var s=e("a026"),a=(e("1725"),e("75b9"),function(){var t=this,o=t.$createElement,e=t._self._c||o;return e("div",{staticClass:"aioseo-app"},[e("router-view")],1)}),r=[],l=e("2877"),u={},n=Object(l["a"])(u,a,r,!1,null,null,null),i=n.exports,c=e("cf27"),p=e("71ae"),v=(e("d3b7"),e("3ca3"),e("ddb0"),e("561c")),d="all-in-one-seo-pack",m=function(t){return function(){return e("b12a")("./"+t+".vue")}},b=[{path:"*",redirect:"/robots-editor"},{path:"/robots-editor",name:"robots-editor",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("Robots.txt Editor",d)}},{path:"/htaccess-editor",name:"htaccess-editor",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])(".htaccess Editor",d)}},{path:"/bad-bot-blocker",name:"bad-bot-blocker",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("Bad Bot Blocker",d)}},{path:"/import-export",name:"import-export",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("Import/Export",d)}},{path:"/database-tools",name:"database-tools",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("Database Tools",d)}},{path:"/system-status",name:"system-status",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("System Status",d)}},{path:"/debug",name:"debug",component:m("Main"),meta:{access:"aioseo_tools_settings",name:"Debug"}}],f=e("31bd"),g=(e("2d26"),e("96cf"),Object(p["a"])(b.filter((function(t){return"htaccess-editor"!==t.name||window.aioseo.data.server.apache})).filter((function(t){return"bad-bot-blocker"!==t.name||window.aioseo.internalOptions.internal.deprecatedOptions.includes("badBotBlocker")})).filter((function(t){return"debug"!==t.name||window.aioseo.data.isDev})).filter((function(t){return!t.name||"robots-editor"===t.name||!window.aioseo.data.network}))));Object(f["sync"])(c["a"],g),s["default"].config.productionTip=!1,new s["default"]({router:g,store:c["a"],render:function(t){return t(i)}}).$mount("#aioseo-app")},b12a:function(t,o,e){var s={"./BadBotBlocker.vue":["af30","tools-BadBotBlocker-vue"],"./DatabaseTools.vue":["e6b1","tools-DatabaseTools-vue"],"./Debug.vue":["1c6d","tools-Debug-vue"],"./HtaccessEditor.vue":["3b6e","tools-HtaccessEditor-vue"],"./ImportExport.vue":["0687","tools-ImportExport-vue"],"./Main.vue":["5a9b","tools-ImportExport-vue","tools-Main-vue"],"./RobotsEditor.vue":["e4d8","tools-RobotsEditor-vue"],"./SystemStatus.vue":["d046","tools-SystemStatus-vue"],"./partials/BackupSettings.vue":["1407","tools-partials-BackupSettings-vue"],"./partials/ExportSettings.vue":["824c","tools-partials-ExportSettings-vue"],"./partials/ImportAioseo.vue":["a551","tools-partials-ImportAioseo-vue"],"./partials/ImportOthers.vue":["9b1d","tools-partials-ImportOthers-vue"]};function a(t){if(!e.o(s,t))return Promise.resolve().then((function(){var o=new Error("Cannot find module '"+t+"'");throw o.code="MODULE_NOT_FOUND",o}));var o=s[t],a=o[0];return Promise.all(o.slice(1).map(e.e)).then((function(){return e(a)}))}a.keys=function(){return Object.keys(s)},a.id="b12a",t.exports=a}});
1
+ (function(t){function o(o){for(var s,a,r=o[0],n=o[1],i=o[2],c=0,p=[];c<r.length;c++)a=r[c],Object.prototype.hasOwnProperty.call(l,a)&&l[a]&&p.push(l[a][0]),l[a]=0;for(s in n)Object.prototype.hasOwnProperty.call(n,s)&&(t[s]=n[s]);d&&d(o);while(p.length)p.shift()();return u.push.apply(u,i||[]),e()}function e(){for(var t,o=0;o<u.length;o++){for(var e=u[o],s=!0,a=1;a<e.length;a++){var r=e[a];0!==l[r]&&(s=!1)}s&&(u.splice(o--,1),t=i(i.s=e[0]))}return t}var s={},a={tools:0},r=(a={tools:0},function(){return"rtl"===document.dir}),l={tools:0},u=[];function n(t){return i.p+"js/"+({"tools-BadBotBlocker-vue":"tools-BadBotBlocker-vue","tools-DatabaseTools-vue":"tools-DatabaseTools-vue","tools-Debug-vue":"tools-Debug-vue","tools-HtaccessEditor-vue":"tools-HtaccessEditor-vue","tools-ImportExport-vue":"tools-ImportExport-vue","tools-Main-vue":"tools-Main-vue","tools-RobotsEditor-vue":"tools-RobotsEditor-vue","tools-SystemStatus-vue":"tools-SystemStatus-vue","tools-partials-BackupSettings-vue":"tools-partials-BackupSettings-vue","tools-partials-ExportSettings-vue":"tools-partials-ExportSettings-vue","tools-partials-ImportAioseo-vue":"tools-partials-ImportAioseo-vue","tools-partials-ImportOthers-vue":"tools-partials-ImportOthers-vue"}[t]||t)+".js?ver="+{"tools-BadBotBlocker-vue":"45ad32a0","tools-DatabaseTools-vue":"dd1f2809","tools-Debug-vue":"39eb89f4","tools-HtaccessEditor-vue":"12c6fc94","tools-ImportExport-vue":"6210a15f","tools-Main-vue":"e8ef4407","tools-RobotsEditor-vue":"d38d0fbe","tools-SystemStatus-vue":"ac0d901b","tools-partials-BackupSettings-vue":"ff24585d","tools-partials-ExportSettings-vue":"fb40e3e5","tools-partials-ImportAioseo-vue":"2ac8ba89","tools-partials-ImportOthers-vue":"9c39dbcd"}[t]}function i(o){if(s[o])return s[o].exports;var e=s[o]={i:o,l:!1,exports:{}};return t[o].call(e.exports,e,e.exports,i),e.l=!0,e.exports}i.e=function(t){var o=[],e={"tools-BadBotBlocker-vue":1,"tools-DatabaseTools-vue":1,"tools-Debug-vue":1,"tools-HtaccessEditor-vue":1,"tools-ImportExport-vue":1,"tools-Main-vue":1,"tools-RobotsEditor-vue":1,"tools-SystemStatus-vue":1,"tools-partials-BackupSettings-vue":1,"tools-partials-ExportSettings-vue":1,"tools-partials-ImportAioseo-vue":1,"tools-partials-ImportOthers-vue":1};a[t]?o.push(a[t]):0!==a[t]&&e[t]&&o.push(a[t]=new Promise((function(o,e){for(var s="css/"+({"tools-BadBotBlocker-vue":"tools-BadBotBlocker-vue","tools-DatabaseTools-vue":"tools-DatabaseTools-vue","tools-Debug-vue":"tools-Debug-vue","tools-HtaccessEditor-vue":"tools-HtaccessEditor-vue","tools-ImportExport-vue":"tools-ImportExport-vue","tools-Main-vue":"tools-Main-vue","tools-RobotsEditor-vue":"tools-RobotsEditor-vue","tools-SystemStatus-vue":"tools-SystemStatus-vue","tools-partials-BackupSettings-vue":"tools-partials-BackupSettings-vue","tools-partials-ExportSettings-vue":"tools-partials-ExportSettings-vue","tools-partials-ImportAioseo-vue":"tools-partials-ImportAioseo-vue","tools-partials-ImportOthers-vue":"tools-partials-ImportOthers-vue"}[t]||t)+".css",r=i.p+s,l=document.getElementsByTagName("link"),u=0;u<l.length;u++){var n=l[u],c=n.getAttribute("data-href")||n.getAttribute("href");if("stylesheet"===n.rel&&(c===s||c===r))return o()}var p=document.getElementsByTagName("style");for(u=0;u<p.length;u++){n=p[u],c=n.getAttribute("data-href");if(c===s||c===r)return o()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css",v.onload=o,v.onerror=function(o){var s=o&&o.target&&o.target.src||r,l=new Error("Loading CSS chunk "+t+" failed.\n("+s+")");l.code="CSS_CHUNK_LOAD_FAILED",l.request=s,delete a[t],v.parentNode.removeChild(v),e(l)},v.href=r;var d=document.getElementsByTagName("head")[0];d.appendChild(v)})).then((function(){a[t]=0})));e={"tools-BadBotBlocker-vue":1,"tools-DatabaseTools-vue":1,"tools-Debug-vue":1,"tools-HtaccessEditor-vue":1,"tools-ImportExport-vue":1,"tools-Main-vue":1,"tools-RobotsEditor-vue":1,"tools-SystemStatus-vue":1,"tools-partials-BackupSettings-vue":1,"tools-partials-ExportSettings-vue":1,"tools-partials-ImportAioseo-vue":1,"tools-partials-ImportOthers-vue":1};a[t]?o.push(a[t]):0!==a[t]&&e[t]&&o.push(a[t]=new Promise((function(o,e){for(var s=(r(),"css/"+({"tools-BadBotBlocker-vue":"tools-BadBotBlocker-vue","tools-DatabaseTools-vue":"tools-DatabaseTools-vue","tools-Debug-vue":"tools-Debug-vue","tools-HtaccessEditor-vue":"tools-HtaccessEditor-vue","tools-ImportExport-vue":"tools-ImportExport-vue","tools-Main-vue":"tools-Main-vue","tools-RobotsEditor-vue":"tools-RobotsEditor-vue","tools-SystemStatus-vue":"tools-SystemStatus-vue","tools-partials-BackupSettings-vue":"tools-partials-BackupSettings-vue","tools-partials-ExportSettings-vue":"tools-partials-ExportSettings-vue","tools-partials-ImportAioseo-vue":"tools-partials-ImportAioseo-vue","tools-partials-ImportOthers-vue":"tools-partials-ImportOthers-vue"}[t]||t)+".css?ver="+{"tools-BadBotBlocker-vue":"45ad32a0","tools-DatabaseTools-vue":"dd1f2809","tools-Debug-vue":"39eb89f4","tools-HtaccessEditor-vue":"12c6fc94","tools-ImportExport-vue":"6210a15f","tools-Main-vue":"e8ef4407","tools-RobotsEditor-vue":"d38d0fbe","tools-SystemStatus-vue":"ac0d901b","tools-partials-BackupSettings-vue":"ff24585d","tools-partials-ExportSettings-vue":"fb40e3e5","tools-partials-ImportAioseo-vue":"2ac8ba89","tools-partials-ImportOthers-vue":"9c39dbcd"}[t]),a=i.p+s,l=document.getElementsByTagName("link"),u=0;u<l.length;u++){var n=l[u],c=n.getAttribute("data-href")||n.getAttribute("href");if("stylesheet"===n.rel&&(c===s||c===a))return o()}var p=document.getElementsByTagName("style");for(u=0;u<p.length;u++){n=p[u],c=n.getAttribute("data-href");if(c===s||c===a)return o()}var v=document.createElement("link");v.rel="stylesheet",v.type="text/css",v.onload=o,v.onerror=function(o){var s=o&&o.target&&o.target.src||a,r=new Error("Loading CSS chunk "+t+" failed.\n("+s+")");r.request=s,e(r)},v.href=a;var d=document.getElementsByTagName("head")[0];d.appendChild(v)})).then((function(){a[t]=0})));var s=l[t];if(0!==s)if(s)o.push(s[2]);else{var u=new Promise((function(o,e){s=l[t]=[o,e]}));o.push(s[2]=u);var c,p=document.createElement("script");p.charset="utf-8",p.timeout=120,i.nc&&p.setAttribute("nonce",i.nc),p.src=n(t);var v=new Error;c=function(o){p.onerror=p.onload=null,clearTimeout(d);var e=l[t];if(0!==e){if(e){var s=o&&("load"===o.type?"missing":o.type),a=o&&o.target&&o.target.src;v.message="Loading chunk "+t+" failed.\n("+s+": "+a+")",v.name="ChunkLoadError",v.type=s,v.request=a,e[1](v)}l[t]=void 0}};var d=setTimeout((function(){c({type:"timeout",target:p})}),12e4);p.onerror=p.onload=c,document.head.appendChild(p)}return Promise.all(o)},i.m=t,i.c=s,i.d=function(t,o,e){i.o(t,o)||Object.defineProperty(t,o,{enumerable:!0,get:e})},i.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,o){if(1&o&&(t=i(t)),8&o)return t;if(4&o&&"object"===typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(i.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&o&&"string"!=typeof t)for(var s in t)i.d(e,s,function(o){return t[o]}.bind(null,s));return e},i.n=function(t){var o=t&&t.__esModule?function(){return t["default"]}:function(){return t};return i.d(o,"a",o),o},i.o=function(t,o){return Object.prototype.hasOwnProperty.call(t,o)},i.p="/",i.oe=function(t){throw console.error(t),t};var c=window["aioseopjsonp"]=window["aioseopjsonp"]||[],p=c.push.bind(c);c.push=o,c=c.slice();for(var v=0;v<c.length;v++)o(c[v]);var d=p;u.push([17,"chunk-vendors","chunk-common"]),e()})({17:function(t,o,e){t.exports=e("7c1b")},"7c1b":function(t,o,e){"use strict";e.r(o);e("e260"),e("e6cf"),e("cca6"),e("a79d"),e("4de4"),e("b0c0"),e("caad"),e("2532");var s=e("a026"),a=(e("1725"),e("75b9"),function(){var t=this,o=t.$createElement,e=t._self._c||o;return e("div",{staticClass:"aioseo-app"},[e("router-view")],1)}),r=[],l=e("2877"),u={},n=Object(l["a"])(u,a,r,!1,null,null,null),i=n.exports,c=e("cf27"),p=e("71ae"),v=(e("d3b7"),e("3ca3"),e("ddb0"),e("561c")),d="all-in-one-seo-pack",m=function(t){return function(){return e("b12a")("./"+t+".vue")}},b=[{path:"*",redirect:"/robots-editor"},{path:"/robots-editor",name:"robots-editor",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("Robots.txt Editor",d)}},{path:"/htaccess-editor",name:"htaccess-editor",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])(".htaccess Editor",d)}},{path:"/bad-bot-blocker",name:"bad-bot-blocker",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("Bad Bot Blocker",d)}},{path:"/import-export",name:"import-export",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("Import/Export",d)}},{path:"/database-tools",name:"database-tools",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("Database Tools",d)}},{path:"/system-status",name:"system-status",component:m("Main"),meta:{access:"aioseo_tools_settings",name:Object(v["__"])("System Status",d)}},{path:"/debug",name:"debug",component:m("Main"),meta:{access:"aioseo_tools_settings",name:"Debug"}}],f=e("31bd"),g=(e("2d26"),e("96cf"),Object(p["a"])(b.filter((function(t){return"htaccess-editor"!==t.name||window.aioseo.data.server.apache})).filter((function(t){return"bad-bot-blocker"!==t.name||window.aioseo.internalOptions.internal.deprecatedOptions.includes("badBotBlocker")})).filter((function(t){return"debug"!==t.name||window.aioseo.data.isDev})).filter((function(t){return!t.name||"robots-editor"===t.name||!window.aioseo.data.network}))));Object(f["sync"])(c["a"],g),s["default"].config.productionTip=!1,new s["default"]({router:g,store:c["a"],render:function(t){return t(i)}}).$mount("#aioseo-app")},b12a:function(t,o,e){var s={"./BadBotBlocker.vue":["af30","tools-BadBotBlocker-vue"],"./DatabaseTools.vue":["e6b1","tools-DatabaseTools-vue"],"./Debug.vue":["1c6d","tools-Debug-vue"],"./HtaccessEditor.vue":["3b6e","tools-HtaccessEditor-vue"],"./ImportExport.vue":["0687","tools-ImportExport-vue"],"./Main.vue":["5a9b","tools-ImportExport-vue","tools-Main-vue"],"./RobotsEditor.vue":["e4d8","tools-RobotsEditor-vue"],"./SystemStatus.vue":["d046","tools-SystemStatus-vue"],"./partials/BackupSettings.vue":["1407","tools-partials-BackupSettings-vue"],"./partials/ExportSettings.vue":["824c","tools-partials-ExportSettings-vue"],"./partials/ImportAioseo.vue":["a551","tools-partials-ImportAioseo-vue"],"./partials/ImportOthers.vue":["9b1d","tools-partials-ImportOthers-vue"]};function a(t){if(!e.o(s,t))return Promise.resolve().then((function(){var o=new Error("Cannot find module '"+t+"'");throw o.code="MODULE_NOT_FOUND",o}));var o=s[t],a=o[0];return Promise.all(o.slice(1).map(e.e)).then((function(){return e(a)}))}a.keys=function(){return Object.keys(s)},a.id="b12a",t.exports=a}});
languages/aioseo-lite.php CHANGED
@@ -4,132 +4,33 @@ $generated_i18n_strings = array(
4
  // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:49
5
  __( '404', 'all-in-one-seo-pack' ),
6
 
7
- // Reference: src/vue/mixins/SeoSiteScore.js:20
8
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
9
- __( 'Connect with %1$s', 'all-in-one-seo-pack' ),
10
-
11
- // Reference: src/vue/pages/about/router/paths.js:19
12
- __( 'About Us', 'all-in-one-seo-pack' ),
13
-
14
- // Reference: src/vue/pages/about/router/paths.js:28
15
- __( 'Getting Started', 'all-in-one-seo-pack' ),
16
-
17
- // Reference: src/vue/pages/about/router/paths.js:37
18
- __( 'Lite vs. Pro', 'all-in-one-seo-pack' ),
19
-
20
- // Reference: src/vue/pages/search-appearance/router/paths.js:19
21
- __( 'Global Settings', 'all-in-one-seo-pack' ),
22
 
23
- // Reference: src/vue/pages/search-appearance/router/paths.js:28
24
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:56
25
- __( 'Content Types', 'all-in-one-seo-pack' ),
26
 
27
- // Reference: src/vue/pages/search-appearance/router/paths.js:37
28
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:62
29
- __( 'Taxonomies', 'all-in-one-seo-pack' ),
30
 
31
- // Reference: src/vue/pages/search-appearance/router/paths.js:46
32
- // Reference: src/vue/plugins/constants.js:1101
33
- __( 'Image SEO', 'all-in-one-seo-pack' ),
34
 
35
- // Reference: src/vue/pages/search-appearance/router/paths.js:55
36
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:68
37
- __( 'Archives', 'all-in-one-seo-pack' ),
38
 
39
- // Reference: src/vue/pages/search-appearance/router/paths.js:64
40
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:74
41
  __( 'Advanced', 'all-in-one-seo-pack' ),
42
 
43
- // Reference: src/vue/pages/setup-wizard/router/paths.js:19
44
- __( 'Welcome', 'all-in-one-seo-pack' ),
45
-
46
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:86
47
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
48
- __( 'Import', 'all-in-one-seo-pack' ),
49
-
50
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:298
51
- __( 'Category', 'all-in-one-seo-pack' ),
52
-
53
- // Reference: src/vue/pages/setup-wizard/router/paths.js:46
54
- __( 'Additional Site Information', 'all-in-one-seo-pack' ),
55
-
56
- // Reference: src/vue/pages/setup-wizard/router/paths.js:55
57
- __( 'Choose Features', 'all-in-one-seo-pack' ),
58
-
59
- // Reference: src/vue/pages/dashboard/views/Main.vue:224
60
- __( 'Search Appearance', 'all-in-one-seo-pack' ),
61
-
62
- // Reference: src/vue/pages/setup-wizard/router/paths.js:73
63
- __( 'Smart Recommendations', 'all-in-one-seo-pack' ),
64
-
65
- // Reference: src/vue/components/lite/settings/LicenseKey.vue:58
66
- // Reference: src/vue/pages/setup-wizard/router/paths.js:82
67
- __( 'License Key', 'all-in-one-seo-pack' ),
68
-
69
- // Reference: src/vue/pages/setup-wizard/router/paths.js:91
70
- __( 'Success', 'all-in-one-seo-pack' ),
71
-
72
- // Reference: src/vue/pages/dashboard/router/paths.js:19
73
- __( 'Dashboard', 'all-in-one-seo-pack' ),
74
-
75
- // Reference: src/vue/pages/social-networks/router/paths.js:19
76
- __( 'Social Profiles', 'all-in-one-seo-pack' ),
77
-
78
- // Reference: src/vue/pages/social-networks/router/paths.js:28
79
- __( 'Facebook', 'all-in-one-seo-pack' ),
80
-
81
- // Reference: src/vue/pages/social-networks/router/paths.js:37
82
- __( 'Twitter', 'all-in-one-seo-pack' ),
83
-
84
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:45
85
- __( 'Pinterest', 'all-in-one-seo-pack' ),
86
-
87
- // Reference: src/vue/pages/seo-analysis/router/paths.js:19
88
- __( 'SEO Audit Checklist', 'all-in-one-seo-pack' ),
89
-
90
- // Reference: src/vue/pages/seo-analysis/router/paths.js:28
91
- __( 'Analyze Competitor Site', 'all-in-one-seo-pack' ),
92
-
93
- // Reference: src/vue/pages/feature-manager/router/paths.js:19
94
- // Reference: src/vue/pages/feature-manager/views/Main.vue:20
95
- __( 'Feature Manager', 'all-in-one-seo-pack' ),
96
-
97
- // Reference: src/vue/pages/tools/router/paths.js:19
98
- __( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
99
-
100
- // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:41
101
- __( '.htaccess Editor', 'all-in-one-seo-pack' ),
102
-
103
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:89
104
- __( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
105
-
106
- // Reference: src/vue/pages/tools/router/paths.js:46
107
- __( 'Import/Export', 'all-in-one-seo-pack' ),
108
-
109
- // Reference: src/vue/pages/tools/router/paths.js:55
110
- __( 'Database Tools', 'all-in-one-seo-pack' ),
111
-
112
- // Reference: src/vue/pages/tools/router/paths.js:64
113
- __( 'System Status', 'all-in-one-seo-pack' ),
114
-
115
- // Reference: src/vue/plugins/constants.js:1085
116
- __( 'Analytics', 'all-in-one-seo-pack' ),
117
 
118
  // Reference: src/vue/router/index.js:71
119
  __( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
120
 
121
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:46
122
- __( 'Pinterest uses Open Graph metadata just like Facebook, so be sure to keep Open Graph enabled on the Facebook tab checked if you want to optimize your site for Pinterest.', 'all-in-one-seo-pack' ),
123
-
124
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:47
125
- __( 'Learn how to get your Pinterest Verification Code', 'all-in-one-seo-pack' ),
126
-
127
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:48
128
- __( 'If you have already confirmed your website with Pinterest, you can skip the step below.', 'all-in-one-seo-pack' ),
129
-
130
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:49
131
- __( 'Pinterest Verification Code', 'all-in-one-seo-pack' ),
132
-
133
  // Reference: src/vue/pages/local-business-seo/blocks/LocationCategories.js:30
134
  /* Translators: 1 - AIOSEO. */
135
  __( '%1$s Local - Location Categories', 'all-in-one-seo-pack' ),
@@ -143,31 +44,6 @@ $generated_i18n_strings = array(
143
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:124
144
  __( 'No %s found', 'all-in-one-seo-pack' ),
145
 
146
- // Reference: src/vue/standalone/publish-panel/PostPublish.vue:30
147
- __( 'Get out the word!', 'all-in-one-seo-pack' ),
148
-
149
- // Reference: src/vue/standalone/publish-panel/PostPublish.vue:31
150
- __( 'Share your content on your favorite social media platforms to drive engagement and increase your SEO.', 'all-in-one-seo-pack' ),
151
-
152
- // Reference: src/vue/pages/redirects/router/paths.js:19
153
- // Reference: src/vue/pages/redirects/views/Main.vue:31
154
- __( 'Redirects', 'all-in-one-seo-pack' ),
155
-
156
- // Reference: src/vue/pages/redirects/router/paths.js:28
157
- __( 'Full Site Redirect', 'all-in-one-seo-pack' ),
158
-
159
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:265
160
- __( 'Logs', 'all-in-one-seo-pack' ),
161
-
162
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:269
163
- __( '404 Logs', 'all-in-one-seo-pack' ),
164
-
165
- // Reference: src/vue/pages/redirects/router/paths.js:55
166
- __( 'Import / Export', 'all-in-one-seo-pack' ),
167
-
168
- // Reference: src/vue/pages/redirects/router/paths.js:64
169
- __( 'Settings', 'all-in-one-seo-pack' ),
170
-
171
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:219
172
  __( 'Select a %s', 'all-in-one-seo-pack' ),
173
 
@@ -175,6 +51,11 @@ $generated_i18n_strings = array(
175
  /* Translators: 1 - AIOSEO. */
176
  __( '%1$s Local - Locations', 'all-in-one-seo-pack' ),
177
 
 
 
 
 
 
178
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:234
179
  __( 'Please configure the map for this location: %s', 'all-in-one-seo-pack' ),
180
 
@@ -185,9 +66,19 @@ $generated_i18n_strings = array(
185
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:76
186
  __( 'Our location:', 'all-in-one-seo-pack' ),
187
 
188
- // Reference: src/vue/plugins/html-sitemap/index.js:149
189
  __( 'Display Settings', 'all-in-one-seo-pack' ),
190
 
 
 
 
 
 
 
 
 
 
 
191
  // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfo.js:45
192
  /* Translators: 1 - AIOSEO. */
193
  __( '%1$s Local - Business Info', 'all-in-one-seo-pack' ),
@@ -210,168 +101,116 @@ $generated_i18n_strings = array(
210
  // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfo.js:80
211
  __( 'Email:', 'all-in-one-seo-pack' ),
212
 
213
- // Reference: src/vue/pages/local-business-seo/blocks/OpeningHours.js:46
214
- /* Translators: 1 - AIOSEO. */
215
- __( '%1$s Local - Opening Hours', 'all-in-one-seo-pack' ),
216
 
217
- // Reference: src/vue/pages/local-business-seo/blocks/OpeningHours.js:97
218
- __( 'Our Opening Hours:', 'all-in-one-seo-pack' ),
219
 
220
- // Reference: src/vue/components/common/core/AddRedirection.vue:237
221
- // Reference: src/vue/pages/settings/views/Advanced.vue:283
222
- __( 'Advanced Settings', 'all-in-one-seo-pack' ),
223
 
224
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:377
225
- __( 'Global Robots Meta', 'all-in-one-seo-pack' ),
226
 
227
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:378
228
- __( 'Noindex Empty Category and Tag Archives', 'all-in-one-seo-pack' ),
229
 
230
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:379
231
- __( 'Remove Stopwords from Permalinks', 'all-in-one-seo-pack' ),
232
 
233
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:380
234
- __( 'Remove Category Base Prefix', 'all-in-one-seo-pack' ),
235
 
236
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:383
237
- __( 'Automatically Add Missing Image Alt / Title Tags', 'all-in-one-seo-pack' ),
238
 
239
- // Reference: src/vue/pages/settings/views/Advanced.vue:320
240
- /* Translators: 1 - The plugin short name name ("AIOSEO"), 2 - "Learn more". */
241
- __( 'This feature is only for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
242
 
243
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:386
244
- __( 'Autogenerate Descriptions', 'all-in-one-seo-pack' ),
245
 
246
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:387
247
- __( 'Use Content for Autogenerated Descriptions', 'all-in-one-seo-pack' ),
 
248
 
249
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:388
250
- __( 'Run Shortcodes in Description', 'all-in-one-seo-pack' ),
 
251
 
252
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:389
253
- __( 'No Pagination for Canonical URLs', 'all-in-one-seo-pack' ),
254
 
255
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:390
256
- __( 'Use Meta Keywords', 'all-in-one-seo-pack' ),
257
 
258
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:391
259
- __( 'This option allows you to toggle the use of Meta Keywords throughout the whole of the site.', 'all-in-one-seo-pack' ),
260
 
261
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:392
262
- __( 'Use Categories for Meta Keywords', 'all-in-one-seo-pack' ),
263
 
264
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:393
265
- __( 'Check this if you want your categories for a given post used as the Meta Keywords for this post (in addition to any keywords you specify on the Edit Post screen).', 'all-in-one-seo-pack' ),
266
 
267
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:394
268
- __( 'Use Tags for Meta Keywords', 'all-in-one-seo-pack' ),
269
 
270
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:395
271
- __( 'Check this if you want your tags for a given post used as the Meta Keywords for this post (in addition to any keywords you specify on the Edit Post screen).', 'all-in-one-seo-pack' ),
272
 
273
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:396
274
- __( 'Dynamically Generate Meta Keywords', 'all-in-one-seo-pack' ),
 
275
 
276
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:397
277
- __( 'Check this if you want your keywords on your Posts page (set in WordPress under Settings, Reading, Front Page Displays) and your archive pages to be dynamically generated from the keywords of the posts showing on that page. If unchecked, it will use the keywords set in the edit page screen for the posts page.', 'all-in-one-seo-pack' ),
 
 
278
 
279
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:73
280
- __( 'Paged Format', 'all-in-one-seo-pack' ),
281
 
282
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:399
283
- __( 'This string gets appended to the titles and descriptions of paginated pages (like term or archive pages).', 'all-in-one-seo-pack' ),
284
 
285
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:400
286
- __( 'Description Format', 'all-in-one-seo-pack' ),
287
 
288
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:441
289
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:125
290
- __( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
291
 
292
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:442
293
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:126
294
- __( 'Exclude Terms', 'all-in-one-seo-pack' ),
295
 
296
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:403
297
- __( 'Enable Sitelinks Search Box', 'all-in-one-seo-pack' ),
298
 
299
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:405
300
- /* Translators: 1 - The plugin name ("All in One SEO"). */
301
- __( 'Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.', 'all-in-one-seo-pack' ),
302
 
303
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:406
304
- __( 'A Description tag is required in order to properly display your meta descriptions on your site.', 'all-in-one-seo-pack' ),
305
 
306
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:134
307
- __( 'Set title attributes', 'all-in-one-seo-pack' ),
308
-
309
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:135
310
- __( 'Set alt tag attributes', 'all-in-one-seo-pack' ),
311
-
312
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:136
313
- __( 'Strip punctuation for titles', 'all-in-one-seo-pack' ),
314
-
315
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:137
316
- __( 'Strip punctuation for alt tags', 'all-in-one-seo-pack' ),
317
-
318
- // Reference: src/vue/components/common/core/FeatureCard.vue:131
319
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:139
320
- __( 'An error occurred while activating the addon. Please upload it manually or contact support for more information.', 'all-in-one-seo-pack' ),
321
-
322
- // Reference: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:87
323
- __( 'You currently don\'t have permission to activate this addon. Please ask a site administrator to activate first.', 'all-in-one-seo-pack' ),
324
-
325
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:415
326
- __( 'General Sitemap', 'all-in-one-seo-pack' ),
327
-
328
- // Reference: src/vue/plugins/constants.js:1117
329
- __( 'Video Sitemap', 'all-in-one-seo-pack' ),
330
-
331
- // Reference: src/vue/plugins/constants.js:1125
332
- __( 'News Sitemap', 'all-in-one-seo-pack' ),
333
-
334
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:274
335
- __( 'HTML Sitemap', 'all-in-one-seo-pack' ),
336
-
337
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:124
338
- __( 'RSS Sitemap', 'all-in-one-seo-pack' ),
339
-
340
- // Reference: src/vue/standalone/flyout-menu/App.vue:50
341
- __( 'Quick Links', 'all-in-one-seo-pack' ),
342
-
343
- // Reference: src/vue/standalone/flyout-menu/App.vue:59
344
- __( 'Support & Docs', 'all-in-one-seo-pack' ),
345
-
346
- // Reference: src/vue/standalone/flyout-menu/App.vue:68
347
- __( 'Join Our Community', 'all-in-one-seo-pack' ),
348
-
349
- // Reference: src/vue/standalone/flyout-menu/App.vue:77
350
- __( 'Suggest a Feature', 'all-in-one-seo-pack' ),
351
-
352
- // Reference: src/vue/standalone/flyout-menu/App.vue:90
353
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
354
- __( 'Upgrade to %1$s %2$s', 'all-in-one-seo-pack' ),
355
 
356
- // Reference: src/vue/standalone/flyout-menu/App.vue:90
357
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
358
- __( 'Pro', 'all-in-one-seo-pack' ),
359
 
360
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:117
361
- __( 'Web Page Type', 'all-in-one-seo-pack' ),
362
 
363
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:97
364
- __( 'Course', 'all-in-one-seo-pack' ),
365
 
366
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:99
367
- __( 'Recipe', 'all-in-one-seo-pack' ),
368
 
369
  // Reference: src/vue/standalone/publish-panel/PrePublish.vue:148
370
  __( 'Blocked!', 'all-in-one-seo-pack' ),
371
 
372
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:153
373
- __( 'N/A', 'all-in-one-seo-pack' ),
374
-
375
  // Reference: src/vue/standalone/publish-panel/PrePublish.vue:163
376
  __( 'Good!', 'all-in-one-seo-pack' ),
377
 
@@ -389,407 +228,179 @@ $generated_i18n_strings = array(
389
  __( 'You\'re good to go!', 'all-in-one-seo-pack' ),
390
 
391
  // Reference: src/vue/pages/post-settings/views/General.vue:283
392
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:71
393
  __( 'Snippet Preview', 'all-in-one-seo-pack' ),
394
 
395
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:72
396
  __( 'Canonical URL', 'all-in-one-seo-pack' ),
397
 
398
  // Reference: src/vue/standalone/publish-panel/PrePublish.vue:82
399
  __( 'Visibility', 'all-in-one-seo-pack' ),
400
 
 
401
  // Reference: src/vue/pages/settings/views/Advanced.vue:288
402
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:87
403
  __( 'SEO Analysis', 'all-in-one-seo-pack' ),
404
 
405
  // Reference: src/vue/pages/post-settings/views/General.vue:296
406
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:92
407
  __( 'Readability', 'all-in-one-seo-pack' ),
408
 
409
  // Reference: src/vue/pages/post-settings/views/General.vue:291
410
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:301
411
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:97
412
  __( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
413
 
414
- // Reference: src/vue/pages/dashboard/views/Main.vue:202
415
- __( 'Smart Schema', 'all-in-one-seo-pack' ),
 
416
 
417
- // Reference: src/vue/plugins/constants.js:1109
418
- __( 'Local SEO', 'all-in-one-seo-pack' ),
419
 
420
- // Reference: src/vue/pages/dashboard/views/Main.vue:204
421
- __( 'Advanced support for e-commerce', 'all-in-one-seo-pack' ),
422
 
423
- // Reference: src/vue/pages/dashboard/views/Main.vue:205
424
- __( 'Advanced Google Analytics tracking', 'all-in-one-seo-pack' ),
425
 
426
- // Reference: src/vue/pages/dashboard/views/Main.vue:206
427
- __( 'Video SEO Module', 'all-in-one-seo-pack' ),
428
 
429
- // Reference: src/vue/pages/dashboard/views/Main.vue:207
430
- __( 'Greater control over display settings', 'all-in-one-seo-pack' ),
431
 
432
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:154
433
- __( 'SEO for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
434
 
435
- // Reference: src/vue/pages/dashboard/views/Main.vue:209
436
- __( 'Social meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
437
 
438
- // Reference: src/vue/pages/dashboard/views/Main.vue:210
439
- __( 'Ad free (no banner adverts)', 'all-in-one-seo-pack' ),
440
 
441
- // Reference: src/vue/pages/dashboard/views/Main.vue:212
442
- __( 'There are no new notifications at this moment.', 'all-in-one-seo-pack' ),
443
 
444
- // Reference: src/vue/pages/dashboard/views/Main.vue:213
445
- __( 'See all dismissed notifications.', 'all-in-one-seo-pack' ),
446
 
447
- // Reference: src/vue/pages/dashboard/views/Main.vue:214
448
- __( 'SEO Site Score', 'all-in-one-seo-pack' ),
449
 
450
- // Reference: src/vue/pages/dashboard/views/Main.vue:215
451
- __( 'Support', 'all-in-one-seo-pack' ),
452
 
453
- // Reference: src/vue/pages/dashboard/views/Main.vue:217
454
- /* Translators: 1 - The plugin name ("All in One SEO"). */
455
- __( 'Read the %1$s user guide', 'all-in-one-seo-pack' ),
456
 
457
- // Reference: src/vue/pages/dashboard/views/Main.vue:218
458
- __( 'Access our Premium Support', 'all-in-one-seo-pack' ),
459
 
460
- // Reference: src/vue/pages/dashboard/views/Main.vue:219
461
- __( 'View the Changelog', 'all-in-one-seo-pack' ),
462
 
463
- // Reference: src/vue/pages/dashboard/views/Main.vue:220
464
- __( 'Watch video tutorials', 'all-in-one-seo-pack' ),
465
 
466
- // Reference: src/vue/pages/dashboard/views/Main.vue:221
467
- __( 'Getting started? Read the Beginners Guide', 'all-in-one-seo-pack' ),
468
 
469
- // Reference: src/vue/pages/dashboard/views/Main.vue:222
470
- __( 'Quicklinks', 'all-in-one-seo-pack' ),
471
 
472
- // Reference: src/vue/pages/dashboard/views/Main.vue:223
473
- __( 'You can use these quicklinks to quickly access our settings pages to adjust your site\'s SEO settings.', 'all-in-one-seo-pack' ),
474
 
475
- // Reference: src/vue/pages/dashboard/views/Main.vue:225
476
- __( 'Configure how your website content will look in Google, Bing and other search engines.', 'all-in-one-seo-pack' ),
477
 
478
- // Reference: src/vue/pages/dashboard/views/Main.vue:227
479
- __( 'Check how your site scores with our SEO analyzer and compare against your competitor\'s site.', 'all-in-one-seo-pack' ),
480
 
481
- // Reference: src/vue/pages/dashboard/views/Main.vue:228
482
- __( 'Improve local SEO rankings with schema for business address, open hours, contact, and more.', 'all-in-one-seo-pack' ),
 
483
 
484
- // Reference: src/vue/pages/dashboard/views/Main.vue:229
485
- __( 'Social Networks', 'all-in-one-seo-pack' ),
486
 
487
- // Reference: src/vue/pages/dashboard/views/Main.vue:230
488
- __( 'Setup Open Graph for Facebook, Twitter, etc. to show the right content / thumbnail preview.', 'all-in-one-seo-pack' ),
 
489
 
490
- // Reference: src/vue/pages/tools/views/Main.vue:31
491
- __( 'Tools', 'all-in-one-seo-pack' ),
492
 
493
- // Reference: src/vue/pages/dashboard/views/Main.vue:232
494
- __( 'Fine-tune your site with our powerful tools including Robots.txt editor, import/export and more.', 'all-in-one-seo-pack' ),
495
 
496
- // Reference: src/vue/plugins/constants.js:1066
497
- __( 'Sitemaps', 'all-in-one-seo-pack' ),
498
 
499
- // Reference: src/vue/pages/dashboard/views/Main.vue:234
500
- __( 'Manage all of your sitemap settings, including XML, Video, News and more.', 'all-in-one-seo-pack' ),
501
 
502
- // Reference: src/vue/pages/dashboard/views/Main.vue:236
503
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
504
- __( 'Get more features in %1$s %2$s:', 'all-in-one-seo-pack' ),
505
 
506
- // Reference: src/vue/pages/dashboard/views/Main.vue:238
507
- /* Translators: 1 - "Pro", 2 - A percentage ("50%"). */
508
- __( 'Upgrade to %1$s and Save %2$s', 'all-in-one-seo-pack' ),
509
 
510
- // Reference: src/vue/components/common/core/Notifications.vue:95
511
- __( 'Dismiss All', 'all-in-one-seo-pack' ),
512
 
513
- // Reference: src/vue/pages/dashboard/views/Main.vue:240
514
- __( 'Relaunch Setup Wizard', 'all-in-one-seo-pack' ),
515
 
516
- // Reference: src/vue/pages/dashboard/views/Main.vue:249
517
- /* Translators: 1 - A number representing the remaining notifications. */
518
- __( 'You have %1$s more notifications', 'all-in-one-seo-pack' ),
519
 
520
- // Reference: src/vue/classes/SiteAnalysis.js:119
521
- __( 'Title:', 'all-in-one-seo-pack' ),
522
 
523
- // Reference: src/vue/classes/SiteAnalysis.js:125
524
- __( 'Description:', 'all-in-one-seo-pack' ),
525
 
526
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:345
527
- __( 'Edit', 'all-in-one-seo-pack' ),
528
 
529
- // Reference: src/vue/pages/posts-table/TermApp.vue:116
530
- __( 'Save', 'all-in-one-seo-pack' ),
531
 
532
- // Reference: src/vue/components/common/core/AddRedirection.vue:240
533
- __( 'Cancel', 'all-in-one-seo-pack' ),
534
 
535
- // Reference: src/vue/pages/posts-table/TermApp.vue:118
536
- __( 'Please wait...', 'all-in-one-seo-pack' ),
537
 
538
- // Reference: src/vue/pages/posts-table/App.vue:220
539
- __( 'Image Title:', 'all-in-one-seo-pack' ),
540
 
541
- // Reference: src/vue/pages/posts-table/App.vue:221
542
- __( 'Image Alt Tag:', 'all-in-one-seo-pack' ),
543
 
544
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:150
545
- __( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
546
 
547
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:151
548
- __( 'Image SEO Optimization', 'all-in-one-seo-pack' ),
549
 
550
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:152
551
- __( 'Local Business SEO', 'all-in-one-seo-pack' ),
 
552
 
553
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:153
554
- __( 'Advanced WooCommerce', 'all-in-one-seo-pack' ),
555
 
556
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:155
557
- __( 'And many more...', 'all-in-one-seo-pack' ),
558
 
559
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:147
560
- __( 'Activate All Features', 'all-in-one-seo-pack' ),
561
 
562
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:148
563
- __( 'Deactivate All Features', 'all-in-one-seo-pack' ),
 
564
 
565
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:149
566
- __( 'Search for Features...', 'all-in-one-seo-pack' ),
567
-
568
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:151
569
- /* Translators: 1 - The plugin name ("All in One SEO"). */
570
- __( 'Upgrade %1$s to Pro and Unlock all Features!', 'all-in-one-seo-pack' ),
571
-
572
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:152
573
- __( 'Upgrade to Pro and Unlock All Features', 'all-in-one-seo-pack' ),
574
-
575
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:153
576
- __( 'A valid license key is required in order to use our addons.', 'all-in-one-seo-pack' ),
577
-
578
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:154
579
- __( 'Enter License Key', 'all-in-one-seo-pack' ),
580
-
581
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:155
582
- __( 'Purchase License', 'all-in-one-seo-pack' ),
583
-
584
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:159
585
- __( 'Globally control the Title attribute and Alt text for images in your content. These attributes are essential for both accessibility and SEO.', 'all-in-one-seo-pack' ),
586
-
587
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:163
588
- __( 'The Video Sitemap works in much the same way as the XML Sitemap module, it generates an XML Sitemap specifically for video content on your site. Search engines use this information to display rich snippet information in search results.', 'all-in-one-seo-pack' ),
589
-
590
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:167
591
- __( 'Our Google News Sitemap lets you control which content you submit to Google News and only contains articles that were published in the last 48 hours. In order to submit a News Sitemap to Google, you must have added your site to Google’s Publisher Center and had it approved.', 'all-in-one-seo-pack' ),
592
-
593
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:171
594
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:100
595
- __( 'Local Business schema markup enables you to tell Google about your business, including your business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
596
-
597
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:182
598
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 "Pro". */
599
- __( '%1$s %2$s comes with many additional features to help take your site\'s SEO to the next level!', 'all-in-one-seo-pack' ),
600
-
601
- // Reference: src/vue/components/common/Cta.vue:261
602
- /* Translators: 1 - "Pro". */
603
- __( 'Upgrade to %1$s', 'all-in-one-seo-pack' ),
604
-
605
- // Reference: src/vue/components/common/Cta.vue:263
606
- /* Translators: 1 - The plugin name ("All in One SEO"). */
607
- __( 'This feature is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
608
-
609
- // Reference: src/vue/components/common/Cta.vue:266
610
- __( 'Learn more about all features', 'all-in-one-seo-pack' ),
611
-
612
- // Reference: src/vue/components/common/Cta.vue:267
613
- __( 'See all features', 'all-in-one-seo-pack' ),
614
-
615
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
616
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:249
617
- __( 'Click here', 'all-in-one-seo-pack' ),
618
-
619
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
620
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:251
621
- /* Translators: 1 - The addon or plugin name. */
622
- __( 'Install %1$s', 'all-in-one-seo-pack' ),
623
-
624
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:186
625
- /* Translators: 1 - The name of one of our partner plugins. */
626
- __( '%1$s is Installed & Active', 'all-in-one-seo-pack' ),
627
-
628
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:187
629
- __( 'Launch Setup Wizard', 'all-in-one-seo-pack' ),
630
-
631
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
632
- __( 'The Best Google Analytics Plugin for WordPress', 'all-in-one-seo-pack' ),
633
-
634
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
635
- /* Translators: 1 - The name of one of our partner plugins, 2 - The name of one of our partner plugins. */
636
- __( '%1$s connects AIOSEO to Google Analytics, providing a powerful integration. %2$s is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
637
-
638
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
639
- __( 'Quick & Easy Google Analytics Setup', 'all-in-one-seo-pack' ),
640
-
641
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
642
- __( 'Google Analytics Dashboard + Real Time Stats', 'all-in-one-seo-pack' ),
643
-
644
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:203
645
- __( 'Google Analytics Enhanced Ecommerce Tracking', 'all-in-one-seo-pack' ),
646
-
647
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:204
648
- __( 'Universal Tracking for AMP and Instant Articles', 'all-in-one-seo-pack' ),
649
-
650
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:205
651
- __( 'Install &', 'all-in-one-seo-pack' ),
652
-
653
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:207
654
- /* Translators: 1 - The name of one of our partner plugins. */
655
- __( 'Activate %1$s', 'all-in-one-seo-pack' ),
656
-
657
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:209
658
- /* Translators: 1 - The name of one of our partner plugins. */
659
- __( '%1$s shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
660
-
661
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:213
662
- /* Translators: 1 - The name of one of our partner plugins. */
663
- __( 'Setup %1$s', 'all-in-one-seo-pack' ),
664
-
665
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:217
666
- /* Translators: 1 - The name of one of our partner plugins. */
667
- __( '%1$s has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
668
-
669
- // Reference: src/vue/plugins/constants.js:1049
670
- __( 'Manually Enter Type', 'all-in-one-seo-pack' ),
671
-
672
- // Reference: src/vue/plugins/constants.js:1050
673
- __( 'Customer Support', 'all-in-one-seo-pack' ),
674
-
675
- // Reference: src/vue/plugins/constants.js:1051
676
- __( 'Technical Support', 'all-in-one-seo-pack' ),
677
-
678
- // Reference: src/vue/plugins/constants.js:1052
679
- __( 'Billing Support', 'all-in-one-seo-pack' ),
680
-
681
- // Reference: src/vue/plugins/constants.js:1053
682
- __( 'Bill Payment', 'all-in-one-seo-pack' ),
683
-
684
- // Reference: src/vue/plugins/constants.js:1054
685
- __( 'Sales', 'all-in-one-seo-pack' ),
686
-
687
- // Reference: src/vue/plugins/constants.js:1055
688
- __( 'Reservations', 'all-in-one-seo-pack' ),
689
-
690
- // Reference: src/vue/plugins/constants.js:1056
691
- __( 'Credit Card Support', 'all-in-one-seo-pack' ),
692
-
693
- // Reference: src/vue/plugins/constants.js:1057
694
- __( 'Emergency', 'all-in-one-seo-pack' ),
695
-
696
- // Reference: src/vue/plugins/constants.js:1058
697
- __( 'Bagage Tracking', 'all-in-one-seo-pack' ),
698
-
699
- // Reference: src/vue/plugins/constants.js:1059
700
- __( 'Roadside Assistance', 'all-in-one-seo-pack' ),
701
-
702
- // Reference: src/vue/plugins/constants.js:1060
703
- __( 'Package Tracking', 'all-in-one-seo-pack' ),
704
-
705
- // Reference: src/vue/plugins/constants.js:1067
706
- __( 'Sitemaps are a list of all your content that search engines use when they crawl your site.', 'all-in-one-seo-pack' ),
707
-
708
- // Reference: src/vue/plugins/constants.js:1077
709
- __( 'Optimized Search Appearance', 'all-in-one-seo-pack' ),
710
-
711
- // Reference: src/vue/plugins/constants.js:1078
712
- __( 'Get all the right tools to make sure your website shows up in Google Search.', 'all-in-one-seo-pack' ),
713
-
714
- // Reference: src/vue/plugins/constants.js:1086
715
- __( 'Get the #1 analytics plugin to see how people find and use your website. Simply put, see stats that matter.', 'all-in-one-seo-pack' ),
716
-
717
- // Reference: src/vue/plugins/constants.js:1093
718
- __( 'Breadcrumbs', 'all-in-one-seo-pack' ),
719
-
720
- // Reference: src/vue/plugins/constants.js:1102
721
- __( 'Globally control Title and Alt attributes for attachment pages and images that are embedded in your content.', 'all-in-one-seo-pack' ),
722
-
723
- // Reference: src/vue/plugins/constants.js:1110
724
- __( 'Tell Google about your business for display as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
725
-
726
- // Reference: src/vue/plugins/constants.js:1118
727
- __( 'Generate an XML Sitemap specifically for video content on your site.', 'all-in-one-seo-pack' ),
728
-
729
- // Reference: src/vue/plugins/constants.js:1126
730
- __( 'Submit articles to Google News that were published in the last 48 hours.', 'all-in-one-seo-pack' ),
731
-
732
- // Reference: src/vue/plugins/constants.js:1133
733
- __( 'Smart Redirects + 404 Detection', 'all-in-one-seo-pack' ),
734
-
735
- // Reference: src/vue/plugins/constants.js:1134
736
- __( 'Create and manage redirects for your broken links.', 'all-in-one-seo-pack' ),
737
-
738
- // Reference: src/vue/plugins/constants.js:1141
739
- __( 'Internal Link Building Assistant', 'all-in-one-seo-pack' ),
740
-
741
- // Reference: src/vue/plugins/constants.js:1149
742
- __( 'Advanced Rich Snippets + Schema Markups', 'all-in-one-seo-pack' ),
743
-
744
- // Reference: src/vue/plugins/constants.js:1160
745
- __( 'Activities', 'all-in-one-seo-pack' ),
746
-
747
- // Reference: src/vue/plugins/constants.js:1162
748
- __( 'Activity', 'all-in-one-seo-pack' ),
749
-
750
- // Reference: src/vue/plugins/constants.js:1163
751
- __( 'Sport', 'all-in-one-seo-pack' ),
752
-
753
- // Reference: src/vue/plugins/constants.js:1167
754
- __( 'Businesses', 'all-in-one-seo-pack' ),
755
-
756
- // Reference: src/vue/plugins/constants.js:1169
757
- __( 'Bar', 'all-in-one-seo-pack' ),
758
-
759
- // Reference: src/vue/plugins/constants.js:1170
760
- __( 'Company', 'all-in-one-seo-pack' ),
761
-
762
- // Reference: src/vue/plugins/constants.js:1171
763
- __( 'Cafe', 'all-in-one-seo-pack' ),
764
-
765
- // Reference: src/vue/plugins/constants.js:1172
766
- __( 'Hotel', 'all-in-one-seo-pack' ),
767
-
768
- // Reference: src/vue/plugins/constants.js:1173
769
- __( 'Restaurant', 'all-in-one-seo-pack' ),
770
-
771
- // Reference: src/vue/plugins/constants.js:1177
772
- __( 'Groups', 'all-in-one-seo-pack' ),
773
-
774
- // Reference: src/vue/plugins/constants.js:1180
775
- /* Translators: This refers to a charity/non-profit organization. */
776
- __( 'Cause', 'all-in-one-seo-pack' ),
777
-
778
- // Reference: src/vue/plugins/constants.js:1181
779
- __( 'Sports League', 'all-in-one-seo-pack' ),
780
-
781
- // Reference: src/vue/plugins/constants.js:1182
782
- __( 'Sports Team', 'all-in-one-seo-pack' ),
783
-
784
- // Reference: src/vue/plugins/constants.js:1186
785
- __( 'Organizations', 'all-in-one-seo-pack' ),
786
-
787
- // Reference: src/vue/plugins/constants.js:1189
788
- /* Translators: This refers to a music group. */
789
- __( 'Band', 'all-in-one-seo-pack' ),
790
-
791
- // Reference: src/vue/plugins/constants.js:1190
792
- __( 'Non-Profit', 'all-in-one-seo-pack' ),
793
 
794
  // Reference: src/vue/plugins/constants.js:1191
795
  __( 'School', 'all-in-one-seo-pack' ),
@@ -875,6 +486,7 @@ $generated_i18n_strings = array(
875
  // Reference: src/vue/plugins/constants.js:1233
876
  __( 'Websites', 'all-in-one-seo-pack' ),
877
 
 
878
  // Reference: src/vue/plugins/constants.js:1235
879
  __( 'Article', 'all-in-one-seo-pack' ),
880
 
@@ -882,7 +494,6 @@ $generated_i18n_strings = array(
882
  __( 'Website', 'all-in-one-seo-pack' ),
883
 
884
  // Reference: src/vue/components/common/core/AddRedirection.vue:466
885
- // Reference: src/vue/plugins/constants.js:1286
886
  __( 'Ignore all parameters', 'all-in-one-seo-pack' ),
887
 
888
  // Reference: src/vue/plugins/constants.js:1287
@@ -903,10 +514,10 @@ $generated_i18n_strings = array(
903
  // Reference: src/vue/plugins/constants.js:1295
904
  __( '404 Redirects', 'all-in-one-seo-pack' ),
905
 
906
- // Reference: src/vue/plugins/constants.js:1299
907
  __( 'default', 'all-in-one-seo-pack' ),
908
 
909
- // Reference: src/vue/plugins/constants.js:1300
910
  __( 'Animal Shelter', 'all-in-one-seo-pack' ),
911
 
912
  // Reference: src/vue/plugins/constants.js:1301
@@ -997,13 +608,11 @@ $generated_i18n_strings = array(
997
  __( 'Travel Agency', 'all-in-one-seo-pack' ),
998
 
999
  // Reference: src/vue/pages/post-settings/views/General.vue:282
1000
- // Reference: src/vue/plugins/constants.js:1404
1001
  __( 'General', 'all-in-one-seo-pack' ),
1002
 
1003
  // Reference: src/vue/plugins/constants.js:1411
1004
  __( 'CORS', 'all-in-one-seo-pack' ),
1005
 
1006
- // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
1007
  // Reference: src/vue/plugins/constants.js:1422
1008
  __( 'Security', 'all-in-one-seo-pack' ),
1009
 
@@ -1016,7 +625,7 @@ $generated_i18n_strings = array(
1016
  // Reference: src/vue/plugins/constants.js:1441
1017
  __( 'WordPress User Roles', 'all-in-one-seo-pack' ),
1018
 
1019
- // Reference: src/vue/plugins/constants.js:1442
1020
  __( 'User Agent', 'all-in-one-seo-pack' ),
1021
 
1022
  // Reference: src/vue/plugins/constants.js:1443
@@ -1052,7 +661,7 @@ $generated_i18n_strings = array(
1052
  // Reference: src/vue/plugins/constants.js:1453
1053
  __( 'Logged Out', 'all-in-one-seo-pack' ),
1054
 
1055
- // Reference: src/vue/plugins/constants.js:19
1056
  __( 'always', 'all-in-one-seo-pack' ),
1057
 
1058
  // Reference: src/vue/plugins/constants.js:20
@@ -1091,6 +700,7 @@ $generated_i18n_strings = array(
1091
  // Reference: src/vue/plugins/constants.js:34
1092
  __( 'Hide', 'all-in-one-seo-pack' ),
1093
 
 
1094
  // Reference: src/vue/plugins/constants.js:35
1095
  __( 'Learn More', 'all-in-one-seo-pack' ),
1096
 
@@ -1106,499 +716,477 @@ $generated_i18n_strings = array(
1106
  // Reference: src/vue/plugins/constants.js:39
1107
  __( 'Include', 'all-in-one-seo-pack' ),
1108
 
1109
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:220
1110
- // Reference: src/vue/plugins/constants.js:40
1111
  __( 'Remove', 'all-in-one-seo-pack' ),
1112
 
1113
- // Reference: src/vue/components/common/wizard/CloseAndExit.vue:14
1114
- __( 'Close and Exit Wizard Without Saving', 'all-in-one-seo-pack' ),
 
1115
 
1116
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:302
1117
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:377
1118
- __( 'Delete', 'all-in-one-seo-pack' ),
1119
 
1120
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:15
1121
- __( 'Last IP', 'all-in-one-seo-pack' ),
1122
 
1123
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:16
1124
- __( 'Headers', 'all-in-one-seo-pack' ),
1125
 
1126
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:17
1127
- __( 'at', 'all-in-one-seo-pack' ),
1128
 
1129
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:18
1130
- __( 'Additional Info', 'all-in-one-seo-pack' ),
1131
 
1132
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:20
1133
- __( 'Are you sure you want to delete this record?', 'all-in-one-seo-pack' ),
1134
 
1135
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:350
1136
- __( 'This action cannot be undone.', 'all-in-one-seo-pack' ),
1137
 
1138
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:22
1139
- __( 'Yes, I want to delete this record', 'all-in-one-seo-pack' ),
1140
 
1141
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:353
1142
- __( 'No, I changed my mind', 'all-in-one-seo-pack' ),
1143
 
1144
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:24
1145
- __( 'URL', 'all-in-one-seo-pack' ),
1146
 
1147
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:415
1148
- __( 'Hits', 'all-in-one-seo-pack' ),
1149
 
1150
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:26
1151
- __( 'Last Accessed', 'all-in-one-seo-pack' ),
1152
 
1153
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:361
1154
- __( 'Redirect Settings', 'all-in-one-seo-pack' ),
1155
 
1156
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:362
1157
- __( 'Redirect Method', 'all-in-one-seo-pack' ),
1158
 
1159
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:364
1160
- /* Translators: 1 - Learn more link. */
1161
- __( 'We cannot detect your web server. Server redirects are disabled. %1$s', 'all-in-one-seo-pack' ),
1162
 
1163
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:365
1164
- __( 'PHP', 'all-in-one-seo-pack' ),
1165
 
1166
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:366
1167
- __( 'Web Server', 'all-in-one-seo-pack' ),
1168
 
1169
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:368
1170
- __( 'IP Logging', 'all-in-one-seo-pack' ),
1171
 
1172
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:369
1173
- __( 'HTTP Cache Header', 'all-in-one-seo-pack' ),
1174
 
1175
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:370
1176
- __( 'Redirect Defaults', 'all-in-one-seo-pack' ),
 
1177
 
1178
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:271
1179
- __( 'Redirect Logs', 'all-in-one-seo-pack' ),
1180
 
1181
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:373
1182
- __( 'Log External Redirects', 'all-in-one-seo-pack' ),
1183
 
1184
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:374
1185
- __( 'Log HTTP Header Information', 'all-in-one-seo-pack' ),
1186
 
1187
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:375
1188
- __( 'Enable Redirect Cache', 'all-in-one-seo-pack' ),
1189
 
1190
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:163
1191
- __( 'Ignore Case', 'all-in-one-seo-pack' ),
1192
 
1193
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:162
1194
- __( 'Ignore Slash', 'all-in-one-seo-pack' ),
1195
 
1196
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:378
1197
- __( 'Cache Redirects', 'all-in-one-seo-pack' ),
1198
 
1199
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:379
1200
- __( 'Object Cache', 'all-in-one-seo-pack' ),
1201
 
1202
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:381
1203
- /* Translators: 1 - Opening link tag, 2 - Closing link tag. */
1204
- __( '%1$sGDPR / Privacy information%2$s', 'all-in-one-seo-pack' ),
1205
 
1206
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:382
1207
- __( 'Log IP Addresses', 'all-in-one-seo-pack' ),
1208
 
1209
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:383
1210
- __( 'Redirect Type', 'all-in-one-seo-pack' ),
1211
 
1212
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:384
1213
- __( 'Query Parameters', 'all-in-one-seo-pack' ),
1214
 
1215
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:386
1216
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
1217
- __( 'Log redirects that happen on your site even if the redirect happened outside of %1$s', 'all-in-one-seo-pack' ),
1218
 
1219
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:387
1220
- __( 'Capture HTTP header information with the logs (except for cookies).', 'all-in-one-seo-pack' ),
1221
 
1222
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:389
1223
- /* Translators: 1 - "NGINX". */
1224
- __( 'Export %1$s config file', 'all-in-one-seo-pack' ),
1225
 
1226
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:391
1227
- /* Translators: 1 - ".htaccess". */
1228
- __( 'Export %1$s file', 'all-in-one-seo-pack' ),
1229
 
1230
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:393
1231
- /* Translators: 1 - ".htaccess". */
1232
- __( 'Auto-write to %1$s', 'all-in-one-seo-pack' ),
4
  // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:49
5
  __( '404', 'all-in-one-seo-pack' ),
6
 
7
+ // Reference: src/vue/pages/settings/views/Main.vue:29
8
+ __( 'General Settings', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:128
11
+ __( 'Webmaster Tools', 'all-in-one-seo-pack' ),
 
12
 
13
+ // Reference: src/vue/plugins/constants.js:1093
14
+ __( 'Breadcrumbs', 'all-in-one-seo-pack' ),
 
15
 
16
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:129
17
+ __( 'RSS Content', 'all-in-one-seo-pack' ),
 
18
 
19
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:138
20
+ __( 'Access Control', 'all-in-one-seo-pack' ),
 
21
 
22
+ // Reference: src/vue/pages/search-appearance/views/Archives.vue:65
23
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:127
24
  __( 'Advanced', 'all-in-one-seo-pack' ),
25
 
26
+ // Reference: src/vue/pages/connect-pro/router/paths.js:20
27
+ // Reference: src/vue/pages/connect/router/paths.js:20
28
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
29
+ __( 'Connect with %1$s', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  // Reference: src/vue/router/index.js:71
32
  __( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
33
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  // Reference: src/vue/pages/local-business-seo/blocks/LocationCategories.js:30
35
  /* Translators: 1 - AIOSEO. */
36
  __( '%1$s Local - Location Categories', 'all-in-one-seo-pack' ),
44
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:124
45
  __( 'No %s found', 'all-in-one-seo-pack' ),
46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:219
48
  __( 'Select a %s', 'all-in-one-seo-pack' ),
49
 
51
  /* Translators: 1 - AIOSEO. */
52
  __( '%1$s Local - Locations', 'all-in-one-seo-pack' ),
53
 
54
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:199
55
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:179
56
+ // Reference: src/vue/pages/redirects/router/paths.js:64
57
+ __( 'Settings', 'all-in-one-seo-pack' ),
58
+
59
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:234
60
  __( 'Please configure the map for this location: %s', 'all-in-one-seo-pack' ),
61
 
66
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:76
67
  __( 'Our location:', 'all-in-one-seo-pack' ),
68
 
69
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHours.js:215
70
  __( 'Display Settings', 'all-in-one-seo-pack' ),
71
 
72
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHours.js:46
73
+ /* Translators: 1 - AIOSEO. */
74
+ __( '%1$s Local - Opening Hours', 'all-in-one-seo-pack' ),
75
+
76
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHours.js:97
77
+ __( 'Our Opening Hours:', 'all-in-one-seo-pack' ),
78
+
79
+ // Reference: src/vue/pages/post-settings/registerScoreToggler.js:16
80
+ __( 'N/A', 'all-in-one-seo-pack' ),
81
+
82
  // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfo.js:45
83
  /* Translators: 1 - AIOSEO. */
84
  __( '%1$s Local - Business Info', 'all-in-one-seo-pack' ),
101
  // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfo.js:80
102
  __( 'Email:', 'all-in-one-seo-pack' ),
103
 
104
+ // Reference: src/vue/pages/dashboard/views/Main.vue:211
105
+ __( 'Dashboard', 'all-in-one-seo-pack' ),
 
106
 
107
+ // Reference: src/vue/pages/local-seo/router/paths.js:19
108
+ __( 'Locations', 'all-in-one-seo-pack' ),
109
 
110
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:171
111
+ __( 'Opening Hours', 'all-in-one-seo-pack' ),
 
112
 
113
+ // Reference: src/vue/pages/local-business-seo/views/Main.vue:55
114
+ __( 'Maps', 'all-in-one-seo-pack' ),
115
 
116
+ // Reference: src/vue/pages/feature-manager/router/paths.js:19
117
+ __( 'Feature Manager', 'all-in-one-seo-pack' ),
118
 
119
+ // Reference: src/vue/pages/about/router/paths.js:19
120
+ __( 'About Us', 'all-in-one-seo-pack' ),
121
 
122
+ // Reference: src/vue/pages/about/router/paths.js:28
123
+ __( 'Getting Started', 'all-in-one-seo-pack' ),
124
 
125
+ // Reference: src/vue/pages/about/router/paths.js:37
126
+ __( 'Lite vs. Pro', 'all-in-one-seo-pack' ),
127
 
128
+ // Reference: src/vue/pages/redirects/router/paths.js:19
129
+ __( 'Redirects', 'all-in-one-seo-pack' ),
 
130
 
131
+ // Reference: src/vue/pages/redirects/router/paths.js:28
132
+ __( 'Full Site Redirect', 'all-in-one-seo-pack' ),
133
 
134
+ // Reference: src/vue/pages/redirects/router/paths.js:37
135
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:265
136
+ __( 'Logs', 'all-in-one-seo-pack' ),
137
 
138
+ // Reference: src/vue/pages/redirects/router/paths.js:46
139
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:269
140
+ __( '404 Logs', 'all-in-one-seo-pack' ),
141
 
142
+ // Reference: src/vue/pages/redirects/router/paths.js:55
143
+ __( 'Import / Export', 'all-in-one-seo-pack' ),
144
 
145
+ // Reference: src/vue/standalone/notifications/App.vue:17
146
+ __( 'You have new notifications!', 'all-in-one-seo-pack' ),
147
 
148
+ // Reference: src/vue/pages/social-networks/router/paths.js:19
149
+ __( 'Social Profiles', 'all-in-one-seo-pack' ),
150
 
151
+ // Reference: src/vue/pages/social-networks/router/paths.js:28
152
+ __( 'Facebook', 'all-in-one-seo-pack' ),
153
 
154
+ // Reference: src/vue/pages/social-networks/router/paths.js:37
155
+ __( 'Twitter', 'all-in-one-seo-pack' ),
156
 
157
+ // Reference: src/vue/pages/social-networks/router/paths.js:46
158
+ __( 'Pinterest', 'all-in-one-seo-pack' ),
159
 
160
+ // Reference: src/vue/pages/sitemaps/router/paths.js:19
161
+ __( 'General Sitemap', 'all-in-one-seo-pack' ),
162
 
163
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:164
164
+ // Reference: src/vue/pages/sitemaps/router/paths.js:28
165
+ __( 'Video Sitemap', 'all-in-one-seo-pack' ),
166
 
167
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:174
168
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:5
169
+ // Reference: src/vue/pages/sitemaps/router/paths.js:38
170
+ __( 'News Sitemap', 'all-in-one-seo-pack' ),
171
 
172
+ // Reference: src/vue/pages/sitemaps/router/paths.js:48
173
+ __( 'HTML Sitemap', 'all-in-one-seo-pack' ),
174
 
175
+ // Reference: src/vue/pages/sitemaps/router/paths.js:57
176
+ __( 'RSS Sitemap', 'all-in-one-seo-pack' ),
177
 
178
+ // Reference: src/vue/standalone/publish-panel/PostPublish.vue:30
179
+ __( 'Get out the word!', 'all-in-one-seo-pack' ),
180
 
181
+ // Reference: src/vue/standalone/publish-panel/PostPublish.vue:31
182
+ __( 'Share your content on your favorite social media platforms to drive engagement and increase your SEO.', 'all-in-one-seo-pack' ),
 
183
 
184
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:19
185
+ __( 'Welcome', 'all-in-one-seo-pack' ),
 
186
 
187
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:86
188
+ __( 'Import', 'all-in-one-seo-pack' ),
189
 
190
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:298
191
+ __( 'Category', 'all-in-one-seo-pack' ),
 
192
 
193
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:306
194
+ __( 'Additional Site Information', 'all-in-one-seo-pack' ),
195
 
196
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:55
197
+ __( 'Choose Features', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
 
199
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:131
200
+ __( 'Search Appearance', 'all-in-one-seo-pack' ),
 
201
 
202
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:73
203
+ __( 'Smart Recommendations', 'all-in-one-seo-pack' ),
204
 
205
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:82
206
+ __( 'License Key', 'all-in-one-seo-pack' ),
207
 
208
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:91
209
+ __( 'Success', 'all-in-one-seo-pack' ),
210
 
211
  // Reference: src/vue/standalone/publish-panel/PrePublish.vue:148
212
  __( 'Blocked!', 'all-in-one-seo-pack' ),
213
 
 
 
 
214
  // Reference: src/vue/standalone/publish-panel/PrePublish.vue:163
215
  __( 'Good!', 'all-in-one-seo-pack' ),
216
 
228
  __( 'You\'re good to go!', 'all-in-one-seo-pack' ),
229
 
230
  // Reference: src/vue/pages/post-settings/views/General.vue:283
 
231
  __( 'Snippet Preview', 'all-in-one-seo-pack' ),
232
 
233
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:116
234
  __( 'Canonical URL', 'all-in-one-seo-pack' ),
235
 
236
  // Reference: src/vue/standalone/publish-panel/PrePublish.vue:82
237
  __( 'Visibility', 'all-in-one-seo-pack' ),
238
 
239
+ // Reference: src/vue/pages/seo-analysis/views/Main.vue:21
240
  // Reference: src/vue/pages/settings/views/Advanced.vue:288
 
241
  __( 'SEO Analysis', 'all-in-one-seo-pack' ),
242
 
243
  // Reference: src/vue/pages/post-settings/views/General.vue:296
244
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:40
245
  __( 'Readability', 'all-in-one-seo-pack' ),
246
 
247
  // Reference: src/vue/pages/post-settings/views/General.vue:291
 
 
248
  __( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
249
 
250
+ // Reference: src/vue/pages/connect-pro/views/Main.vue:45
251
+ // Reference: src/vue/pages/connect/views/Main.vue:30
252
+ __( 'Connecting...', 'all-in-one-seo-pack' ),
253
 
254
+ // Reference: src/vue/utils/tags.js:64
255
+ __( 'Product Short Description', 'all-in-one-seo-pack' ),
256
 
257
+ // Reference: src/vue/utils/tags.js:65
258
+ __( 'A short description for your product.', 'all-in-one-seo-pack' ),
259
 
260
+ // Reference: src/vue/utils/tags.js:66
261
+ __( 'Sample short description for your product.', 'all-in-one-seo-pack' ),
262
 
263
+ // Reference: src/vue/utils/tags.js:82
264
+ __( 'Archive', 'all-in-one-seo-pack' ),
265
 
266
+ // Reference: src/vue/utils/tags.js:83
267
+ __( 'archive', 'all-in-one-seo-pack' ),
268
 
269
+ // Reference: src/vue/plugins/constants.js:1049
270
+ __( 'Manually Enter Type', 'all-in-one-seo-pack' ),
271
 
272
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:214
273
+ __( 'Customer Support', 'all-in-one-seo-pack' ),
274
 
275
+ // Reference: src/vue/plugins/constants.js:1051
276
+ __( 'Technical Support', 'all-in-one-seo-pack' ),
277
 
278
+ // Reference: src/vue/plugins/constants.js:1052
279
+ __( 'Billing Support', 'all-in-one-seo-pack' ),
280
 
281
+ // Reference: src/vue/plugins/constants.js:1053
282
+ __( 'Bill Payment', 'all-in-one-seo-pack' ),
283
 
284
+ // Reference: src/vue/plugins/constants.js:1054
285
+ __( 'Sales', 'all-in-one-seo-pack' ),
286
 
287
+ // Reference: src/vue/plugins/constants.js:1055
288
+ __( 'Reservations', 'all-in-one-seo-pack' ),
289
 
290
+ // Reference: src/vue/plugins/constants.js:1056
291
+ __( 'Credit Card Support', 'all-in-one-seo-pack' ),
 
292
 
293
+ // Reference: src/vue/plugins/constants.js:1057
294
+ __( 'Emergency', 'all-in-one-seo-pack' ),
295
 
296
+ // Reference: src/vue/plugins/constants.js:1058
297
+ __( 'Bagage Tracking', 'all-in-one-seo-pack' ),
298
 
299
+ // Reference: src/vue/plugins/constants.js:1059
300
+ __( 'Roadside Assistance', 'all-in-one-seo-pack' ),
301
 
302
+ // Reference: src/vue/plugins/constants.js:1060
303
+ __( 'Package Tracking', 'all-in-one-seo-pack' ),
304
 
305
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:133
306
+ __( 'Sitemaps', 'all-in-one-seo-pack' ),
307
 
308
+ // Reference: src/vue/plugins/constants.js:1067
309
+ __( 'Sitemaps are a list of all your content that search engines use when they crawl your site.', 'all-in-one-seo-pack' ),
310
 
311
+ // Reference: src/vue/plugins/constants.js:1077
312
+ __( 'Optimized Search Appearance', 'all-in-one-seo-pack' ),
313
 
314
+ // Reference: src/vue/plugins/constants.js:1078
315
+ __( 'Get all the right tools to make sure your website shows up in Google Search.', 'all-in-one-seo-pack' ),
316
 
317
+ // Reference: src/vue/pages/monsterinsights/router/paths.js:19
318
+ // Reference: src/vue/pages/monsterinsights/views/Main.vue:20
319
+ __( 'Analytics', 'all-in-one-seo-pack' ),
320
 
321
+ // Reference: src/vue/plugins/constants.js:1086
322
+ __( 'Get the #1 analytics plugin to see how people find and use your website. Simply put, see stats that matter.', 'all-in-one-seo-pack' ),
323
 
324
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:184
325
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:110
326
+ __( 'Image SEO', 'all-in-one-seo-pack' ),
327
 
328
+ // Reference: src/vue/plugins/constants.js:1102
329
+ __( 'Globally control Title and Alt attributes for attachment pages and images that are embedded in your content.', 'all-in-one-seo-pack' ),
330
 
331
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:194
332
+ __( 'Local SEO', 'all-in-one-seo-pack' ),
333
 
334
+ // Reference: src/vue/plugins/constants.js:1110
335
+ __( 'Tell Google about your business for display as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
336
 
337
+ // Reference: src/vue/plugins/constants.js:1118
338
+ __( 'Generate an XML Sitemap specifically for video content on your site.', 'all-in-one-seo-pack' ),
339
 
340
+ // Reference: src/vue/plugins/constants.js:1126
341
+ __( 'Submit articles to Google News that were published in the last 48 hours.', 'all-in-one-seo-pack' ),
 
342
 
343
+ // Reference: src/vue/plugins/constants.js:1133
344
+ __( 'Smart Redirects + 404 Detection', 'all-in-one-seo-pack' ),
 
345
 
346
+ // Reference: src/vue/plugins/constants.js:1134
347
+ __( 'Create and manage redirects for your broken links.', 'all-in-one-seo-pack' ),
348
 
349
+ // Reference: src/vue/plugins/constants.js:1141
350
+ __( 'Internal Link Building Assistant', 'all-in-one-seo-pack' ),
351
 
352
+ // Reference: src/vue/plugins/constants.js:1149
353
+ __( 'Advanced Rich Snippets + Schema Markups', 'all-in-one-seo-pack' ),
 
354
 
355
+ // Reference: src/vue/plugins/constants.js:1160
356
+ __( 'Activities', 'all-in-one-seo-pack' ),
357
 
358
+ // Reference: src/vue/plugins/constants.js:1162
359
+ __( 'Activity', 'all-in-one-seo-pack' ),
360
 
361
+ // Reference: src/vue/plugins/constants.js:1163
362
+ __( 'Sport', 'all-in-one-seo-pack' ),
363
 
364
+ // Reference: src/vue/plugins/constants.js:1167
365
+ __( 'Businesses', 'all-in-one-seo-pack' ),
366
 
367
+ // Reference: src/vue/plugins/constants.js:1169
368
+ __( 'Bar', 'all-in-one-seo-pack' ),
369
 
370
+ // Reference: src/vue/plugins/constants.js:1170
371
+ __( 'Company', 'all-in-one-seo-pack' ),
372
 
373
+ // Reference: src/vue/plugins/constants.js:1171
374
+ __( 'Cafe', 'all-in-one-seo-pack' ),
375
 
376
+ // Reference: src/vue/plugins/constants.js:1172
377
+ __( 'Hotel', 'all-in-one-seo-pack' ),
378
 
379
+ // Reference: src/vue/plugins/constants.js:1173
380
+ __( 'Restaurant', 'all-in-one-seo-pack' ),
381
 
382
+ // Reference: src/vue/plugins/constants.js:1177
383
+ __( 'Groups', 'all-in-one-seo-pack' ),
384
 
385
+ // Reference: src/vue/plugins/constants.js:1180
386
+ /* Translators: This refers to a charity/non-profit organization. */
387
+ __( 'Cause', 'all-in-one-seo-pack' ),
388
 
389
+ // Reference: src/vue/plugins/constants.js:1181
390
+ __( 'Sports League', 'all-in-one-seo-pack' ),
391
 
392
+ // Reference: src/vue/plugins/constants.js:1182
393
+ __( 'Sports Team', 'all-in-one-seo-pack' ),
394
 
395
+ // Reference: src/vue/plugins/constants.js:1186
396
+ __( 'Organizations', 'all-in-one-seo-pack' ),
397
 
398
+ // Reference: src/vue/plugins/constants.js:1189
399
+ /* Translators: This refers to a music group. */
400
+ __( 'Band', 'all-in-one-seo-pack' ),
401
 
402
+ // Reference: src/vue/plugins/constants.js:1190
403
+ __( 'Non-Profit', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
 
405
  // Reference: src/vue/plugins/constants.js:1191
406
  __( 'School', 'all-in-one-seo-pack' ),
486
  // Reference: src/vue/plugins/constants.js:1233
487
  __( 'Websites', 'all-in-one-seo-pack' ),
488
 
489
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
490
  // Reference: src/vue/plugins/constants.js:1235
491
  __( 'Article', 'all-in-one-seo-pack' ),
492
 
494
  __( 'Website', 'all-in-one-seo-pack' ),
495
 
496
  // Reference: src/vue/components/common/core/AddRedirection.vue:466
 
497
  __( 'Ignore all parameters', 'all-in-one-seo-pack' ),
498
 
499
  // Reference: src/vue/plugins/constants.js:1287
514
  // Reference: src/vue/plugins/constants.js:1295
515
  __( '404 Redirects', 'all-in-one-seo-pack' ),
516
 
517
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:134
518
  __( 'default', 'all-in-one-seo-pack' ),
519
 
520
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:135
521
  __( 'Animal Shelter', 'all-in-one-seo-pack' ),
522
 
523
  // Reference: src/vue/plugins/constants.js:1301
608
  __( 'Travel Agency', 'all-in-one-seo-pack' ),
609
 
610
  // Reference: src/vue/pages/post-settings/views/General.vue:282
 
611
  __( 'General', 'all-in-one-seo-pack' ),
612
 
613
  // Reference: src/vue/plugins/constants.js:1411
614
  __( 'CORS', 'all-in-one-seo-pack' ),
615
 
 
616
  // Reference: src/vue/plugins/constants.js:1422
617
  __( 'Security', 'all-in-one-seo-pack' ),
618
 
625
  // Reference: src/vue/plugins/constants.js:1441
626
  __( 'WordPress User Roles', 'all-in-one-seo-pack' ),
627
 
628
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:247
629
  __( 'User Agent', 'all-in-one-seo-pack' ),
630
 
631
  // Reference: src/vue/plugins/constants.js:1443
661
  // Reference: src/vue/plugins/constants.js:1453
662
  __( 'Logged Out', 'all-in-one-seo-pack' ),
663
 
664
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:103
665
  __( 'always', 'all-in-one-seo-pack' ),
666
 
667
  // Reference: src/vue/plugins/constants.js:20
700
  // Reference: src/vue/plugins/constants.js:34
701
  __( 'Hide', 'all-in-one-seo-pack' ),
702
 
703
+ // Reference: src/vue/components/common/notifications/UnlicensedAddons.vue:50
704
  // Reference: src/vue/plugins/constants.js:35
705
  __( 'Learn More', 'all-in-one-seo-pack' ),
706
 
716
  // Reference: src/vue/plugins/constants.js:39
717
  __( 'Include', 'all-in-one-seo-pack' ),
718
 
719
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:450
 
720
  __( 'Remove', 'all-in-one-seo-pack' ),
721
 
722
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:101
723
+ /* Translators: 1 - Strong tag, 2 - Close strong tag. */
724
+ __( '%1$sThe custom marker should be: 100x100 px.%2$s If the image exceeds those dimensions it could (partially) cover the info popup.', 'all-in-one-seo-pack' ),
725
 
726
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:103
727
+ __( 'Label', 'all-in-one-seo-pack' ),
 
728
 
729
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:91
730
+ __( 'Show label', 'all-in-one-seo-pack' ),
731
 
732
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:92
733
+ __( 'Show icon', 'all-in-one-seo-pack' ),
734
 
735
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:127
736
+ __( 'Business Info', 'all-in-one-seo-pack' ),
737
 
738
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:94
739
+ __( 'Map Display', 'all-in-one-seo-pack' ),
740
 
741
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:432
742
+ __( 'Width', 'all-in-one-seo-pack' ),
743
 
744
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:433
745
+ __( 'Height', 'all-in-one-seo-pack' ),
746
 
747
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:97
748
+ __( 'Custom Marker', 'all-in-one-seo-pack' ),
749
 
750
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:438
751
+ __( 'Upload or Select Image', 'all-in-one-seo-pack' ),
752
 
753
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:439
754
+ __( 'Paste your image URL or select a new image', 'all-in-one-seo-pack' ),
755
 
756
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:125
757
+ __( 'Show labels', 'all-in-one-seo-pack' ),
758
 
759
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:126
760
+ __( 'Show icons', 'all-in-one-seo-pack' ),
761
 
762
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:128
763
+ __( 'Name', 'all-in-one-seo-pack' ),
764
 
765
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:130
766
+ __( 'Phone Number', 'all-in-one-seo-pack' ),
767
 
768
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:131
769
+ __( 'Fax Number', 'all-in-one-seo-pack' ),
 
770
 
771
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:132
772
+ __( 'Email Address', 'all-in-one-seo-pack' ),
773
 
774
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:133
775
+ __( 'Show VAT ID', 'all-in-one-seo-pack' ),
776
 
777
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:134
778
+ __( 'Show Tax ID', 'all-in-one-seo-pack' ),
779
 
780
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:135
781
+ __( 'Phone/Fax Country Code', 'all-in-one-seo-pack' ),
782
 
783
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:136
784
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:175
785
+ __( 'Labels', 'all-in-one-seo-pack' ),
786
 
787
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:137
788
+ __( 'Address', 'all-in-one-seo-pack' ),
789
 
790
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:138
791
+ __( 'Vat ID', 'all-in-one-seo-pack' ),
792
 
793
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:139
794
+ __( 'Tax ID', 'all-in-one-seo-pack' ),
795
 
796
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:140
797
+ __( 'Phone', 'all-in-one-seo-pack' ),
798
 
799
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:141
800
+ __( 'Fax', 'all-in-one-seo-pack' ),
801
 
802
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:142
803
+ __( 'Email', 'all-in-one-seo-pack' ),
804
 
805
+ // Reference: src/vue/components/common/wizard/CloseAndExit.vue:14
806
+ __( 'Close and Exit Wizard Without Saving', 'all-in-one-seo-pack' ),
807
 
808
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:150
809
+ __( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
810
 
811
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:151
812
+ __( 'Image SEO Optimization', 'all-in-one-seo-pack' ),
 
813
 
814
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:152
815
+ __( 'Local Business SEO', 'all-in-one-seo-pack' ),
816
 
817
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:153
818
+ __( 'Advanced WooCommerce', 'all-in-one-seo-pack' ),
819
 
820
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:154
821
+ __( 'SEO for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
822
 
823
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:155
824
+ __( 'And many more...', 'all-in-one-seo-pack' ),
 
825
 
826
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:147
827
+ __( 'Activate All Features', 'all-in-one-seo-pack' ),
828
 
829
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:148
830
+ __( 'Deactivate All Features', 'all-in-one-seo-pack' ),
 
831
 
832
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:149
833
+ __( 'Search for Features...', 'all-in-one-seo-pack' ),
 
834
 
835
+ // Reference: src/vue/pages/feature-manage